From 7425305154fb0005fde9f077cd30100c53d511a4 Mon Sep 17 00:00:00 2001 From: Tiger Wang Date: Sat, 18 Jul 2020 14:22:14 +0100 Subject: [PATCH] 1.13 items support + Add 1.16 block and item definitions --- src/CMakeLists.txt | 7 +- src/CheckBasicStyle.lua | 1 + src/Protocol/CMakeLists.txt | 2 + src/Protocol/ChunkDataSerializer.cpp | 14 +- src/Protocol/ChunkDataSerializer.h | 12 +- src/Protocol/Palettes/CMakeLists.txt | 11 + src/Protocol/Palettes/Palette_1_13.cpp | 8655 ++++++++ src/Protocol/Palettes/Palette_1_13.h | 10 + src/Protocol/Palettes/Palette_1_16.cpp | 13747 ++++++++++++ src/Protocol/Palettes/Palette_1_16.h | 10 + src/Protocol/Palettes/Upgrade.cpp | 3207 +++ src/Protocol/Palettes/Upgrade.h | 11 + src/Protocol/Protocol.h | 6 - src/Protocol/ProtocolRecognizer.cpp | 3 - src/Protocol/Protocol_1_13.cpp | 62 +- src/Protocol/Protocol_1_13.h | 15 - src/Protocol/Protocol_1_8.cpp | 2 +- src/Protocol/Protocol_1_9.cpp | 4 +- src/Registries/Blocks.cpp | 15133 +++++++++++++ src/Registries/Blocks.h | 25809 +++++++++++++++++++++++ src/Registries/CMakeLists.txt | 8 + src/Registries/Items.h | 980 + src/Root.cpp | 2 - 23 files changed, 67621 insertions(+), 90 deletions(-) create mode 100644 src/Protocol/Palettes/CMakeLists.txt create mode 100644 src/Protocol/Palettes/Palette_1_13.cpp create mode 100644 src/Protocol/Palettes/Palette_1_13.h create mode 100644 src/Protocol/Palettes/Palette_1_16.cpp create mode 100644 src/Protocol/Palettes/Palette_1_16.h create mode 100644 src/Protocol/Palettes/Upgrade.cpp create mode 100644 src/Protocol/Palettes/Upgrade.h create mode 100644 src/Registries/Blocks.cpp create mode 100644 src/Registries/Blocks.h create mode 100644 src/Registries/CMakeLists.txt create mode 100644 src/Registries/Items.h diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index c452ca7e2..fd8d83e17 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -158,9 +158,10 @@ target_sources( ) set(FOLDERS - OSSupport HTTP Items Blocks Protocol Generating mbedTLS++ Bindings - WorldStorage Mobs Entities Simulator Simulator/IncrementalRedstoneSimulator - BlockEntities UI Noise + Bindings BlockEntities Blocks Entities + Generating HTTP Items mbedTLS++ Mobs Noise + OSSupport Protocol Registries Simulator + Simulator/IncrementalRedstoneSimulator UI WorldStorage ) # Add all child source directories: diff --git a/src/CheckBasicStyle.lua b/src/CheckBasicStyle.lua index df25c64ca..d5b801708 100755 --- a/src/CheckBasicStyle.lua +++ b/src/CheckBasicStyle.lua @@ -44,6 +44,7 @@ local g_IgnoredFiles = "Bindings/Bindings.h", "Bindings/Bindings.cpp", "Bindings/LuaState_Implementation.cpp", + "Registries/Blocks.h" } --- The list of files not to be processed, as a dictionary (filename => true), built from g_IgnoredFiles diff --git a/src/Protocol/CMakeLists.txt b/src/Protocol/CMakeLists.txt index 40eecde07..cc96f1878 100644 --- a/src/Protocol/CMakeLists.txt +++ b/src/Protocol/CMakeLists.txt @@ -32,3 +32,5 @@ target_sources( ProtocolRecognizer.h RecipeMapper.h ) + +add_subdirectory(Palettes) \ No newline at end of file diff --git a/src/Protocol/ChunkDataSerializer.cpp b/src/Protocol/ChunkDataSerializer.cpp index ea688ebd8..52782bbb7 100644 --- a/src/Protocol/ChunkDataSerializer.cpp +++ b/src/Protocol/ChunkDataSerializer.cpp @@ -5,6 +5,9 @@ #include "Protocol_1_9.h" #include "../ByteBuffer.h" +#include "Palettes/Upgrade.h" +#include "Palettes/Palette_1_13.h" + @@ -45,7 +48,7 @@ cChunkDataSerializer::cChunkDataSerializer( -const AString & cChunkDataSerializer::Serialize(int a_Version, int a_ChunkX, int a_ChunkZ, const std::map & a_BlockTypeMap) +const AString & cChunkDataSerializer::Serialize(int a_Version, int a_ChunkX, int a_ChunkZ) { Serializations::const_iterator itr = m_Serializations.find(a_Version); if (itr != m_Serializations.end()) @@ -59,7 +62,7 @@ const AString & cChunkDataSerializer::Serialize(int a_Version, int a_ChunkX, int case RELEASE_1_8_0: Serialize47 (data, a_ChunkX, a_ChunkZ); break; case RELEASE_1_9_0: Serialize107(data, a_ChunkX, a_ChunkZ); break; case RELEASE_1_9_4: Serialize110(data, a_ChunkX, a_ChunkZ); break; - case RELEASE_1_13: Serialize393(data, a_ChunkX, a_ChunkZ, a_BlockTypeMap); break; + case RELEASE_1_13: Serialize393(data, a_ChunkX, a_ChunkZ); break; default: { @@ -434,12 +437,10 @@ void cChunkDataSerializer::Serialize110(AString & a_Data, int a_ChunkX, int a_Ch -void cChunkDataSerializer::Serialize393(AString & a_Data, int a_ChunkX, int a_ChunkZ, const std::map & a_BlockTypeMap) +void cChunkDataSerializer::Serialize393(AString & a_Data, int a_ChunkX, int a_ChunkZ) { // This function returns the fully compressed packet (including packet size), not the raw packet! - ASSERT(!a_BlockTypeMap.empty()); // We need a protocol-specific translation map - // Create the packet: cByteBuffer Packet(512 KiB); Packet.WriteVarInt32(0x22); // Packet id (Chunk Data packet) @@ -485,8 +486,7 @@ void cChunkDataSerializer::Serialize393(AString & a_Data, int a_ChunkX, int a_Ch { UInt32 blockType = a_Section.m_BlockTypes[Index]; UInt32 blockMeta = (a_Section.m_BlockMetas[Index / 2] >> ((Index % 2) * 4)) & 0x0f; - auto itr = a_BlockTypeMap.find(blockType * 16 | blockMeta); - UInt64 Value = (itr == a_BlockTypeMap.end()) ? 0 :itr->second; + UInt64 Value = Palette_1_13::FromBlock(PaletteUpgrade::FromBlock(blockType, blockMeta)); Value &= Mask; // It shouldn't go out of bounds, but it's still worth being careful // Painful part where we write data into the long array. Based off of the normal code. diff --git a/src/Protocol/ChunkDataSerializer.h b/src/Protocol/ChunkDataSerializer.h index 27a3d9426..2670a0705 100644 --- a/src/Protocol/ChunkDataSerializer.h +++ b/src/Protocol/ChunkDataSerializer.h @@ -13,6 +13,7 @@ other clients using the same protocol. */ class cChunkDataSerializer { public: + enum { RELEASE_1_8_0 = 47, @@ -27,17 +28,13 @@ public: const eDimension a_Dimension ); - /** Serializes the contained chunk data into the specified protocol version. - TEMPORARY: a_BlockTypeMap is used for the 1.13+ protocols to map from BLOCKTYPE#META to NetBlockID. - a_BlockTypeMap is ignored for pre-1.13 protocols. */ - const AString & Serialize(int a_Version, int a_ChunkX, int a_ChunkZ, const std::map & a_BlockTypeMap); - + /** Serializes the contained chunk data into the specified protocol version. */ + const AString & Serialize(int a_Version, int a_ChunkX, int a_ChunkZ); protected: using Serializations = std::map; - /** The data read from the chunk, to be serialized. */ const cChunkData & m_Data; @@ -50,11 +47,10 @@ protected: /** The per-protocol serialized data, cached for reuse for other clients. */ Serializations m_Serializations; - void Serialize47 (AString & a_Data, int a_ChunkX, int a_ChunkZ); // Release 1.8 void Serialize107(AString & a_Data, int a_ChunkX, int a_ChunkZ); // Release 1.9 void Serialize110(AString & a_Data, int a_ChunkX, int a_ChunkZ); // Release 1.9.4 - void Serialize393(AString & a_Data, int a_ChunkX, int a_ChunkZ, const std::map & a_BlockTypeMap); // Release 1.13 + void Serialize393(AString & a_Data, int a_ChunkX, int a_ChunkZ); // Release 1.13 } ; diff --git a/src/Protocol/Palettes/CMakeLists.txt b/src/Protocol/Palettes/CMakeLists.txt new file mode 100644 index 000000000..7ae95668d --- /dev/null +++ b/src/Protocol/Palettes/CMakeLists.txt @@ -0,0 +1,11 @@ +target_sources( + ${CMAKE_PROJECT_NAME} PRIVATE + + Palette_1_13.cpp + Palette_1_16.cpp + Upgrade.cpp + + Palette_1_13.h + Palette_1_16.h + Upgrade.h +) \ No newline at end of file diff --git a/src/Protocol/Palettes/Palette_1_13.cpp b/src/Protocol/Palettes/Palette_1_13.cpp new file mode 100644 index 000000000..d441ff078 --- /dev/null +++ b/src/Protocol/Palettes/Palette_1_13.cpp @@ -0,0 +1,8655 @@ +#include "Globals.h" + +#include "Palette_1_13.h" +#include "../../Registries/Blocks.h" + +namespace Palette_1_13 +{ + Int32 FromBlock(short ID) + { + using namespace Block; + + switch (ID) + { + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5412; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5416; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5420; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5401; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5405; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5409; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5413; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5417; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5421; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5402; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5406; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5410; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5414; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5418; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5422; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5399; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5403; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5407; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5411; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5415; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5419; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5400; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5404; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5408; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 7912; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 7928; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 7881; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 7897; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 7913; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 7929; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 7882; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 7898; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 7914; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 7930; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 7883; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 7899; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 7915; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 7931; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 7884; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 7900; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 7916; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 7869; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 7885; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 7901; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 7917; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 7870; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 7886; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 7902; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 7918; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 7871; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 7887; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 7903; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 7919; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 7872; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 7888; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 7904; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 7920; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 7873; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 7889; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 7905; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 7921; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 7874; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 7890; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 7906; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 7922; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 7875; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 7891; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 7907; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 7923; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 7876; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 7892; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 7908; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 7924; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 7877; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 7893; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 7909; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 7925; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 7878; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 7894; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 7910; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 7926; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 7879; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 7895; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 7911; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 7927; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 7880; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 7896; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 7932; + case AcaciaFence::AcaciaFence(true, true, true, true): return 7615; + case AcaciaFence::AcaciaFence(true, true, false, true): return 7619; + case AcaciaFence::AcaciaFence(true, false, true, true): return 7623; + case AcaciaFence::AcaciaFence(true, false, false, true): return 7627; + case AcaciaFence::AcaciaFence(false, true, true, true): return 7631; + case AcaciaFence::AcaciaFence(false, true, false, true): return 7635; + case AcaciaFence::AcaciaFence(false, false, true, true): return 7639; + case AcaciaFence::AcaciaFence(false, false, false, true): return 7643; + case AcaciaFence::AcaciaFence(true, true, true, false): return 7616; + case AcaciaFence::AcaciaFence(true, true, false, false): return 7620; + case AcaciaFence::AcaciaFence(true, false, true, false): return 7624; + case AcaciaFence::AcaciaFence(true, false, false, false): return 7628; + case AcaciaFence::AcaciaFence(false, true, true, false): return 7632; + case AcaciaFence::AcaciaFence(false, true, false, false): return 7636; + case AcaciaFence::AcaciaFence(false, false, true, false): return 7640; + case AcaciaFence::AcaciaFence(false, false, false, false): return 7644; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7458; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7462; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7466; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7470; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7474; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7478; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7482; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7455; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7459; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7463; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7467; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7471; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7475; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7479; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7483; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7456; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7460; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7464; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7468; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7472; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7476; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7480; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7453; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7457; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7461; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7465; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7469; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7473; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7477; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7481; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7454; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7484; + case AcaciaLeaves::AcaciaLeaves(7, false): return 213; + case AcaciaLeaves::AcaciaLeaves(4, true): return 206; + case AcaciaLeaves::AcaciaLeaves(4, false): return 207; + case AcaciaLeaves::AcaciaLeaves(1, true): return 200; + case AcaciaLeaves::AcaciaLeaves(5, true): return 208; + case AcaciaLeaves::AcaciaLeaves(1, false): return 201; + case AcaciaLeaves::AcaciaLeaves(5, false): return 209; + case AcaciaLeaves::AcaciaLeaves(2, true): return 202; + case AcaciaLeaves::AcaciaLeaves(6, true): return 210; + case AcaciaLeaves::AcaciaLeaves(2, false): return 203; + case AcaciaLeaves::AcaciaLeaves(6, false): return 211; + case AcaciaLeaves::AcaciaLeaves(3, true): return 204; + case AcaciaLeaves::AcaciaLeaves(7, true): return 212; + case AcaciaLeaves::AcaciaLeaves(3, false): return 205; + case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Y): return 85; + case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Z): return 86; + case AcaciaLog::AcaciaLog(AcaciaLog::Axis::X): return 84; + case AcaciaPlanks::AcaciaPlanks(): return 19; + case AcaciaPressurePlate::AcaciaPressurePlate(true): return 3375; + case AcaciaPressurePlate::AcaciaPressurePlate(false): return 3376; + case AcaciaSapling::AcaciaSapling(0): return 29; + case AcaciaSapling::AcaciaSapling(1): return 30; + case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Top): return 7282; + case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Bottom): return 7284; + case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Double): return 7286; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6409; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6347; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6411; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6349; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6351; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6353; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6355; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6357; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6359; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6361; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6363; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6365; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6367; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6369; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6371; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6373; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6375; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6377; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6379; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6381; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6383; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6385; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6387; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6389; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6391; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6393; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6395; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6333; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6397; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6335; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6399; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6337; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6401; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6339; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6403; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6341; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6405; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6343; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6407; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6345; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, true): return 3862; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, true): return 3870; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, true): return 3878; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, true): return 3886; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, true): return 3894; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, true): return 3902; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, true): return 3910; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, false): return 3856; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, false): return 3864; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, false): return 3872; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, false): return 3880; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, false): return 3888; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, false): return 3896; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, false): return 3904; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, true): return 3850; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, true): return 3858; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, true): return 3866; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, true): return 3874; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, true): return 3882; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, true): return 3890; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, true): return 3898; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, true): return 3906; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, false): return 3852; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, false): return 3860; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, false): return 3868; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, false): return 3876; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, false): return 3884; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, false): return 3892; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, false): return 3900; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, false): return 3908; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, true): return 3854; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, false): return 3912; + case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Y): return 121; + case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Z): return 122; + case AcaciaWood::AcaciaWood(AcaciaWood::Axis::X): return 120; + case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingSouth): return 5791; + case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::NorthSouth): return 5780; + case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::EastWest): return 5781; + case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingEast): return 5782; + case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingWest): return 5783; + case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingNorth): return 5784; + case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingSouth): return 5785; + case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::NorthSouth): return 5786; + case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::EastWest): return 5787; + case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingEast): return 5788; + case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingWest): return 5789; + case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingNorth): return 5790; + case Air::Air(): return -0; + case Allium::Allium(): return 1114; + case Andesite::Andesite(): return 6; + case Anvil::Anvil(eBlockFace::BLOCK_FACE_XM): return 5569; + case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZM): return 5567; + case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZP): return 5568; + case Anvil::Anvil(eBlockFace::BLOCK_FACE_XP): return 5570; + case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZP): return 4249; + case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XM): return 4250; + case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZM): return 4248; + case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XP): return 4251; + case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XM): return 4246; + case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZM): return 4244; + case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZP): return 4245; + case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XP): return 4247; + case AzureBluet::AzureBluet(): return 1115; + case Barrier::Barrier(): return 6493; + case Beacon::Beacon(): return 5136; + case Bedrock::Bedrock(): return 33; + case Beetroots::Beetroots(0): return 8158; + case Beetroots::Beetroots(1): return 8159; + case Beetroots::Beetroots(2): return 8160; + case Beetroots::Beetroots(3): return 8161; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5354; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5358; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5362; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5366; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5370; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5374; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5351; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5355; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5359; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5363; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5367; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5371; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5352; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5356; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5360; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5364; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5368; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5372; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5353; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5357; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5361; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5365; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5369; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5373; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 7786; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 7802; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 7755; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 7771; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 7787; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 7803; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 7756; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 7772; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 7788; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 7741; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 7757; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 7773; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 7789; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 7742; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 7758; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 7774; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 7790; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 7743; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 7759; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 7775; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 7791; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 7744; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 7760; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 7776; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 7792; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 7745; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 7761; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 7777; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 7793; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 7746; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 7762; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 7778; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 7794; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 7747; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 7763; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 7779; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 7795; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 7748; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 7764; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 7780; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 7796; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 7749; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 7765; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 7781; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 7797; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 7750; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 7766; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 7782; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 7798; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 7751; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 7767; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 7783; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 7799; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 7752; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 7768; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 7784; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 7800; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 7753; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 7769; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 7785; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 7801; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 7754; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 7770; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 7804; + case BirchFence::BirchFence(true, true, true, true): return 7551; + case BirchFence::BirchFence(true, true, false, true): return 7555; + case BirchFence::BirchFence(true, false, true, true): return 7559; + case BirchFence::BirchFence(true, false, false, true): return 7563; + case BirchFence::BirchFence(false, true, true, true): return 7567; + case BirchFence::BirchFence(false, true, false, true): return 7571; + case BirchFence::BirchFence(false, false, true, true): return 7575; + case BirchFence::BirchFence(false, false, false, true): return 7579; + case BirchFence::BirchFence(true, true, true, false): return 7552; + case BirchFence::BirchFence(true, true, false, false): return 7556; + case BirchFence::BirchFence(true, false, true, false): return 7560; + case BirchFence::BirchFence(true, false, false, false): return 7564; + case BirchFence::BirchFence(false, true, true, false): return 7568; + case BirchFence::BirchFence(false, true, false, false): return 7572; + case BirchFence::BirchFence(false, false, true, false): return 7576; + case BirchFence::BirchFence(false, false, false, false): return 7580; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7396; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7400; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7404; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7408; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7412; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7416; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7389; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7393; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7397; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7401; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7405; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7409; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7413; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7417; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7390; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7394; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7398; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7402; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7406; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7410; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7414; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7418; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7391; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7395; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7399; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7403; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7407; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7411; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7415; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7419; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7392; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7420; + case BirchLeaves::BirchLeaves(6, false): return 183; + case BirchLeaves::BirchLeaves(3, true): return 176; + case BirchLeaves::BirchLeaves(7, true): return 184; + case BirchLeaves::BirchLeaves(3, false): return 177; + case BirchLeaves::BirchLeaves(7, false): return 185; + case BirchLeaves::BirchLeaves(4, true): return 178; + case BirchLeaves::BirchLeaves(4, false): return 179; + case BirchLeaves::BirchLeaves(1, true): return 172; + case BirchLeaves::BirchLeaves(5, true): return 180; + case BirchLeaves::BirchLeaves(1, false): return 173; + case BirchLeaves::BirchLeaves(5, false): return 181; + case BirchLeaves::BirchLeaves(2, true): return 174; + case BirchLeaves::BirchLeaves(6, true): return 182; + case BirchLeaves::BirchLeaves(2, false): return 175; + case BirchLog::BirchLog(BirchLog::Axis::Y): return 79; + case BirchLog::BirchLog(BirchLog::Axis::Z): return 80; + case BirchLog::BirchLog(BirchLog::Axis::X): return 78; + case BirchPlanks::BirchPlanks(): return 17; + case BirchPressurePlate::BirchPressurePlate(true): return 3371; + case BirchPressurePlate::BirchPressurePlate(false): return 3372; + case BirchSapling::BirchSapling(0): return 25; + case BirchSapling::BirchSapling(1): return 26; + case BirchSlab::BirchSlab(BirchSlab::Type::Top): return 7270; + case BirchSlab::BirchSlab(BirchSlab::Type::Bottom): return 7272; + case BirchSlab::BirchSlab(BirchSlab::Type::Double): return 7274; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5013; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5015; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5017; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5019; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5021; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5023; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5025; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5027; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 4965; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5029; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 4967; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5031; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 4969; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5033; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 4971; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5035; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 4973; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5037; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 4975; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5039; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 4977; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5041; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 4979; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5043; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 4981; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 4983; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 4985; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 4987; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 4989; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 4991; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 4993; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 4995; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 4997; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 4999; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5001; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5003; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5005; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5007; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5009; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5011; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, false): return 3736; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, false): return 3744; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, false): return 3752; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, false): return 3760; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, false): return 3768; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, false): return 3776; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, true): return 3722; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, true): return 3730; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, true): return 3738; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, true): return 3746; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, true): return 3754; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, true): return 3762; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, true): return 3770; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, true): return 3778; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, false): return 3724; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, false): return 3732; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, false): return 3740; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, false): return 3748; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, false): return 3756; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, false): return 3764; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, false): return 3772; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, false): return 3780; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, true): return 3726; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, true): return 3734; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, true): return 3742; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, true): return 3750; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, true): return 3758; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, true): return 3766; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, true): return 3774; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, true): return 3782; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, false): return 3728; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, false): return 3784; + case BirchWood::BirchWood(BirchWood::Axis::Y): return 115; + case BirchWood::BirchWood(BirchWood::Axis::Z): return 116; + case BirchWood::BirchWood(BirchWood::Axis::X): return 114; + case BlackBanner::BlackBanner(2): return 7096; + case BlackBanner::BlackBanner(3): return 7097; + case BlackBanner::BlackBanner(4): return 7098; + case BlackBanner::BlackBanner(5): return 7099; + case BlackBanner::BlackBanner(6): return 7100; + case BlackBanner::BlackBanner(7): return 7101; + case BlackBanner::BlackBanner(8): return 7102; + case BlackBanner::BlackBanner(9): return 7103; + case BlackBanner::BlackBanner(10): return 7104; + case BlackBanner::BlackBanner(11): return 7105; + case BlackBanner::BlackBanner(12): return 7106; + case BlackBanner::BlackBanner(13): return 7107; + case BlackBanner::BlackBanner(14): return 7108; + case BlackBanner::BlackBanner(0): return 7094; + case BlackBanner::BlackBanner(1): return 7095; + case BlackBanner::BlackBanner(15): return 7109; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Head): return 998; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Head): return 1000; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Head): return 1002; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Foot): return 989; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Foot): return 991; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Foot): return 993; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Foot): return 995; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Foot): return 997; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Foot): return 999; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Foot): return 1001; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Head): return 988; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Head): return 990; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Head): return 992; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Head): return 994; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Head): return 996; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Foot): return 1003; + case BlackCarpet::BlackCarpet(): return 6838; + case BlackConcrete::BlackConcrete(): return 8392; + case BlackConcretePowder::BlackConcretePowder(): return 8408; + case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8373; + case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8375; + case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8374; + case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8376; + case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8311; + case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8308; + case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8312; + case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8309; + case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8310; + case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8307; + case BlackStainedGlass::BlackStainedGlass(): return 3592; + case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, false): return 6311; + case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, false): return 6315; + case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, false): return 6319; + case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, false): return 6323; + case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, false): return 6327; + case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, true): return 6302; + case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, true): return 6306; + case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, true): return 6310; + case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, true): return 6314; + case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, true): return 6318; + case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, true): return 6322; + case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, true): return 6326; + case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, true): return 6330; + case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, false): return 6303; + case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, false): return 6307; + case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, false): return 6331; + case BlackTerracotta::BlackTerracotta(): return 5819; + case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7171; + case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XM): return 7172; + case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7170; + case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XP): return 7173; + case BlackWool::BlackWool(): return 1098; + case BlueBanner::BlueBanner(6): return 7036; + case BlueBanner::BlueBanner(7): return 7037; + case BlueBanner::BlueBanner(8): return 7038; + case BlueBanner::BlueBanner(9): return 7039; + case BlueBanner::BlueBanner(10): return 7040; + case BlueBanner::BlueBanner(11): return 7041; + case BlueBanner::BlueBanner(12): return 7042; + case BlueBanner::BlueBanner(13): return 7043; + case BlueBanner::BlueBanner(14): return 7044; + case BlueBanner::BlueBanner(0): return 7030; + case BlueBanner::BlueBanner(1): return 7031; + case BlueBanner::BlueBanner(2): return 7032; + case BlueBanner::BlueBanner(3): return 7033; + case BlueBanner::BlueBanner(4): return 7034; + case BlueBanner::BlueBanner(5): return 7035; + case BlueBanner::BlueBanner(15): return 7045; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Head): return 938; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Foot): return 925; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Foot): return 927; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Foot): return 929; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Foot): return 931; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Foot): return 933; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Foot): return 935; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Foot): return 937; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Head): return 924; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Head): return 926; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Head): return 928; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Head): return 930; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Head): return 932; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Head): return 934; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Head): return 936; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Foot): return 939; + case BlueCarpet::BlueCarpet(): return 6834; + case BlueConcrete::BlueConcrete(): return 8388; + case BlueConcretePowder::BlueConcretePowder(): return 8404; + case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8358; + case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8357; + case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8359; + case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8360; + case BlueIce::BlueIce(): return 8572; + case BlueOrchid::BlueOrchid(): return 1113; + case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8283; + case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8287; + case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8284; + case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8288; + case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8285; + case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8286; + case BlueStainedGlass::BlueStainedGlass(): return 3588; + case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, false): return 6187; + case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, false): return 6191; + case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, false): return 6195; + case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, false): return 6199; + case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, true): return 6174; + case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, true): return 6178; + case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, true): return 6182; + case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, true): return 6186; + case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, true): return 6190; + case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, true): return 6194; + case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, true): return 6198; + case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, true): return 6202; + case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, false): return 6175; + case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, false): return 6179; + case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, false): return 6183; + case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, false): return 6203; + case BlueTerracotta::BlueTerracotta(): return 5815; + case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XM): return 7156; + case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7154; + case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7155; + case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XP): return 7157; + case BlueWool::BlueWool(): return 1094; + case BoneBlock::BoneBlock(BoneBlock::Axis::Y): return 8196; + case BoneBlock::BoneBlock(BoneBlock::Axis::X): return 8195; + case BoneBlock::BoneBlock(BoneBlock::Axis::Z): return 8197; + case Bookshelf::Bookshelf(): return 1127; + case BrainCoral::BrainCoral(): return 8460; + case BrainCoralBlock::BrainCoralBlock(): return 8455; + case BrainCoralFan::BrainCoralFan(): return 8557; + case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8515; + case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8513; + case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8517; + case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8519; + case BrewingStand::BrewingStand(true, false, true): return 4615; + case BrewingStand::BrewingStand(false, true, true): return 4617; + case BrewingStand::BrewingStand(false, false, true): return 4619; + case BrewingStand::BrewingStand(true, true, false): return 4614; + case BrewingStand::BrewingStand(true, false, false): return 4616; + case BrewingStand::BrewingStand(false, true, false): return 4618; + case BrewingStand::BrewingStand(true, true, true): return 4613; + case BrewingStand::BrewingStand(false, false, false): return 4620; + case BrickSlab::BrickSlab(BrickSlab::Type::Top): return 7318; + case BrickSlab::BrickSlab(BrickSlab::Type::Bottom): return 7320; + case BrickSlab::BrickSlab(BrickSlab::Type::Double): return 7322; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4377; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4379; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4381; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4383; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4385; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4387; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4389; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4391; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4393; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4395; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4333; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4397; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4335; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4399; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4337; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4401; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4339; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4403; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4341; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4405; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4343; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4407; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4345; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4409; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4347; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4411; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4349; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4351; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4353; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4355; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4357; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4359; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4361; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4363; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4365; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4367; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4369; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4371; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4373; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4375; + case Bricks::Bricks(): return 1125; + case BrownBanner::BrownBanner(5): return 7051; + case BrownBanner::BrownBanner(6): return 7052; + case BrownBanner::BrownBanner(7): return 7053; + case BrownBanner::BrownBanner(8): return 7054; + case BrownBanner::BrownBanner(9): return 7055; + case BrownBanner::BrownBanner(10): return 7056; + case BrownBanner::BrownBanner(11): return 7057; + case BrownBanner::BrownBanner(12): return 7058; + case BrownBanner::BrownBanner(13): return 7059; + case BrownBanner::BrownBanner(14): return 7060; + case BrownBanner::BrownBanner(0): return 7046; + case BrownBanner::BrownBanner(1): return 7047; + case BrownBanner::BrownBanner(2): return 7048; + case BrownBanner::BrownBanner(3): return 7049; + case BrownBanner::BrownBanner(4): return 7050; + case BrownBanner::BrownBanner(15): return 7061; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Foot): return 953; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Head): return 940; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Head): return 942; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Head): return 944; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Head): return 946; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Head): return 948; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Head): return 950; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Head): return 952; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Head): return 954; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Foot): return 941; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Foot): return 943; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Foot): return 945; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Foot): return 947; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Foot): return 949; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Foot): return 951; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Foot): return 955; + case BrownCarpet::BrownCarpet(): return 6835; + case BrownConcrete::BrownConcrete(): return 8389; + case BrownConcretePowder::BrownConcretePowder(): return 8405; + case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8361; + case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8363; + case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8362; + case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8364; + case BrownMushroom::BrownMushroom(): return 1121; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, false): return 3988; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, false): return 3996; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, false): return 4004; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, false): return 4012; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, false): return 4020; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, false): return 4028; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, false): return 4036; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, false): return 4044; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, true): return 3989; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, true): return 3997; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, true): return 4005; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, true): return 4013; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, true): return 4021; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, true): return 4029; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, true): return 4037; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, true): return 4045; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, false): return 3990; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, false): return 3998; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, false): return 4006; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, false): return 4014; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, false): return 4022; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, false): return 4030; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, false): return 4038; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, false): return 4046; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, true): return 3991; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, true): return 3999; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, true): return 4007; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, true): return 4015; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, true): return 4023; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, true): return 4031; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, true): return 4039; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, true): return 4047; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, false): return 3992; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, false): return 4000; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, false): return 4008; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, false): return 4016; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, false): return 4024; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, false): return 4032; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, false): return 4040; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, false): return 4048; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, true): return 3993; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, true): return 4001; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, true): return 4009; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, true): return 4017; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, true): return 4025; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, true): return 4033; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, true): return 4041; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, true): return 4049; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, false): return 3994; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, false): return 4002; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, false): return 4010; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, false): return 4018; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, false): return 4026; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, false): return 4034; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, false): return 4042; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, true): return 3987; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, true): return 3995; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, true): return 4003; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, true): return 4011; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, true): return 4019; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, true): return 4027; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, true): return 4035; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, true): return 4043; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false): return 4050; + case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8290; + case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8294; + case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8291; + case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8292; + case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8289; + case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8293; + case BrownStainedGlass::BrownStainedGlass(): return 3589; + case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, true): return 6218; + case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, true): return 6222; + case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, true): return 6226; + case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, true): return 6230; + case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, true): return 6234; + case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, false): return 6207; + case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, false): return 6211; + case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, false): return 6215; + case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, false): return 6219; + case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, false): return 6223; + case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, false): return 6227; + case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, false): return 6231; + case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, true): return 6206; + case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, true): return 6210; + case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, true): return 6214; + case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, false): return 6235; + case BrownTerracotta::BrownTerracotta(): return 5816; + case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7159; + case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XM): return 7160; + case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7158; + case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XP): return 7161; + case BrownWool::BrownWool(): return 1095; + case BubbleColumn::BubbleColumn(true): return 8576; + case BubbleColumn::BubbleColumn(false): return 8577; + case BubbleCoral::BubbleCoral(): return 8461; + case BubbleCoralBlock::BubbleCoralBlock(): return 8456; + case BubbleCoralFan::BubbleCoralFan(): return 8559; + case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8521; + case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8525; + case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8523; + case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8527; + case Cactus::Cactus(11): return 3436; + case Cactus::Cactus(4): return 3429; + case Cactus::Cactus(12): return 3437; + case Cactus::Cactus(5): return 3430; + case Cactus::Cactus(13): return 3438; + case Cactus::Cactus(6): return 3431; + case Cactus::Cactus(14): return 3439; + case Cactus::Cactus(7): return 3432; + case Cactus::Cactus(0): return 3425; + case Cactus::Cactus(8): return 3433; + case Cactus::Cactus(1): return 3426; + case Cactus::Cactus(9): return 3434; + case Cactus::Cactus(2): return 3427; + case Cactus::Cactus(10): return 3435; + case Cactus::Cactus(3): return 3428; + case Cactus::Cactus(15): return 3440; + case Cake::Cake(6): return 3512; + case Cake::Cake(0): return 3506; + case Cake::Cake(1): return 3507; + case Cake::Cake(2): return 3508; + case Cake::Cake(3): return 3509; + case Cake::Cake(4): return 3510; + case Cake::Cake(5): return 3511; + case Carrots::Carrots(0): return 5287; + case Carrots::Carrots(2): return 5289; + case Carrots::Carrots(4): return 5291; + case Carrots::Carrots(6): return 5293; + case Carrots::Carrots(1): return 5288; + case Carrots::Carrots(3): return 5290; + case Carrots::Carrots(5): return 5292; + case Carrots::Carrots(7): return 5294; + case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZP): return 3499; + case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZM): return 3498; + case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XM): return 3500; + case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XP): return 3501; + case Cauldron::Cauldron(0): return 4621; + case Cauldron::Cauldron(1): return 4622; + case Cauldron::Cauldron(2): return 4623; + case Cauldron::Cauldron(3): return 4624; + case CaveAir::CaveAir(): return 8575; + case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 8176; + case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 8177; + case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 8178; + case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 8179; + case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 8180; + case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 8181; + case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 8182; + case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 8183; + case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 8184; + case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 8185; + case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 8186; + case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 8187; + case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Single): return 1729; + case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Left): return 1731; + case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Right): return 1733; + case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Single): return 1735; + case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Left): return 1737; + case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Right): return 1739; + case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Single): return 1741; + case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Left): return 1743; + case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Right): return 1745; + case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Single): return 1747; + case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Left): return 1749; + case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Right): return 1751; + case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZP): return 5572; + case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XM): return 5573; + case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZM): return 5571; + case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XP): return 5574; + case ChiseledQuartzBlock::ChiseledQuartzBlock(): return 5696; + case ChiseledRedSandstone::ChiseledRedSandstone(): return 7175; + case ChiseledSandstone::ChiseledSandstone(): return 246; + case ChiseledStoneBricks::ChiseledStoneBricks(): return 3986; + case ChorusFlower::ChorusFlower(1): return 8068; + case ChorusFlower::ChorusFlower(3): return 8070; + case ChorusFlower::ChorusFlower(5): return 8072; + case ChorusFlower::ChorusFlower(0): return 8067; + case ChorusFlower::ChorusFlower(2): return 8069; + case ChorusFlower::ChorusFlower(4): return 8071; + case ChorusPlant::ChorusPlant(false, true, true, true, false, false): return 8038; + case ChorusPlant::ChorusPlant(false, false, true, true, false, false): return 8054; + case ChorusPlant::ChorusPlant(true, true, true, false, true, true): return 8007; + case ChorusPlant::ChorusPlant(true, false, true, false, true, true): return 8023; + case ChorusPlant::ChorusPlant(false, true, true, false, true, true): return 8039; + case ChorusPlant::ChorusPlant(false, false, true, false, true, true): return 8055; + case ChorusPlant::ChorusPlant(true, true, true, false, true, false): return 8008; + case ChorusPlant::ChorusPlant(true, false, true, false, true, false): return 8024; + case ChorusPlant::ChorusPlant(false, true, true, false, true, false): return 8040; + case ChorusPlant::ChorusPlant(false, false, true, false, true, false): return 8056; + case ChorusPlant::ChorusPlant(true, true, true, false, false, true): return 8009; + case ChorusPlant::ChorusPlant(true, false, true, false, false, true): return 8025; + case ChorusPlant::ChorusPlant(false, true, true, false, false, true): return 8041; + case ChorusPlant::ChorusPlant(false, false, true, false, false, true): return 8057; + case ChorusPlant::ChorusPlant(true, true, true, false, false, false): return 8010; + case ChorusPlant::ChorusPlant(true, false, true, false, false, false): return 8026; + case ChorusPlant::ChorusPlant(false, true, true, false, false, false): return 8042; + case ChorusPlant::ChorusPlant(false, false, true, false, false, false): return 8058; + case ChorusPlant::ChorusPlant(true, true, false, true, true, true): return 8011; + case ChorusPlant::ChorusPlant(true, false, false, true, true, true): return 8027; + case ChorusPlant::ChorusPlant(false, true, false, true, true, true): return 8043; + case ChorusPlant::ChorusPlant(false, false, false, true, true, true): return 8059; + case ChorusPlant::ChorusPlant(true, true, false, true, true, false): return 8012; + case ChorusPlant::ChorusPlant(true, false, false, true, true, false): return 8028; + case ChorusPlant::ChorusPlant(false, true, false, true, true, false): return 8044; + case ChorusPlant::ChorusPlant(false, false, false, true, true, false): return 8060; + case ChorusPlant::ChorusPlant(true, true, false, true, false, true): return 8013; + case ChorusPlant::ChorusPlant(true, false, false, true, false, true): return 8029; + case ChorusPlant::ChorusPlant(false, true, false, true, false, true): return 8045; + case ChorusPlant::ChorusPlant(false, false, false, true, false, true): return 8061; + case ChorusPlant::ChorusPlant(true, true, false, true, false, false): return 8014; + case ChorusPlant::ChorusPlant(true, false, false, true, false, false): return 8030; + case ChorusPlant::ChorusPlant(false, true, false, true, false, false): return 8046; + case ChorusPlant::ChorusPlant(false, false, false, true, false, false): return 8062; + case ChorusPlant::ChorusPlant(true, true, false, false, true, true): return 8015; + case ChorusPlant::ChorusPlant(true, false, false, false, true, true): return 8031; + case ChorusPlant::ChorusPlant(false, true, false, false, true, true): return 8047; + case ChorusPlant::ChorusPlant(false, false, false, false, true, true): return 8063; + case ChorusPlant::ChorusPlant(true, true, false, false, true, false): return 8016; + case ChorusPlant::ChorusPlant(true, false, false, false, true, false): return 8032; + case ChorusPlant::ChorusPlant(false, true, false, false, true, false): return 8048; + case ChorusPlant::ChorusPlant(false, false, false, false, true, false): return 8064; + case ChorusPlant::ChorusPlant(true, true, false, false, false, true): return 8017; + case ChorusPlant::ChorusPlant(true, false, false, false, false, true): return 8033; + case ChorusPlant::ChorusPlant(false, true, false, false, false, true): return 8049; + case ChorusPlant::ChorusPlant(false, false, false, false, false, true): return 8065; + case ChorusPlant::ChorusPlant(true, true, false, false, false, false): return 8018; + case ChorusPlant::ChorusPlant(true, false, false, false, false, false): return 8034; + case ChorusPlant::ChorusPlant(false, true, false, false, false, false): return 8050; + case ChorusPlant::ChorusPlant(true, true, true, true, true, true): return 8003; + case ChorusPlant::ChorusPlant(true, false, true, true, true, true): return 8019; + case ChorusPlant::ChorusPlant(false, true, true, true, true, true): return 8035; + case ChorusPlant::ChorusPlant(false, false, true, true, true, true): return 8051; + case ChorusPlant::ChorusPlant(true, true, true, true, true, false): return 8004; + case ChorusPlant::ChorusPlant(true, false, true, true, true, false): return 8020; + case ChorusPlant::ChorusPlant(false, true, true, true, true, false): return 8036; + case ChorusPlant::ChorusPlant(false, false, true, true, true, false): return 8052; + case ChorusPlant::ChorusPlant(true, true, true, true, false, true): return 8005; + case ChorusPlant::ChorusPlant(true, false, true, true, false, true): return 8021; + case ChorusPlant::ChorusPlant(false, true, true, true, false, true): return 8037; + case ChorusPlant::ChorusPlant(false, false, true, true, false, true): return 8053; + case ChorusPlant::ChorusPlant(true, true, true, true, false, false): return 8006; + case ChorusPlant::ChorusPlant(true, false, true, true, false, false): return 8022; + case ChorusPlant::ChorusPlant(false, false, false, false, false, false): return 8066; + case Clay::Clay(): return 3441; + case CoalBlock::CoalBlock(): return 6840; + case CoalOre::CoalOre(): return 71; + case CoarseDirt::CoarseDirt(): return 11; + case Cobblestone::Cobblestone(): return 14; + case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Top): return 7312; + case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Bottom): return 7314; + case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Double): return 7316; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3190; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3222; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3254; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3192; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3224; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3256; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3194; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3226; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3258; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3196; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3228; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3260; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3198; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3230; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3262; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3200; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3232; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3264; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3202; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3234; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3266; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3204; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3236; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3268; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3206; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3238; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3208; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3240; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3210; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3242; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3212; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3244; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3214; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3246; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3216; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3248; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3218; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3250; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3220; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3252; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5140; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5156; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5172; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5188; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5143; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5159; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5175; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5191; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5144; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5160; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5176; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5192; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5147; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5163; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5179; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5195; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5148; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5164; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5180; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5196; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5151; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5167; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5183; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5199; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5152; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5168; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5184; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5139; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5155; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5171; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5187; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5200; + case Cobweb::Cobweb(): return 1040; + case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZM): return 4638; + case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZP): return 4639; + case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XM): return 4640; + case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XP): return 4641; + case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZM): return 4642; + case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZP): return 4643; + case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XM): return 4644; + case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XP): return 4645; + case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZM): return 4646; + case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZP): return 4647; + case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XM): return 4648; + case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XP): return 4649; + case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 5131; + case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 5132; + case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 5133; + case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 5134; + case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 5135; + case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 5124; + case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 5125; + case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 5126; + case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 5127; + case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 5128; + case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 5129; + case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 5130; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, true): return 5641; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, false): return 5642; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, true): return 5643; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, false): return 5644; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, true): return 5645; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, false): return 5646; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, true): return 5647; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, false): return 5648; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, true): return 5649; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, true): return 5635; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, false): return 5636; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, true): return 5637; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, false): return 5638; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, true): return 5639; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, false): return 5640; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, false): return 5650; + case Conduit::Conduit(): return 8573; + case CrackedStoneBricks::CrackedStoneBricks(): return 3985; + case CraftingTable::CraftingTable(): return 3050; + case CreeperHead::CreeperHead(5): return 5536; + case CreeperHead::CreeperHead(6): return 5537; + case CreeperHead::CreeperHead(7): return 5538; + case CreeperHead::CreeperHead(8): return 5539; + case CreeperHead::CreeperHead(9): return 5540; + case CreeperHead::CreeperHead(10): return 5541; + case CreeperHead::CreeperHead(11): return 5542; + case CreeperHead::CreeperHead(12): return 5543; + case CreeperHead::CreeperHead(13): return 5544; + case CreeperHead::CreeperHead(14): return 5545; + case CreeperHead::CreeperHead(0): return 5531; + case CreeperHead::CreeperHead(1): return 5532; + case CreeperHead::CreeperHead(2): return 5533; + case CreeperHead::CreeperHead(3): return 5534; + case CreeperHead::CreeperHead(4): return 5535; + case CreeperHead::CreeperHead(15): return 5546; + case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZM): return 5527; + case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZP): return 5528; + case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XM): return 5529; + case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XP): return 5530; + case CutRedSandstone::CutRedSandstone(): return 7176; + case CutSandstone::CutSandstone(): return 247; + case CyanBanner::CyanBanner(8): return 7006; + case CyanBanner::CyanBanner(9): return 7007; + case CyanBanner::CyanBanner(10): return 7008; + case CyanBanner::CyanBanner(11): return 7009; + case CyanBanner::CyanBanner(12): return 7010; + case CyanBanner::CyanBanner(13): return 7011; + case CyanBanner::CyanBanner(14): return 7012; + case CyanBanner::CyanBanner(0): return 6998; + case CyanBanner::CyanBanner(1): return 6999; + case CyanBanner::CyanBanner(2): return 7000; + case CyanBanner::CyanBanner(3): return 7001; + case CyanBanner::CyanBanner(4): return 7002; + case CyanBanner::CyanBanner(5): return 7003; + case CyanBanner::CyanBanner(6): return 7004; + case CyanBanner::CyanBanner(7): return 7005; + case CyanBanner::CyanBanner(15): return 7013; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Foot): return 893; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Foot): return 895; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Foot): return 897; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Foot): return 899; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Foot): return 901; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Foot): return 903; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Foot): return 905; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Head): return 892; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Head): return 894; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Head): return 896; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Head): return 898; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Head): return 900; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Head): return 902; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Head): return 904; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Head): return 906; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Foot): return 907; + case CyanCarpet::CyanCarpet(): return 6832; + case CyanConcrete::CyanConcrete(): return 8386; + case CyanConcretePowder::CyanConcretePowder(): return 8402; + case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8349; + case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8351; + case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8350; + case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8352; + case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8276; + case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8273; + case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8274; + case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8271; + case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8275; + case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8272; + case CyanStainedGlass::CyanStainedGlass(): return 3586; + case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, true): return 6110; + case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, true): return 6114; + case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, true): return 6118; + case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, true): return 6122; + case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, true): return 6126; + case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, true): return 6130; + case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, true): return 6134; + case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, true): return 6138; + case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, false): return 6111; + case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, false): return 6115; + case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, false): return 6119; + case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, false): return 6123; + case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, false): return 6127; + case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, false): return 6131; + case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, false): return 6135; + case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, false): return 6139; + case CyanTerracotta::CyanTerracotta(): return 5813; + case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7147; + case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XM): return 7148; + case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7146; + case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XP): return 7149; + case CyanWool::CyanWool(): return 1092; + case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZM): return 5575; + case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZP): return 5576; + case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XM): return 5577; + case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XP): return 5578; + case Dandelion::Dandelion(): return 1111; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5443; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5424; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5428; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5432; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5436; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5440; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5444; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5425; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5429; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5433; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5437; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5441; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5445; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5426; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5430; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5434; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5438; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5442; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5446; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5423; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5427; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5431; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5435; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5439; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 7975; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 7991; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 7944; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 7960; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 7976; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 7992; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 7945; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 7961; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 7977; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 7993; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 7946; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 7962; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 7978; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 7994; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 7947; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 7963; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 7979; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 7995; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 7948; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 7964; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 7980; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 7933; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 7949; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 7965; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 7981; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 7934; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 7950; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 7966; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 7982; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 7935; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 7951; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 7967; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 7983; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 7936; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 7952; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 7968; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 7984; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 7937; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 7953; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 7969; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 7985; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 7938; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 7954; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 7970; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 7986; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 7939; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 7955; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 7971; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 7987; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 7940; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 7956; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 7972; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 7988; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 7941; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 7957; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 7973; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 7989; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 7942; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 7958; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 7974; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 7990; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 7943; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 7959; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 7996; + case DarkOakFence::DarkOakFence(false, false, false, true): return 7675; + case DarkOakFence::DarkOakFence(true, true, true, false): return 7648; + case DarkOakFence::DarkOakFence(true, true, false, false): return 7652; + case DarkOakFence::DarkOakFence(true, false, true, false): return 7656; + case DarkOakFence::DarkOakFence(true, false, false, false): return 7660; + case DarkOakFence::DarkOakFence(false, true, true, false): return 7664; + case DarkOakFence::DarkOakFence(false, true, false, false): return 7668; + case DarkOakFence::DarkOakFence(false, false, true, false): return 7672; + case DarkOakFence::DarkOakFence(true, true, true, true): return 7647; + case DarkOakFence::DarkOakFence(true, true, false, true): return 7651; + case DarkOakFence::DarkOakFence(true, false, true, true): return 7655; + case DarkOakFence::DarkOakFence(true, false, false, true): return 7659; + case DarkOakFence::DarkOakFence(false, true, true, true): return 7663; + case DarkOakFence::DarkOakFence(false, true, false, true): return 7667; + case DarkOakFence::DarkOakFence(false, false, true, true): return 7671; + case DarkOakFence::DarkOakFence(false, false, false, false): return 7676; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7489; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7493; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7497; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7501; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7505; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7509; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7513; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7486; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7490; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7494; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7498; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7502; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7506; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7510; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7514; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7487; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7491; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7495; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7499; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7503; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7507; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7511; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7515; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7488; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7492; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7496; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7500; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7504; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7508; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7512; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7485; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7516; + case DarkOakLeaves::DarkOakLeaves(4, false): return 221; + case DarkOakLeaves::DarkOakLeaves(1, true): return 214; + case DarkOakLeaves::DarkOakLeaves(5, true): return 222; + case DarkOakLeaves::DarkOakLeaves(1, false): return 215; + case DarkOakLeaves::DarkOakLeaves(5, false): return 223; + case DarkOakLeaves::DarkOakLeaves(2, true): return 216; + case DarkOakLeaves::DarkOakLeaves(6, true): return 224; + case DarkOakLeaves::DarkOakLeaves(2, false): return 217; + case DarkOakLeaves::DarkOakLeaves(6, false): return 225; + case DarkOakLeaves::DarkOakLeaves(3, true): return 218; + case DarkOakLeaves::DarkOakLeaves(7, true): return 226; + case DarkOakLeaves::DarkOakLeaves(3, false): return 219; + case DarkOakLeaves::DarkOakLeaves(7, false): return 227; + case DarkOakLeaves::DarkOakLeaves(4, true): return 220; + case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Y): return 88; + case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Z): return 89; + case DarkOakLog::DarkOakLog(DarkOakLog::Axis::X): return 87; + case DarkOakPlanks::DarkOakPlanks(): return 20; + case DarkOakPressurePlate::DarkOakPressurePlate(true): return 3377; + case DarkOakPressurePlate::DarkOakPressurePlate(false): return 3378; + case DarkOakSapling::DarkOakSapling(0): return 31; + case DarkOakSapling::DarkOakSapling(1): return 32; + case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Top): return 7288; + case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Bottom): return 7290; + case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Double): return 7292; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6473; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6475; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6413; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6477; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6415; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6479; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6417; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6481; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6419; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6483; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6421; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6485; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6423; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6487; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6425; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6489; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6427; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6491; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6429; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6431; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6433; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6435; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6437; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6439; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6441; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6443; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6445; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6447; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6449; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6451; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6453; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6455; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6457; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6459; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6461; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6463; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6465; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6467; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6469; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6471; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, true): return 3918; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, true): return 3926; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, true): return 3934; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, true): return 3942; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, true): return 3950; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, true): return 3958; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, true): return 3966; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, true): return 3974; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, false): return 3920; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, false): return 3928; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, false): return 3936; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, false): return 3944; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, false): return 3952; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, false): return 3960; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, false): return 3968; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, true): return 3914; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, true): return 3922; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, true): return 3930; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, true): return 3938; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, true): return 3946; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, true): return 3954; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, true): return 3962; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, true): return 3970; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, false): return 3916; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, false): return 3924; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, false): return 3932; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, false): return 3940; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, false): return 3948; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, false): return 3956; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, false): return 3964; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, false): return 3972; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, false): return 3976; + case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Y): return 124; + case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Z): return 125; + case DarkOakWood::DarkOakWood(DarkOakWood::Axis::X): return 123; + case DarkPrismarine::DarkPrismarine(): return 6560; + case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Top): return 6814; + case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Bottom): return 6816; + case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Double): return 6818; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 6790; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 6728; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 6792; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 6730; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 6794; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 6732; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 6796; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 6734; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 6798; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 6736; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 6800; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 6738; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 6740; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 6742; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 6744; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 6746; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 6748; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 6750; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 6752; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 6754; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 6756; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 6758; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 6760; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 6762; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 6764; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 6766; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 6768; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 6770; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 6772; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 6774; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 6776; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 6778; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 6780; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 6782; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 6784; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 6722; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 6786; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 6724; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 6788; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 6726; + case DaylightDetector::DaylightDetector(true, 9): return 5660; + case DaylightDetector::DaylightDetector(true, 13): return 5664; + case DaylightDetector::DaylightDetector(false, 1): return 5668; + case DaylightDetector::DaylightDetector(false, 5): return 5672; + case DaylightDetector::DaylightDetector(false, 9): return 5676; + case DaylightDetector::DaylightDetector(false, 13): return 5680; + case DaylightDetector::DaylightDetector(true, 2): return 5653; + case DaylightDetector::DaylightDetector(true, 6): return 5657; + case DaylightDetector::DaylightDetector(true, 10): return 5661; + case DaylightDetector::DaylightDetector(true, 14): return 5665; + case DaylightDetector::DaylightDetector(false, 2): return 5669; + case DaylightDetector::DaylightDetector(false, 6): return 5673; + case DaylightDetector::DaylightDetector(false, 10): return 5677; + case DaylightDetector::DaylightDetector(false, 14): return 5681; + case DaylightDetector::DaylightDetector(true, 3): return 5654; + case DaylightDetector::DaylightDetector(true, 7): return 5658; + case DaylightDetector::DaylightDetector(true, 11): return 5662; + case DaylightDetector::DaylightDetector(true, 15): return 5666; + case DaylightDetector::DaylightDetector(false, 3): return 5670; + case DaylightDetector::DaylightDetector(false, 7): return 5674; + case DaylightDetector::DaylightDetector(false, 11): return 5678; + case DaylightDetector::DaylightDetector(true, 0): return 5651; + case DaylightDetector::DaylightDetector(true, 4): return 5655; + case DaylightDetector::DaylightDetector(true, 8): return 5659; + case DaylightDetector::DaylightDetector(true, 12): return 5663; + case DaylightDetector::DaylightDetector(false, 0): return 5667; + case DaylightDetector::DaylightDetector(false, 4): return 5671; + case DaylightDetector::DaylightDetector(false, 8): return 5675; + case DaylightDetector::DaylightDetector(false, 12): return 5679; + case DaylightDetector::DaylightDetector(true, 1): return 5652; + case DaylightDetector::DaylightDetector(true, 5): return 5656; + case DaylightDetector::DaylightDetector(false, 15): return 5682; + case DeadBrainCoralBlock::DeadBrainCoralBlock(): return 8450; + case DeadBrainCoralFan::DeadBrainCoralFan(): return 8547; + case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8473; + case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8477; + case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8475; + case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8479; + case DeadBubbleCoralBlock::DeadBubbleCoralBlock(): return 8451; + case DeadBubbleCoralFan::DeadBubbleCoralFan(): return 8549; + case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8483; + case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8481; + case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8485; + case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8487; + case DeadBush::DeadBush(): return 1043; + case DeadFireCoralBlock::DeadFireCoralBlock(): return 8452; + case DeadFireCoralFan::DeadFireCoralFan(): return 8551; + case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8493; + case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8491; + case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8489; + case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8495; + case DeadHornCoralBlock::DeadHornCoralBlock(): return 8453; + case DeadHornCoralFan::DeadHornCoralFan(): return 8553; + case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8497; + case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8501; + case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8499; + case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8503; + case DeadTubeCoralBlock::DeadTubeCoralBlock(): return 8449; + case DeadTubeCoralFan::DeadTubeCoralFan(): return 8545; + case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8465; + case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8469; + case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8467; + case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8471; + case DetectorRail::DetectorRail(true, DetectorRail::Shape::EastWest): return 1017; + case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingWest): return 1019; + case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingSouth): return 1021; + case DetectorRail::DetectorRail(false, DetectorRail::Shape::EastWest): return 1023; + case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingNorth): return 1026; + case DetectorRail::DetectorRail(true, DetectorRail::Shape::NorthSouth): return 1016; + case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingEast): return 1018; + case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingNorth): return 1020; + case DetectorRail::DetectorRail(false, DetectorRail::Shape::NorthSouth): return 1022; + case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingEast): return 1024; + case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingSouth): return 1027; + case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingWest): return 1025; + case DiamondBlock::DiamondBlock(): return 3049; + case DiamondOre::DiamondOre(): return 3048; + case Diorite::Diorite(): return 4; + case Dirt::Dirt(): return 10; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, true): return 243; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, false): return 236; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, false): return 244; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, true): return 237; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, false): return 238; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, true): return 239; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, false): return 240; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, true): return 233; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, true): return 241; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, false): return 234; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, false): return 242; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, true): return 235; + case DragonEgg::DragonEgg(): return 4635; + case DragonHead::DragonHead(0): return 5551; + case DragonHead::DragonHead(1): return 5552; + case DragonHead::DragonHead(2): return 5553; + case DragonHead::DragonHead(3): return 5554; + case DragonHead::DragonHead(4): return 5555; + case DragonHead::DragonHead(5): return 5556; + case DragonHead::DragonHead(6): return 5557; + case DragonHead::DragonHead(7): return 5558; + case DragonHead::DragonHead(8): return 5559; + case DragonHead::DragonHead(9): return 5560; + case DragonHead::DragonHead(10): return 5561; + case DragonHead::DragonHead(11): return 5562; + case DragonHead::DragonHead(12): return 5563; + case DragonHead::DragonHead(13): return 5564; + case DragonHead::DragonHead(14): return 5565; + case DragonHead::DragonHead(15): return 5566; + case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZP): return 5548; + case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XM): return 5549; + case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZM): return 5547; + case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XP): return 5550; + case DriedKelpBlock::DriedKelpBlock(): return 8436; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, true): return 5792; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, false): return 5793; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, true): return 5794; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, false): return 5795; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, true): return 5796; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, false): return 5797; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, true): return 5798; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, false): return 5799; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, true): return 5800; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, false): return 5801; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, true): return 5802; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, false): return 5803; + case EmeraldBlock::EmeraldBlock(): return 4883; + case EmeraldOre::EmeraldOre(): return 4730; + case EnchantingTable::EnchantingTable(): return 4612; + case EndGateway::EndGateway(): return 8163; + case EndPortal::EndPortal(): return 4625; + case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XP): return 4629; + case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZP): return 4631; + case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZM): return 4626; + case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XM): return 4628; + case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZM): return 4630; + case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XM): return 4632; + case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZP): return 4627; + case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XP): return 4633; + case EndRod::EndRod(eBlockFace::BLOCK_FACE_XP): return 7998; + case EndRod::EndRod(eBlockFace::BLOCK_FACE_XM): return 8000; + case EndRod::EndRod(eBlockFace::BLOCK_FACE_YM): return 8002; + case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZM): return 7997; + case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZP): return 7999; + case EndRod::EndRod(eBlockFace::BLOCK_FACE_YP): return 8001; + case EndStone::EndStone(): return 4634; + case EndStoneBricks::EndStoneBricks(): return 8157; + case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZP): return 4734; + case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XM): return 4736; + case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZM): return 4732; + case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XP): return 4738; + case Farmland::Farmland(5): return 3064; + case Farmland::Farmland(6): return 3065; + case Farmland::Farmland(0): return 3059; + case Farmland::Farmland(1): return 3060; + case Farmland::Farmland(2): return 3061; + case Farmland::Farmland(3): return 3062; + case Farmland::Farmland(4): return 3063; + case Farmland::Farmland(7): return 3066; + case Fern::Fern(): return 1042; + case Fire::Fire(11, false, false, true, false, true): return 1513; + case Fire::Fire(3, false, false, true, false, false): return 1258; + case Fire::Fire(11, false, false, true, false, false): return 1514; + case Fire::Fire(3, false, false, false, true, true): return 1259; + case Fire::Fire(11, false, false, false, true, true): return 1515; + case Fire::Fire(3, false, false, false, true, false): return 1260; + case Fire::Fire(11, false, false, false, true, false): return 1516; + case Fire::Fire(3, false, false, false, false, true): return 1261; + case Fire::Fire(11, false, false, false, false, true): return 1517; + case Fire::Fire(3, false, false, false, false, false): return 1262; + case Fire::Fire(11, false, false, false, false, false): return 1518; + case Fire::Fire(4, true, true, true, true, true): return 1263; + case Fire::Fire(12, true, true, true, true, true): return 1519; + case Fire::Fire(4, true, true, true, true, false): return 1264; + case Fire::Fire(12, true, true, true, true, false): return 1520; + case Fire::Fire(4, true, true, true, false, true): return 1265; + case Fire::Fire(12, true, true, true, false, true): return 1521; + case Fire::Fire(4, true, true, true, false, false): return 1266; + case Fire::Fire(12, true, true, true, false, false): return 1522; + case Fire::Fire(4, true, true, false, true, true): return 1267; + case Fire::Fire(12, true, true, false, true, true): return 1523; + case Fire::Fire(4, true, true, false, true, false): return 1268; + case Fire::Fire(12, true, true, false, true, false): return 1524; + case Fire::Fire(4, true, true, false, false, true): return 1269; + case Fire::Fire(12, true, true, false, false, true): return 1525; + case Fire::Fire(4, true, true, false, false, false): return 1270; + case Fire::Fire(12, true, true, false, false, false): return 1526; + case Fire::Fire(4, true, false, true, true, true): return 1271; + case Fire::Fire(12, true, false, true, true, true): return 1527; + case Fire::Fire(4, true, false, true, true, false): return 1272; + case Fire::Fire(12, true, false, true, true, false): return 1528; + case Fire::Fire(4, true, false, true, false, true): return 1273; + case Fire::Fire(12, true, false, true, false, true): return 1529; + case Fire::Fire(4, true, false, true, false, false): return 1274; + case Fire::Fire(12, true, false, true, false, false): return 1530; + case Fire::Fire(4, true, false, false, true, true): return 1275; + case Fire::Fire(12, true, false, false, true, true): return 1531; + case Fire::Fire(4, true, false, false, true, false): return 1276; + case Fire::Fire(12, true, false, false, true, false): return 1532; + case Fire::Fire(4, true, false, false, false, true): return 1277; + case Fire::Fire(12, true, false, false, false, true): return 1533; + case Fire::Fire(4, true, false, false, false, false): return 1278; + case Fire::Fire(12, true, false, false, false, false): return 1534; + case Fire::Fire(4, false, true, true, true, true): return 1279; + case Fire::Fire(12, false, true, true, true, true): return 1535; + case Fire::Fire(4, false, true, true, true, false): return 1280; + case Fire::Fire(12, false, true, true, true, false): return 1536; + case Fire::Fire(4, false, true, true, false, true): return 1281; + case Fire::Fire(12, false, true, true, false, true): return 1537; + case Fire::Fire(4, false, true, true, false, false): return 1282; + case Fire::Fire(12, false, true, true, false, false): return 1538; + case Fire::Fire(4, false, true, false, true, true): return 1283; + case Fire::Fire(12, false, true, false, true, true): return 1539; + case Fire::Fire(4, false, true, false, true, false): return 1284; + case Fire::Fire(12, false, true, false, true, false): return 1540; + case Fire::Fire(4, false, true, false, false, true): return 1285; + case Fire::Fire(12, false, true, false, false, true): return 1541; + case Fire::Fire(4, false, true, false, false, false): return 1286; + case Fire::Fire(12, false, true, false, false, false): return 1542; + case Fire::Fire(4, false, false, true, true, true): return 1287; + case Fire::Fire(12, false, false, true, true, true): return 1543; + case Fire::Fire(4, false, false, true, true, false): return 1288; + case Fire::Fire(12, false, false, true, true, false): return 1544; + case Fire::Fire(4, false, false, true, false, true): return 1289; + case Fire::Fire(12, false, false, true, false, true): return 1545; + case Fire::Fire(4, false, false, true, false, false): return 1290; + case Fire::Fire(12, false, false, true, false, false): return 1546; + case Fire::Fire(4, false, false, false, true, true): return 1291; + case Fire::Fire(12, false, false, false, true, true): return 1547; + case Fire::Fire(4, false, false, false, true, false): return 1292; + case Fire::Fire(12, false, false, false, true, false): return 1548; + case Fire::Fire(4, false, false, false, false, true): return 1293; + case Fire::Fire(12, false, false, false, false, true): return 1549; + case Fire::Fire(4, false, false, false, false, false): return 1294; + case Fire::Fire(12, false, false, false, false, false): return 1550; + case Fire::Fire(5, true, true, true, true, true): return 1295; + case Fire::Fire(13, true, true, true, true, true): return 1551; + case Fire::Fire(5, true, true, true, true, false): return 1296; + case Fire::Fire(13, true, true, true, true, false): return 1552; + case Fire::Fire(5, true, true, true, false, true): return 1297; + case Fire::Fire(13, true, true, true, false, true): return 1553; + case Fire::Fire(5, true, true, true, false, false): return 1298; + case Fire::Fire(13, true, true, true, false, false): return 1554; + case Fire::Fire(5, true, true, false, true, true): return 1299; + case Fire::Fire(13, true, true, false, true, true): return 1555; + case Fire::Fire(5, true, true, false, true, false): return 1300; + case Fire::Fire(13, true, true, false, true, false): return 1556; + case Fire::Fire(5, true, true, false, false, true): return 1301; + case Fire::Fire(13, true, true, false, false, true): return 1557; + case Fire::Fire(5, true, true, false, false, false): return 1302; + case Fire::Fire(13, true, true, false, false, false): return 1558; + case Fire::Fire(5, true, false, true, true, true): return 1303; + case Fire::Fire(13, true, false, true, true, true): return 1559; + case Fire::Fire(5, true, false, true, true, false): return 1304; + case Fire::Fire(13, true, false, true, true, false): return 1560; + case Fire::Fire(5, true, false, true, false, true): return 1305; + case Fire::Fire(13, true, false, true, false, true): return 1561; + case Fire::Fire(5, true, false, true, false, false): return 1306; + case Fire::Fire(13, true, false, true, false, false): return 1562; + case Fire::Fire(5, true, false, false, true, true): return 1307; + case Fire::Fire(13, true, false, false, true, true): return 1563; + case Fire::Fire(5, true, false, false, true, false): return 1308; + case Fire::Fire(13, true, false, false, true, false): return 1564; + case Fire::Fire(5, true, false, false, false, true): return 1309; + case Fire::Fire(13, true, false, false, false, true): return 1565; + case Fire::Fire(5, true, false, false, false, false): return 1310; + case Fire::Fire(13, true, false, false, false, false): return 1566; + case Fire::Fire(5, false, true, true, true, true): return 1311; + case Fire::Fire(13, false, true, true, true, true): return 1567; + case Fire::Fire(5, false, true, true, true, false): return 1312; + case Fire::Fire(13, false, true, true, true, false): return 1568; + case Fire::Fire(5, false, true, true, false, true): return 1313; + case Fire::Fire(13, false, true, true, false, true): return 1569; + case Fire::Fire(5, false, true, true, false, false): return 1314; + case Fire::Fire(13, false, true, true, false, false): return 1570; + case Fire::Fire(5, false, true, false, true, true): return 1315; + case Fire::Fire(13, false, true, false, true, true): return 1571; + case Fire::Fire(5, false, true, false, true, false): return 1316; + case Fire::Fire(13, false, true, false, true, false): return 1572; + case Fire::Fire(5, false, true, false, false, true): return 1317; + case Fire::Fire(13, false, true, false, false, true): return 1573; + case Fire::Fire(5, false, true, false, false, false): return 1318; + case Fire::Fire(13, false, true, false, false, false): return 1574; + case Fire::Fire(5, false, false, true, true, true): return 1319; + case Fire::Fire(13, false, false, true, true, true): return 1575; + case Fire::Fire(5, false, false, true, true, false): return 1320; + case Fire::Fire(13, false, false, true, true, false): return 1576; + case Fire::Fire(5, false, false, true, false, true): return 1321; + case Fire::Fire(13, false, false, true, false, true): return 1577; + case Fire::Fire(5, false, false, true, false, false): return 1322; + case Fire::Fire(13, false, false, true, false, false): return 1578; + case Fire::Fire(5, false, false, false, true, true): return 1323; + case Fire::Fire(13, false, false, false, true, true): return 1579; + case Fire::Fire(5, false, false, false, true, false): return 1324; + case Fire::Fire(13, false, false, false, true, false): return 1580; + case Fire::Fire(5, false, false, false, false, true): return 1325; + case Fire::Fire(13, false, false, false, false, true): return 1581; + case Fire::Fire(5, false, false, false, false, false): return 1326; + case Fire::Fire(13, false, false, false, false, false): return 1582; + case Fire::Fire(6, true, true, true, true, true): return 1327; + case Fire::Fire(14, true, true, true, true, true): return 1583; + case Fire::Fire(6, true, true, true, true, false): return 1328; + case Fire::Fire(14, true, true, true, true, false): return 1584; + case Fire::Fire(6, true, true, true, false, true): return 1329; + case Fire::Fire(14, true, true, true, false, true): return 1585; + case Fire::Fire(6, true, true, true, false, false): return 1330; + case Fire::Fire(14, true, true, true, false, false): return 1586; + case Fire::Fire(6, true, true, false, true, true): return 1331; + case Fire::Fire(14, true, true, false, true, true): return 1587; + case Fire::Fire(6, true, true, false, true, false): return 1332; + case Fire::Fire(14, true, true, false, true, false): return 1588; + case Fire::Fire(6, true, true, false, false, true): return 1333; + case Fire::Fire(14, true, true, false, false, true): return 1589; + case Fire::Fire(6, true, true, false, false, false): return 1334; + case Fire::Fire(14, true, true, false, false, false): return 1590; + case Fire::Fire(6, true, false, true, true, true): return 1335; + case Fire::Fire(14, true, false, true, true, true): return 1591; + case Fire::Fire(6, true, false, true, true, false): return 1336; + case Fire::Fire(14, true, false, true, true, false): return 1592; + case Fire::Fire(6, true, false, true, false, true): return 1337; + case Fire::Fire(14, true, false, true, false, true): return 1593; + case Fire::Fire(6, true, false, true, false, false): return 1338; + case Fire::Fire(14, true, false, true, false, false): return 1594; + case Fire::Fire(6, true, false, false, true, true): return 1339; + case Fire::Fire(14, true, false, false, true, true): return 1595; + case Fire::Fire(6, true, false, false, true, false): return 1340; + case Fire::Fire(14, true, false, false, true, false): return 1596; + case Fire::Fire(6, true, false, false, false, true): return 1341; + case Fire::Fire(14, true, false, false, false, true): return 1597; + case Fire::Fire(6, true, false, false, false, false): return 1342; + case Fire::Fire(14, true, false, false, false, false): return 1598; + case Fire::Fire(6, false, true, true, true, true): return 1343; + case Fire::Fire(14, false, true, true, true, true): return 1599; + case Fire::Fire(6, false, true, true, true, false): return 1344; + case Fire::Fire(14, false, true, true, true, false): return 1600; + case Fire::Fire(6, false, true, true, false, true): return 1345; + case Fire::Fire(14, false, true, true, false, true): return 1601; + case Fire::Fire(6, false, true, true, false, false): return 1346; + case Fire::Fire(14, false, true, true, false, false): return 1602; + case Fire::Fire(6, false, true, false, true, true): return 1347; + case Fire::Fire(14, false, true, false, true, true): return 1603; + case Fire::Fire(6, false, true, false, true, false): return 1348; + case Fire::Fire(14, false, true, false, true, false): return 1604; + case Fire::Fire(6, false, true, false, false, true): return 1349; + case Fire::Fire(14, false, true, false, false, true): return 1605; + case Fire::Fire(6, false, true, false, false, false): return 1350; + case Fire::Fire(14, false, true, false, false, false): return 1606; + case Fire::Fire(6, false, false, true, true, true): return 1351; + case Fire::Fire(14, false, false, true, true, true): return 1607; + case Fire::Fire(6, false, false, true, true, false): return 1352; + case Fire::Fire(14, false, false, true, true, false): return 1608; + case Fire::Fire(6, false, false, true, false, true): return 1353; + case Fire::Fire(14, false, false, true, false, true): return 1609; + case Fire::Fire(6, false, false, true, false, false): return 1354; + case Fire::Fire(14, false, false, true, false, false): return 1610; + case Fire::Fire(6, false, false, false, true, true): return 1355; + case Fire::Fire(14, false, false, false, true, true): return 1611; + case Fire::Fire(6, false, false, false, true, false): return 1356; + case Fire::Fire(14, false, false, false, true, false): return 1612; + case Fire::Fire(6, false, false, false, false, true): return 1357; + case Fire::Fire(14, false, false, false, false, true): return 1613; + case Fire::Fire(6, false, false, false, false, false): return 1358; + case Fire::Fire(14, false, false, false, false, false): return 1614; + case Fire::Fire(7, true, true, true, true, true): return 1359; + case Fire::Fire(15, true, true, true, true, true): return 1615; + case Fire::Fire(7, true, true, true, true, false): return 1360; + case Fire::Fire(15, true, true, true, true, false): return 1616; + case Fire::Fire(7, true, true, true, false, true): return 1361; + case Fire::Fire(15, true, true, true, false, true): return 1617; + case Fire::Fire(7, true, true, true, false, false): return 1362; + case Fire::Fire(15, true, true, true, false, false): return 1618; + case Fire::Fire(7, true, true, false, true, true): return 1363; + case Fire::Fire(15, true, true, false, true, true): return 1619; + case Fire::Fire(7, true, true, false, true, false): return 1364; + case Fire::Fire(15, true, true, false, true, false): return 1620; + case Fire::Fire(7, true, true, false, false, true): return 1365; + case Fire::Fire(15, true, true, false, false, true): return 1621; + case Fire::Fire(7, true, true, false, false, false): return 1366; + case Fire::Fire(15, true, true, false, false, false): return 1622; + case Fire::Fire(7, true, false, true, true, true): return 1367; + case Fire::Fire(15, true, false, true, true, true): return 1623; + case Fire::Fire(7, true, false, true, true, false): return 1368; + case Fire::Fire(15, true, false, true, true, false): return 1624; + case Fire::Fire(7, true, false, true, false, true): return 1369; + case Fire::Fire(15, true, false, true, false, true): return 1625; + case Fire::Fire(7, true, false, true, false, false): return 1370; + case Fire::Fire(15, true, false, true, false, false): return 1626; + case Fire::Fire(7, true, false, false, true, true): return 1371; + case Fire::Fire(15, true, false, false, true, true): return 1627; + case Fire::Fire(7, true, false, false, true, false): return 1372; + case Fire::Fire(15, true, false, false, true, false): return 1628; + case Fire::Fire(7, true, false, false, false, true): return 1373; + case Fire::Fire(15, true, false, false, false, true): return 1629; + case Fire::Fire(7, true, false, false, false, false): return 1374; + case Fire::Fire(15, true, false, false, false, false): return 1630; + case Fire::Fire(7, false, true, true, true, true): return 1375; + case Fire::Fire(15, false, true, true, true, true): return 1631; + case Fire::Fire(7, false, true, true, true, false): return 1376; + case Fire::Fire(15, false, true, true, true, false): return 1632; + case Fire::Fire(7, false, true, true, false, true): return 1377; + case Fire::Fire(15, false, true, true, false, true): return 1633; + case Fire::Fire(7, false, true, true, false, false): return 1378; + case Fire::Fire(15, false, true, true, false, false): return 1634; + case Fire::Fire(7, false, true, false, true, true): return 1379; + case Fire::Fire(15, false, true, false, true, true): return 1635; + case Fire::Fire(7, false, true, false, true, false): return 1380; + case Fire::Fire(15, false, true, false, true, false): return 1636; + case Fire::Fire(7, false, true, false, false, true): return 1381; + case Fire::Fire(15, false, true, false, false, true): return 1637; + case Fire::Fire(7, false, true, false, false, false): return 1382; + case Fire::Fire(15, false, true, false, false, false): return 1638; + case Fire::Fire(7, false, false, true, true, true): return 1383; + case Fire::Fire(15, false, false, true, true, true): return 1639; + case Fire::Fire(7, false, false, true, true, false): return 1384; + case Fire::Fire(15, false, false, true, true, false): return 1640; + case Fire::Fire(7, false, false, true, false, true): return 1385; + case Fire::Fire(15, false, false, true, false, true): return 1641; + case Fire::Fire(7, false, false, true, false, false): return 1386; + case Fire::Fire(15, false, false, true, false, false): return 1642; + case Fire::Fire(7, false, false, false, true, true): return 1387; + case Fire::Fire(15, false, false, false, true, true): return 1643; + case Fire::Fire(7, false, false, false, true, false): return 1388; + case Fire::Fire(15, false, false, false, true, false): return 1644; + case Fire::Fire(7, false, false, false, false, true): return 1389; + case Fire::Fire(15, false, false, false, false, true): return 1645; + case Fire::Fire(7, false, false, false, false, false): return 1390; + case Fire::Fire(0, true, true, true, true, true): return 1135; + case Fire::Fire(8, true, true, true, true, true): return 1391; + case Fire::Fire(0, true, true, true, true, false): return 1136; + case Fire::Fire(8, true, true, true, true, false): return 1392; + case Fire::Fire(0, true, true, true, false, true): return 1137; + case Fire::Fire(8, true, true, true, false, true): return 1393; + case Fire::Fire(0, true, true, true, false, false): return 1138; + case Fire::Fire(8, true, true, true, false, false): return 1394; + case Fire::Fire(0, true, true, false, true, true): return 1139; + case Fire::Fire(8, true, true, false, true, true): return 1395; + case Fire::Fire(0, true, true, false, true, false): return 1140; + case Fire::Fire(8, true, true, false, true, false): return 1396; + case Fire::Fire(0, true, true, false, false, true): return 1141; + case Fire::Fire(8, true, true, false, false, true): return 1397; + case Fire::Fire(0, true, true, false, false, false): return 1142; + case Fire::Fire(8, true, true, false, false, false): return 1398; + case Fire::Fire(0, true, false, true, true, true): return 1143; + case Fire::Fire(8, true, false, true, true, true): return 1399; + case Fire::Fire(0, true, false, true, true, false): return 1144; + case Fire::Fire(8, true, false, true, true, false): return 1400; + case Fire::Fire(0, true, false, true, false, true): return 1145; + case Fire::Fire(8, true, false, true, false, true): return 1401; + case Fire::Fire(0, true, false, true, false, false): return 1146; + case Fire::Fire(8, true, false, true, false, false): return 1402; + case Fire::Fire(0, true, false, false, true, true): return 1147; + case Fire::Fire(8, true, false, false, true, true): return 1403; + case Fire::Fire(0, true, false, false, true, false): return 1148; + case Fire::Fire(8, true, false, false, true, false): return 1404; + case Fire::Fire(0, true, false, false, false, true): return 1149; + case Fire::Fire(8, true, false, false, false, true): return 1405; + case Fire::Fire(0, true, false, false, false, false): return 1150; + case Fire::Fire(8, true, false, false, false, false): return 1406; + case Fire::Fire(0, false, true, true, true, true): return 1151; + case Fire::Fire(8, false, true, true, true, true): return 1407; + case Fire::Fire(0, false, true, true, true, false): return 1152; + case Fire::Fire(8, false, true, true, true, false): return 1408; + case Fire::Fire(0, false, true, true, false, true): return 1153; + case Fire::Fire(8, false, true, true, false, true): return 1409; + case Fire::Fire(0, false, true, true, false, false): return 1154; + case Fire::Fire(8, false, true, true, false, false): return 1410; + case Fire::Fire(0, false, true, false, true, true): return 1155; + case Fire::Fire(8, false, true, false, true, true): return 1411; + case Fire::Fire(0, false, true, false, true, false): return 1156; + case Fire::Fire(8, false, true, false, true, false): return 1412; + case Fire::Fire(0, false, true, false, false, true): return 1157; + case Fire::Fire(8, false, true, false, false, true): return 1413; + case Fire::Fire(0, false, true, false, false, false): return 1158; + case Fire::Fire(8, false, true, false, false, false): return 1414; + case Fire::Fire(0, false, false, true, true, true): return 1159; + case Fire::Fire(8, false, false, true, true, true): return 1415; + case Fire::Fire(0, false, false, true, true, false): return 1160; + case Fire::Fire(8, false, false, true, true, false): return 1416; + case Fire::Fire(0, false, false, true, false, true): return 1161; + case Fire::Fire(8, false, false, true, false, true): return 1417; + case Fire::Fire(0, false, false, true, false, false): return 1162; + case Fire::Fire(8, false, false, true, false, false): return 1418; + case Fire::Fire(0, false, false, false, true, true): return 1163; + case Fire::Fire(8, false, false, false, true, true): return 1419; + case Fire::Fire(0, false, false, false, true, false): return 1164; + case Fire::Fire(8, false, false, false, true, false): return 1420; + case Fire::Fire(0, false, false, false, false, true): return 1165; + case Fire::Fire(8, false, false, false, false, true): return 1421; + case Fire::Fire(0, false, false, false, false, false): return 1166; + case Fire::Fire(8, false, false, false, false, false): return 1422; + case Fire::Fire(1, true, true, true, true, true): return 1167; + case Fire::Fire(9, true, true, true, true, true): return 1423; + case Fire::Fire(1, true, true, true, true, false): return 1168; + case Fire::Fire(9, true, true, true, true, false): return 1424; + case Fire::Fire(1, true, true, true, false, true): return 1169; + case Fire::Fire(9, true, true, true, false, true): return 1425; + case Fire::Fire(1, true, true, true, false, false): return 1170; + case Fire::Fire(9, true, true, true, false, false): return 1426; + case Fire::Fire(1, true, true, false, true, true): return 1171; + case Fire::Fire(9, true, true, false, true, true): return 1427; + case Fire::Fire(1, true, true, false, true, false): return 1172; + case Fire::Fire(9, true, true, false, true, false): return 1428; + case Fire::Fire(1, true, true, false, false, true): return 1173; + case Fire::Fire(9, true, true, false, false, true): return 1429; + case Fire::Fire(1, true, true, false, false, false): return 1174; + case Fire::Fire(9, true, true, false, false, false): return 1430; + case Fire::Fire(1, true, false, true, true, true): return 1175; + case Fire::Fire(9, true, false, true, true, true): return 1431; + case Fire::Fire(1, true, false, true, true, false): return 1176; + case Fire::Fire(9, true, false, true, true, false): return 1432; + case Fire::Fire(1, true, false, true, false, true): return 1177; + case Fire::Fire(9, true, false, true, false, true): return 1433; + case Fire::Fire(1, true, false, true, false, false): return 1178; + case Fire::Fire(9, true, false, true, false, false): return 1434; + case Fire::Fire(1, true, false, false, true, true): return 1179; + case Fire::Fire(9, true, false, false, true, true): return 1435; + case Fire::Fire(1, true, false, false, true, false): return 1180; + case Fire::Fire(9, true, false, false, true, false): return 1436; + case Fire::Fire(1, true, false, false, false, true): return 1181; + case Fire::Fire(9, true, false, false, false, true): return 1437; + case Fire::Fire(1, true, false, false, false, false): return 1182; + case Fire::Fire(9, true, false, false, false, false): return 1438; + case Fire::Fire(1, false, true, true, true, true): return 1183; + case Fire::Fire(9, false, true, true, true, true): return 1439; + case Fire::Fire(1, false, true, true, true, false): return 1184; + case Fire::Fire(9, false, true, true, true, false): return 1440; + case Fire::Fire(1, false, true, true, false, true): return 1185; + case Fire::Fire(9, false, true, true, false, true): return 1441; + case Fire::Fire(1, false, true, true, false, false): return 1186; + case Fire::Fire(9, false, true, true, false, false): return 1442; + case Fire::Fire(1, false, true, false, true, true): return 1187; + case Fire::Fire(9, false, true, false, true, true): return 1443; + case Fire::Fire(1, false, true, false, true, false): return 1188; + case Fire::Fire(9, false, true, false, true, false): return 1444; + case Fire::Fire(1, false, true, false, false, true): return 1189; + case Fire::Fire(9, false, true, false, false, true): return 1445; + case Fire::Fire(1, false, true, false, false, false): return 1190; + case Fire::Fire(9, false, true, false, false, false): return 1446; + case Fire::Fire(1, false, false, true, true, true): return 1191; + case Fire::Fire(9, false, false, true, true, true): return 1447; + case Fire::Fire(1, false, false, true, true, false): return 1192; + case Fire::Fire(9, false, false, true, true, false): return 1448; + case Fire::Fire(1, false, false, true, false, true): return 1193; + case Fire::Fire(9, false, false, true, false, true): return 1449; + case Fire::Fire(1, false, false, true, false, false): return 1194; + case Fire::Fire(9, false, false, true, false, false): return 1450; + case Fire::Fire(1, false, false, false, true, true): return 1195; + case Fire::Fire(9, false, false, false, true, true): return 1451; + case Fire::Fire(1, false, false, false, true, false): return 1196; + case Fire::Fire(9, false, false, false, true, false): return 1452; + case Fire::Fire(1, false, false, false, false, true): return 1197; + case Fire::Fire(9, false, false, false, false, true): return 1453; + case Fire::Fire(1, false, false, false, false, false): return 1198; + case Fire::Fire(9, false, false, false, false, false): return 1454; + case Fire::Fire(2, true, true, true, true, true): return 1199; + case Fire::Fire(10, true, true, true, true, true): return 1455; + case Fire::Fire(2, true, true, true, true, false): return 1200; + case Fire::Fire(10, true, true, true, true, false): return 1456; + case Fire::Fire(2, true, true, true, false, true): return 1201; + case Fire::Fire(10, true, true, true, false, true): return 1457; + case Fire::Fire(2, true, true, true, false, false): return 1202; + case Fire::Fire(10, true, true, true, false, false): return 1458; + case Fire::Fire(2, true, true, false, true, true): return 1203; + case Fire::Fire(10, true, true, false, true, true): return 1459; + case Fire::Fire(2, true, true, false, true, false): return 1204; + case Fire::Fire(10, true, true, false, true, false): return 1460; + case Fire::Fire(2, true, true, false, false, true): return 1205; + case Fire::Fire(10, true, true, false, false, true): return 1461; + case Fire::Fire(2, true, true, false, false, false): return 1206; + case Fire::Fire(10, true, true, false, false, false): return 1462; + case Fire::Fire(2, true, false, true, true, true): return 1207; + case Fire::Fire(10, true, false, true, true, true): return 1463; + case Fire::Fire(2, true, false, true, true, false): return 1208; + case Fire::Fire(10, true, false, true, true, false): return 1464; + case Fire::Fire(2, true, false, true, false, true): return 1209; + case Fire::Fire(10, true, false, true, false, true): return 1465; + case Fire::Fire(2, true, false, true, false, false): return 1210; + case Fire::Fire(10, true, false, true, false, false): return 1466; + case Fire::Fire(2, true, false, false, true, true): return 1211; + case Fire::Fire(10, true, false, false, true, true): return 1467; + case Fire::Fire(2, true, false, false, true, false): return 1212; + case Fire::Fire(10, true, false, false, true, false): return 1468; + case Fire::Fire(2, true, false, false, false, true): return 1213; + case Fire::Fire(10, true, false, false, false, true): return 1469; + case Fire::Fire(2, true, false, false, false, false): return 1214; + case Fire::Fire(10, true, false, false, false, false): return 1470; + case Fire::Fire(2, false, true, true, true, true): return 1215; + case Fire::Fire(10, false, true, true, true, true): return 1471; + case Fire::Fire(2, false, true, true, true, false): return 1216; + case Fire::Fire(10, false, true, true, true, false): return 1472; + case Fire::Fire(2, false, true, true, false, true): return 1217; + case Fire::Fire(10, false, true, true, false, true): return 1473; + case Fire::Fire(2, false, true, true, false, false): return 1218; + case Fire::Fire(10, false, true, true, false, false): return 1474; + case Fire::Fire(2, false, true, false, true, true): return 1219; + case Fire::Fire(10, false, true, false, true, true): return 1475; + case Fire::Fire(2, false, true, false, true, false): return 1220; + case Fire::Fire(10, false, true, false, true, false): return 1476; + case Fire::Fire(2, false, true, false, false, true): return 1221; + case Fire::Fire(10, false, true, false, false, true): return 1477; + case Fire::Fire(2, false, true, false, false, false): return 1222; + case Fire::Fire(10, false, true, false, false, false): return 1478; + case Fire::Fire(2, false, false, true, true, true): return 1223; + case Fire::Fire(10, false, false, true, true, true): return 1479; + case Fire::Fire(2, false, false, true, true, false): return 1224; + case Fire::Fire(10, false, false, true, true, false): return 1480; + case Fire::Fire(2, false, false, true, false, true): return 1225; + case Fire::Fire(10, false, false, true, false, true): return 1481; + case Fire::Fire(2, false, false, true, false, false): return 1226; + case Fire::Fire(10, false, false, true, false, false): return 1482; + case Fire::Fire(2, false, false, false, true, true): return 1227; + case Fire::Fire(10, false, false, false, true, true): return 1483; + case Fire::Fire(2, false, false, false, true, false): return 1228; + case Fire::Fire(10, false, false, false, true, false): return 1484; + case Fire::Fire(2, false, false, false, false, true): return 1229; + case Fire::Fire(10, false, false, false, false, true): return 1485; + case Fire::Fire(2, false, false, false, false, false): return 1230; + case Fire::Fire(10, false, false, false, false, false): return 1486; + case Fire::Fire(3, true, true, true, true, true): return 1231; + case Fire::Fire(11, true, true, true, true, true): return 1487; + case Fire::Fire(3, true, true, true, true, false): return 1232; + case Fire::Fire(11, true, true, true, true, false): return 1488; + case Fire::Fire(3, true, true, true, false, true): return 1233; + case Fire::Fire(11, true, true, true, false, true): return 1489; + case Fire::Fire(3, true, true, true, false, false): return 1234; + case Fire::Fire(11, true, true, true, false, false): return 1490; + case Fire::Fire(3, true, true, false, true, true): return 1235; + case Fire::Fire(11, true, true, false, true, true): return 1491; + case Fire::Fire(3, true, true, false, true, false): return 1236; + case Fire::Fire(11, true, true, false, true, false): return 1492; + case Fire::Fire(3, true, true, false, false, true): return 1237; + case Fire::Fire(11, true, true, false, false, true): return 1493; + case Fire::Fire(3, true, true, false, false, false): return 1238; + case Fire::Fire(11, true, true, false, false, false): return 1494; + case Fire::Fire(3, true, false, true, true, true): return 1239; + case Fire::Fire(11, true, false, true, true, true): return 1495; + case Fire::Fire(3, true, false, true, true, false): return 1240; + case Fire::Fire(11, true, false, true, true, false): return 1496; + case Fire::Fire(3, true, false, true, false, true): return 1241; + case Fire::Fire(11, true, false, true, false, true): return 1497; + case Fire::Fire(3, true, false, true, false, false): return 1242; + case Fire::Fire(11, true, false, true, false, false): return 1498; + case Fire::Fire(3, true, false, false, true, true): return 1243; + case Fire::Fire(11, true, false, false, true, true): return 1499; + case Fire::Fire(3, true, false, false, true, false): return 1244; + case Fire::Fire(11, true, false, false, true, false): return 1500; + case Fire::Fire(3, true, false, false, false, true): return 1245; + case Fire::Fire(11, true, false, false, false, true): return 1501; + case Fire::Fire(3, true, false, false, false, false): return 1246; + case Fire::Fire(11, true, false, false, false, false): return 1502; + case Fire::Fire(3, false, true, true, true, true): return 1247; + case Fire::Fire(11, false, true, true, true, true): return 1503; + case Fire::Fire(3, false, true, true, true, false): return 1248; + case Fire::Fire(11, false, true, true, true, false): return 1504; + case Fire::Fire(3, false, true, true, false, true): return 1249; + case Fire::Fire(11, false, true, true, false, true): return 1505; + case Fire::Fire(3, false, true, true, false, false): return 1250; + case Fire::Fire(11, false, true, true, false, false): return 1506; + case Fire::Fire(3, false, true, false, true, true): return 1251; + case Fire::Fire(11, false, true, false, true, true): return 1507; + case Fire::Fire(3, false, true, false, true, false): return 1252; + case Fire::Fire(11, false, true, false, true, false): return 1508; + case Fire::Fire(3, false, true, false, false, true): return 1253; + case Fire::Fire(11, false, true, false, false, true): return 1509; + case Fire::Fire(3, false, true, false, false, false): return 1254; + case Fire::Fire(11, false, true, false, false, false): return 1510; + case Fire::Fire(3, false, false, true, true, true): return 1255; + case Fire::Fire(11, false, false, true, true, true): return 1511; + case Fire::Fire(3, false, false, true, true, false): return 1256; + case Fire::Fire(11, false, false, true, true, false): return 1512; + case Fire::Fire(3, false, false, true, false, true): return 1257; + case Fire::Fire(15, false, false, false, false, false): return 1646; + case FireCoral::FireCoral(): return 8462; + case FireCoralBlock::FireCoralBlock(): return 8457; + case FireCoralFan::FireCoralFan(): return 8561; + case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8529; + case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8533; + case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8531; + case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8535; + case FlowerPot::FlowerPot(): return 5265; + case FrostedIce::FrostedIce(0): return 8188; + case FrostedIce::FrostedIce(1): return 8189; + case FrostedIce::FrostedIce(2): return 8190; + case FrostedIce::FrostedIce(3): return 8191; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, true): return 3071; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, false): return 3072; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, true): return 3073; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, true): return 3067; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, false): return 3068; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, true): return 3069; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, false): return 3070; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, false): return 3074; + case Glass::Glass(): return 230; + case GlassPane::GlassPane(false, true, false, false): return 4234; + case GlassPane::GlassPane(false, false, true, false): return 4238; + case GlassPane::GlassPane(true, true, true, true): return 4213; + case GlassPane::GlassPane(true, true, false, true): return 4217; + case GlassPane::GlassPane(true, false, true, true): return 4221; + case GlassPane::GlassPane(true, false, false, true): return 4225; + case GlassPane::GlassPane(false, true, true, true): return 4229; + case GlassPane::GlassPane(false, true, false, true): return 4233; + case GlassPane::GlassPane(false, false, true, true): return 4237; + case GlassPane::GlassPane(false, false, false, true): return 4241; + case GlassPane::GlassPane(true, true, true, false): return 4214; + case GlassPane::GlassPane(true, true, false, false): return 4218; + case GlassPane::GlassPane(true, false, true, false): return 4222; + case GlassPane::GlassPane(true, false, false, false): return 4226; + case GlassPane::GlassPane(false, true, true, false): return 4230; + case GlassPane::GlassPane(false, false, false, false): return 4242; + case Glowstone::Glowstone(): return 3495; + case GoldBlock::GoldBlock(): return 1123; + case GoldOre::GoldOre(): return 69; + case Granite::Granite(): return 2; + case Grass::Grass(): return 1041; + case GrassBlock::GrassBlock(true): return 8; + case GrassBlock::GrassBlock(false): return 9; + case GrassPath::GrassPath(): return 8162; + case Gravel::Gravel(): return 68; + case GrayBanner::GrayBanner(10): return 6976; + case GrayBanner::GrayBanner(11): return 6977; + case GrayBanner::GrayBanner(12): return 6978; + case GrayBanner::GrayBanner(13): return 6979; + case GrayBanner::GrayBanner(14): return 6980; + case GrayBanner::GrayBanner(0): return 6966; + case GrayBanner::GrayBanner(1): return 6967; + case GrayBanner::GrayBanner(2): return 6968; + case GrayBanner::GrayBanner(3): return 6969; + case GrayBanner::GrayBanner(4): return 6970; + case GrayBanner::GrayBanner(5): return 6971; + case GrayBanner::GrayBanner(6): return 6972; + case GrayBanner::GrayBanner(7): return 6973; + case GrayBanner::GrayBanner(8): return 6974; + case GrayBanner::GrayBanner(9): return 6975; + case GrayBanner::GrayBanner(15): return 6981; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Foot): return 863; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Foot): return 865; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Foot): return 867; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Foot): return 869; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Foot): return 871; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Foot): return 873; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Head): return 860; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Head): return 862; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Head): return 864; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Head): return 866; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Head): return 868; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Head): return 870; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Head): return 872; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Head): return 874; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Foot): return 861; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Foot): return 875; + case GrayCarpet::GrayCarpet(): return 6830; + case GrayConcrete::GrayConcrete(): return 8384; + case GrayConcretePowder::GrayConcretePowder(): return 8400; + case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8343; + case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8342; + case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8341; + case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8344; + case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8262; + case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8259; + case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8263; + case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8260; + case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8264; + case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8261; + case GrayStainedGlass::GrayStainedGlass(): return 3584; + case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, false): return 6063; + case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, false): return 6067; + case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, false): return 6071; + case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, true): return 6046; + case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, true): return 6050; + case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, true): return 6054; + case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, true): return 6058; + case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, true): return 6062; + case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, true): return 6066; + case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, true): return 6070; + case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, true): return 6074; + case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, false): return 6047; + case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, false): return 6051; + case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, false): return 6055; + case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, false): return 6059; + case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, false): return 6075; + case GrayTerracotta::GrayTerracotta(): return 5811; + case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7138; + case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7139; + case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XM): return 7140; + case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XP): return 7141; + case GrayWool::GrayWool(): return 1090; + case GreenBanner::GreenBanner(4): return 7066; + case GreenBanner::GreenBanner(5): return 7067; + case GreenBanner::GreenBanner(6): return 7068; + case GreenBanner::GreenBanner(7): return 7069; + case GreenBanner::GreenBanner(8): return 7070; + case GreenBanner::GreenBanner(9): return 7071; + case GreenBanner::GreenBanner(10): return 7072; + case GreenBanner::GreenBanner(11): return 7073; + case GreenBanner::GreenBanner(12): return 7074; + case GreenBanner::GreenBanner(13): return 7075; + case GreenBanner::GreenBanner(14): return 7076; + case GreenBanner::GreenBanner(0): return 7062; + case GreenBanner::GreenBanner(1): return 7063; + case GreenBanner::GreenBanner(2): return 7064; + case GreenBanner::GreenBanner(3): return 7065; + case GreenBanner::GreenBanner(15): return 7077; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Head): return 968; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Head): return 970; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Foot): return 957; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Foot): return 959; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Foot): return 961; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Foot): return 963; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Foot): return 965; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Foot): return 967; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Foot): return 969; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Head): return 956; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Head): return 958; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Head): return 960; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Head): return 962; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Head): return 964; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Head): return 966; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Foot): return 971; + case GreenCarpet::GreenCarpet(): return 6836; + case GreenConcrete::GreenConcrete(): return 8390; + case GreenConcretePowder::GreenConcretePowder(): return 8406; + case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8367; + case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8366; + case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8365; + case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8368; + case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8297; + case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8298; + case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8295; + case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8299; + case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8296; + case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8300; + case GreenStainedGlass::GreenStainedGlass(): return 3590; + case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, true): return 6238; + case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, true): return 6242; + case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, true): return 6246; + case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, true): return 6250; + case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, true): return 6254; + case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, true): return 6258; + case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, true): return 6262; + case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, true): return 6266; + case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, false): return 6239; + case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, false): return 6243; + case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, false): return 6247; + case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, false): return 6251; + case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, false): return 6255; + case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, false): return 6259; + case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, false): return 6263; + case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, false): return 6267; + case GreenTerracotta::GreenTerracotta(): return 5817; + case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7162; + case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7163; + case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XM): return 7164; + case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XP): return 7165; + case GreenWool::GreenWool(): return 1096; + case HayBale::HayBale(HayBale::Axis::X): return 6820; + case HayBale::HayBale(HayBale::Axis::Y): return 6821; + case HayBale::HayBale(HayBale::Axis::Z): return 6822; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(7): return 5626; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(8): return 5627; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(9): return 5628; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(10): return 5629; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(11): return 5630; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(12): return 5631; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(13): return 5632; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(14): return 5633; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(0): return 5619; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(1): return 5620; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(2): return 5621; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(3): return 5622; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(4): return 5623; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(5): return 5624; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(6): return 5625; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(15): return 5634; + case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZM): return 5686; + case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZP): return 5687; + case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XM): return 5688; + case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XP): return 5689; + case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_YM): return 5690; + case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZM): return 5691; + case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZP): return 5692; + case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XM): return 5693; + case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XP): return 5694; + case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_YM): return 5685; + case HornCoral::HornCoral(): return 8463; + case HornCoralBlock::HornCoralBlock(): return 8458; + case HornCoralFan::HornCoralFan(): return 8563; + case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8539; + case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8537; + case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8541; + case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8543; + case Ice::Ice(): return 3423; + case InfestedChiseledStoneBricks::InfestedChiseledStoneBricks(): return 3982; + case InfestedCobblestone::InfestedCobblestone(): return 3978; + case InfestedCrackedStoneBricks::InfestedCrackedStoneBricks(): return 3981; + case InfestedMossyStoneBricks::InfestedMossyStoneBricks(): return 3980; + case InfestedStone::InfestedStone(): return 3977; + case InfestedStoneBricks::InfestedStoneBricks(): return 3979; + case IronBars::IronBars(true, true, true, true): return 4181; + case IronBars::IronBars(true, true, false, true): return 4185; + case IronBars::IronBars(true, false, true, true): return 4189; + case IronBars::IronBars(true, false, false, true): return 4193; + case IronBars::IronBars(false, true, true, true): return 4197; + case IronBars::IronBars(false, true, false, true): return 4201; + case IronBars::IronBars(false, false, true, true): return 4205; + case IronBars::IronBars(false, false, false, true): return 4209; + case IronBars::IronBars(true, true, true, false): return 4182; + case IronBars::IronBars(true, true, false, false): return 4186; + case IronBars::IronBars(true, false, true, false): return 4190; + case IronBars::IronBars(true, false, false, false): return 4194; + case IronBars::IronBars(false, true, true, false): return 4198; + case IronBars::IronBars(false, true, false, false): return 4202; + case IronBars::IronBars(false, false, true, false): return 4206; + case IronBars::IronBars(false, false, false, false): return 4210; + case IronBlock::IronBlock(): return 1124; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3358; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3303; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3311; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3319; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3327; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3335; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3343; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3351; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3359; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3304; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3312; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3320; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3328; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3336; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3344; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3352; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3360; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3305; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3313; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3321; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3329; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3337; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3345; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3353; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3361; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3306; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3314; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3322; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3330; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3338; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3346; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3354; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3362; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3307; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3315; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3323; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3331; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3339; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3347; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3355; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3363; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3308; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3316; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3324; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3332; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3340; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3348; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3356; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3364; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3309; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3317; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3325; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3333; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3341; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3349; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3357; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3365; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3310; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3318; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3326; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3334; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3342; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3350; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3366; + case IronOre::IronOre(): return 70; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, true): return 6495; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, true): return 6511; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, true): return 6527; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, true): return 6543; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, false): return 6497; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, false): return 6513; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, false): return 6529; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, false): return 6545; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, true): return 6499; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, true): return 6515; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, true): return 6531; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, true): return 6547; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, false): return 6501; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, false): return 6517; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, false): return 6533; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, false): return 6549; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, true): return 6503; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, true): return 6519; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, true): return 6535; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, true): return 6551; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, false): return 6505; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, false): return 6521; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, false): return 6537; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, false): return 6553; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, true): return 6507; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, true): return 6523; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, true): return 6539; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, true): return 6555; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, false): return 6509; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, false): return 6525; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, false): return 6541; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, false): return 6557; + case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZM): return 3502; + case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XM): return 3504; + case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZP): return 3503; + case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XP): return 3505; + case Jukebox::Jukebox(true): return 3458; + case Jukebox::Jukebox(false): return 3459; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5381; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5385; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5389; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5393; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5397; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5378; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5382; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5386; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5390; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5394; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5398; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5375; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5379; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5383; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5387; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5391; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5395; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5376; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5380; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5384; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5388; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5392; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5396; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5377; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 7849; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 7865; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 7818; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 7834; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 7850; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 7866; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 7819; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 7835; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 7851; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 7867; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 7820; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 7836; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 7852; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 7805; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 7821; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 7837; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 7853; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 7806; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 7822; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 7838; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 7854; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 7807; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 7823; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 7839; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 7855; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 7808; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 7824; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 7840; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 7856; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 7809; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 7825; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 7841; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 7857; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 7810; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 7826; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 7842; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 7858; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 7811; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 7827; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 7843; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 7859; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 7812; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 7828; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 7844; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 7860; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 7813; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 7829; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 7845; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 7861; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 7814; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 7830; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 7846; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 7862; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 7815; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 7831; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 7847; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 7863; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 7816; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 7832; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 7848; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 7864; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 7817; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 7833; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 7868; + case JungleFence::JungleFence(true, true, true, true): return 7583; + case JungleFence::JungleFence(true, true, false, true): return 7587; + case JungleFence::JungleFence(true, false, true, true): return 7591; + case JungleFence::JungleFence(true, false, false, true): return 7595; + case JungleFence::JungleFence(false, true, true, true): return 7599; + case JungleFence::JungleFence(false, true, false, true): return 7603; + case JungleFence::JungleFence(false, false, true, true): return 7607; + case JungleFence::JungleFence(false, false, false, true): return 7611; + case JungleFence::JungleFence(true, true, true, false): return 7584; + case JungleFence::JungleFence(true, true, false, false): return 7588; + case JungleFence::JungleFence(true, false, true, false): return 7592; + case JungleFence::JungleFence(true, false, false, false): return 7596; + case JungleFence::JungleFence(false, true, true, false): return 7600; + case JungleFence::JungleFence(false, true, false, false): return 7604; + case JungleFence::JungleFence(false, false, true, false): return 7608; + case JungleFence::JungleFence(false, false, false, false): return 7612; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7427; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7431; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7435; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7439; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7443; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7447; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7451; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7424; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7428; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7432; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7436; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7440; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7444; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7448; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7421; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7425; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7429; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7433; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7437; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7441; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7445; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7449; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7422; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7426; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7430; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7434; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7438; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7442; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7446; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7450; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7423; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7452; + case JungleLeaves::JungleLeaves(7, true): return 198; + case JungleLeaves::JungleLeaves(3, false): return 191; + case JungleLeaves::JungleLeaves(7, false): return 199; + case JungleLeaves::JungleLeaves(4, true): return 192; + case JungleLeaves::JungleLeaves(4, false): return 193; + case JungleLeaves::JungleLeaves(1, true): return 186; + case JungleLeaves::JungleLeaves(5, true): return 194; + case JungleLeaves::JungleLeaves(1, false): return 187; + case JungleLeaves::JungleLeaves(5, false): return 195; + case JungleLeaves::JungleLeaves(2, true): return 188; + case JungleLeaves::JungleLeaves(6, true): return 196; + case JungleLeaves::JungleLeaves(2, false): return 189; + case JungleLeaves::JungleLeaves(6, false): return 197; + case JungleLeaves::JungleLeaves(3, true): return 190; + case JungleLog::JungleLog(JungleLog::Axis::Y): return 82; + case JungleLog::JungleLog(JungleLog::Axis::Z): return 83; + case JungleLog::JungleLog(JungleLog::Axis::X): return 81; + case JunglePlanks::JunglePlanks(): return 18; + case JunglePressurePlate::JunglePressurePlate(true): return 3373; + case JunglePressurePlate::JunglePressurePlate(false): return 3374; + case JungleSapling::JungleSapling(0): return 27; + case JungleSapling::JungleSapling(1): return 28; + case JungleSlab::JungleSlab(JungleSlab::Type::Top): return 7276; + case JungleSlab::JungleSlab(JungleSlab::Type::Bottom): return 7278; + case JungleSlab::JungleSlab(JungleSlab::Type::Double): return 7280; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5077; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5079; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5081; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5083; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5085; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5087; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5089; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5091; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5093; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5095; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5097; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5099; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5101; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5103; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5105; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5107; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5045; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5109; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5047; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5111; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5049; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5113; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5051; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5115; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5053; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5117; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5055; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5119; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5057; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5121; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5059; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5123; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5061; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5063; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5065; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5067; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5069; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5071; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5073; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5075; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, false): return 3792; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, false): return 3800; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, false): return 3808; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, false): return 3816; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, false): return 3824; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, false): return 3832; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, false): return 3840; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, true): return 3786; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, true): return 3794; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, true): return 3802; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, true): return 3810; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, true): return 3818; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, true): return 3826; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, true): return 3834; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, true): return 3842; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, false): return 3788; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, false): return 3796; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, false): return 3804; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, false): return 3812; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, false): return 3820; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, false): return 3828; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, false): return 3836; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, false): return 3844; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, true): return 3790; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, true): return 3798; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, true): return 3806; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, true): return 3814; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, true): return 3822; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, true): return 3830; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, true): return 3838; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, true): return 3846; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, false): return 3848; + case JungleWood::JungleWood(JungleWood::Axis::Y): return 118; + case JungleWood::JungleWood(JungleWood::Axis::Z): return 119; + case JungleWood::JungleWood(JungleWood::Axis::X): return 117; + case Kelp::Kelp(20): return 8429; + case Kelp::Kelp(5): return 8414; + case Kelp::Kelp(13): return 8422; + case Kelp::Kelp(21): return 8430; + case Kelp::Kelp(6): return 8415; + case Kelp::Kelp(14): return 8423; + case Kelp::Kelp(22): return 8431; + case Kelp::Kelp(7): return 8416; + case Kelp::Kelp(15): return 8424; + case Kelp::Kelp(23): return 8432; + case Kelp::Kelp(0): return 8409; + case Kelp::Kelp(8): return 8417; + case Kelp::Kelp(16): return 8425; + case Kelp::Kelp(24): return 8433; + case Kelp::Kelp(1): return 8410; + case Kelp::Kelp(9): return 8418; + case Kelp::Kelp(17): return 8426; + case Kelp::Kelp(25): return 8434; + case Kelp::Kelp(2): return 8411; + case Kelp::Kelp(10): return 8419; + case Kelp::Kelp(18): return 8427; + case Kelp::Kelp(3): return 8412; + case Kelp::Kelp(11): return 8420; + case Kelp::Kelp(19): return 8428; + case Kelp::Kelp(4): return 8413; + case Kelp::Kelp(12): return 8421; + case KelpPlant::KelpPlant(): return 8435; + case Ladder::Ladder(eBlockFace::BLOCK_FACE_XM): return 3176; + case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZM): return 3172; + case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZP): return 3174; + case Ladder::Ladder(eBlockFace::BLOCK_FACE_XP): return 3178; + case LapisBlock::LapisBlock(): return 232; + case LapisOre::LapisOre(): return 231; + case LargeFern::LargeFern(LargeFern::Half::Upper): return 6852; + case LargeFern::LargeFern(LargeFern::Half::Lower): return 6853; + case Lava::Lava(11): return 61; + case Lava::Lava(13): return 63; + case Lava::Lava(0): return 50; + case Lava::Lava(2): return 52; + case Lava::Lava(4): return 54; + case Lava::Lava(6): return 56; + case Lava::Lava(8): return 58; + case Lava::Lava(10): return 60; + case Lava::Lava(12): return 62; + case Lava::Lava(14): return 64; + case Lava::Lava(1): return 51; + case Lava::Lava(3): return 53; + case Lava::Lava(5): return 55; + case Lava::Lava(7): return 57; + case Lava::Lava(9): return 59; + case Lava::Lava(15): return 65; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 3297; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 3299; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 3278; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 3280; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 3282; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 3284; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 3286; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 3288; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 3290; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 3292; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 3294; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 3296; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 3298; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 3300; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 3277; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 3279; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 3281; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 3283; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 3285; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 3287; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 3289; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 3291; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 3293; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 3295; + case LightBlueBanner::LightBlueBanner(14): return 6916; + case LightBlueBanner::LightBlueBanner(0): return 6902; + case LightBlueBanner::LightBlueBanner(1): return 6903; + case LightBlueBanner::LightBlueBanner(2): return 6904; + case LightBlueBanner::LightBlueBanner(3): return 6905; + case LightBlueBanner::LightBlueBanner(4): return 6906; + case LightBlueBanner::LightBlueBanner(5): return 6907; + case LightBlueBanner::LightBlueBanner(6): return 6908; + case LightBlueBanner::LightBlueBanner(7): return 6909; + case LightBlueBanner::LightBlueBanner(8): return 6910; + case LightBlueBanner::LightBlueBanner(9): return 6911; + case LightBlueBanner::LightBlueBanner(10): return 6912; + case LightBlueBanner::LightBlueBanner(11): return 6913; + case LightBlueBanner::LightBlueBanner(12): return 6914; + case LightBlueBanner::LightBlueBanner(13): return 6915; + case LightBlueBanner::LightBlueBanner(15): return 6917; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Foot): return 803; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Foot): return 805; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Foot): return 807; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Foot): return 809; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Head): return 796; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Head): return 798; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Head): return 800; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Head): return 802; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Head): return 804; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Head): return 806; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Head): return 808; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Head): return 810; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Foot): return 797; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Foot): return 799; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Foot): return 801; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Foot): return 811; + case LightBlueCarpet::LightBlueCarpet(): return 6826; + case LightBlueConcrete::LightBlueConcrete(): return 8380; + case LightBlueConcretePowder::LightBlueConcretePowder(): return 8396; + case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8325; + case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8327; + case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8326; + case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8328; + case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8238; + case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8235; + case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8239; + case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8236; + case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8240; + case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8237; + case LightBlueStainedGlass::LightBlueStainedGlass(): return 3580; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, false): return 5939; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, false): return 5943; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, true): return 5918; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, true): return 5922; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, true): return 5926; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, true): return 5930; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, true): return 5934; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, true): return 5938; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, true): return 5942; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, true): return 5946; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, false): return 5919; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, false): return 5923; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, false): return 5927; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, false): return 5931; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, false): return 5935; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, false): return 5947; + case LightBlueTerracotta::LightBlueTerracotta(): return 5807; + case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7123; + case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XM): return 7124; + case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7122; + case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XP): return 7125; + case LightBlueWool::LightBlueWool(): return 1086; + case LightGrayBanner::LightGrayBanner(9): return 6991; + case LightGrayBanner::LightGrayBanner(10): return 6992; + case LightGrayBanner::LightGrayBanner(11): return 6993; + case LightGrayBanner::LightGrayBanner(12): return 6994; + case LightGrayBanner::LightGrayBanner(13): return 6995; + case LightGrayBanner::LightGrayBanner(14): return 6996; + case LightGrayBanner::LightGrayBanner(0): return 6982; + case LightGrayBanner::LightGrayBanner(1): return 6983; + case LightGrayBanner::LightGrayBanner(2): return 6984; + case LightGrayBanner::LightGrayBanner(3): return 6985; + case LightGrayBanner::LightGrayBanner(4): return 6986; + case LightGrayBanner::LightGrayBanner(5): return 6987; + case LightGrayBanner::LightGrayBanner(6): return 6988; + case LightGrayBanner::LightGrayBanner(7): return 6989; + case LightGrayBanner::LightGrayBanner(8): return 6990; + case LightGrayBanner::LightGrayBanner(15): return 6997; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Head): return 878; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Head): return 880; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Head): return 882; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Head): return 884; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Head): return 886; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Head): return 888; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Head): return 890; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Foot): return 877; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Foot): return 879; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Foot): return 881; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Foot): return 883; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Foot): return 885; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Foot): return 887; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Foot): return 889; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Head): return 876; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Foot): return 891; + case LightGrayCarpet::LightGrayCarpet(): return 6831; + case LightGrayConcrete::LightGrayConcrete(): return 8385; + case LightGrayConcretePowder::LightGrayConcretePowder(): return 8401; + case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8346; + case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8345; + case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8347; + case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8348; + case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8269; + case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8266; + case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8270; + case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8267; + case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8268; + case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8265; + case LightGrayStainedGlass::LightGrayStainedGlass(): return 3585; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, true): return 6094; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, true): return 6098; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, true): return 6102; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, true): return 6106; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, false): return 6079; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, false): return 6083; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, false): return 6087; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, false): return 6091; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, false): return 6095; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, false): return 6099; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, false): return 6103; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, true): return 6078; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, true): return 6082; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, true): return 6086; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, true): return 6090; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, false): return 6107; + case LightGrayTerracotta::LightGrayTerracotta(): return 5812; + case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XM): return 7144; + case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7142; + case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7143; + case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XP): return 7145; + case LightGrayWool::LightGrayWool(): return 1091; + case LightWeightedPressurePlate::LightWeightedPressurePlate(8): return 5611; + case LightWeightedPressurePlate::LightWeightedPressurePlate(9): return 5612; + case LightWeightedPressurePlate::LightWeightedPressurePlate(10): return 5613; + case LightWeightedPressurePlate::LightWeightedPressurePlate(11): return 5614; + case LightWeightedPressurePlate::LightWeightedPressurePlate(12): return 5615; + case LightWeightedPressurePlate::LightWeightedPressurePlate(13): return 5616; + case LightWeightedPressurePlate::LightWeightedPressurePlate(14): return 5617; + case LightWeightedPressurePlate::LightWeightedPressurePlate(0): return 5603; + case LightWeightedPressurePlate::LightWeightedPressurePlate(1): return 5604; + case LightWeightedPressurePlate::LightWeightedPressurePlate(2): return 5605; + case LightWeightedPressurePlate::LightWeightedPressurePlate(3): return 5606; + case LightWeightedPressurePlate::LightWeightedPressurePlate(4): return 5607; + case LightWeightedPressurePlate::LightWeightedPressurePlate(5): return 5608; + case LightWeightedPressurePlate::LightWeightedPressurePlate(6): return 5609; + case LightWeightedPressurePlate::LightWeightedPressurePlate(7): return 5610; + case LightWeightedPressurePlate::LightWeightedPressurePlate(15): return 5618; + case Lilac::Lilac(Lilac::Half::Upper): return 6844; + case Lilac::Lilac(Lilac::Half::Lower): return 6845; + case LilyPad::LilyPad(): return 4494; + case LimeBanner::LimeBanner(12): return 6946; + case LimeBanner::LimeBanner(13): return 6947; + case LimeBanner::LimeBanner(14): return 6948; + case LimeBanner::LimeBanner(0): return 6934; + case LimeBanner::LimeBanner(1): return 6935; + case LimeBanner::LimeBanner(2): return 6936; + case LimeBanner::LimeBanner(3): return 6937; + case LimeBanner::LimeBanner(4): return 6938; + case LimeBanner::LimeBanner(5): return 6939; + case LimeBanner::LimeBanner(6): return 6940; + case LimeBanner::LimeBanner(7): return 6941; + case LimeBanner::LimeBanner(8): return 6942; + case LimeBanner::LimeBanner(9): return 6943; + case LimeBanner::LimeBanner(10): return 6944; + case LimeBanner::LimeBanner(11): return 6945; + case LimeBanner::LimeBanner(15): return 6949; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Foot): return 833; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Foot): return 835; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Foot): return 837; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Foot): return 839; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Foot): return 841; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Head): return 828; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Head): return 830; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Head): return 832; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Head): return 834; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Head): return 836; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Head): return 838; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Head): return 840; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Head): return 842; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Foot): return 829; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Foot): return 831; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Foot): return 843; + case LimeCarpet::LimeCarpet(): return 6828; + case LimeConcrete::LimeConcrete(): return 8382; + case LimeConcretePowder::LimeConcretePowder(): return 8398; + case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8334; + case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8333; + case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8335; + case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8336; + case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8248; + case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8252; + case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8249; + case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8250; + case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8247; + case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8251; + case LimeStainedGlass::LimeStainedGlass(): return 3582; + case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, true): return 5982; + case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, true): return 5986; + case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, true): return 5990; + case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, true): return 5994; + case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, true): return 5998; + case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, true): return 6002; + case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, true): return 6006; + case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, true): return 6010; + case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, false): return 5983; + case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, false): return 5987; + case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, false): return 5991; + case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, false): return 5995; + case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, false): return 5999; + case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, false): return 6003; + case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, false): return 6007; + case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, false): return 6011; + case LimeTerracotta::LimeTerracotta(): return 5809; + case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XM): return 7132; + case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7130; + case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7131; + case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XP): return 7133; + case LimeWool::LimeWool(): return 1088; + case MagentaBanner::MagentaBanner(0): return 6886; + case MagentaBanner::MagentaBanner(1): return 6887; + case MagentaBanner::MagentaBanner(2): return 6888; + case MagentaBanner::MagentaBanner(3): return 6889; + case MagentaBanner::MagentaBanner(4): return 6890; + case MagentaBanner::MagentaBanner(5): return 6891; + case MagentaBanner::MagentaBanner(6): return 6892; + case MagentaBanner::MagentaBanner(7): return 6893; + case MagentaBanner::MagentaBanner(8): return 6894; + case MagentaBanner::MagentaBanner(9): return 6895; + case MagentaBanner::MagentaBanner(10): return 6896; + case MagentaBanner::MagentaBanner(11): return 6897; + case MagentaBanner::MagentaBanner(12): return 6898; + case MagentaBanner::MagentaBanner(13): return 6899; + case MagentaBanner::MagentaBanner(14): return 6900; + case MagentaBanner::MagentaBanner(15): return 6901; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Head): return 788; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Head): return 790; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Head): return 792; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Head): return 794; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Foot): return 781; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Foot): return 783; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Foot): return 785; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Foot): return 787; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Foot): return 789; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Foot): return 791; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Foot): return 793; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Head): return 780; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Head): return 782; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Head): return 784; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Head): return 786; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Foot): return 795; + case MagentaCarpet::MagentaCarpet(): return 6825; + case MagentaConcrete::MagentaConcrete(): return 8379; + case MagentaConcretePowder::MagentaConcretePowder(): return 8395; + case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8322; + case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8321; + case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8323; + case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8324; + case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8234; + case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8231; + case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8232; + case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8229; + case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8233; + case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8230; + case MagentaStainedGlass::MagentaStainedGlass(): return 3579; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, true): return 5886; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, true): return 5890; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, true): return 5894; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, true): return 5898; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, true): return 5902; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, true): return 5906; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, true): return 5910; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, true): return 5914; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, false): return 5887; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, false): return 5891; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, false): return 5895; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, false): return 5899; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, false): return 5903; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, false): return 5907; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, false): return 5911; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, false): return 5915; + case MagentaTerracotta::MagentaTerracotta(): return 5806; + case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XM): return 7120; + case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7118; + case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7119; + case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XP): return 7121; + case MagentaWool::MagentaWool(): return 1085; + case MagmaBlock::MagmaBlock(): return 8192; + case Melon::Melon(): return 4243; + case MelonStem::MelonStem(5): return 4265; + case MelonStem::MelonStem(0): return 4260; + case MelonStem::MelonStem(2): return 4262; + case MelonStem::MelonStem(4): return 4264; + case MelonStem::MelonStem(6): return 4266; + case MelonStem::MelonStem(1): return 4261; + case MelonStem::MelonStem(3): return 4263; + case MelonStem::MelonStem(7): return 4267; + case MossyCobblestone::MossyCobblestone(): return 1128; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5203; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5219; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5235; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5251; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5204; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5220; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5236; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5252; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5207; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5223; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5239; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5255; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5208; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5224; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5240; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5256; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5211; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5227; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5243; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5259; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5212; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5228; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5244; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5260; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5215; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5231; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5247; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5263; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5216; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5232; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5248; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5264; + case MossyStoneBricks::MossyStoneBricks(): return 3984; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Normal): return 1107; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Sticky): return 1100; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Sticky): return 1104; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Sticky): return 1108; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Normal): return 1101; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Normal): return 1105; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Normal): return 1109; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Sticky): return 1102; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Sticky): return 1106; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Sticky): return 1110; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Normal): return 1099; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Normal): return 1103; + case MushroomStem::MushroomStem(true, false, true, true, true, false): return 4132; + case MushroomStem::MushroomStem(false, true, true, true, true, false): return 4148; + case MushroomStem::MushroomStem(false, false, true, true, true, false): return 4164; + case MushroomStem::MushroomStem(true, true, true, true, false, true): return 4117; + case MushroomStem::MushroomStem(true, false, true, true, false, true): return 4133; + case MushroomStem::MushroomStem(false, true, true, true, false, true): return 4149; + case MushroomStem::MushroomStem(false, false, true, true, false, true): return 4165; + case MushroomStem::MushroomStem(true, true, true, true, false, false): return 4118; + case MushroomStem::MushroomStem(true, false, true, true, false, false): return 4134; + case MushroomStem::MushroomStem(false, true, true, true, false, false): return 4150; + case MushroomStem::MushroomStem(false, false, true, true, false, false): return 4166; + case MushroomStem::MushroomStem(true, true, true, false, true, true): return 4119; + case MushroomStem::MushroomStem(true, false, true, false, true, true): return 4135; + case MushroomStem::MushroomStem(false, true, true, false, true, true): return 4151; + case MushroomStem::MushroomStem(false, false, true, false, true, true): return 4167; + case MushroomStem::MushroomStem(true, true, true, false, true, false): return 4120; + case MushroomStem::MushroomStem(true, false, true, false, true, false): return 4136; + case MushroomStem::MushroomStem(false, true, true, false, true, false): return 4152; + case MushroomStem::MushroomStem(false, false, true, false, true, false): return 4168; + case MushroomStem::MushroomStem(true, true, true, false, false, true): return 4121; + case MushroomStem::MushroomStem(true, false, true, false, false, true): return 4137; + case MushroomStem::MushroomStem(false, true, true, false, false, true): return 4153; + case MushroomStem::MushroomStem(false, false, true, false, false, true): return 4169; + case MushroomStem::MushroomStem(true, true, true, false, false, false): return 4122; + case MushroomStem::MushroomStem(true, false, true, false, false, false): return 4138; + case MushroomStem::MushroomStem(false, true, true, false, false, false): return 4154; + case MushroomStem::MushroomStem(false, false, true, false, false, false): return 4170; + case MushroomStem::MushroomStem(true, true, false, true, true, true): return 4123; + case MushroomStem::MushroomStem(true, false, false, true, true, true): return 4139; + case MushroomStem::MushroomStem(false, true, false, true, true, true): return 4155; + case MushroomStem::MushroomStem(false, false, false, true, true, true): return 4171; + case MushroomStem::MushroomStem(true, true, false, true, true, false): return 4124; + case MushroomStem::MushroomStem(true, false, false, true, true, false): return 4140; + case MushroomStem::MushroomStem(false, true, false, true, true, false): return 4156; + case MushroomStem::MushroomStem(false, false, false, true, true, false): return 4172; + case MushroomStem::MushroomStem(true, true, false, true, false, true): return 4125; + case MushroomStem::MushroomStem(true, false, false, true, false, true): return 4141; + case MushroomStem::MushroomStem(false, true, false, true, false, true): return 4157; + case MushroomStem::MushroomStem(false, false, false, true, false, true): return 4173; + case MushroomStem::MushroomStem(true, true, false, true, false, false): return 4126; + case MushroomStem::MushroomStem(true, false, false, true, false, false): return 4142; + case MushroomStem::MushroomStem(false, true, false, true, false, false): return 4158; + case MushroomStem::MushroomStem(false, false, false, true, false, false): return 4174; + case MushroomStem::MushroomStem(true, true, false, false, true, true): return 4127; + case MushroomStem::MushroomStem(true, false, false, false, true, true): return 4143; + case MushroomStem::MushroomStem(false, true, false, false, true, true): return 4159; + case MushroomStem::MushroomStem(false, false, false, false, true, true): return 4175; + case MushroomStem::MushroomStem(true, true, false, false, true, false): return 4128; + case MushroomStem::MushroomStem(true, false, false, false, true, false): return 4144; + case MushroomStem::MushroomStem(false, true, false, false, true, false): return 4160; + case MushroomStem::MushroomStem(false, false, false, false, true, false): return 4176; + case MushroomStem::MushroomStem(true, true, false, false, false, true): return 4129; + case MushroomStem::MushroomStem(true, false, false, false, false, true): return 4145; + case MushroomStem::MushroomStem(false, true, false, false, false, true): return 4161; + case MushroomStem::MushroomStem(false, false, false, false, false, true): return 4177; + case MushroomStem::MushroomStem(true, true, false, false, false, false): return 4130; + case MushroomStem::MushroomStem(true, false, false, false, false, false): return 4146; + case MushroomStem::MushroomStem(false, true, false, false, false, false): return 4162; + case MushroomStem::MushroomStem(true, true, true, true, true, true): return 4115; + case MushroomStem::MushroomStem(true, false, true, true, true, true): return 4131; + case MushroomStem::MushroomStem(false, true, true, true, true, true): return 4147; + case MushroomStem::MushroomStem(false, false, true, true, true, true): return 4163; + case MushroomStem::MushroomStem(true, true, true, true, true, false): return 4116; + case MushroomStem::MushroomStem(false, false, false, false, false, false): return 4178; + case Mycelium::Mycelium(true): return 4492; + case Mycelium::Mycelium(false): return 4493; + case NetherBrickFence::NetherBrickFence(true, true, true, true): return 4498; + case NetherBrickFence::NetherBrickFence(true, true, false, true): return 4502; + case NetherBrickFence::NetherBrickFence(true, false, true, true): return 4506; + case NetherBrickFence::NetherBrickFence(true, false, false, true): return 4510; + case NetherBrickFence::NetherBrickFence(false, true, true, true): return 4514; + case NetherBrickFence::NetherBrickFence(false, true, false, true): return 4518; + case NetherBrickFence::NetherBrickFence(false, false, true, true): return 4522; + case NetherBrickFence::NetherBrickFence(false, false, false, true): return 4526; + case NetherBrickFence::NetherBrickFence(true, true, true, false): return 4499; + case NetherBrickFence::NetherBrickFence(true, true, false, false): return 4503; + case NetherBrickFence::NetherBrickFence(true, false, true, false): return 4507; + case NetherBrickFence::NetherBrickFence(true, false, false, false): return 4511; + case NetherBrickFence::NetherBrickFence(false, true, true, false): return 4515; + case NetherBrickFence::NetherBrickFence(false, true, false, false): return 4519; + case NetherBrickFence::NetherBrickFence(false, false, true, false): return 4523; + case NetherBrickFence::NetherBrickFence(false, false, false, false): return 4527; + case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Top): return 7330; + case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Bottom): return 7332; + case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Double): return 7334; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 4569; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 4571; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 4573; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 4575; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 4577; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 4579; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 4581; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 4583; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 4585; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 4587; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 4589; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 4591; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 4529; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 4593; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 4531; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 4595; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 4533; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 4597; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 4535; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 4599; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 4537; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 4601; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 4539; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 4603; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 4541; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 4605; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 4543; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 4607; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 4545; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 4547; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 4549; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 4551; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 4553; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 4555; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 4557; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 4559; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 4561; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 4563; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 4565; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 4567; + case NetherBricks::NetherBricks(): return 4495; + case NetherPortal::NetherPortal(NetherPortal::Axis::X): return 3496; + case NetherPortal::NetherPortal(NetherPortal::Axis::Z): return 3497; + case NetherQuartzOre::NetherQuartzOre(): return 5684; + case NetherWart::NetherWart(1): return 4609; + case NetherWart::NetherWart(2): return 4610; + case NetherWart::NetherWart(0): return 4608; + case NetherWart::NetherWart(3): return 4611; + case NetherWartBlock::NetherWartBlock(): return 8193; + case Netherrack::Netherrack(): return 3493; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, true): return 248; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, false): return 249; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, true): return 250; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, false): return 251; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, true): return 252; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, false): return 253; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, true): return 254; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, false): return 255; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, true): return 256; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, false): return 257; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, true): return 258; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, false): return 259; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, true): return 260; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, false): return 261; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, true): return 262; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, false): return 263; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, true): return 264; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, false): return 265; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, true): return 266; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, false): return 267; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, true): return 268; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, false): return 269; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, true): return 270; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, false): return 271; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, true): return 272; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, false): return 273; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, true): return 274; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, false): return 275; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, true): return 276; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, false): return 277; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, true): return 278; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, false): return 279; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, true): return 280; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, false): return 281; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, true): return 282; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, false): return 283; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, true): return 284; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, false): return 285; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, true): return 286; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, false): return 287; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, true): return 288; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, false): return 289; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, true): return 290; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, false): return 291; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, true): return 292; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, false): return 293; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, true): return 294; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, false): return 295; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, true): return 296; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, false): return 297; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, true): return 298; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, false): return 299; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, true): return 300; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, false): return 301; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, true): return 302; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, false): return 303; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, true): return 304; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, false): return 305; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, true): return 306; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, false): return 307; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, true): return 308; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, false): return 309; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, true): return 310; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, false): return 311; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, true): return 312; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, false): return 313; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, true): return 314; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, false): return 315; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, true): return 316; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, false): return 317; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, true): return 318; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, false): return 319; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, true): return 320; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, false): return 321; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, true): return 322; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, false): return 323; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, true): return 324; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, false): return 325; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, true): return 326; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, false): return 327; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, true): return 328; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, false): return 329; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, true): return 330; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, false): return 331; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, true): return 332; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, false): return 333; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, true): return 334; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, false): return 335; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, true): return 336; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, false): return 337; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, true): return 338; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, false): return 339; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, true): return 340; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, false): return 341; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, true): return 342; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, false): return 343; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, true): return 344; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, false): return 345; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, true): return 346; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, false): return 347; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, true): return 348; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, false): return 349; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, true): return 350; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, false): return 351; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, true): return 352; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, false): return 353; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, true): return 354; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, false): return 355; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, true): return 356; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, false): return 357; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, true): return 358; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, false): return 359; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, true): return 360; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, false): return 361; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, true): return 362; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, false): return 363; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, true): return 364; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, false): return 365; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, true): return 366; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, false): return 367; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, true): return 368; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, false): return 369; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, true): return 370; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, false): return 371; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, true): return 372; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, false): return 373; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, true): return 374; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, false): return 375; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, true): return 376; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, false): return 377; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, true): return 378; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, false): return 379; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, true): return 380; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, false): return 381; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, true): return 382; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, false): return 383; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, true): return 384; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, false): return 385; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, true): return 386; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, false): return 387; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, true): return 388; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, false): return 389; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, true): return 390; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, false): return 391; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, true): return 392; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, false): return 393; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, true): return 394; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, false): return 395; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, true): return 396; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, false): return 397; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, true): return 398; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, false): return 399; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, true): return 400; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, false): return 401; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, true): return 402; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, false): return 403; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, true): return 404; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, false): return 405; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, true): return 406; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, false): return 407; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, true): return 408; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, false): return 409; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, true): return 410; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, false): return 411; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, true): return 412; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, false): return 413; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, true): return 414; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, false): return 415; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, true): return 416; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, false): return 417; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, true): return 418; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, false): return 419; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, true): return 420; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, false): return 421; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, true): return 422; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, false): return 423; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, true): return 424; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, false): return 425; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, true): return 426; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, false): return 427; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, true): return 428; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, false): return 429; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, true): return 430; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, false): return 431; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, true): return 432; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, false): return 433; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, true): return 434; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, false): return 435; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, true): return 436; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, false): return 437; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, true): return 438; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, false): return 439; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, true): return 440; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, false): return 441; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, true): return 442; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, false): return 443; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, true): return 444; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, false): return 445; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, true): return 446; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, false): return 447; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, true): return 448; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, false): return 449; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, true): return 450; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, false): return 451; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, true): return 452; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, false): return 453; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, true): return 454; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, false): return 455; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, true): return 456; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, false): return 457; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, true): return 458; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, false): return 459; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, true): return 460; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, false): return 461; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, true): return 462; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, false): return 463; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, true): return 464; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, false): return 465; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, true): return 466; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, false): return 467; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, true): return 468; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, false): return 469; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, true): return 470; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, false): return 471; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, true): return 472; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, false): return 473; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, true): return 474; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, false): return 475; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, true): return 476; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, false): return 477; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, true): return 478; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, false): return 479; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, true): return 480; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, false): return 481; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, true): return 482; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, false): return 483; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, true): return 484; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, false): return 485; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, true): return 486; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, false): return 487; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, true): return 488; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, false): return 489; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, true): return 490; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, false): return 491; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, true): return 492; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, false): return 493; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, true): return 494; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, false): return 495; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, true): return 496; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, false): return 497; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, true): return 498; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, false): return 499; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, true): return 500; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, false): return 501; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, true): return 502; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, false): return 503; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, true): return 504; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, false): return 505; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, true): return 506; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, false): return 507; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, true): return 508; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, false): return 509; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, true): return 510; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, false): return 511; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, true): return 512; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, false): return 743; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, true): return 520; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, true): return 552; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, true): return 584; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, true): return 616; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, true): return 648; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, true): return 680; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, true): return 712; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, true): return 744; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, false): return 521; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, false): return 553; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, false): return 585; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, false): return 617; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, false): return 649; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, false): return 681; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, false): return 713; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, false): return 745; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, true): return 522; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, true): return 554; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, true): return 586; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, true): return 618; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, true): return 650; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, true): return 682; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, true): return 714; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, true): return 746; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, false): return 523; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, false): return 555; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, false): return 587; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, false): return 619; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, false): return 651; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, false): return 683; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, false): return 715; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, false): return 747; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, true): return 524; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, true): return 556; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, true): return 588; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, true): return 620; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, true): return 652; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, true): return 684; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, true): return 716; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, false): return 525; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, false): return 557; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, false): return 589; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, false): return 621; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, false): return 653; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, false): return 685; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, false): return 717; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, true): return 526; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, true): return 558; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, true): return 590; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, true): return 622; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, true): return 654; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, true): return 686; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, true): return 718; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, false): return 527; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, false): return 559; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, false): return 591; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, false): return 623; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, false): return 655; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, false): return 687; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, false): return 719; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, true): return 528; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, true): return 560; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, true): return 592; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, true): return 624; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, true): return 656; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, true): return 688; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, true): return 720; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, false): return 529; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, false): return 561; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, false): return 593; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, false): return 625; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, false): return 657; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, false): return 689; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, false): return 721; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, true): return 530; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, true): return 562; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, true): return 594; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, true): return 626; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, true): return 658; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, true): return 690; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, true): return 722; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, false): return 531; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, false): return 563; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, false): return 595; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, false): return 627; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, false): return 659; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, false): return 691; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, false): return 723; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, true): return 532; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, true): return 564; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, true): return 596; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, true): return 628; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, true): return 660; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, true): return 692; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, true): return 724; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, false): return 533; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, false): return 565; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, false): return 597; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, false): return 629; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, false): return 661; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, false): return 693; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, false): return 725; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, true): return 534; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, true): return 566; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, true): return 598; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, true): return 630; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, true): return 662; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, true): return 694; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, true): return 726; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, false): return 535; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, false): return 567; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, false): return 599; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, false): return 631; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, false): return 663; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, false): return 695; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, false): return 727; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, true): return 536; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, true): return 568; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, true): return 600; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, true): return 632; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, true): return 664; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, true): return 696; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, true): return 728; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, false): return 537; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, false): return 569; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, false): return 601; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, false): return 633; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, false): return 665; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, false): return 697; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, false): return 729; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, true): return 538; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, true): return 570; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, true): return 602; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, true): return 634; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, true): return 666; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, true): return 698; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, true): return 730; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, false): return 539; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, false): return 571; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, false): return 603; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, false): return 635; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, false): return 667; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, false): return 699; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, false): return 731; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, true): return 540; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, true): return 572; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, true): return 604; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, true): return 636; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, true): return 668; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, true): return 700; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, true): return 732; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, false): return 541; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, false): return 573; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, false): return 605; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, false): return 637; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, false): return 669; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, false): return 701; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, false): return 733; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, true): return 542; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, true): return 574; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, true): return 606; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, true): return 638; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, true): return 670; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, true): return 702; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, true): return 734; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, false): return 543; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, false): return 575; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, false): return 607; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, false): return 639; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, false): return 671; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, false): return 703; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, false): return 735; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, true): return 544; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, true): return 576; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, true): return 608; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, true): return 640; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, true): return 672; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, true): return 704; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, true): return 736; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, false): return 513; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, false): return 545; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, false): return 577; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, false): return 609; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, false): return 641; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, false): return 673; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, false): return 705; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, false): return 737; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, true): return 514; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, true): return 546; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, true): return 578; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, true): return 610; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, true): return 642; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, true): return 674; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, true): return 706; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, true): return 738; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, false): return 515; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, false): return 547; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, false): return 579; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, false): return 611; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, false): return 643; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, false): return 675; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, false): return 707; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, false): return 739; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, true): return 516; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, true): return 548; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, true): return 580; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, true): return 612; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, true): return 644; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, true): return 676; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, true): return 708; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, true): return 740; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, false): return 517; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, false): return 549; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, false): return 581; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, false): return 613; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, false): return 645; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, false): return 677; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, false): return 709; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, false): return 741; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, true): return 518; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, true): return 550; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, true): return 582; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, true): return 614; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, true): return 646; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, true): return 678; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, true): return 710; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, true): return 742; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, false): return 519; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, false): return 551; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, false): return 583; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, false): return 615; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, false): return 647; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, false): return 679; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, false): return 711; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5319; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5323; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5304; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5308; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5312; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5316; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5320; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5324; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5305; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5309; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5313; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5317; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5321; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5325; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5306; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5310; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5314; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5318; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5322; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5326; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5303; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5307; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5311; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5315; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3169; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3114; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3122; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3130; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3138; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3146; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3154; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3162; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3107; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3115; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3123; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3131; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3139; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3147; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3155; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3163; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3108; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3116; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3124; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3132; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3140; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3148; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3156; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3164; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3109; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3117; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3125; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3133; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3141; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3149; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3157; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3165; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3110; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3118; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3126; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3134; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3142; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3150; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3158; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3166; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3111; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3119; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3127; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3135; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3143; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3151; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3159; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3167; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3112; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3120; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3128; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3136; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3144; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3152; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3160; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3168; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3113; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3121; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3129; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3137; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3145; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3153; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3161; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3170; + case OakFence::OakFence(false, true, false, false): return 3483; + case OakFence::OakFence(false, false, true, false): return 3487; + case OakFence::OakFence(true, true, true, true): return 3462; + case OakFence::OakFence(true, true, false, true): return 3466; + case OakFence::OakFence(true, false, true, true): return 3470; + case OakFence::OakFence(true, false, false, true): return 3474; + case OakFence::OakFence(false, true, true, true): return 3478; + case OakFence::OakFence(false, true, false, true): return 3482; + case OakFence::OakFence(false, false, true, true): return 3486; + case OakFence::OakFence(false, false, false, true): return 3490; + case OakFence::OakFence(true, true, true, false): return 3463; + case OakFence::OakFence(true, true, false, false): return 3467; + case OakFence::OakFence(true, false, true, false): return 3471; + case OakFence::OakFence(true, false, false, false): return 3475; + case OakFence::OakFence(false, true, true, false): return 3479; + case OakFence::OakFence(false, false, false, false): return 3491; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 4327; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 4300; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 4304; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 4308; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 4312; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 4316; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 4320; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 4324; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 4328; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 4301; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 4305; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 4309; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 4313; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 4317; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 4321; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 4325; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 4329; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 4302; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 4306; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 4310; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 4314; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 4318; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 4322; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 4326; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 4330; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 4303; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 4307; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 4311; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 4315; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 4319; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 4323; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 4331; + case OakLeaves::OakLeaves(5, false): return 153; + case OakLeaves::OakLeaves(2, true): return 146; + case OakLeaves::OakLeaves(6, true): return 154; + case OakLeaves::OakLeaves(2, false): return 147; + case OakLeaves::OakLeaves(6, false): return 155; + case OakLeaves::OakLeaves(3, true): return 148; + case OakLeaves::OakLeaves(7, true): return 156; + case OakLeaves::OakLeaves(3, false): return 149; + case OakLeaves::OakLeaves(7, false): return 157; + case OakLeaves::OakLeaves(4, true): return 150; + case OakLeaves::OakLeaves(4, false): return 151; + case OakLeaves::OakLeaves(1, true): return 144; + case OakLeaves::OakLeaves(5, true): return 152; + case OakLeaves::OakLeaves(1, false): return 145; + case OakLog::OakLog(OakLog::Axis::Y): return 73; + case OakLog::OakLog(OakLog::Axis::Z): return 74; + case OakLog::OakLog(OakLog::Axis::X): return 72; + case OakPlanks::OakPlanks(): return 15; + case OakPressurePlate::OakPressurePlate(true): return 3367; + case OakPressurePlate::OakPressurePlate(false): return 3368; + case OakSapling::OakSapling(0): return 21; + case OakSapling::OakSapling(1): return 22; + case OakSlab::OakSlab(OakSlab::Type::Top): return 7258; + case OakSlab::OakSlab(OakSlab::Type::Bottom): return 7260; + case OakSlab::OakSlab(OakSlab::Type::Double): return 7262; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1651; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1667; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1683; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1699; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1715; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1653; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1669; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1685; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1701; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1717; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1655; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1671; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1687; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1703; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1719; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1657; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1673; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1689; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1705; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1721; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1659; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1675; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1691; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1707; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1723; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1661; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1677; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1693; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1709; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1725; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1663; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1679; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1695; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1711; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1727; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1649; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1665; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1681; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1697; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1713; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, true): return 3610; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, true): return 3618; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, true): return 3626; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, true): return 3634; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, true): return 3642; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, true): return 3650; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, false): return 3596; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, false): return 3604; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, false): return 3612; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, false): return 3620; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, false): return 3628; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, false): return 3636; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, false): return 3644; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, false): return 3652; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, true): return 3598; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, true): return 3606; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, true): return 3614; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, true): return 3622; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, true): return 3630; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, true): return 3638; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, true): return 3646; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, true): return 3654; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, false): return 3600; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, false): return 3608; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, false): return 3616; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, false): return 3624; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, false): return 3632; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, false): return 3640; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, false): return 3648; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, true): return 3594; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, true): return 3602; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, false): return 3656; + case OakWood::OakWood(OakWood::Axis::Y): return 109; + case OakWood::OakWood(OakWood::Axis::Z): return 110; + case OakWood::OakWood(OakWood::Axis::X): return 108; + case Observer::Observer(eBlockFace::BLOCK_FACE_XM, true): return 8205; + case Observer::Observer(eBlockFace::BLOCK_FACE_YP, true): return 8207; + case Observer::Observer(eBlockFace::BLOCK_FACE_YM, true): return 8209; + case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, false): return 8200; + case Observer::Observer(eBlockFace::BLOCK_FACE_XP, false): return 8202; + case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, false): return 8204; + case Observer::Observer(eBlockFace::BLOCK_FACE_XM, false): return 8206; + case Observer::Observer(eBlockFace::BLOCK_FACE_YP, false): return 8208; + case Observer::Observer(eBlockFace::BLOCK_FACE_YM, false): return 8210; + case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, true): return 8199; + case Observer::Observer(eBlockFace::BLOCK_FACE_XP, true): return 8201; + case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, true): return 8203; + case Obsidian::Obsidian(): return 1129; + case OrangeBanner::OrangeBanner(1): return 6871; + case OrangeBanner::OrangeBanner(2): return 6872; + case OrangeBanner::OrangeBanner(3): return 6873; + case OrangeBanner::OrangeBanner(4): return 6874; + case OrangeBanner::OrangeBanner(5): return 6875; + case OrangeBanner::OrangeBanner(6): return 6876; + case OrangeBanner::OrangeBanner(7): return 6877; + case OrangeBanner::OrangeBanner(8): return 6878; + case OrangeBanner::OrangeBanner(9): return 6879; + case OrangeBanner::OrangeBanner(10): return 6880; + case OrangeBanner::OrangeBanner(11): return 6881; + case OrangeBanner::OrangeBanner(12): return 6882; + case OrangeBanner::OrangeBanner(13): return 6883; + case OrangeBanner::OrangeBanner(14): return 6884; + case OrangeBanner::OrangeBanner(0): return 6870; + case OrangeBanner::OrangeBanner(15): return 6885; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Foot): return 773; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Foot): return 775; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Foot): return 777; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Head): return 764; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Head): return 766; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Head): return 768; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Head): return 770; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Head): return 772; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Head): return 774; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Head): return 776; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Head): return 778; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Foot): return 765; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Foot): return 767; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Foot): return 769; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Foot): return 771; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Foot): return 779; + case OrangeCarpet::OrangeCarpet(): return 6824; + case OrangeConcrete::OrangeConcrete(): return 8378; + case OrangeConcretePowder::OrangeConcretePowder(): return 8394; + case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8319; + case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8318; + case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8317; + case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8320; + case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8227; + case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8224; + case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8228; + case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8225; + case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8226; + case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8223; + case OrangeStainedGlass::OrangeStainedGlass(): return 3578; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, true): return 5854; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, true): return 5858; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, true): return 5862; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, true): return 5866; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, true): return 5870; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, true): return 5874; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, true): return 5878; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, true): return 5882; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, false): return 5855; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, false): return 5859; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, false): return 5863; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, false): return 5867; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, false): return 5871; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, false): return 5875; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, false): return 5879; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, false): return 5883; + case OrangeTerracotta::OrangeTerracotta(): return 5805; + case OrangeTulip::OrangeTulip(): return 1117; + case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7114; + case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7115; + case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XM): return 7116; + case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XP): return 7117; + case OrangeWool::OrangeWool(): return 1084; + case OxeyeDaisy::OxeyeDaisy(): return 1120; + case PackedIce::PackedIce(): return 6841; + case Peony::Peony(Peony::Half::Upper): return 6848; + case Peony::Peony(Peony::Half::Lower): return 6849; + case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Double): return 7310; + case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Top): return 7306; + case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Bottom): return 7308; + case PinkBanner::PinkBanner(11): return 6961; + case PinkBanner::PinkBanner(12): return 6962; + case PinkBanner::PinkBanner(13): return 6963; + case PinkBanner::PinkBanner(14): return 6964; + case PinkBanner::PinkBanner(0): return 6950; + case PinkBanner::PinkBanner(1): return 6951; + case PinkBanner::PinkBanner(2): return 6952; + case PinkBanner::PinkBanner(3): return 6953; + case PinkBanner::PinkBanner(4): return 6954; + case PinkBanner::PinkBanner(5): return 6955; + case PinkBanner::PinkBanner(6): return 6956; + case PinkBanner::PinkBanner(7): return 6957; + case PinkBanner::PinkBanner(8): return 6958; + case PinkBanner::PinkBanner(9): return 6959; + case PinkBanner::PinkBanner(10): return 6960; + case PinkBanner::PinkBanner(15): return 6965; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Head): return 848; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Head): return 850; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Head): return 852; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Head): return 854; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Head): return 856; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Head): return 858; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Foot): return 845; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Foot): return 847; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Foot): return 849; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Foot): return 851; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Foot): return 853; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Foot): return 855; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Foot): return 857; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Head): return 844; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Head): return 846; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Foot): return 859; + case PinkCarpet::PinkCarpet(): return 6829; + case PinkConcrete::PinkConcrete(): return 8383; + case PinkConcretePowder::PinkConcretePowder(): return 8399; + case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8337; + case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8339; + case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8338; + case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8340; + case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8255; + case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8256; + case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8253; + case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8257; + case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8254; + case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8258; + case PinkStainedGlass::PinkStainedGlass(): return 3583; + case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, true): return 6014; + case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, true): return 6018; + case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, true): return 6022; + case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, true): return 6026; + case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, true): return 6030; + case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, true): return 6034; + case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, true): return 6038; + case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, true): return 6042; + case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, false): return 6015; + case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, false): return 6019; + case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, false): return 6023; + case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, false): return 6027; + case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, false): return 6031; + case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, false): return 6035; + case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, false): return 6039; + case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, false): return 6043; + case PinkTerracotta::PinkTerracotta(): return 5810; + case PinkTulip::PinkTulip(): return 1119; + case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7135; + case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XM): return 7136; + case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7134; + case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XP): return 7137; + case PinkWool::PinkWool(): return 1089; + case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZM): return 1047; + case Piston::Piston(true, eBlockFace::BLOCK_FACE_YP): return 1051; + case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZP): return 1055; + case Piston::Piston(true, eBlockFace::BLOCK_FACE_XP): return 1048; + case Piston::Piston(true, eBlockFace::BLOCK_FACE_YM): return 1052; + case Piston::Piston(false, eBlockFace::BLOCK_FACE_XM): return 1056; + case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZP): return 1049; + case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZM): return 1053; + case Piston::Piston(false, eBlockFace::BLOCK_FACE_YP): return 1057; + case Piston::Piston(true, eBlockFace::BLOCK_FACE_XM): return 1050; + case Piston::Piston(false, eBlockFace::BLOCK_FACE_XP): return 1054; + case Piston::Piston(false, eBlockFace::BLOCK_FACE_YM): return 1058; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Sticky): return 1076; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Normal): return 1077; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Sticky): return 1078; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Normal): return 1079; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Sticky): return 1080; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Normal): return 1081; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Sticky): return 1082; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Normal): return 1059; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Sticky): return 1060; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Normal): return 1061; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Sticky): return 1062; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Normal): return 1063; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Sticky): return 1064; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Normal): return 1065; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Sticky): return 1066; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Normal): return 1067; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Sticky): return 1068; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Normal): return 1069; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Sticky): return 1070; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Normal): return 1071; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Sticky): return 1072; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Normal): return 1073; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Sticky): return 1074; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Normal): return 1075; + case PlayerHead::PlayerHead(10): return 5521; + case PlayerHead::PlayerHead(11): return 5522; + case PlayerHead::PlayerHead(12): return 5523; + case PlayerHead::PlayerHead(13): return 5524; + case PlayerHead::PlayerHead(14): return 5525; + case PlayerHead::PlayerHead(0): return 5511; + case PlayerHead::PlayerHead(1): return 5512; + case PlayerHead::PlayerHead(2): return 5513; + case PlayerHead::PlayerHead(3): return 5514; + case PlayerHead::PlayerHead(4): return 5515; + case PlayerHead::PlayerHead(5): return 5516; + case PlayerHead::PlayerHead(6): return 5517; + case PlayerHead::PlayerHead(7): return 5518; + case PlayerHead::PlayerHead(8): return 5519; + case PlayerHead::PlayerHead(9): return 5520; + case PlayerHead::PlayerHead(15): return 5526; + case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XM): return 5509; + case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZM): return 5507; + case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZP): return 5508; + case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XP): return 5510; + case Podzol::Podzol(true): return 12; + case Podzol::Podzol(false): return 13; + case PolishedAndesite::PolishedAndesite(): return 7; + case PolishedDiorite::PolishedDiorite(): return 5; + case PolishedGranite::PolishedGranite(): return 3; + case Poppy::Poppy(): return 1112; + case Potatoes::Potatoes(6): return 5301; + case Potatoes::Potatoes(1): return 5296; + case Potatoes::Potatoes(3): return 5298; + case Potatoes::Potatoes(5): return 5300; + case Potatoes::Potatoes(0): return 5295; + case Potatoes::Potatoes(2): return 5297; + case Potatoes::Potatoes(4): return 5299; + case Potatoes::Potatoes(7): return 5302; + case PottedAcaciaSapling::PottedAcaciaSapling(): return 5270; + case PottedAllium::PottedAllium(): return 5276; + case PottedAzureBluet::PottedAzureBluet(): return 5277; + case PottedBirchSapling::PottedBirchSapling(): return 5268; + case PottedBlueOrchid::PottedBlueOrchid(): return 5275; + case PottedBrownMushroom::PottedBrownMushroom(): return 5284; + case PottedCactus::PottedCactus(): return 5286; + case PottedDandelion::PottedDandelion(): return 5273; + case PottedDarkOakSapling::PottedDarkOakSapling(): return 5271; + case PottedDeadBush::PottedDeadBush(): return 5285; + case PottedFern::PottedFern(): return 5272; + case PottedJungleSapling::PottedJungleSapling(): return 5269; + case PottedOakSapling::PottedOakSapling(): return 5266; + case PottedOrangeTulip::PottedOrangeTulip(): return 5279; + case PottedOxeyeDaisy::PottedOxeyeDaisy(): return 5282; + case PottedPinkTulip::PottedPinkTulip(): return 5281; + case PottedPoppy::PottedPoppy(): return 5274; + case PottedRedMushroom::PottedRedMushroom(): return 5283; + case PottedRedTulip::PottedRedTulip(): return 5278; + case PottedSpruceSapling::PottedSpruceSapling(): return 5267; + case PottedWhiteTulip::PottedWhiteTulip(): return 5280; + case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingWest): return 1013; + case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingSouth): return 1015; + case PoweredRail::PoweredRail(true, PoweredRail::Shape::NorthSouth): return 1004; + case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingEast): return 1006; + case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingNorth): return 1008; + case PoweredRail::PoweredRail(false, PoweredRail::Shape::NorthSouth): return 1010; + case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingEast): return 1012; + case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingNorth): return 1014; + case PoweredRail::PoweredRail(true, PoweredRail::Shape::EastWest): return 1005; + case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingWest): return 1007; + case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingSouth): return 1009; + case PoweredRail::PoweredRail(false, PoweredRail::Shape::EastWest): return 1011; + case Prismarine::Prismarine(): return 6558; + case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Top): return 6808; + case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Bottom): return 6810; + case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Double): return 6812; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 6664; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 6666; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 6668; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 6670; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 6672; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 6674; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 6676; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 6678; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 6680; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 6682; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 6684; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 6686; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 6688; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 6690; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 6692; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 6694; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 6696; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 6698; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 6700; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 6702; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 6704; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 6642; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 6706; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 6644; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 6708; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 6646; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 6710; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 6648; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 6712; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 6650; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 6714; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 6652; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 6716; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 6654; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 6718; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 6656; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 6720; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 6658; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 6660; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 6662; + case PrismarineBricks::PrismarineBricks(): return 6559; + case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Double): return 6806; + case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Top): return 6802; + case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Bottom): return 6804; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 6600; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 6602; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 6604; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 6606; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 6608; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 6610; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 6612; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 6614; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 6616; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 6618; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 6620; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 6622; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 6624; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 6562; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 6626; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 6564; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 6628; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 6566; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 6630; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 6568; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 6632; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 6570; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 6634; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 6572; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 6636; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 6574; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 6638; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 6576; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 6640; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 6578; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 6580; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 6582; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 6584; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 6586; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 6588; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 6590; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 6592; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 6594; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 6596; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 6598; + case Pumpkin::Pumpkin(): return 3492; + case PumpkinStem::PumpkinStem(6): return 4258; + case PumpkinStem::PumpkinStem(1): return 4253; + case PumpkinStem::PumpkinStem(3): return 4255; + case PumpkinStem::PumpkinStem(5): return 4257; + case PumpkinStem::PumpkinStem(0): return 4252; + case PumpkinStem::PumpkinStem(2): return 4254; + case PumpkinStem::PumpkinStem(4): return 4256; + case PumpkinStem::PumpkinStem(7): return 4259; + case PurpleBanner::PurpleBanner(7): return 7021; + case PurpleBanner::PurpleBanner(8): return 7022; + case PurpleBanner::PurpleBanner(9): return 7023; + case PurpleBanner::PurpleBanner(10): return 7024; + case PurpleBanner::PurpleBanner(11): return 7025; + case PurpleBanner::PurpleBanner(12): return 7026; + case PurpleBanner::PurpleBanner(13): return 7027; + case PurpleBanner::PurpleBanner(14): return 7028; + case PurpleBanner::PurpleBanner(0): return 7014; + case PurpleBanner::PurpleBanner(1): return 7015; + case PurpleBanner::PurpleBanner(2): return 7016; + case PurpleBanner::PurpleBanner(3): return 7017; + case PurpleBanner::PurpleBanner(4): return 7018; + case PurpleBanner::PurpleBanner(5): return 7019; + case PurpleBanner::PurpleBanner(6): return 7020; + case PurpleBanner::PurpleBanner(15): return 7029; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Head): return 908; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Head): return 910; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Head): return 912; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Head): return 914; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Head): return 916; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Head): return 918; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Head): return 920; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Head): return 922; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Foot): return 909; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Foot): return 911; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Foot): return 913; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Foot): return 915; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Foot): return 917; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Foot): return 919; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Foot): return 921; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Foot): return 923; + case PurpleCarpet::PurpleCarpet(): return 6833; + case PurpleConcrete::PurpleConcrete(): return 8387; + case PurpleConcretePowder::PurpleConcretePowder(): return 8403; + case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8355; + case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8354; + case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8353; + case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8356; + case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8280; + case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8277; + case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8281; + case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8278; + case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8282; + case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8279; + case PurpleStainedGlass::PurpleStainedGlass(): return 3587; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, true): return 6142; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, true): return 6146; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, true): return 6150; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, true): return 6154; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, true): return 6158; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, true): return 6162; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, true): return 6166; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, true): return 6170; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, false): return 6143; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, false): return 6147; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, false): return 6151; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, false): return 6155; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, false): return 6159; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, false): return 6163; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, false): return 6167; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, false): return 6171; + case PurpleTerracotta::PurpleTerracotta(): return 5814; + case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7150; + case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7151; + case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XM): return 7152; + case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XP): return 7153; + case PurpleWool::PurpleWool(): return 1093; + case PurpurBlock::PurpurBlock(): return 8073; + case PurpurPillar::PurpurPillar(PurpurPillar::Axis::X): return 8074; + case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Y): return 8075; + case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Z): return 8076; + case PurpurSlab::PurpurSlab(PurpurSlab::Type::Double): return 7352; + case PurpurSlab::PurpurSlab(PurpurSlab::Type::Top): return 7348; + case PurpurSlab::PurpurSlab(PurpurSlab::Type::Bottom): return 7350; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8124; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8126; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8128; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8130; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8132; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8134; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8136; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8138; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8140; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8078; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8142; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8080; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8144; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8082; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8146; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8084; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8148; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8086; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8150; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8088; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8152; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8090; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8154; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8092; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8156; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8094; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8096; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8098; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8100; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8102; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8104; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8106; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8108; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8110; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8112; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8114; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8116; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8118; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8120; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8122; + case QuartzBlock::QuartzBlock(): return 5695; + case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Y): return 5698; + case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Z): return 5699; + case QuartzPillar::QuartzPillar(QuartzPillar::Axis::X): return 5697; + case QuartzSlab::QuartzSlab(QuartzSlab::Type::Bottom): return 7338; + case QuartzSlab::QuartzSlab(QuartzSlab::Type::Double): return 7340; + case QuartzSlab::QuartzSlab(QuartzSlab::Type::Top): return 7336; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 5711; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 5775; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 5713; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 5777; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 5715; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 5779; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 5717; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 5719; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 5721; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 5723; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 5725; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 5727; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 5729; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 5731; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 5733; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 5735; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 5737; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 5739; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 5741; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 5743; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 5745; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 5747; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 5749; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 5751; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 5753; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 5755; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 5757; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 5759; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 5761; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 5763; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 5701; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 5765; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 5703; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 5767; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 5705; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 5769; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 5707; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 5771; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 5709; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 5773; + case Rail::Rail(Rail::Shape::AscendingEast): return 3181; + case Rail::Rail(Rail::Shape::AscendingWest): return 3182; + case Rail::Rail(Rail::Shape::AscendingNorth): return 3183; + case Rail::Rail(Rail::Shape::AscendingSouth): return 3184; + case Rail::Rail(Rail::Shape::SouthEast): return 3185; + case Rail::Rail(Rail::Shape::SouthWest): return 3186; + case Rail::Rail(Rail::Shape::NorthSouth): return 3179; + case Rail::Rail(Rail::Shape::NorthWest): return 3187; + case Rail::Rail(Rail::Shape::EastWest): return 3180; + case Rail::Rail(Rail::Shape::NorthEast): return 3188; + case RedBanner::RedBanner(3): return 7081; + case RedBanner::RedBanner(4): return 7082; + case RedBanner::RedBanner(5): return 7083; + case RedBanner::RedBanner(6): return 7084; + case RedBanner::RedBanner(7): return 7085; + case RedBanner::RedBanner(8): return 7086; + case RedBanner::RedBanner(9): return 7087; + case RedBanner::RedBanner(10): return 7088; + case RedBanner::RedBanner(11): return 7089; + case RedBanner::RedBanner(12): return 7090; + case RedBanner::RedBanner(13): return 7091; + case RedBanner::RedBanner(14): return 7092; + case RedBanner::RedBanner(0): return 7078; + case RedBanner::RedBanner(1): return 7079; + case RedBanner::RedBanner(2): return 7080; + case RedBanner::RedBanner(15): return 7093; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Foot): return 983; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Foot): return 985; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Head): return 972; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Head): return 974; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Head): return 976; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Head): return 978; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Head): return 980; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Head): return 982; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Head): return 984; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Head): return 986; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Foot): return 973; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Foot): return 975; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Foot): return 977; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Foot): return 979; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Foot): return 981; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Foot): return 987; + case RedCarpet::RedCarpet(): return 6837; + case RedConcrete::RedConcrete(): return 8391; + case RedConcretePowder::RedConcretePowder(): return 8407; + case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8370; + case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8369; + case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8371; + case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8372; + case RedMushroom::RedMushroom(): return 1122; + case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, true): return 4051; + case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, true): return 4059; + case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, true): return 4067; + case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, true): return 4075; + case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, true): return 4083; + case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, true): return 4091; + case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, false): return 4102; + case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, true): return 4103; + case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, false): return 4052; + case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, false): return 4060; + case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, false): return 4068; + case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, false): return 4076; + case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, false): return 4084; + case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, false): return 4092; + case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, false): return 4104; + case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, true): return 4113; + case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, true): return 4053; + case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, true): return 4061; + case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, true): return 4069; + case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, true): return 4077; + case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, true): return 4085; + case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, true): return 4093; + case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, false): return 4106; + case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, true): return 4107; + case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, false): return 4054; + case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, false): return 4062; + case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, false): return 4070; + case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, false): return 4078; + case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, false): return 4086; + case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, false): return 4094; + case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, false): return 4108; + case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, true): return 4111; + case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, true): return 4055; + case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, true): return 4063; + case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, true): return 4071; + case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, true): return 4079; + case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, true): return 4087; + case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, true): return 4095; + case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, false): return 4110; + case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, true): return 4109; + case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, false): return 4056; + case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, false): return 4064; + case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, false): return 4072; + case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, false): return 4080; + case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, false): return 4088; + case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, false): return 4096; + case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, false): return 4112; + case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, true): return 4105; + case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, true): return 4057; + case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, true): return 4065; + case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, true): return 4073; + case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, true): return 4081; + case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, true): return 4089; + case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, false): return 4098; + case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false): return 4114; + case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, true): return 4101; + case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, false): return 4058; + case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, false): return 4066; + case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, false): return 4074; + case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, false): return 4082; + case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, false): return 4090; + case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, false): return 4100; + case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, true): return 4099; + case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, true): return 4097; + case RedNetherBricks::RedNetherBricks(): return 8194; + case RedSand::RedSand(): return 67; + case RedSandstone::RedSandstone(): return 7174; + case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Top): return 7342; + case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Bottom): return 7344; + case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Double): return 7346; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7236; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7238; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7240; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7178; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7242; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7180; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7244; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7182; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7246; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7184; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7248; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7186; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7250; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7188; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7252; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7190; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7254; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7192; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7256; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7194; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7196; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7198; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7200; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7202; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7204; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7206; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7208; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7210; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7212; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7214; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7216; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7218; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7220; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7222; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7224; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7226; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7228; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7230; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7232; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7234; + case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8304; + case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8301; + case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8305; + case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8302; + case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8306; + case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8303; + case RedStainedGlass::RedStainedGlass(): return 3591; + case RedStainedGlassPane::RedStainedGlassPane(true, true, true, true): return 6270; + case RedStainedGlassPane::RedStainedGlassPane(true, true, false, true): return 6274; + case RedStainedGlassPane::RedStainedGlassPane(true, false, true, true): return 6278; + case RedStainedGlassPane::RedStainedGlassPane(true, false, false, true): return 6282; + case RedStainedGlassPane::RedStainedGlassPane(false, true, true, true): return 6286; + case RedStainedGlassPane::RedStainedGlassPane(false, true, false, true): return 6290; + case RedStainedGlassPane::RedStainedGlassPane(false, false, true, true): return 6294; + case RedStainedGlassPane::RedStainedGlassPane(false, false, false, true): return 6298; + case RedStainedGlassPane::RedStainedGlassPane(true, true, true, false): return 6271; + case RedStainedGlassPane::RedStainedGlassPane(true, true, false, false): return 6275; + case RedStainedGlassPane::RedStainedGlassPane(true, false, true, false): return 6279; + case RedStainedGlassPane::RedStainedGlassPane(true, false, false, false): return 6283; + case RedStainedGlassPane::RedStainedGlassPane(false, true, true, false): return 6287; + case RedStainedGlassPane::RedStainedGlassPane(false, true, false, false): return 6291; + case RedStainedGlassPane::RedStainedGlassPane(false, false, true, false): return 6295; + case RedStainedGlassPane::RedStainedGlassPane(false, false, false, false): return 6299; + case RedTerracotta::RedTerracotta(): return 5818; + case RedTulip::RedTulip(): return 1116; + case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XM): return 7168; + case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7166; + case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7167; + case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XP): return 7169; + case RedWool::RedWool(): return 1097; + case RedstoneBlock::RedstoneBlock(): return 5683; + case RedstoneLamp::RedstoneLamp(true): return 4636; + case RedstoneLamp::RedstoneLamp(false): return 4637; + case RedstoneOre::RedstoneOre(true): return 3379; + case RedstoneOre::RedstoneOre(false): return 3380; + case RedstoneTorch::RedstoneTorch(true): return 3381; + case RedstoneTorch::RedstoneTorch(false): return 3382; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, false): return 3386; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, true): return 3387; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, false): return 3388; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, true): return 3389; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, true): return 3383; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, false): return 3384; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, true): return 3385; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, false): return 3390; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1753; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1755; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 1757; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 1759; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1761; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 1763; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1765; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 1767; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 1769; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1771; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1773; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 1775; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 1777; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1779; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 1781; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1783; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 1785; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 1787; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1789; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1791; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 1793; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 1795; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1797; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 1799; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1801; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 1803; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 1805; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1807; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1809; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 1811; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 1813; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1815; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 1817; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1819; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 1821; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 1823; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1825; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1827; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 1829; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 1831; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1833; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 1835; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1837; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 1839; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 1841; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1843; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1845; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 1847; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 1849; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1851; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 1853; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1855; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 1857; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 1859; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1861; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1863; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 1865; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 1867; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1869; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 1871; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1873; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 1875; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 1877; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1879; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1881; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 1883; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 1885; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1887; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 1889; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1891; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 1893; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 1895; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1897; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1899; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 1901; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 1903; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1905; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 1907; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1909; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 1911; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 1913; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1915; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1917; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 1919; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 1921; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1923; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 1925; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1927; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 1929; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 1931; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1933; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1935; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 1937; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 1939; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1941; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 1943; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1945; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 1947; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 1949; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1951; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1953; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 1955; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 1957; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1959; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 1961; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1963; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 1965; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 1967; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1969; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1971; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 1973; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 1975; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1977; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 1979; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1981; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 1983; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 1985; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1987; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1989; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 1991; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 1993; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1995; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 1997; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1999; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2001; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2003; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2005; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2007; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2009; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2011; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2013; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2015; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2017; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2019; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2021; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2023; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2025; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2027; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2029; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2031; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2033; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2035; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2037; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2039; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2041; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2043; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2045; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2047; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2050; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2054; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2058; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2062; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2066; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2070; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2074; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2078; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2082; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2086; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2090; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2094; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2098; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2102; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2106; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2110; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2114; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2118; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2122; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2126; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2130; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2134; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2138; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2142; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2146; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2150; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2154; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2158; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2162; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2166; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2170; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2174; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2178; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2182; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2186; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2190; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2194; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2198; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2202; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2206; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2210; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2214; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2218; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2222; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2226; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2230; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2234; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2238; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2242; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2246; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2250; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2254; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2258; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2262; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2266; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2270; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2274; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2278; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2282; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2286; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2290; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2294; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2298; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2302; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2306; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2310; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2314; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2318; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2322; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2326; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2330; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2334; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2338; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2342; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2346; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2350; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2354; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2358; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2362; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2366; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2370; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2374; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2378; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2382; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2386; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2390; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2394; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2398; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2402; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2406; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2410; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2414; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2418; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2422; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2426; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2430; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2434; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2438; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2442; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2446; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2450; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2454; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2458; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2462; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2466; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2470; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2474; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2478; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2482; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2486; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2490; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2494; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2498; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2502; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2506; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2510; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2514; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2518; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2522; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2526; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2530; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2534; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2538; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2542; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2546; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2550; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2554; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2558; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2562; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2566; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2570; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2574; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2578; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2582; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2586; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2590; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2594; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2598; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2602; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2606; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2610; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2614; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2618; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2622; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2626; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2630; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2634; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2638; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2642; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2646; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2650; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2654; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2658; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2662; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2666; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2670; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2674; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2678; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2682; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2686; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2690; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2694; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2698; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2702; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2706; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2710; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2714; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2718; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2722; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2726; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2730; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2734; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2738; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2742; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2746; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2750; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2754; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2758; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2762; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2766; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2770; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2774; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2778; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2782; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2786; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2790; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2794; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2798; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2802; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2806; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2810; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2814; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2818; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2822; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2826; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2830; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2834; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2838; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2842; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2846; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2850; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2854; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2858; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2862; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2866; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2870; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2874; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2878; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2882; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2886; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2890; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2894; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2898; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2902; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2906; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2910; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2914; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2918; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2922; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2926; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2930; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2934; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2938; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2942; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2946; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2950; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2954; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2958; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2962; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2966; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2970; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2974; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2978; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2982; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2986; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2990; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2994; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2998; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 3002; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3006; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 3010; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 3014; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 3018; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3022; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 3026; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3030; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3034; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 3038; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3042; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 3046; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2051; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2055; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2059; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2063; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2067; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2071; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2075; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2079; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2083; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2087; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2091; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2095; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2099; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2103; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2107; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2111; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2115; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2119; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2123; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2127; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2131; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2135; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2139; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2143; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2147; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2151; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2155; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2159; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2163; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2167; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2171; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2175; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2179; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2183; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2187; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2191; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2195; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2199; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2203; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2207; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2211; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2215; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2219; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2223; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2227; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2231; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2235; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2239; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2243; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2247; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2251; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2255; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2259; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2263; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2267; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2271; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2275; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2279; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2283; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2287; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2291; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2295; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2299; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2303; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2307; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2311; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2315; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2319; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2323; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2327; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2331; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2335; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2339; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2343; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2347; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2351; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2355; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2359; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2363; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2367; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2371; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2375; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2379; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2383; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2387; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2391; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2395; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2399; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2403; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2407; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2411; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2415; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2419; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2423; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2427; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2431; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2435; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2439; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2443; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2447; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2451; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2455; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2459; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2463; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2467; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2471; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2475; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2479; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2483; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2487; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2491; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2495; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2499; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2503; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2507; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2511; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2515; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2519; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2523; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2527; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2531; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2535; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2539; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2543; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2547; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2551; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2555; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2559; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2563; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2567; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2571; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2575; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2579; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2583; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2587; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2591; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2595; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2599; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2603; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2607; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2611; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2615; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2619; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2623; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2627; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2631; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2635; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2639; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2643; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2647; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2651; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2655; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2659; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2663; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2667; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2671; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2675; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2679; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2683; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2687; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2691; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2695; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2699; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2703; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2707; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2711; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2715; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2719; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2723; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2727; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2731; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2735; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2739; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2743; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2747; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2751; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2755; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2759; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2763; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2767; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2771; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2775; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2779; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2783; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2787; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2791; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2795; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2799; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2803; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2807; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2811; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2815; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2819; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2823; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2827; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2831; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2835; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2839; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2843; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2847; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2851; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2855; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2859; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2863; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2867; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2871; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2875; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2879; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2883; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2887; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2891; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2895; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2899; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2903; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2907; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2911; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2915; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2919; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2923; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2927; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2931; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2935; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2939; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2943; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2947; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2951; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2955; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2959; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2963; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2967; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2971; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2975; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2979; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2983; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2987; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2991; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2995; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2999; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3003; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3007; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 3011; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3015; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 3019; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 3023; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 3027; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3031; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 3035; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3039; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3043; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 3047; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1752; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 1754; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1756; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 1758; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 1760; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1762; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1764; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 1766; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 1768; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1770; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 1772; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1774; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 1776; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 1778; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1780; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1782; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 1784; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 1786; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1788; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 1790; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1792; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 1794; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 1796; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1798; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1800; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 1802; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 1804; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1806; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 1808; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1810; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 1812; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 1814; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1816; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1818; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 1820; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 1822; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1824; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 1826; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1828; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 1830; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 1832; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1834; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1836; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 1838; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 1840; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1842; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 1844; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1846; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 1848; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 1850; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1852; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1854; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 1856; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 1858; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1860; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 1862; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1864; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 1866; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 1868; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1870; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1872; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 1874; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 1876; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1878; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 1880; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1882; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 1884; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 1886; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1888; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1890; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 1892; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 1894; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1896; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 1898; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1900; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 1902; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 1904; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1906; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1908; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 1910; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 1912; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1914; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 1916; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1918; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 1920; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 1922; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1924; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1926; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 1928; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 1930; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1932; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 1934; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1936; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 1938; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 1940; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1942; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1944; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 1946; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 1948; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1950; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 1952; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1954; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 1956; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 1958; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1960; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1962; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 1964; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 1966; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1968; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 1970; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1972; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 1974; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 1976; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1978; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1980; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 1982; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 1984; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1986; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 1988; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1990; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 1992; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 1994; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1996; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1998; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2000; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2002; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2004; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2006; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2008; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2010; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2012; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2014; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2016; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2018; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2020; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2022; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2024; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2026; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2028; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2030; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2032; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2034; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2036; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2038; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2040; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2042; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2044; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2046; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2048; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2052; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2056; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2060; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2064; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2068; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2072; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2076; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2080; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2084; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2088; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2092; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2096; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2100; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2104; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2108; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2112; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2116; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2120; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2124; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2128; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2132; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2136; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2140; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2144; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2148; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2152; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2156; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2160; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2164; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2168; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2172; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2176; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2180; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2184; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2188; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2192; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2196; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2200; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2204; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2208; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2212; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2216; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2220; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2224; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2228; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2232; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2236; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2240; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2244; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2248; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2252; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2256; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2260; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2264; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2268; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2272; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2276; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2280; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2284; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2288; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2292; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2296; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2300; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2304; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2308; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2312; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2316; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2320; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2324; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2328; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2332; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2336; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2340; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2344; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2348; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2352; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2356; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2360; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2364; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2368; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2372; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2376; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2380; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2384; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2388; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2392; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2396; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2400; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2404; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2408; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2412; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2416; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2420; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2424; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2428; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2432; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2436; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2440; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2444; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2448; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2452; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2456; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2460; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2464; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2468; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2472; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2476; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2480; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2484; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2488; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2492; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2496; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2500; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2504; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2508; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2512; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2516; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2520; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2524; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2528; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2532; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2536; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2540; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2544; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2548; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2552; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2556; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2560; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2564; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2568; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2572; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2576; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2580; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2584; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2588; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2592; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2596; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2600; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2604; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2608; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2612; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2616; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2620; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2624; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2628; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2632; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2636; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2640; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2644; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2648; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2652; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2656; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2660; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2664; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2668; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2672; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2676; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2680; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2684; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2688; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2692; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2696; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2700; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2704; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2708; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2712; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2716; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2720; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2724; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2728; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2732; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2736; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2740; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2744; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2748; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2752; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2756; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2760; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2764; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2768; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2772; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2776; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2780; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2784; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2788; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2792; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2796; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2800; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2804; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2808; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2812; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2816; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2820; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2824; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2828; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2832; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2836; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2840; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2844; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2848; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2852; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2856; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2860; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2864; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2868; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2872; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2876; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2880; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2884; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2888; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2892; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2896; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2900; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2904; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2908; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2912; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2916; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2920; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2924; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2928; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2932; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2936; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2940; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2944; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2948; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2952; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2956; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2960; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2964; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2968; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2972; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2976; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2980; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2984; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2988; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2992; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2996; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 3000; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3004; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 3008; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3012; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3016; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 3020; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3024; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 3028; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 3032; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 3036; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3040; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 3044; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2049; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2053; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2057; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2061; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2065; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2069; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2073; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2077; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2081; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2085; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2089; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2093; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2097; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2101; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2105; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2109; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2113; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2117; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2121; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2125; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2129; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2133; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2137; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2141; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2145; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2149; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2153; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2157; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2161; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2165; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2169; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2173; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2177; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2181; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2185; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2189; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2193; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2197; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2201; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2205; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2209; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2213; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2217; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2221; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2225; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2229; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2233; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2237; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2241; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2245; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2249; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2253; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2257; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2261; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2265; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2269; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2273; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2277; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2281; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2285; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2289; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2293; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2297; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2301; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2305; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2309; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2313; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2317; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2321; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2325; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2329; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2333; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2337; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2341; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2345; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2349; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2353; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2357; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2361; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2365; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2369; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2373; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2377; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2381; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2385; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2389; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2393; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2397; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2401; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2405; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2409; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2413; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2417; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2421; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2425; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2429; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2433; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2437; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2441; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2445; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2449; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2453; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2457; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2461; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2465; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2469; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2473; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2477; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2481; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2485; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2489; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2493; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2497; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2501; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2505; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2509; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2513; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2517; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2521; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2525; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2529; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2533; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2537; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2541; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2545; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2549; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2553; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2557; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2561; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2565; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2569; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2573; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2577; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2581; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2585; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2589; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2593; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2597; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2601; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2605; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2609; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2613; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2617; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2621; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2625; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2629; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2633; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2637; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2641; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2645; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2649; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2653; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2657; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2661; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2665; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2669; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2673; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2677; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2681; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2685; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2689; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2693; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2697; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2701; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2705; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2709; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2713; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2717; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2721; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2725; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2729; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2733; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2737; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2741; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2745; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2749; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2753; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2757; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2761; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2765; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2769; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2773; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2777; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2781; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2785; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2789; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2793; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2797; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2801; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2805; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2809; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2813; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2817; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2821; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2825; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2829; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2833; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2837; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2841; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2845; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2849; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2853; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2857; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2861; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2865; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2869; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2873; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2877; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2881; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2885; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2889; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2893; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2897; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2901; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2905; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2909; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2913; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2917; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2921; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2925; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2929; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2933; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2937; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2941; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2945; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2949; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2953; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2957; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2961; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2965; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2969; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2973; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2977; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2981; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2985; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2989; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2993; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2997; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 3001; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 3005; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 3009; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3013; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 3017; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3021; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3025; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 3029; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3033; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 3037; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 3041; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 3045; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, true): return 3547; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, true): return 3555; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, true): return 3563; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, true): return 3571; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, false): return 3516; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, false): return 3524; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, false): return 3532; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, false): return 3540; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, false): return 3548; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, false): return 3556; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, false): return 3564; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, false): return 3572; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, true): return 3517; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, true): return 3525; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, true): return 3533; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, true): return 3541; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, true): return 3549; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, true): return 3557; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, true): return 3565; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, true): return 3573; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, false): return 3518; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, false): return 3526; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, false): return 3534; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, false): return 3542; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, false): return 3550; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, false): return 3558; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, false): return 3566; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, false): return 3574; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, true): return 3519; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, true): return 3527; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, true): return 3535; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, true): return 3543; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, true): return 3551; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, true): return 3559; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, true): return 3567; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, true): return 3575; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, false): return 3520; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, false): return 3528; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, false): return 3536; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, false): return 3544; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, false): return 3552; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, false): return 3560; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, false): return 3568; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, true): return 3513; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, true): return 3521; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, true): return 3529; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, true): return 3537; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, true): return 3545; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, true): return 3553; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, true): return 3561; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, true): return 3569; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, false): return 3514; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, false): return 3522; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, false): return 3530; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, false): return 3538; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, false): return 3546; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, false): return 3554; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, false): return 3562; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, false): return 3570; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, true): return 3515; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, true): return 3523; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, true): return 3531; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, true): return 3539; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, false): return 3576; + case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 8164; + case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 8165; + case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 8166; + case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 8167; + case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 8168; + case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 8169; + case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 8170; + case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 8171; + case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 8172; + case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 8173; + case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 8174; + case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 8175; + case RoseBush::RoseBush(RoseBush::Half::Upper): return 6846; + case RoseBush::RoseBush(RoseBush::Half::Lower): return 6847; + case Sand::Sand(): return 66; + case Sandstone::Sandstone(): return 245; + case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Top): return 7300; + case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Bottom): return 7302; + case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Double): return 7304; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 4695; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 4697; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 4699; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 4701; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 4703; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 4705; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 4707; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 4709; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 4711; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 4713; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 4651; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 4715; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 4653; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 4717; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 4655; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 4719; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 4657; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 4721; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 4659; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 4723; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 4661; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 4725; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 4663; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 4727; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 4665; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 4729; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 4667; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 4669; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 4671; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 4673; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 4675; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 4677; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 4679; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 4681; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 4683; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 4685; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 4687; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 4689; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 4691; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 4693; + case SeaLantern::SeaLantern(): return 6819; + case SeaPickle::SeaPickle(2): return 8567; + case SeaPickle::SeaPickle(1): return 8565; + case SeaPickle::SeaPickle(3): return 8569; + case SeaPickle::SeaPickle(4): return 8571; + case Seagrass::Seagrass(): return 1044; + case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8213; + case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8214; + case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8211; + case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8215; + case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8212; + case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8216; + case OakSign::OakSign(2): return 3080; + case OakSign::OakSign(3): return 3082; + case OakSign::OakSign(4): return 3084; + case OakSign::OakSign(5): return 3086; + case OakSign::OakSign(6): return 3088; + case OakSign::OakSign(7): return 3090; + case OakSign::OakSign(8): return 3092; + case OakSign::OakSign(9): return 3094; + case OakSign::OakSign(10): return 3096; + case OakSign::OakSign(11): return 3098; + case OakSign::OakSign(12): return 3100; + case OakSign::OakSign(13): return 3102; + case OakSign::OakSign(14): return 3104; + case OakSign::OakSign(0): return 3076; + case OakSign::OakSign(1): return 3078; + case OakSign::OakSign(15): return 3106; + case SkeletonSkull::SkeletonSkull(10): return 5461; + case SkeletonSkull::SkeletonSkull(11): return 5462; + case SkeletonSkull::SkeletonSkull(12): return 5463; + case SkeletonSkull::SkeletonSkull(13): return 5464; + case SkeletonSkull::SkeletonSkull(14): return 5465; + case SkeletonSkull::SkeletonSkull(0): return 5451; + case SkeletonSkull::SkeletonSkull(1): return 5452; + case SkeletonSkull::SkeletonSkull(2): return 5453; + case SkeletonSkull::SkeletonSkull(3): return 5454; + case SkeletonSkull::SkeletonSkull(4): return 5455; + case SkeletonSkull::SkeletonSkull(5): return 5456; + case SkeletonSkull::SkeletonSkull(6): return 5457; + case SkeletonSkull::SkeletonSkull(7): return 5458; + case SkeletonSkull::SkeletonSkull(8): return 5459; + case SkeletonSkull::SkeletonSkull(9): return 5460; + case SkeletonSkull::SkeletonSkull(15): return 5466; + case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XM): return 5449; + case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM): return 5447; + case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP): return 5448; + case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XP): return 5450; + case SlimeBlock::SlimeBlock(): return 6492; + case SmoothQuartz::SmoothQuartz(): return 7355; + case SmoothRedSandstone::SmoothRedSandstone(): return 7356; + case SmoothSandstone::SmoothSandstone(): return 7354; + case SmoothStone::SmoothStone(): return 7353; + case Snow::Snow(7): return 3421; + case Snow::Snow(1): return 3415; + case Snow::Snow(2): return 3416; + case Snow::Snow(3): return 3417; + case Snow::Snow(4): return 3418; + case Snow::Snow(5): return 3419; + case Snow::Snow(6): return 3420; + case Snow::Snow(8): return 3422; + case SnowBlock::SnowBlock(): return 3424; + case SoulSand::SoulSand(): return 3494; + case Spawner::Spawner(): return 1647; + case Sponge::Sponge(): return 228; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5350; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5327; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5331; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5335; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5339; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5343; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5347; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5328; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5332; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5336; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5340; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5344; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5348; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5329; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5333; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5337; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5341; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5345; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5349; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5330; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5334; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5338; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5342; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5346; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 7723; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 7739; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 7692; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 7708; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 7724; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 7677; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 7693; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 7709; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 7725; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 7678; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 7694; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 7710; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 7726; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 7679; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 7695; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 7711; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 7727; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 7680; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 7696; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 7712; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 7728; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 7681; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 7697; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 7713; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 7729; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 7682; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 7698; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 7714; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 7730; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 7683; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 7699; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 7715; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 7731; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 7684; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 7700; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 7716; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 7732; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 7685; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 7701; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 7717; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 7733; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 7686; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 7702; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 7718; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 7734; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 7687; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 7703; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 7719; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 7735; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 7688; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 7704; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 7720; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 7736; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 7689; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 7705; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 7721; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 7737; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 7690; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 7706; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 7722; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 7738; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 7691; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 7707; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 7740; + case SpruceFence::SpruceFence(true, true, true, false): return 7520; + case SpruceFence::SpruceFence(true, true, false, false): return 7524; + case SpruceFence::SpruceFence(true, false, true, false): return 7528; + case SpruceFence::SpruceFence(true, false, false, false): return 7532; + case SpruceFence::SpruceFence(false, true, true, false): return 7536; + case SpruceFence::SpruceFence(false, true, false, false): return 7540; + case SpruceFence::SpruceFence(false, false, true, false): return 7544; + case SpruceFence::SpruceFence(true, true, true, true): return 7519; + case SpruceFence::SpruceFence(true, true, false, true): return 7523; + case SpruceFence::SpruceFence(true, false, true, true): return 7527; + case SpruceFence::SpruceFence(true, false, false, true): return 7531; + case SpruceFence::SpruceFence(false, true, true, true): return 7535; + case SpruceFence::SpruceFence(false, true, false, true): return 7539; + case SpruceFence::SpruceFence(false, false, true, true): return 7543; + case SpruceFence::SpruceFence(false, false, false, true): return 7547; + case SpruceFence::SpruceFence(false, false, false, false): return 7548; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7365; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7369; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7373; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7377; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7381; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7385; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7358; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7362; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7366; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7370; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7374; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7378; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7382; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7386; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7359; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7363; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7367; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7371; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7375; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7379; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7383; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7387; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7360; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7364; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7368; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7372; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7376; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7380; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7384; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7357; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7361; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7388; + case SpruceLeaves::SpruceLeaves(6, true): return 168; + case SpruceLeaves::SpruceLeaves(2, false): return 161; + case SpruceLeaves::SpruceLeaves(6, false): return 169; + case SpruceLeaves::SpruceLeaves(3, true): return 162; + case SpruceLeaves::SpruceLeaves(7, true): return 170; + case SpruceLeaves::SpruceLeaves(3, false): return 163; + case SpruceLeaves::SpruceLeaves(7, false): return 171; + case SpruceLeaves::SpruceLeaves(4, true): return 164; + case SpruceLeaves::SpruceLeaves(4, false): return 165; + case SpruceLeaves::SpruceLeaves(1, true): return 158; + case SpruceLeaves::SpruceLeaves(5, true): return 166; + case SpruceLeaves::SpruceLeaves(1, false): return 159; + case SpruceLeaves::SpruceLeaves(5, false): return 167; + case SpruceLeaves::SpruceLeaves(2, true): return 160; + case SpruceLog::SpruceLog(SpruceLog::Axis::Y): return 76; + case SpruceLog::SpruceLog(SpruceLog::Axis::Z): return 77; + case SpruceLog::SpruceLog(SpruceLog::Axis::X): return 75; + case SprucePlanks::SprucePlanks(): return 16; + case SprucePressurePlate::SprucePressurePlate(true): return 3369; + case SprucePressurePlate::SprucePressurePlate(false): return 3370; + case SpruceSapling::SpruceSapling(0): return 23; + case SpruceSapling::SpruceSapling(1): return 24; + case SpruceSlab::SpruceSlab(SpruceSlab::Type::Double): return 7268; + case SpruceSlab::SpruceSlab(SpruceSlab::Type::Top): return 7264; + case SpruceSlab::SpruceSlab(SpruceSlab::Type::Bottom): return 7266; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 4885; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 4949; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 4887; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 4951; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 4889; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 4953; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 4891; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 4955; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 4893; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 4957; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 4895; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 4959; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 4897; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 4961; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 4899; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 4963; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 4901; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 4903; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 4905; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 4907; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 4909; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 4911; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 4913; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 4915; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 4917; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 4919; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 4921; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 4923; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 4925; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 4927; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 4929; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 4931; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 4933; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 4935; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 4937; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 4939; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 4941; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 4943; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 4945; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 4947; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, true): return 3658; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, true): return 3666; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, true): return 3674; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, true): return 3682; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, true): return 3690; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, true): return 3698; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, true): return 3706; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, true): return 3714; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, false): return 3660; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, false): return 3668; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, false): return 3676; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, false): return 3684; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, false): return 3692; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, false): return 3700; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, false): return 3708; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, false): return 3716; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, true): return 3662; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, true): return 3670; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, true): return 3678; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, true): return 3686; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, true): return 3694; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, true): return 3702; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, true): return 3710; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, true): return 3718; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, false): return 3664; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, false): return 3672; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, false): return 3680; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, false): return 3688; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, false): return 3696; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, false): return 3704; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, false): return 3712; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, false): return 3720; + case SpruceWood::SpruceWood(SpruceWood::Axis::Y): return 112; + case SpruceWood::SpruceWood(SpruceWood::Axis::Z): return 113; + case SpruceWood::SpruceWood(SpruceWood::Axis::X): return 111; + case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YP): return 1032; + case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZP): return 1036; + case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XP): return 1029; + case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YM): return 1033; + case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XM): return 1037; + case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZP): return 1030; + case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZM): return 1034; + case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YP): return 1038; + case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XM): return 1031; + case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XP): return 1035; + case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YM): return 1039; + case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZM): return 1028; + case Stone::Stone(): return 1; + case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Top): return 7324; + case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Bottom): return 7326; + case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Double): return 7328; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4441; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4443; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4445; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4447; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4449; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4451; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4453; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4455; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4457; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4459; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4461; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4463; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4465; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4467; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4469; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4471; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4473; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4475; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4413; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4477; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4415; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4479; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4417; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4481; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4419; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4483; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4421; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4485; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4423; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4487; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4425; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4489; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4427; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4491; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4429; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4431; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4433; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4435; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4437; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4439; + case StoneBricks::StoneBricks(): return 3983; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 3392; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 3394; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 3396; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 3398; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 3400; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 3402; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 3404; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 3406; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 3408; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 3410; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 3412; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 3414; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 3391; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 3393; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 3395; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 3397; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 3399; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 3401; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 3403; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 3405; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 3407; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 3409; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 3411; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 3413; + case StonePressurePlate::StonePressurePlate(true): return 3301; + case StonePressurePlate::StonePressurePlate(false): return 3302; + case StoneSlab::StoneSlab(StoneSlab::Type::Bottom): return 7296; + case StoneSlab::StoneSlab(StoneSlab::Type::Double): return 7298; + case StoneSlab::StoneSlab(StoneSlab::Type::Top): return 7294; + case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Y): return 100; + case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Z): return 101; + case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::X): return 99; + case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::X): return 138; + case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Z): return 140; + case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Y): return 139; + case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Y): return 94; + case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Z): return 95; + case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::X): return 93; + case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::X): return 132; + case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Z): return 134; + case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Y): return 133; + case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Y): return 103; + case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Z): return 104; + case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::X): return 102; + case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::X): return 141; + case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Z): return 143; + case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Y): return 142; + case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Y): return 97; + case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Z): return 98; + case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::X): return 96; + case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::X): return 135; + case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Z): return 137; + case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Y): return 136; + case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Y): return 106; + case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Z): return 107; + case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::X): return 105; + case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Y): return 127; + case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Z): return 128; + case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::X): return 126; + case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Y): return 91; + case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Z): return 92; + case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::X): return 90; + case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::X): return 129; + case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Z): return 131; + case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Y): return 130; + case StructureBlock::StructureBlock(StructureBlock::Mode::Corner): return 8580; + case StructureBlock::StructureBlock(StructureBlock::Mode::Load): return 8579; + case StructureBlock::StructureBlock(StructureBlock::Mode::Save): return 8578; + case StructureBlock::StructureBlock(StructureBlock::Mode::Data): return 8581; + case StructureVoid::StructureVoid(): return 8198; + case SugarCane::SugarCane(9): return 3451; + case SugarCane::SugarCane(2): return 3444; + case SugarCane::SugarCane(10): return 3452; + case SugarCane::SugarCane(3): return 3445; + case SugarCane::SugarCane(11): return 3453; + case SugarCane::SugarCane(4): return 3446; + case SugarCane::SugarCane(12): return 3454; + case SugarCane::SugarCane(5): return 3447; + case SugarCane::SugarCane(13): return 3455; + case SugarCane::SugarCane(6): return 3448; + case SugarCane::SugarCane(14): return 3456; + case SugarCane::SugarCane(7): return 3449; + case SugarCane::SugarCane(0): return 3442; + case SugarCane::SugarCane(8): return 3450; + case SugarCane::SugarCane(1): return 3443; + case SugarCane::SugarCane(15): return 3457; + case Sunflower::Sunflower(Sunflower::Half::Upper): return 6842; + case Sunflower::Sunflower(Sunflower::Half::Lower): return 6843; + case TallGrass::TallGrass(TallGrass::Half::Upper): return 6850; + case TallGrass::TallGrass(TallGrass::Half::Lower): return 6851; + case TallSeagrass::TallSeagrass(TallSeagrass::Half::Upper): return 1045; + case TallSeagrass::TallSeagrass(TallSeagrass::Half::Lower): return 1046; + case Terracotta::Terracotta(): return 6839; + case TNT::TNT(true): return 1126; + case TNT::TNT(false): return 1126; + case Torch::Torch(): return 1130; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Single): return 5598; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Right): return 5602; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Single): return 5580; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Right): return 5584; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Left): return 5588; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Single): return 5592; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Right): return 5596; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Left): return 5600; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Left): return 5582; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Single): return 5586; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Right): return 5590; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Left): return 5594; + case Tripwire::Tripwire(true, true, true, true, true, false, false): return 4758; + case Tripwire::Tripwire(false, true, true, true, true, false, false): return 4822; + case Tripwire::Tripwire(true, true, true, true, false, true, true): return 4759; + case Tripwire::Tripwire(false, true, true, true, false, true, true): return 4823; + case Tripwire::Tripwire(true, true, true, true, false, true, false): return 4760; + case Tripwire::Tripwire(false, true, true, true, false, true, false): return 4824; + case Tripwire::Tripwire(true, true, true, true, false, false, true): return 4761; + case Tripwire::Tripwire(false, true, true, true, false, false, true): return 4825; + case Tripwire::Tripwire(true, true, true, true, false, false, false): return 4762; + case Tripwire::Tripwire(false, true, true, true, false, false, false): return 4826; + case Tripwire::Tripwire(true, true, true, false, true, true, true): return 4763; + case Tripwire::Tripwire(false, true, true, false, true, true, true): return 4827; + case Tripwire::Tripwire(true, true, true, false, true, true, false): return 4764; + case Tripwire::Tripwire(false, true, true, false, true, true, false): return 4828; + case Tripwire::Tripwire(true, true, true, false, true, false, true): return 4765; + case Tripwire::Tripwire(false, true, true, false, true, false, true): return 4829; + case Tripwire::Tripwire(true, true, true, false, true, false, false): return 4766; + case Tripwire::Tripwire(false, true, true, false, true, false, false): return 4830; + case Tripwire::Tripwire(true, true, true, false, false, true, true): return 4767; + case Tripwire::Tripwire(false, true, true, false, false, true, true): return 4831; + case Tripwire::Tripwire(true, true, true, false, false, true, false): return 4768; + case Tripwire::Tripwire(false, true, true, false, false, true, false): return 4832; + case Tripwire::Tripwire(true, true, true, false, false, false, true): return 4769; + case Tripwire::Tripwire(false, true, true, false, false, false, true): return 4833; + case Tripwire::Tripwire(true, true, true, false, false, false, false): return 4770; + case Tripwire::Tripwire(false, true, true, false, false, false, false): return 4834; + case Tripwire::Tripwire(true, true, false, true, true, true, true): return 4771; + case Tripwire::Tripwire(false, true, false, true, true, true, true): return 4835; + case Tripwire::Tripwire(true, true, false, true, true, true, false): return 4772; + case Tripwire::Tripwire(false, true, false, true, true, true, false): return 4836; + case Tripwire::Tripwire(true, true, false, true, true, false, true): return 4773; + case Tripwire::Tripwire(false, true, false, true, true, false, true): return 4837; + case Tripwire::Tripwire(true, true, false, true, true, false, false): return 4774; + case Tripwire::Tripwire(false, true, false, true, true, false, false): return 4838; + case Tripwire::Tripwire(true, true, false, true, false, true, true): return 4775; + case Tripwire::Tripwire(false, true, false, true, false, true, true): return 4839; + case Tripwire::Tripwire(true, true, false, true, false, true, false): return 4776; + case Tripwire::Tripwire(false, true, false, true, false, true, false): return 4840; + case Tripwire::Tripwire(true, true, false, true, false, false, true): return 4777; + case Tripwire::Tripwire(false, true, false, true, false, false, true): return 4841; + case Tripwire::Tripwire(true, true, false, true, false, false, false): return 4778; + case Tripwire::Tripwire(false, true, false, true, false, false, false): return 4842; + case Tripwire::Tripwire(true, true, false, false, true, true, true): return 4779; + case Tripwire::Tripwire(false, true, false, false, true, true, true): return 4843; + case Tripwire::Tripwire(true, true, false, false, true, true, false): return 4780; + case Tripwire::Tripwire(false, true, false, false, true, true, false): return 4844; + case Tripwire::Tripwire(true, true, false, false, true, false, true): return 4781; + case Tripwire::Tripwire(false, true, false, false, true, false, true): return 4845; + case Tripwire::Tripwire(true, true, false, false, true, false, false): return 4782; + case Tripwire::Tripwire(false, true, false, false, true, false, false): return 4846; + case Tripwire::Tripwire(true, true, false, false, false, true, true): return 4783; + case Tripwire::Tripwire(false, true, false, false, false, true, true): return 4847; + case Tripwire::Tripwire(true, true, false, false, false, true, false): return 4784; + case Tripwire::Tripwire(false, true, false, false, false, true, false): return 4848; + case Tripwire::Tripwire(true, true, false, false, false, false, true): return 4785; + case Tripwire::Tripwire(false, true, false, false, false, false, true): return 4849; + case Tripwire::Tripwire(true, true, false, false, false, false, false): return 4786; + case Tripwire::Tripwire(false, true, false, false, false, false, false): return 4850; + case Tripwire::Tripwire(true, false, true, true, true, true, true): return 4787; + case Tripwire::Tripwire(false, false, true, true, true, true, true): return 4851; + case Tripwire::Tripwire(true, false, true, true, true, true, false): return 4788; + case Tripwire::Tripwire(false, false, true, true, true, true, false): return 4852; + case Tripwire::Tripwire(true, false, true, true, true, false, true): return 4789; + case Tripwire::Tripwire(false, false, true, true, true, false, true): return 4853; + case Tripwire::Tripwire(true, false, true, true, true, false, false): return 4790; + case Tripwire::Tripwire(false, false, true, true, true, false, false): return 4854; + case Tripwire::Tripwire(true, false, true, true, false, true, true): return 4791; + case Tripwire::Tripwire(false, false, true, true, false, true, true): return 4855; + case Tripwire::Tripwire(true, false, true, true, false, true, false): return 4792; + case Tripwire::Tripwire(false, false, true, true, false, true, false): return 4856; + case Tripwire::Tripwire(true, false, true, true, false, false, true): return 4793; + case Tripwire::Tripwire(false, false, true, true, false, false, true): return 4857; + case Tripwire::Tripwire(true, false, true, true, false, false, false): return 4794; + case Tripwire::Tripwire(false, false, true, true, false, false, false): return 4858; + case Tripwire::Tripwire(true, false, true, false, true, true, true): return 4795; + case Tripwire::Tripwire(false, false, true, false, true, true, true): return 4859; + case Tripwire::Tripwire(true, false, true, false, true, true, false): return 4796; + case Tripwire::Tripwire(false, false, true, false, true, true, false): return 4860; + case Tripwire::Tripwire(true, false, true, false, true, false, true): return 4797; + case Tripwire::Tripwire(false, false, true, false, true, false, true): return 4861; + case Tripwire::Tripwire(true, false, true, false, true, false, false): return 4798; + case Tripwire::Tripwire(false, false, true, false, true, false, false): return 4862; + case Tripwire::Tripwire(true, false, true, false, false, true, true): return 4799; + case Tripwire::Tripwire(false, false, true, false, false, true, true): return 4863; + case Tripwire::Tripwire(true, false, true, false, false, true, false): return 4800; + case Tripwire::Tripwire(false, false, true, false, false, true, false): return 4864; + case Tripwire::Tripwire(true, false, true, false, false, false, true): return 4801; + case Tripwire::Tripwire(false, false, true, false, false, false, true): return 4865; + case Tripwire::Tripwire(true, false, true, false, false, false, false): return 4802; + case Tripwire::Tripwire(false, false, true, false, false, false, false): return 4866; + case Tripwire::Tripwire(true, false, false, true, true, true, true): return 4803; + case Tripwire::Tripwire(false, false, false, true, true, true, true): return 4867; + case Tripwire::Tripwire(true, false, false, true, true, true, false): return 4804; + case Tripwire::Tripwire(false, false, false, true, true, true, false): return 4868; + case Tripwire::Tripwire(true, false, false, true, true, false, true): return 4805; + case Tripwire::Tripwire(false, false, false, true, true, false, true): return 4869; + case Tripwire::Tripwire(true, false, false, true, true, false, false): return 4806; + case Tripwire::Tripwire(false, false, false, true, true, false, false): return 4870; + case Tripwire::Tripwire(true, false, false, true, false, true, true): return 4807; + case Tripwire::Tripwire(false, false, false, true, false, true, true): return 4871; + case Tripwire::Tripwire(true, false, false, true, false, true, false): return 4808; + case Tripwire::Tripwire(false, false, false, true, false, true, false): return 4872; + case Tripwire::Tripwire(true, false, false, true, false, false, true): return 4809; + case Tripwire::Tripwire(false, false, false, true, false, false, true): return 4873; + case Tripwire::Tripwire(true, false, false, true, false, false, false): return 4810; + case Tripwire::Tripwire(false, false, false, true, false, false, false): return 4874; + case Tripwire::Tripwire(true, false, false, false, true, true, true): return 4811; + case Tripwire::Tripwire(false, false, false, false, true, true, true): return 4875; + case Tripwire::Tripwire(true, false, false, false, true, true, false): return 4812; + case Tripwire::Tripwire(false, false, false, false, true, true, false): return 4876; + case Tripwire::Tripwire(true, false, false, false, true, false, true): return 4813; + case Tripwire::Tripwire(false, false, false, false, true, false, true): return 4877; + case Tripwire::Tripwire(true, false, false, false, true, false, false): return 4814; + case Tripwire::Tripwire(false, false, false, false, true, false, false): return 4878; + case Tripwire::Tripwire(true, false, false, false, false, true, true): return 4815; + case Tripwire::Tripwire(false, false, false, false, false, true, true): return 4879; + case Tripwire::Tripwire(true, false, false, false, false, true, false): return 4816; + case Tripwire::Tripwire(false, false, false, false, false, true, false): return 4880; + case Tripwire::Tripwire(true, false, false, false, false, false, true): return 4817; + case Tripwire::Tripwire(false, false, false, false, false, false, true): return 4881; + case Tripwire::Tripwire(true, false, false, false, false, false, false): return 4818; + case Tripwire::Tripwire(true, true, true, true, true, true, true): return 4755; + case Tripwire::Tripwire(false, true, true, true, true, true, true): return 4819; + case Tripwire::Tripwire(true, true, true, true, true, true, false): return 4756; + case Tripwire::Tripwire(false, true, true, true, true, true, false): return 4820; + case Tripwire::Tripwire(true, true, true, true, true, false, true): return 4757; + case Tripwire::Tripwire(false, true, true, true, true, false, true): return 4821; + case Tripwire::Tripwire(false, false, false, false, false, false, false): return 4882; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, true): return 4741; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, false): return 4742; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, true): return 4743; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, false): return 4744; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, true): return 4745; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, false): return 4746; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, true): return 4747; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, false): return 4748; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, true): return 4749; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, false): return 4750; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, true): return 4751; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, false): return 4752; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, true): return 4753; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, true): return 4739; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, false): return 4740; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, false): return 4754; + case TubeCoral::TubeCoral(): return 8459; + case TubeCoralBlock::TubeCoralBlock(): return 8454; + case TubeCoralFan::TubeCoralFan(): return 8555; + case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8507; + case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8505; + case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8509; + case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8511; + case TurtleEgg::TurtleEgg(3, 2): return 8445; + case TurtleEgg::TurtleEgg(4, 1): return 8447; + case TurtleEgg::TurtleEgg(1, 1): return 8438; + case TurtleEgg::TurtleEgg(2, 0): return 8440; + case TurtleEgg::TurtleEgg(2, 2): return 8442; + case TurtleEgg::TurtleEgg(3, 1): return 8444; + case TurtleEgg::TurtleEgg(4, 0): return 8446; + case TurtleEgg::TurtleEgg(4, 2): return 8448; + case TurtleEgg::TurtleEgg(1, 0): return 8437; + case TurtleEgg::TurtleEgg(1, 2): return 8439; + case TurtleEgg::TurtleEgg(2, 1): return 8441; + case TurtleEgg::TurtleEgg(3, 0): return 8443; + case Vine::Vine(false, false, false, true, true): return 4296; + case Vine::Vine(true, true, true, true, false): return 4269; + case Vine::Vine(true, true, false, true, false): return 4273; + case Vine::Vine(true, false, true, true, false): return 4277; + case Vine::Vine(true, false, false, true, false): return 4281; + case Vine::Vine(false, true, true, true, false): return 4285; + case Vine::Vine(false, true, false, true, false): return 4289; + case Vine::Vine(false, false, true, true, false): return 4293; + case Vine::Vine(false, false, false, true, false): return 4297; + case Vine::Vine(true, true, true, false, true): return 4270; + case Vine::Vine(true, true, false, false, true): return 4274; + case Vine::Vine(true, false, true, false, true): return 4278; + case Vine::Vine(true, false, false, false, true): return 4282; + case Vine::Vine(false, true, true, false, true): return 4286; + case Vine::Vine(false, true, false, false, true): return 4290; + case Vine::Vine(false, false, true, false, true): return 4294; + case Vine::Vine(false, false, false, false, true): return 4298; + case Vine::Vine(true, true, true, false, false): return 4271; + case Vine::Vine(true, true, false, false, false): return 4275; + case Vine::Vine(true, false, true, false, false): return 4279; + case Vine::Vine(true, false, false, false, false): return 4283; + case Vine::Vine(false, true, true, false, false): return 4287; + case Vine::Vine(false, true, false, false, false): return 4291; + case Vine::Vine(false, false, true, false, false): return 4295; + case Vine::Vine(true, true, true, true, true): return 4268; + case Vine::Vine(true, true, false, true, true): return 4272; + case Vine::Vine(true, false, true, true, true): return 4276; + case Vine::Vine(true, false, false, true, true): return 4280; + case Vine::Vine(false, true, true, true, true): return 4284; + case Vine::Vine(false, true, false, true, true): return 4288; + case Vine::Vine(false, false, true, true, true): return 4292; + case Vine::Vine(false, false, false, false, false): return 4299; + case VoidAir::VoidAir(): return 8574; + case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XM): return 3274; + case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZM): return 3270; + case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZP): return 3272; + case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XP): return 3276; + case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZM): return 1131; + case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZP): return 1132; + case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XM): return 1133; + case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XP): return 1134; + case Water::Water(12): return 46; + case Water::Water(14): return 48; + case Water::Water(1): return 35; + case Water::Water(3): return 37; + case Water::Water(5): return 39; + case Water::Water(7): return 41; + case Water::Water(9): return 43; + case Water::Water(11): return 45; + case Water::Water(13): return 47; + case Water::Water(0): return 34; + case Water::Water(2): return 36; + case Water::Water(4): return 38; + case Water::Water(6): return 40; + case Water::Water(8): return 42; + case Water::Water(10): return 44; + case Water::Water(15): return 49; + case WetSponge::WetSponge(): return 229; + case Wheat::Wheat(6): return 3057; + case Wheat::Wheat(0): return 3051; + case Wheat::Wheat(1): return 3052; + case Wheat::Wheat(2): return 3053; + case Wheat::Wheat(3): return 3054; + case Wheat::Wheat(4): return 3055; + case Wheat::Wheat(5): return 3056; + case Wheat::Wheat(7): return 3058; + case WhiteBanner::WhiteBanner(2): return 6856; + case WhiteBanner::WhiteBanner(3): return 6857; + case WhiteBanner::WhiteBanner(4): return 6858; + case WhiteBanner::WhiteBanner(5): return 6859; + case WhiteBanner::WhiteBanner(6): return 6860; + case WhiteBanner::WhiteBanner(7): return 6861; + case WhiteBanner::WhiteBanner(8): return 6862; + case WhiteBanner::WhiteBanner(9): return 6863; + case WhiteBanner::WhiteBanner(10): return 6864; + case WhiteBanner::WhiteBanner(11): return 6865; + case WhiteBanner::WhiteBanner(12): return 6866; + case WhiteBanner::WhiteBanner(13): return 6867; + case WhiteBanner::WhiteBanner(14): return 6868; + case WhiteBanner::WhiteBanner(0): return 6854; + case WhiteBanner::WhiteBanner(1): return 6855; + case WhiteBanner::WhiteBanner(15): return 6869; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Head): return 758; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Head): return 760; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Head): return 762; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Foot): return 749; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Foot): return 751; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Foot): return 753; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Foot): return 755; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Foot): return 757; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Foot): return 759; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Foot): return 761; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Head): return 748; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Head): return 750; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Head): return 752; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Head): return 754; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Head): return 756; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Foot): return 763; + case WhiteCarpet::WhiteCarpet(): return 6823; + case WhiteConcrete::WhiteConcrete(): return 8377; + case WhiteConcretePowder::WhiteConcretePowder(): return 8393; + case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8313; + case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8315; + case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8314; + case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8316; + case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8220; + case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8217; + case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8221; + case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8218; + case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8222; + case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8219; + case WhiteStainedGlass::WhiteStainedGlass(): return 3577; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, true): return 5846; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, true): return 5850; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, false): return 5823; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, false): return 5827; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, false): return 5831; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, false): return 5835; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, false): return 5839; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, false): return 5843; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, false): return 5847; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, true): return 5822; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, true): return 5826; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, true): return 5830; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, true): return 5834; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, true): return 5838; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, true): return 5842; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, false): return 5851; + case WhiteTerracotta::WhiteTerracotta(): return 5804; + case WhiteTulip::WhiteTulip(): return 1118; + case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7111; + case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XM): return 7112; + case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7110; + case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XP): return 7113; + case WhiteWool::WhiteWool(): return 1083; + case WitherSkeletonSkull::WitherSkeletonSkull(5): return 5476; + case WitherSkeletonSkull::WitherSkeletonSkull(6): return 5477; + case WitherSkeletonSkull::WitherSkeletonSkull(7): return 5478; + case WitherSkeletonSkull::WitherSkeletonSkull(8): return 5479; + case WitherSkeletonSkull::WitherSkeletonSkull(9): return 5480; + case WitherSkeletonSkull::WitherSkeletonSkull(10): return 5481; + case WitherSkeletonSkull::WitherSkeletonSkull(11): return 5482; + case WitherSkeletonSkull::WitherSkeletonSkull(12): return 5483; + case WitherSkeletonSkull::WitherSkeletonSkull(13): return 5484; + case WitherSkeletonSkull::WitherSkeletonSkull(14): return 5485; + case WitherSkeletonSkull::WitherSkeletonSkull(0): return 5471; + case WitherSkeletonSkull::WitherSkeletonSkull(1): return 5472; + case WitherSkeletonSkull::WitherSkeletonSkull(2): return 5473; + case WitherSkeletonSkull::WitherSkeletonSkull(3): return 5474; + case WitherSkeletonSkull::WitherSkeletonSkull(4): return 5475; + case WitherSkeletonSkull::WitherSkeletonSkull(15): return 5486; + case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM): return 5467; + case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP): return 5468; + case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XM): return 5469; + case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XP): return 5470; + case YellowBanner::YellowBanner(13): return 6931; + case YellowBanner::YellowBanner(14): return 6932; + case YellowBanner::YellowBanner(0): return 6918; + case YellowBanner::YellowBanner(1): return 6919; + case YellowBanner::YellowBanner(2): return 6920; + case YellowBanner::YellowBanner(3): return 6921; + case YellowBanner::YellowBanner(4): return 6922; + case YellowBanner::YellowBanner(5): return 6923; + case YellowBanner::YellowBanner(6): return 6924; + case YellowBanner::YellowBanner(7): return 6925; + case YellowBanner::YellowBanner(8): return 6926; + case YellowBanner::YellowBanner(9): return 6927; + case YellowBanner::YellowBanner(10): return 6928; + case YellowBanner::YellowBanner(11): return 6929; + case YellowBanner::YellowBanner(12): return 6930; + case YellowBanner::YellowBanner(15): return 6933; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Head): return 818; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Head): return 820; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Head): return 822; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Head): return 824; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Head): return 826; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Foot): return 813; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Foot): return 815; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Foot): return 817; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Foot): return 819; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Foot): return 821; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Foot): return 823; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Foot): return 825; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Head): return 812; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Head): return 814; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Head): return 816; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Foot): return 827; + case YellowCarpet::YellowCarpet(): return 6827; + case YellowConcrete::YellowConcrete(): return 8381; + case YellowConcretePowder::YellowConcretePowder(): return 8397; + case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8331; + case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8330; + case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8329; + case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8332; + case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8241; + case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8245; + case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8242; + case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8246; + case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8243; + case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8244; + case YellowStainedGlass::YellowStainedGlass(): return 3581; + case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, true): return 5970; + case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, true): return 5974; + case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, true): return 5978; + case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, false): return 5951; + case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, false): return 5955; + case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, false): return 5959; + case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, false): return 5963; + case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, false): return 5967; + case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, false): return 5971; + case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, false): return 5975; + case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, true): return 5950; + case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, true): return 5954; + case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, true): return 5958; + case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, true): return 5962; + case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, true): return 5966; + case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, false): return 5979; + case YellowTerracotta::YellowTerracotta(): return 5808; + case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7126; + case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7127; + case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XM): return 7128; + case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XP): return 7129; + case YellowWool::YellowWool(): return 1087; + case ZombieHead::ZombieHead(0): return 5491; + case ZombieHead::ZombieHead(1): return 5492; + case ZombieHead::ZombieHead(2): return 5493; + case ZombieHead::ZombieHead(3): return 5494; + case ZombieHead::ZombieHead(4): return 5495; + case ZombieHead::ZombieHead(5): return 5496; + case ZombieHead::ZombieHead(6): return 5497; + case ZombieHead::ZombieHead(7): return 5498; + case ZombieHead::ZombieHead(8): return 5499; + case ZombieHead::ZombieHead(9): return 5500; + case ZombieHead::ZombieHead(10): return 5501; + case ZombieHead::ZombieHead(11): return 5502; + case ZombieHead::ZombieHead(12): return 5503; + case ZombieHead::ZombieHead(13): return 5504; + case ZombieHead::ZombieHead(14): return 5505; + case ZombieHead::ZombieHead(15): return 5506; + case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZP): return 5488; + case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XM): return 5489; + case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZM): return 5487; + case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XP): return 5490; + default: return 0; + } + } + + Int32 FromItem(Item ID) + { + switch (ID) + { + case Item::AcaciaBoat: return 762; + case Item::AcaciaButton: return 245; + case Item::AcaciaDoor: return 460; + case Item::AcaciaFence: return 179; + case Item::AcaciaFenceGate: return 214; + case Item::AcaciaLeaves: return 60; + case Item::AcaciaLog: return 36; + case Item::AcaciaPlanks: return 17; + case Item::AcaciaPressurePlate: return 164; + case Item::AcaciaSapling: return 23; + case Item::AcaciaSlab: return 116; + case Item::AcaciaStairs: return 301; + case Item::AcaciaTrapdoor: return 191; + case Item::AcaciaWood: return 54; + case Item::ActivatorRail: return 261; + case Item::Air: return -0; + case Item::Allium: return 101; + case Item::Andesite: return 6; + case Item::Anvil: return 247; + case Item::Apple: return 471; + case Item::ArmorStand: return 721; + case Item::Arrow: return 473; + case Item::AzureBluet: return 102; + case Item::BakedPotato: return 694; + case Item::Barrier: return 279; + case Item::BatSpawnEgg: return 634; + case Item::Beacon: return 238; + case Item::Bedrock: return 25; + case Item::Beef: return 614; + case Item::Beetroot: return 749; + case Item::BeetrootSeeds: return 750; + case Item::BeetrootSoup: return 751; + case Item::BirchBoat: return 760; + case Item::BirchButton: return 243; + case Item::BirchDoor: return 458; + case Item::BirchFence: return 177; + case Item::BirchFenceGate: return 212; + case Item::BirchLeaves: return 58; + case Item::BirchLog: return 34; + case Item::BirchPlanks: return 15; + case Item::BirchPressurePlate: return 162; + case Item::BirchSapling: return 21; + case Item::BirchSlab: return 114; + case Item::BirchStairs: return 235; + case Item::BirchTrapdoor: return 189; + case Item::BirchWood: return 52; + case Item::BlackBanner: return 745; + case Item::BlackBed: return 606; + case Item::BlackCarpet: return 297; + case Item::BlackConcrete: return 410; + case Item::BlackConcretePowder: return 426; + case Item::BlackGlazedTerracotta: return 394; + case Item::BlackShulkerBox: return 378; + case Item::BlackStainedGlass: return 326; + case Item::BlackStainedGlassPane: return 342; + case Item::BlackTerracotta: return 278; + case Item::BlackWool: return 97; + case Item::BlazePowder: return 628; + case Item::BlazeRod: return 620; + case Item::BlazeSpawnEgg: return 635; + case Item::BlueBanner: return 741; + case Item::BlueBed: return 602; + case Item::BlueCarpet: return 293; + case Item::BlueConcrete: return 406; + case Item::BlueConcretePowder: return 422; + case Item::BlueGlazedTerracotta: return 390; + case Item::BlueIce: return 453; + case Item::BlueOrchid: return 100; + case Item::BlueShulkerBox: return 374; + case Item::BlueStainedGlass: return 322; + case Item::BlueStainedGlassPane: return 338; + case Item::BlueTerracotta: return 274; + case Item::BlueWool: return 93; + case Item::Bone: return 588; + case Item::BoneBlock: return 359; + case Item::BoneMeal: return 587; + case Item::Book: return 557; + case Item::Bookshelf: return 137; + case Item::Bow: return 472; + case Item::Bowl: return 493; + case Item::BrainCoral: return 439; + case Item::BrainCoralBlock: return 434; + case Item::BrainCoralFan: return 444; + case Item::Bread: return 509; + case Item::BrewingStand: return 630; + case Item::Brick: return 551; + case Item::BrickSlab: return 122; + case Item::BrickStairs: return 216; + case Item::Bricks: return 135; + case Item::BrownBanner: return 742; + case Item::BrownBed: return 603; + case Item::BrownCarpet: return 294; + case Item::BrownConcrete: return 407; + case Item::BrownConcretePowder: return 423; + case Item::BrownGlazedTerracotta: return 391; + case Item::BrownMushroom: return 108; + case Item::BrownMushroomBlock: return 203; + case Item::BrownShulkerBox: return 375; + case Item::BrownStainedGlass: return 323; + case Item::BrownStainedGlassPane: return 339; + case Item::BrownTerracotta: return 275; + case Item::BrownWool: return 94; + case Item::BubbleCoral: return 440; + case Item::BubbleCoralBlock: return 435; + case Item::BubbleCoralFan: return 445; + case Item::Bucket: return 537; + case Item::Cactus: return 172; + case Item::GreenDye: return 574; + case Item::Cake: return 590; + case Item::Carrot: return 692; + case Item::CarrotOnAStick: return 704; + case Item::CarvedPumpkin: return 182; + case Item::Cauldron: return 631; + case Item::CaveSpiderSpawnEgg: return 636; + case Item::ChainCommandBlock: return 355; + case Item::ChainmailBoots: return 517; + case Item::ChainmailChestplate: return 515; + case Item::ChainmailHelmet: return 514; + case Item::ChainmailLeggings: return 516; + case Item::Charcoal: return 475; + case Item::Chest: return 149; + case Item::ChestMinecart: return 559; + case Item::Chicken: return 616; + case Item::ChickenSpawnEgg: return 637; + case Item::ChippedAnvil: return 248; + case Item::ChiseledQuartzBlock: return 257; + case Item::ChiseledRedSandstone: return 351; + case Item::ChiseledSandstone: return 69; + case Item::ChiseledStoneBricks: return 202; + case Item::ChorusFlower: return 143; + case Item::ChorusFruit: return 747; + case Item::ChorusPlant: return 142; + case Item::Clay: return 173; + case Item::ClayBall: return 552; + case Item::Clock: return 564; + case Item::Coal: return 474; + case Item::CoalBlock: return 299; + case Item::CoalOre: return 31; + case Item::CoarseDirt: return 10; + case Item::Cobblestone: return 12; + case Item::CobblestoneSlab: return 121; + case Item::CobblestoneStairs: return 157; + case Item::CobblestoneWall: return 239; + case Item::Cobweb: return 75; + case Item::CocoaBeans: return 575; + case Item::Cod: return 566; + case Item::CodBucket: return 549; + case Item::CodSpawnEgg: return 638; + case Item::CommandBlock: return 237; + case Item::CommandBlockMinecart: return 727; + case Item::Comparator: return 463; + case Item::Compass: return 562; + case Item::Conduit: return 454; + case Item::CookedBeef: return 615; + case Item::CookedChicken: return 617; + case Item::CookedCod: return 570; + case Item::CookedMutton: return 729; + case Item::CookedPorkchop: return 532; + case Item::CookedRabbit: return 717; + case Item::CookedSalmon: return 571; + case Item::Cookie: return 607; + case Item::CowSpawnEgg: return 639; + case Item::CrackedStoneBricks: return 201; + case Item::CraftingTable: return 152; + case Item::CreeperHead: return 702; + case Item::CreeperSpawnEgg: return 640; + case Item::CutRedSandstone: return 352; + case Item::CutSandstone: return 70; + case Item::CyanBanner: return 739; + case Item::CyanBed: return 600; + case Item::CyanCarpet: return 291; + case Item::CyanConcrete: return 404; + case Item::CyanConcretePowder: return 420; + case Item::CyanDye: return 578; + case Item::CyanGlazedTerracotta: return 388; + case Item::CyanShulkerBox: return 372; + case Item::CyanStainedGlass: return 320; + case Item::CyanStainedGlassPane: return 336; + case Item::CyanTerracotta: return 272; + case Item::CyanWool: return 91; + case Item::DamagedAnvil: return 249; + case Item::Dandelion: return 98; + case Item::YellowDye: return 583; + case Item::DarkOakBoat: return 763; + case Item::DarkOakButton: return 246; + case Item::DarkOakDoor: return 461; + case Item::DarkOakFence: return 180; + case Item::DarkOakFenceGate: return 215; + case Item::DarkOakLeaves: return 61; + case Item::DarkOakLog: return 37; + case Item::DarkOakPlanks: return 18; + case Item::DarkOakPressurePlate: return 165; + case Item::DarkOakSapling: return 24; + case Item::DarkOakSlab: return 117; + case Item::DarkOakStairs: return 302; + case Item::DarkOakTrapdoor: return 192; + case Item::DarkOakWood: return 55; + case Item::DarkPrismarine: return 345; + case Item::DarkPrismarineSlab: return 130; + case Item::DarkPrismarineStairs: return 348; + case Item::DaylightDetector: return 253; + case Item::DeadBrainCoralBlock: return 429; + case Item::DeadBrainCoralFan: return 449; + case Item::DeadBubbleCoralBlock: return 430; + case Item::DeadBubbleCoralFan: return 450; + case Item::DeadBush: return 78; + case Item::DeadFireCoralBlock: return 431; + case Item::DeadFireCoralFan: return 451; + case Item::DeadHornCoralBlock: return 432; + case Item::DeadHornCoralFan: return 452; + case Item::DeadTubeCoralBlock: return 428; + case Item::DeadTubeCoralFan: return 448; + case Item::DebugStick: return 768; + case Item::DetectorRail: return 73; + case Item::Diamond: return 476; + case Item::DiamondAxe: return 491; + case Item::DiamondBlock: return 151; + case Item::DiamondBoots: return 525; + case Item::DiamondChestplate: return 523; + case Item::DiamondHelmet: return 522; + case Item::DiamondHoe: return 505; + case Item::DiamondHorseArmor: return 724; + case Item::DiamondLeggings: return 524; + case Item::DiamondOre: return 150; + case Item::DiamondPickaxe: return 490; + case Item::DiamondShovel: return 489; + case Item::DiamondSword: return 488; + case Item::Diorite: return 4; + case Item::Dirt: return 9; + case Item::Dispenser: return 67; + case Item::DolphinSpawnEgg: return 641; + case Item::DonkeySpawnEgg: return 642; + case Item::DragonBreath: return 752; + case Item::DragonEgg: return 227; + case Item::DragonHead: return 703; + case Item::DriedKelp: return 611; + case Item::DriedKelpBlock: return 555; + case Item::Dropper: return 262; + case Item::DrownedSpawnEgg: return 643; + case Item::Egg: return 561; + case Item::ElderGuardianSpawnEgg: return 644; + case Item::Elytra: return 758; + case Item::Emerald: return 689; + case Item::EmeraldBlock: return 233; + case Item::EmeraldOre: return 230; + case Item::EnchantedBook: return 709; + case Item::EnchantedGoldenApple: return 535; + case Item::EnchantingTable: return 223; + case Item::EndCrystal: return 746; + case Item::EndPortalFrame: return 224; + case Item::EndRod: return 141; + case Item::EndStone: return 225; + case Item::EndStoneBricks: return 226; + case Item::EnderChest: return 231; + case Item::EnderEye: return 632; + case Item::EnderPearl: return 619; + case Item::EndermanSpawnEgg: return 645; + case Item::EndermiteSpawnEgg: return 646; + case Item::EvokerSpawnEgg: return 647; + case Item::ExperienceBottle: return 685; + case Item::Farmland: return 153; + case Item::Feather: return 500; + case Item::FermentedSpiderEye: return 627; + case Item::Fern: return 77; + case Item::FilledMap: return 608; + case Item::FireCharge: return 686; + case Item::FireCoral: return 441; + case Item::FireCoralBlock: return 436; + case Item::FireCoralFan: return 446; + case Item::FireworkRocket: return 707; + case Item::FireworkStar: return 708; + case Item::FishingRod: return 563; + case Item::Flint: return 530; + case Item::FlintAndSteel: return 470; + case Item::FlowerPot: return 691; + case Item::Furnace: return 154; + case Item::FurnaceMinecart: return 560; + case Item::GhastSpawnEgg: return 648; + case Item::GhastTear: return 621; + case Item::Glass: return 64; + case Item::GlassBottle: return 625; + case Item::GlassPane: return 207; + case Item::GlisteringMelonSlice: return 633; + case Item::Glowstone: return 185; + case Item::GlowstoneDust: return 565; + case Item::GoldBlock: return 110; + case Item::GoldIngot: return 478; + case Item::GoldNugget: return 622; + case Item::GoldOre: return 29; + case Item::GoldenApple: return 534; + case Item::GoldenAxe: return 498; + case Item::GoldenBoots: return 529; + case Item::GoldenCarrot: return 697; + case Item::GoldenChestplate: return 527; + case Item::GoldenHelmet: return 526; + case Item::GoldenHoe: return 506; + case Item::GoldenHorseArmor: return 723; + case Item::GoldenLeggings: return 528; + case Item::GoldenPickaxe: return 497; + case Item::GoldenShovel: return 496; + case Item::GoldenSword: return 495; + case Item::Granite: return 2; + case Item::Grass: return 76; + case Item::GrassBlock: return 8; + case Item::GrassPath: return 304; + case Item::Gravel: return 28; + case Item::GrayBanner: return 737; + case Item::GrayBed: return 598; + case Item::GrayCarpet: return 289; + case Item::GrayConcrete: return 402; + case Item::GrayConcretePowder: return 418; + case Item::GrayDye: return 580; + case Item::GrayGlazedTerracotta: return 386; + case Item::GrayShulkerBox: return 370; + case Item::GrayStainedGlass: return 318; + case Item::GrayStainedGlassPane: return 334; + case Item::GrayTerracotta: return 270; + case Item::GrayWool: return 89; + case Item::GreenBanner: return 743; + case Item::GreenBed: return 604; + case Item::GreenCarpet: return 295; + case Item::GreenConcrete: return 408; + case Item::GreenConcretePowder: return 424; + case Item::GreenGlazedTerracotta: return 392; + case Item::GreenShulkerBox: return 376; + case Item::GreenStainedGlass: return 324; + case Item::GreenStainedGlassPane: return 340; + case Item::GreenTerracotta: return 276; + case Item::GreenWool: return 95; + case Item::GuardianSpawnEgg: return 649; + case Item::Gunpowder: return 501; + case Item::HayBale: return 281; + case Item::HeartOfTheSea: return 784; + case Item::HeavyWeightedPressurePlate: return 252; + case Item::Hopper: return 256; + case Item::HopperMinecart: return 713; + case Item::HornCoral: return 442; + case Item::HornCoralBlock: return 437; + case Item::HornCoralFan: return 447; + case Item::HorseSpawnEgg: return 650; + case Item::HuskSpawnEgg: return 651; + case Item::Ice: return 170; + case Item::InfestedChiseledStoneBricks: return 198; + case Item::InfestedCobblestone: return 194; + case Item::InfestedCrackedStoneBricks: return 197; + case Item::InfestedMossyStoneBricks: return 196; + case Item::InfestedStone: return 193; + case Item::InfestedStoneBricks: return 195; + case Item::InkSac: return 572; + case Item::IronAxe: return 469; + case Item::IronBars: return 206; + case Item::IronBlock: return 111; + case Item::IronBoots: return 521; + case Item::IronChestplate: return 519; + case Item::IronDoor: return 455; + case Item::IronHelmet: return 518; + case Item::IronHoe: return 504; + case Item::IronHorseArmor: return 722; + case Item::IronIngot: return 477; + case Item::IronLeggings: return 520; + case Item::IronNugget: return 766; + case Item::IronOre: return 30; + case Item::IronPickaxe: return 468; + case Item::IronShovel: return 467; + case Item::IronSword: return 479; + case Item::IronTrapdoor: return 280; + case Item::ItemFrame: return 690; + case Item::JackOLantern: return 186; + case Item::Jukebox: return 174; + case Item::JungleBoat: return 761; + case Item::JungleButton: return 244; + case Item::JungleDoor: return 459; + case Item::JungleFence: return 178; + case Item::JungleFenceGate: return 213; + case Item::JungleLeaves: return 59; + case Item::JungleLog: return 35; + case Item::JunglePlanks: return 16; + case Item::JunglePressurePlate: return 163; + case Item::JungleSapling: return 22; + case Item::JungleSlab: return 115; + case Item::JungleStairs: return 236; + case Item::JungleTrapdoor: return 190; + case Item::JungleWood: return 53; + case Item::Kelp: return 554; + case Item::KnowledgeBook: return 767; + case Item::Ladder: return 155; + case Item::LapisBlock: return 66; + case Item::LapisLazuli: return 576; + case Item::LapisOre: return 65; + case Item::LargeFern: return 310; + case Item::LavaBucket: return 539; + case Item::Lead: return 725; + case Item::Leather: return 545; + case Item::LeatherBoots: return 513; + case Item::LeatherChestplate: return 511; + case Item::LeatherHelmet: return 510; + case Item::LeatherLeggings: return 512; + case Item::Lever: return 158; + case Item::LightBlueBanner: return 733; + case Item::LightBlueBed: return 594; + case Item::LightBlueCarpet: return 285; + case Item::LightBlueConcrete: return 398; + case Item::LightBlueConcretePowder: return 414; + case Item::LightBlueDye: return 584; + case Item::LightBlueGlazedTerracotta: return 382; + case Item::LightBlueShulkerBox: return 366; + case Item::LightBlueStainedGlass: return 314; + case Item::LightBlueStainedGlassPane: return 330; + case Item::LightBlueTerracotta: return 266; + case Item::LightBlueWool: return 85; + case Item::LightGrayBanner: return 738; + case Item::LightGrayBed: return 599; + case Item::LightGrayCarpet: return 290; + case Item::LightGrayConcrete: return 403; + case Item::LightGrayConcretePowder: return 419; + case Item::LightGrayDye: return 579; + case Item::LightGrayGlazedTerracotta: return 387; + case Item::LightGrayShulkerBox: return 371; + case Item::LightGrayStainedGlass: return 319; + case Item::LightGrayStainedGlassPane: return 335; + case Item::LightGrayTerracotta: return 271; + case Item::LightGrayWool: return 90; + case Item::LightWeightedPressurePlate: return 251; + case Item::Lilac: return 306; + case Item::LilyPad: return 219; + case Item::LimeBanner: return 735; + case Item::LimeBed: return 596; + case Item::LimeCarpet: return 287; + case Item::LimeConcrete: return 400; + case Item::LimeConcretePowder: return 416; + case Item::LimeDye: return 582; + case Item::LimeGlazedTerracotta: return 384; + case Item::LimeShulkerBox: return 368; + case Item::LimeStainedGlass: return 316; + case Item::LimeStainedGlassPane: return 332; + case Item::LimeTerracotta: return 268; + case Item::LimeWool: return 87; + case Item::LingeringPotion: return 756; + case Item::LlamaSpawnEgg: return 652; + case Item::MagentaBanner: return 732; + case Item::MagentaBed: return 593; + case Item::MagentaCarpet: return 284; + case Item::MagentaConcrete: return 397; + case Item::MagentaConcretePowder: return 413; + case Item::MagentaDye: return 585; + case Item::MagentaGlazedTerracotta: return 381; + case Item::MagentaShulkerBox: return 365; + case Item::MagentaStainedGlass: return 313; + case Item::MagentaStainedGlassPane: return 329; + case Item::MagentaTerracotta: return 265; + case Item::MagentaWool: return 84; + case Item::MagmaBlock: return 356; + case Item::MagmaCream: return 629; + case Item::MagmaCubeSpawnEgg: return 653; + case Item::Map: return 696; + case Item::Melon: return 208; + case Item::MelonSeeds: return 613; + case Item::MelonSlice: return 610; + case Item::MilkBucket: return 546; + case Item::Minecart: return 540; + case Item::MooshroomSpawnEgg: return 654; + case Item::MossyCobblestone: return 138; + case Item::MossyCobblestoneWall: return 240; + case Item::MossyStoneBricks: return 200; + case Item::MuleSpawnEgg: return 655; + case Item::MushroomStem: return 205; + case Item::MushroomStew: return 494; + case Item::MusicDisc11: return 779; + case Item::MusicDisc13: return 769; + case Item::MusicDiscBlocks: return 771; + case Item::MusicDiscCat: return 770; + case Item::MusicDiscChirp: return 772; + case Item::MusicDiscFar: return 773; + case Item::MusicDiscMall: return 774; + case Item::MusicDiscMellohi: return 775; + case Item::MusicDiscStal: return 776; + case Item::MusicDiscStrad: return 777; + case Item::MusicDiscWait: return 780; + case Item::MusicDiscWard: return 778; + case Item::Mutton: return 728; + case Item::Mycelium: return 218; + case Item::NameTag: return 726; + case Item::NautilusShell: return 783; + case Item::NetherBrick: return 710; + case Item::NetherBrickFence: return 221; + case Item::NetherBrickSlab: return 124; + case Item::NetherBrickStairs: return 222; + case Item::NetherBricks: return 220; + case Item::NetherQuartzOre: return 255; + case Item::NetherStar: return 705; + case Item::NetherWart: return 623; + case Item::NetherWartBlock: return 357; + case Item::Netherrack: return 183; + case Item::NoteBlock: return 71; + case Item::OakBoat: return 544; + case Item::OakButton: return 241; + case Item::OakDoor: return 456; + case Item::OakFence: return 175; + case Item::OakFenceGate: return 210; + case Item::OakLeaves: return 56; + case Item::OakLog: return 32; + case Item::OakPlanks: return 13; + case Item::OakPressurePlate: return 160; + case Item::OakSapling: return 19; + case Item::OakSlab: return 112; + case Item::OakStairs: return 148; + case Item::OakTrapdoor: return 187; + case Item::OakWood: return 50; + case Item::Observer: return 361; + case Item::Obsidian: return 139; + case Item::OcelotSpawnEgg: return 656; + case Item::OrangeBanner: return 731; + case Item::OrangeBed: return 592; + case Item::OrangeCarpet: return 283; + case Item::OrangeConcrete: return 396; + case Item::OrangeConcretePowder: return 412; + case Item::OrangeDye: return 586; + case Item::OrangeGlazedTerracotta: return 380; + case Item::OrangeShulkerBox: return 364; + case Item::OrangeStainedGlass: return 312; + case Item::OrangeStainedGlassPane: return 328; + case Item::OrangeTerracotta: return 264; + case Item::OrangeTulip: return 104; + case Item::OrangeWool: return 83; + case Item::OxeyeDaisy: return 107; + case Item::PackedIce: return 300; + case Item::Painting: return 533; + case Item::Paper: return 556; + case Item::ParrotSpawnEgg: return 657; + case Item::Peony: return 308; + case Item::PetrifiedOakSlab: return 120; + case Item::PhantomMembrane: return 782; + case Item::PhantomSpawnEgg: return 658; + case Item::PigSpawnEgg: return 659; + case Item::PinkBanner: return 736; + case Item::PinkBed: return 597; + case Item::PinkCarpet: return 288; + case Item::PinkConcrete: return 401; + case Item::PinkConcretePowder: return 417; + case Item::PinkDye: return 581; + case Item::PinkGlazedTerracotta: return 385; + case Item::PinkShulkerBox: return 369; + case Item::PinkStainedGlass: return 317; + case Item::PinkStainedGlassPane: return 333; + case Item::PinkTerracotta: return 269; + case Item::PinkTulip: return 106; + case Item::PinkWool: return 88; + case Item::Piston: return 81; + case Item::PlayerHead: return 700; + case Item::Podzol: return 11; + case Item::PoisonousPotato: return 695; + case Item::PolarBearSpawnEgg: return 660; + case Item::PolishedAndesite: return 7; + case Item::PolishedDiorite: return 5; + case Item::PolishedGranite: return 3; + case Item::PoppedChorusFruit: return 748; + case Item::Poppy: return 99; + case Item::Porkchop: return 531; + case Item::Potato: return 693; + case Item::Potion: return 624; + case Item::PoweredRail: return 72; + case Item::Prismarine: return 343; + case Item::PrismarineBrickSlab: return 129; + case Item::PrismarineBrickStairs: return 347; + case Item::PrismarineBricks: return 344; + case Item::PrismarineCrystals: return 715; + case Item::PrismarineShard: return 714; + case Item::PrismarineSlab: return 128; + case Item::PrismarineStairs: return 346; + case Item::Pufferfish: return 569; + case Item::PufferfishBucket: return 547; + case Item::PufferfishSpawnEgg: return 661; + case Item::Pumpkin: return 181; + case Item::PumpkinPie: return 706; + case Item::PumpkinSeeds: return 612; + case Item::PurpleBanner: return 740; + case Item::PurpleBed: return 601; + case Item::PurpleCarpet: return 292; + case Item::PurpleConcrete: return 405; + case Item::PurpleConcretePowder: return 421; + case Item::PurpleDye: return 577; + case Item::PurpleGlazedTerracotta: return 389; + case Item::PurpleShulkerBox: return 373; + case Item::PurpleStainedGlass: return 321; + case Item::PurpleStainedGlassPane: return 337; + case Item::PurpleTerracotta: return 273; + case Item::PurpleWool: return 92; + case Item::PurpurBlock: return 144; + case Item::PurpurPillar: return 145; + case Item::PurpurSlab: return 127; + case Item::PurpurStairs: return 146; + case Item::Quartz: return 711; + case Item::QuartzBlock: return 258; + case Item::QuartzPillar: return 259; + case Item::QuartzSlab: return 125; + case Item::QuartzStairs: return 260; + case Item::Rabbit: return 716; + case Item::RabbitFoot: return 719; + case Item::RabbitHide: return 720; + case Item::RabbitSpawnEgg: return 662; + case Item::RabbitStew: return 718; + case Item::Rail: return 156; + case Item::RedBanner: return 744; + case Item::RedBed: return 605; + case Item::RedCarpet: return 296; + case Item::RedConcrete: return 409; + case Item::RedConcretePowder: return 425; + case Item::RedGlazedTerracotta: return 393; + case Item::RedMushroom: return 109; + case Item::RedMushroomBlock: return 204; + case Item::RedNetherBricks: return 358; + case Item::RedSand: return 27; + case Item::RedSandstone: return 350; + case Item::RedSandstoneSlab: return 126; + case Item::RedSandstoneStairs: return 353; + case Item::RedShulkerBox: return 377; + case Item::RedStainedGlass: return 325; + case Item::RedStainedGlassPane: return 341; + case Item::RedTerracotta: return 277; + case Item::RedTulip: return 103; + case Item::RedWool: return 96; + case Item::Redstone: return 542; + case Item::RedstoneBlock: return 254; + case Item::RedstoneLamp: return 228; + case Item::RedstoneOre: return 166; + case Item::RedstoneTorch: return 167; + case Item::Repeater: return 462; + case Item::RepeatingCommandBlock: return 354; + case Item::RoseBush: return 307; + case Item::RedDye: return 573; + case Item::RottenFlesh: return 618; + case Item::Saddle: return 541; + case Item::Salmon: return 567; + case Item::SalmonBucket: return 548; + case Item::SalmonSpawnEgg: return 663; + case Item::Sand: return 26; + case Item::Sandstone: return 68; + case Item::SandstoneSlab: return 119; + case Item::SandstoneStairs: return 229; + case Item::Scute: return 466; + case Item::SeaLantern: return 349; + case Item::SeaPickle: return 80; + case Item::Seagrass: return 79; + case Item::Shears: return 609; + case Item::SheepSpawnEgg: return 664; + case Item::Shield: return 757; + case Item::ShulkerBox: return 362; + case Item::ShulkerShell: return 765; + case Item::ShulkerSpawnEgg: return 665; + case Item::OakSign: return 536; + case Item::SilverfishSpawnEgg: return 666; + case Item::SkeletonHorseSpawnEgg: return 668; + case Item::SkeletonSkull: return 698; + case Item::SkeletonSpawnEgg: return 667; + case Item::SlimeBall: return 558; + case Item::SlimeBlock: return 303; + case Item::SlimeSpawnEgg: return 669; + case Item::SmoothQuartz: return 131; + case Item::SmoothRedSandstone: return 132; + case Item::SmoothSandstone: return 133; + case Item::SmoothStone: return 134; + case Item::Snow: return 169; + case Item::SnowBlock: return 171; + case Item::Snowball: return 543; + case Item::SoulSand: return 184; + case Item::Spawner: return 147; + case Item::SpectralArrow: return 754; + case Item::SpiderEye: return 626; + case Item::SpiderSpawnEgg: return 670; + case Item::SplashPotion: return 753; + case Item::Sponge: return 62; + case Item::SpruceBoat: return 759; + case Item::SpruceButton: return 242; + case Item::SpruceDoor: return 457; + case Item::SpruceFence: return 176; + case Item::SpruceFenceGate: return 211; + case Item::SpruceLeaves: return 57; + case Item::SpruceLog: return 33; + case Item::SprucePlanks: return 14; + case Item::SprucePressurePlate: return 161; + case Item::SpruceSapling: return 20; + case Item::SpruceSlab: return 113; + case Item::SpruceStairs: return 234; + case Item::SpruceTrapdoor: return 188; + case Item::SpruceWood: return 51; + case Item::SquidSpawnEgg: return 671; + case Item::Stick: return 492; + case Item::StickyPiston: return 74; + case Item::Stone: return 1; + case Item::StoneAxe: return 487; + case Item::StoneBrickSlab: return 123; + case Item::StoneBrickStairs: return 217; + case Item::StoneBricks: return 199; + case Item::StoneButton: return 168; + case Item::StoneHoe: return 503; + case Item::StonePickaxe: return 486; + case Item::StonePressurePlate: return 159; + case Item::StoneShovel: return 485; + case Item::StoneSlab: return 118; + case Item::StoneSword: return 484; + case Item::StraySpawnEgg: return 672; + case Item::String: return 499; + case Item::StrippedAcaciaLog: return 42; + case Item::StrippedAcaciaWood: return 48; + case Item::StrippedBirchLog: return 40; + case Item::StrippedBirchWood: return 46; + case Item::StrippedDarkOakLog: return 43; + case Item::StrippedDarkOakWood: return 49; + case Item::StrippedJungleLog: return 41; + case Item::StrippedJungleWood: return 47; + case Item::StrippedOakLog: return 38; + case Item::StrippedOakWood: return 44; + case Item::StrippedSpruceLog: return 39; + case Item::StrippedSpruceWood: return 45; + case Item::StructureBlock: return 464; + case Item::StructureVoid: return 360; + case Item::Sugar: return 589; + case Item::SugarCane: return 553; + case Item::Sunflower: return 305; + case Item::TallGrass: return 309; + case Item::Terracotta: return 298; + case Item::TippedArrow: return 755; + case Item::TNT: return 136; + case Item::TNTMinecart: return 712; + case Item::Torch: return 140; + case Item::TotemOfUndying: return 764; + case Item::TrappedChest: return 250; + case Item::Trident: return 781; + case Item::TripwireHook: return 232; + case Item::TropicalFish: return 568; + case Item::TropicalFishBucket: return 550; + case Item::TropicalFishSpawnEgg: return 673; + case Item::TubeCoral: return 438; + case Item::TubeCoralBlock: return 433; + case Item::TubeCoralFan: return 443; + case Item::TurtleEgg: return 427; + case Item::TurtleHelmet: return 465; + case Item::TurtleSpawnEgg: return 674; + case Item::VexSpawnEgg: return 675; + case Item::VillagerSpawnEgg: return 676; + case Item::VindicatorSpawnEgg: return 677; + case Item::Vine: return 209; + case Item::WaterBucket: return 538; + case Item::WetSponge: return 63; + case Item::Wheat: return 508; + case Item::WheatSeeds: return 507; + case Item::WhiteBanner: return 730; + case Item::WhiteBed: return 591; + case Item::WhiteCarpet: return 282; + case Item::WhiteConcrete: return 395; + case Item::WhiteConcretePowder: return 411; + case Item::WhiteGlazedTerracotta: return 379; + case Item::WhiteShulkerBox: return 363; + case Item::WhiteStainedGlass: return 311; + case Item::WhiteStainedGlassPane: return 327; + case Item::WhiteTerracotta: return 263; + case Item::WhiteTulip: return 105; + case Item::WhiteWool: return 82; + case Item::WitchSpawnEgg: return 678; + case Item::WitherSkeletonSkull: return 699; + case Item::WitherSkeletonSpawnEgg: return 679; + case Item::WolfSpawnEgg: return 680; + case Item::WoodenAxe: return 483; + case Item::WoodenHoe: return 502; + case Item::WoodenPickaxe: return 482; + case Item::WoodenShovel: return 481; + case Item::WoodenSword: return 480; + case Item::WritableBook: return 687; + case Item::WrittenBook: return 688; + case Item::YellowBanner: return 734; + case Item::YellowBed: return 595; + case Item::YellowCarpet: return 286; + case Item::YellowConcrete: return 399; + case Item::YellowConcretePowder: return 415; + case Item::YellowGlazedTerracotta: return 383; + case Item::YellowShulkerBox: return 367; + case Item::YellowStainedGlass: return 315; + case Item::YellowStainedGlassPane: return 331; + case Item::YellowTerracotta: return 267; + case Item::YellowWool: return 86; + case Item::ZombieHead: return 701; + case Item::ZombieHorseSpawnEgg: return 682; + case Item::ZombiePigmanSpawnEgg: return 683; + case Item::ZombieSpawnEgg: return 681; + case Item::ZombieVillagerSpawnEgg: return 684; + default: return 0; + } + } + + Item ToItem(Int32 ID) + { + switch (ID) + { + case 762: return Item::AcaciaBoat; + case 245: return Item::AcaciaButton; + case 460: return Item::AcaciaDoor; + case 179: return Item::AcaciaFence; + case 214: return Item::AcaciaFenceGate; + case 60: return Item::AcaciaLeaves; + case 36: return Item::AcaciaLog; + case 17: return Item::AcaciaPlanks; + case 164: return Item::AcaciaPressurePlate; + case 23: return Item::AcaciaSapling; + case 116: return Item::AcaciaSlab; + case 301: return Item::AcaciaStairs; + case 191: return Item::AcaciaTrapdoor; + case 54: return Item::AcaciaWood; + case 261: return Item::ActivatorRail; + case -0: return Item::Air; + case 101: return Item::Allium; + case 6: return Item::Andesite; + case 247: return Item::Anvil; + case 471: return Item::Apple; + case 721: return Item::ArmorStand; + case 473: return Item::Arrow; + case 102: return Item::AzureBluet; + case 694: return Item::BakedPotato; + case 279: return Item::Barrier; + case 634: return Item::BatSpawnEgg; + case 238: return Item::Beacon; + case 25: return Item::Bedrock; + case 614: return Item::Beef; + case 749: return Item::Beetroot; + case 750: return Item::BeetrootSeeds; + case 751: return Item::BeetrootSoup; + case 760: return Item::BirchBoat; + case 243: return Item::BirchButton; + case 458: return Item::BirchDoor; + case 177: return Item::BirchFence; + case 212: return Item::BirchFenceGate; + case 58: return Item::BirchLeaves; + case 34: return Item::BirchLog; + case 15: return Item::BirchPlanks; + case 162: return Item::BirchPressurePlate; + case 21: return Item::BirchSapling; + case 114: return Item::BirchSlab; + case 235: return Item::BirchStairs; + case 189: return Item::BirchTrapdoor; + case 52: return Item::BirchWood; + case 745: return Item::BlackBanner; + case 606: return Item::BlackBed; + case 297: return Item::BlackCarpet; + case 410: return Item::BlackConcrete; + case 426: return Item::BlackConcretePowder; + case 394: return Item::BlackGlazedTerracotta; + case 378: return Item::BlackShulkerBox; + case 326: return Item::BlackStainedGlass; + case 342: return Item::BlackStainedGlassPane; + case 278: return Item::BlackTerracotta; + case 97: return Item::BlackWool; + case 628: return Item::BlazePowder; + case 620: return Item::BlazeRod; + case 635: return Item::BlazeSpawnEgg; + case 741: return Item::BlueBanner; + case 602: return Item::BlueBed; + case 293: return Item::BlueCarpet; + case 406: return Item::BlueConcrete; + case 422: return Item::BlueConcretePowder; + case 390: return Item::BlueGlazedTerracotta; + case 453: return Item::BlueIce; + case 100: return Item::BlueOrchid; + case 374: return Item::BlueShulkerBox; + case 322: return Item::BlueStainedGlass; + case 338: return Item::BlueStainedGlassPane; + case 274: return Item::BlueTerracotta; + case 93: return Item::BlueWool; + case 588: return Item::Bone; + case 359: return Item::BoneBlock; + case 587: return Item::BoneMeal; + case 557: return Item::Book; + case 137: return Item::Bookshelf; + case 472: return Item::Bow; + case 493: return Item::Bowl; + case 439: return Item::BrainCoral; + case 434: return Item::BrainCoralBlock; + case 444: return Item::BrainCoralFan; + case 509: return Item::Bread; + case 630: return Item::BrewingStand; + case 551: return Item::Brick; + case 122: return Item::BrickSlab; + case 216: return Item::BrickStairs; + case 135: return Item::Bricks; + case 742: return Item::BrownBanner; + case 603: return Item::BrownBed; + case 294: return Item::BrownCarpet; + case 407: return Item::BrownConcrete; + case 423: return Item::BrownConcretePowder; + case 391: return Item::BrownGlazedTerracotta; + case 108: return Item::BrownMushroom; + case 203: return Item::BrownMushroomBlock; + case 375: return Item::BrownShulkerBox; + case 323: return Item::BrownStainedGlass; + case 339: return Item::BrownStainedGlassPane; + case 275: return Item::BrownTerracotta; + case 94: return Item::BrownWool; + case 440: return Item::BubbleCoral; + case 435: return Item::BubbleCoralBlock; + case 445: return Item::BubbleCoralFan; + case 537: return Item::Bucket; + case 172: return Item::Cactus; + case 574: return Item::GreenDye; + case 590: return Item::Cake; + case 692: return Item::Carrot; + case 704: return Item::CarrotOnAStick; + case 182: return Item::CarvedPumpkin; + case 631: return Item::Cauldron; + case 636: return Item::CaveSpiderSpawnEgg; + case 355: return Item::ChainCommandBlock; + case 517: return Item::ChainmailBoots; + case 515: return Item::ChainmailChestplate; + case 514: return Item::ChainmailHelmet; + case 516: return Item::ChainmailLeggings; + case 475: return Item::Charcoal; + case 149: return Item::Chest; + case 559: return Item::ChestMinecart; + case 616: return Item::Chicken; + case 637: return Item::ChickenSpawnEgg; + case 248: return Item::ChippedAnvil; + case 257: return Item::ChiseledQuartzBlock; + case 351: return Item::ChiseledRedSandstone; + case 69: return Item::ChiseledSandstone; + case 202: return Item::ChiseledStoneBricks; + case 143: return Item::ChorusFlower; + case 747: return Item::ChorusFruit; + case 142: return Item::ChorusPlant; + case 173: return Item::Clay; + case 552: return Item::ClayBall; + case 564: return Item::Clock; + case 474: return Item::Coal; + case 299: return Item::CoalBlock; + case 31: return Item::CoalOre; + case 10: return Item::CoarseDirt; + case 12: return Item::Cobblestone; + case 121: return Item::CobblestoneSlab; + case 157: return Item::CobblestoneStairs; + case 239: return Item::CobblestoneWall; + case 75: return Item::Cobweb; + case 575: return Item::CocoaBeans; + case 566: return Item::Cod; + case 549: return Item::CodBucket; + case 638: return Item::CodSpawnEgg; + case 237: return Item::CommandBlock; + case 727: return Item::CommandBlockMinecart; + case 463: return Item::Comparator; + case 562: return Item::Compass; + case 454: return Item::Conduit; + case 615: return Item::CookedBeef; + case 617: return Item::CookedChicken; + case 570: return Item::CookedCod; + case 729: return Item::CookedMutton; + case 532: return Item::CookedPorkchop; + case 717: return Item::CookedRabbit; + case 571: return Item::CookedSalmon; + case 607: return Item::Cookie; + case 639: return Item::CowSpawnEgg; + case 201: return Item::CrackedStoneBricks; + case 152: return Item::CraftingTable; + case 702: return Item::CreeperHead; + case 640: return Item::CreeperSpawnEgg; + case 352: return Item::CutRedSandstone; + case 70: return Item::CutSandstone; + case 739: return Item::CyanBanner; + case 600: return Item::CyanBed; + case 291: return Item::CyanCarpet; + case 404: return Item::CyanConcrete; + case 420: return Item::CyanConcretePowder; + case 578: return Item::CyanDye; + case 388: return Item::CyanGlazedTerracotta; + case 372: return Item::CyanShulkerBox; + case 320: return Item::CyanStainedGlass; + case 336: return Item::CyanStainedGlassPane; + case 272: return Item::CyanTerracotta; + case 91: return Item::CyanWool; + case 249: return Item::DamagedAnvil; + case 98: return Item::Dandelion; + case 583: return Item::YellowDye; + case 763: return Item::DarkOakBoat; + case 246: return Item::DarkOakButton; + case 461: return Item::DarkOakDoor; + case 180: return Item::DarkOakFence; + case 215: return Item::DarkOakFenceGate; + case 61: return Item::DarkOakLeaves; + case 37: return Item::DarkOakLog; + case 18: return Item::DarkOakPlanks; + case 165: return Item::DarkOakPressurePlate; + case 24: return Item::DarkOakSapling; + case 117: return Item::DarkOakSlab; + case 302: return Item::DarkOakStairs; + case 192: return Item::DarkOakTrapdoor; + case 55: return Item::DarkOakWood; + case 345: return Item::DarkPrismarine; + case 130: return Item::DarkPrismarineSlab; + case 348: return Item::DarkPrismarineStairs; + case 253: return Item::DaylightDetector; + case 429: return Item::DeadBrainCoralBlock; + case 449: return Item::DeadBrainCoralFan; + case 430: return Item::DeadBubbleCoralBlock; + case 450: return Item::DeadBubbleCoralFan; + case 78: return Item::DeadBush; + case 431: return Item::DeadFireCoralBlock; + case 451: return Item::DeadFireCoralFan; + case 432: return Item::DeadHornCoralBlock; + case 452: return Item::DeadHornCoralFan; + case 428: return Item::DeadTubeCoralBlock; + case 448: return Item::DeadTubeCoralFan; + case 768: return Item::DebugStick; + case 73: return Item::DetectorRail; + case 476: return Item::Diamond; + case 491: return Item::DiamondAxe; + case 151: return Item::DiamondBlock; + case 525: return Item::DiamondBoots; + case 523: return Item::DiamondChestplate; + case 522: return Item::DiamondHelmet; + case 505: return Item::DiamondHoe; + case 724: return Item::DiamondHorseArmor; + case 524: return Item::DiamondLeggings; + case 150: return Item::DiamondOre; + case 490: return Item::DiamondPickaxe; + case 489: return Item::DiamondShovel; + case 488: return Item::DiamondSword; + case 4: return Item::Diorite; + case 9: return Item::Dirt; + case 67: return Item::Dispenser; + case 641: return Item::DolphinSpawnEgg; + case 642: return Item::DonkeySpawnEgg; + case 752: return Item::DragonBreath; + case 227: return Item::DragonEgg; + case 703: return Item::DragonHead; + case 611: return Item::DriedKelp; + case 555: return Item::DriedKelpBlock; + case 262: return Item::Dropper; + case 643: return Item::DrownedSpawnEgg; + case 561: return Item::Egg; + case 644: return Item::ElderGuardianSpawnEgg; + case 758: return Item::Elytra; + case 689: return Item::Emerald; + case 233: return Item::EmeraldBlock; + case 230: return Item::EmeraldOre; + case 709: return Item::EnchantedBook; + case 535: return Item::EnchantedGoldenApple; + case 223: return Item::EnchantingTable; + case 746: return Item::EndCrystal; + case 224: return Item::EndPortalFrame; + case 141: return Item::EndRod; + case 225: return Item::EndStone; + case 226: return Item::EndStoneBricks; + case 231: return Item::EnderChest; + case 632: return Item::EnderEye; + case 619: return Item::EnderPearl; + case 645: return Item::EndermanSpawnEgg; + case 646: return Item::EndermiteSpawnEgg; + case 647: return Item::EvokerSpawnEgg; + case 685: return Item::ExperienceBottle; + case 153: return Item::Farmland; + case 500: return Item::Feather; + case 627: return Item::FermentedSpiderEye; + case 77: return Item::Fern; + case 608: return Item::FilledMap; + case 686: return Item::FireCharge; + case 441: return Item::FireCoral; + case 436: return Item::FireCoralBlock; + case 446: return Item::FireCoralFan; + case 707: return Item::FireworkRocket; + case 708: return Item::FireworkStar; + case 563: return Item::FishingRod; + case 530: return Item::Flint; + case 470: return Item::FlintAndSteel; + case 691: return Item::FlowerPot; + case 154: return Item::Furnace; + case 560: return Item::FurnaceMinecart; + case 648: return Item::GhastSpawnEgg; + case 621: return Item::GhastTear; + case 64: return Item::Glass; + case 625: return Item::GlassBottle; + case 207: return Item::GlassPane; + case 633: return Item::GlisteringMelonSlice; + case 185: return Item::Glowstone; + case 565: return Item::GlowstoneDust; + case 110: return Item::GoldBlock; + case 478: return Item::GoldIngot; + case 622: return Item::GoldNugget; + case 29: return Item::GoldOre; + case 534: return Item::GoldenApple; + case 498: return Item::GoldenAxe; + case 529: return Item::GoldenBoots; + case 697: return Item::GoldenCarrot; + case 527: return Item::GoldenChestplate; + case 526: return Item::GoldenHelmet; + case 506: return Item::GoldenHoe; + case 723: return Item::GoldenHorseArmor; + case 528: return Item::GoldenLeggings; + case 497: return Item::GoldenPickaxe; + case 496: return Item::GoldenShovel; + case 495: return Item::GoldenSword; + case 2: return Item::Granite; + case 76: return Item::Grass; + case 8: return Item::GrassBlock; + case 304: return Item::GrassPath; + case 28: return Item::Gravel; + case 737: return Item::GrayBanner; + case 598: return Item::GrayBed; + case 289: return Item::GrayCarpet; + case 402: return Item::GrayConcrete; + case 418: return Item::GrayConcretePowder; + case 580: return Item::GrayDye; + case 386: return Item::GrayGlazedTerracotta; + case 370: return Item::GrayShulkerBox; + case 318: return Item::GrayStainedGlass; + case 334: return Item::GrayStainedGlassPane; + case 270: return Item::GrayTerracotta; + case 89: return Item::GrayWool; + case 743: return Item::GreenBanner; + case 604: return Item::GreenBed; + case 295: return Item::GreenCarpet; + case 408: return Item::GreenConcrete; + case 424: return Item::GreenConcretePowder; + case 392: return Item::GreenGlazedTerracotta; + case 376: return Item::GreenShulkerBox; + case 324: return Item::GreenStainedGlass; + case 340: return Item::GreenStainedGlassPane; + case 276: return Item::GreenTerracotta; + case 95: return Item::GreenWool; + case 649: return Item::GuardianSpawnEgg; + case 501: return Item::Gunpowder; + case 281: return Item::HayBale; + case 784: return Item::HeartOfTheSea; + case 252: return Item::HeavyWeightedPressurePlate; + case 256: return Item::Hopper; + case 713: return Item::HopperMinecart; + case 442: return Item::HornCoral; + case 437: return Item::HornCoralBlock; + case 447: return Item::HornCoralFan; + case 650: return Item::HorseSpawnEgg; + case 651: return Item::HuskSpawnEgg; + case 170: return Item::Ice; + case 198: return Item::InfestedChiseledStoneBricks; + case 194: return Item::InfestedCobblestone; + case 197: return Item::InfestedCrackedStoneBricks; + case 196: return Item::InfestedMossyStoneBricks; + case 193: return Item::InfestedStone; + case 195: return Item::InfestedStoneBricks; + case 572: return Item::InkSac; + case 469: return Item::IronAxe; + case 206: return Item::IronBars; + case 111: return Item::IronBlock; + case 521: return Item::IronBoots; + case 519: return Item::IronChestplate; + case 455: return Item::IronDoor; + case 518: return Item::IronHelmet; + case 504: return Item::IronHoe; + case 722: return Item::IronHorseArmor; + case 477: return Item::IronIngot; + case 520: return Item::IronLeggings; + case 766: return Item::IronNugget; + case 30: return Item::IronOre; + case 468: return Item::IronPickaxe; + case 467: return Item::IronShovel; + case 479: return Item::IronSword; + case 280: return Item::IronTrapdoor; + case 690: return Item::ItemFrame; + case 186: return Item::JackOLantern; + case 174: return Item::Jukebox; + case 761: return Item::JungleBoat; + case 244: return Item::JungleButton; + case 459: return Item::JungleDoor; + case 178: return Item::JungleFence; + case 213: return Item::JungleFenceGate; + case 59: return Item::JungleLeaves; + case 35: return Item::JungleLog; + case 16: return Item::JunglePlanks; + case 163: return Item::JunglePressurePlate; + case 22: return Item::JungleSapling; + case 115: return Item::JungleSlab; + case 236: return Item::JungleStairs; + case 190: return Item::JungleTrapdoor; + case 53: return Item::JungleWood; + case 554: return Item::Kelp; + case 767: return Item::KnowledgeBook; + case 155: return Item::Ladder; + case 66: return Item::LapisBlock; + case 576: return Item::LapisLazuli; + case 65: return Item::LapisOre; + case 310: return Item::LargeFern; + case 539: return Item::LavaBucket; + case 725: return Item::Lead; + case 545: return Item::Leather; + case 513: return Item::LeatherBoots; + case 511: return Item::LeatherChestplate; + case 510: return Item::LeatherHelmet; + case 512: return Item::LeatherLeggings; + case 158: return Item::Lever; + case 733: return Item::LightBlueBanner; + case 594: return Item::LightBlueBed; + case 285: return Item::LightBlueCarpet; + case 398: return Item::LightBlueConcrete; + case 414: return Item::LightBlueConcretePowder; + case 584: return Item::LightBlueDye; + case 382: return Item::LightBlueGlazedTerracotta; + case 366: return Item::LightBlueShulkerBox; + case 314: return Item::LightBlueStainedGlass; + case 330: return Item::LightBlueStainedGlassPane; + case 266: return Item::LightBlueTerracotta; + case 85: return Item::LightBlueWool; + case 738: return Item::LightGrayBanner; + case 599: return Item::LightGrayBed; + case 290: return Item::LightGrayCarpet; + case 403: return Item::LightGrayConcrete; + case 419: return Item::LightGrayConcretePowder; + case 579: return Item::LightGrayDye; + case 387: return Item::LightGrayGlazedTerracotta; + case 371: return Item::LightGrayShulkerBox; + case 319: return Item::LightGrayStainedGlass; + case 335: return Item::LightGrayStainedGlassPane; + case 271: return Item::LightGrayTerracotta; + case 90: return Item::LightGrayWool; + case 251: return Item::LightWeightedPressurePlate; + case 306: return Item::Lilac; + case 219: return Item::LilyPad; + case 735: return Item::LimeBanner; + case 596: return Item::LimeBed; + case 287: return Item::LimeCarpet; + case 400: return Item::LimeConcrete; + case 416: return Item::LimeConcretePowder; + case 582: return Item::LimeDye; + case 384: return Item::LimeGlazedTerracotta; + case 368: return Item::LimeShulkerBox; + case 316: return Item::LimeStainedGlass; + case 332: return Item::LimeStainedGlassPane; + case 268: return Item::LimeTerracotta; + case 87: return Item::LimeWool; + case 756: return Item::LingeringPotion; + case 652: return Item::LlamaSpawnEgg; + case 732: return Item::MagentaBanner; + case 593: return Item::MagentaBed; + case 284: return Item::MagentaCarpet; + case 397: return Item::MagentaConcrete; + case 413: return Item::MagentaConcretePowder; + case 585: return Item::MagentaDye; + case 381: return Item::MagentaGlazedTerracotta; + case 365: return Item::MagentaShulkerBox; + case 313: return Item::MagentaStainedGlass; + case 329: return Item::MagentaStainedGlassPane; + case 265: return Item::MagentaTerracotta; + case 84: return Item::MagentaWool; + case 356: return Item::MagmaBlock; + case 629: return Item::MagmaCream; + case 653: return Item::MagmaCubeSpawnEgg; + case 696: return Item::Map; + case 208: return Item::Melon; + case 613: return Item::MelonSeeds; + case 610: return Item::MelonSlice; + case 546: return Item::MilkBucket; + case 540: return Item::Minecart; + case 654: return Item::MooshroomSpawnEgg; + case 138: return Item::MossyCobblestone; + case 240: return Item::MossyCobblestoneWall; + case 200: return Item::MossyStoneBricks; + case 655: return Item::MuleSpawnEgg; + case 205: return Item::MushroomStem; + case 494: return Item::MushroomStew; + case 779: return Item::MusicDisc11; + case 769: return Item::MusicDisc13; + case 771: return Item::MusicDiscBlocks; + case 770: return Item::MusicDiscCat; + case 772: return Item::MusicDiscChirp; + case 773: return Item::MusicDiscFar; + case 774: return Item::MusicDiscMall; + case 775: return Item::MusicDiscMellohi; + case 776: return Item::MusicDiscStal; + case 777: return Item::MusicDiscStrad; + case 780: return Item::MusicDiscWait; + case 778: return Item::MusicDiscWard; + case 728: return Item::Mutton; + case 218: return Item::Mycelium; + case 726: return Item::NameTag; + case 783: return Item::NautilusShell; + case 710: return Item::NetherBrick; + case 221: return Item::NetherBrickFence; + case 124: return Item::NetherBrickSlab; + case 222: return Item::NetherBrickStairs; + case 220: return Item::NetherBricks; + case 255: return Item::NetherQuartzOre; + case 705: return Item::NetherStar; + case 623: return Item::NetherWart; + case 357: return Item::NetherWartBlock; + case 183: return Item::Netherrack; + case 71: return Item::NoteBlock; + case 544: return Item::OakBoat; + case 241: return Item::OakButton; + case 456: return Item::OakDoor; + case 175: return Item::OakFence; + case 210: return Item::OakFenceGate; + case 56: return Item::OakLeaves; + case 32: return Item::OakLog; + case 13: return Item::OakPlanks; + case 160: return Item::OakPressurePlate; + case 19: return Item::OakSapling; + case 112: return Item::OakSlab; + case 148: return Item::OakStairs; + case 187: return Item::OakTrapdoor; + case 50: return Item::OakWood; + case 361: return Item::Observer; + case 139: return Item::Obsidian; + case 656: return Item::OcelotSpawnEgg; + case 731: return Item::OrangeBanner; + case 592: return Item::OrangeBed; + case 283: return Item::OrangeCarpet; + case 396: return Item::OrangeConcrete; + case 412: return Item::OrangeConcretePowder; + case 586: return Item::OrangeDye; + case 380: return Item::OrangeGlazedTerracotta; + case 364: return Item::OrangeShulkerBox; + case 312: return Item::OrangeStainedGlass; + case 328: return Item::OrangeStainedGlassPane; + case 264: return Item::OrangeTerracotta; + case 104: return Item::OrangeTulip; + case 83: return Item::OrangeWool; + case 107: return Item::OxeyeDaisy; + case 300: return Item::PackedIce; + case 533: return Item::Painting; + case 556: return Item::Paper; + case 657: return Item::ParrotSpawnEgg; + case 308: return Item::Peony; + case 120: return Item::PetrifiedOakSlab; + case 782: return Item::PhantomMembrane; + case 658: return Item::PhantomSpawnEgg; + case 659: return Item::PigSpawnEgg; + case 736: return Item::PinkBanner; + case 597: return Item::PinkBed; + case 288: return Item::PinkCarpet; + case 401: return Item::PinkConcrete; + case 417: return Item::PinkConcretePowder; + case 581: return Item::PinkDye; + case 385: return Item::PinkGlazedTerracotta; + case 369: return Item::PinkShulkerBox; + case 317: return Item::PinkStainedGlass; + case 333: return Item::PinkStainedGlassPane; + case 269: return Item::PinkTerracotta; + case 106: return Item::PinkTulip; + case 88: return Item::PinkWool; + case 81: return Item::Piston; + case 700: return Item::PlayerHead; + case 11: return Item::Podzol; + case 695: return Item::PoisonousPotato; + case 660: return Item::PolarBearSpawnEgg; + case 7: return Item::PolishedAndesite; + case 5: return Item::PolishedDiorite; + case 3: return Item::PolishedGranite; + case 748: return Item::PoppedChorusFruit; + case 99: return Item::Poppy; + case 531: return Item::Porkchop; + case 693: return Item::Potato; + case 624: return Item::Potion; + case 72: return Item::PoweredRail; + case 343: return Item::Prismarine; + case 129: return Item::PrismarineBrickSlab; + case 347: return Item::PrismarineBrickStairs; + case 344: return Item::PrismarineBricks; + case 715: return Item::PrismarineCrystals; + case 714: return Item::PrismarineShard; + case 128: return Item::PrismarineSlab; + case 346: return Item::PrismarineStairs; + case 569: return Item::Pufferfish; + case 547: return Item::PufferfishBucket; + case 661: return Item::PufferfishSpawnEgg; + case 181: return Item::Pumpkin; + case 706: return Item::PumpkinPie; + case 612: return Item::PumpkinSeeds; + case 740: return Item::PurpleBanner; + case 601: return Item::PurpleBed; + case 292: return Item::PurpleCarpet; + case 405: return Item::PurpleConcrete; + case 421: return Item::PurpleConcretePowder; + case 577: return Item::PurpleDye; + case 389: return Item::PurpleGlazedTerracotta; + case 373: return Item::PurpleShulkerBox; + case 321: return Item::PurpleStainedGlass; + case 337: return Item::PurpleStainedGlassPane; + case 273: return Item::PurpleTerracotta; + case 92: return Item::PurpleWool; + case 144: return Item::PurpurBlock; + case 145: return Item::PurpurPillar; + case 127: return Item::PurpurSlab; + case 146: return Item::PurpurStairs; + case 711: return Item::Quartz; + case 258: return Item::QuartzBlock; + case 259: return Item::QuartzPillar; + case 125: return Item::QuartzSlab; + case 260: return Item::QuartzStairs; + case 716: return Item::Rabbit; + case 719: return Item::RabbitFoot; + case 720: return Item::RabbitHide; + case 662: return Item::RabbitSpawnEgg; + case 718: return Item::RabbitStew; + case 156: return Item::Rail; + case 744: return Item::RedBanner; + case 605: return Item::RedBed; + case 296: return Item::RedCarpet; + case 409: return Item::RedConcrete; + case 425: return Item::RedConcretePowder; + case 393: return Item::RedGlazedTerracotta; + case 109: return Item::RedMushroom; + case 204: return Item::RedMushroomBlock; + case 358: return Item::RedNetherBricks; + case 27: return Item::RedSand; + case 350: return Item::RedSandstone; + case 126: return Item::RedSandstoneSlab; + case 353: return Item::RedSandstoneStairs; + case 377: return Item::RedShulkerBox; + case 325: return Item::RedStainedGlass; + case 341: return Item::RedStainedGlassPane; + case 277: return Item::RedTerracotta; + case 103: return Item::RedTulip; + case 96: return Item::RedWool; + case 542: return Item::Redstone; + case 254: return Item::RedstoneBlock; + case 228: return Item::RedstoneLamp; + case 166: return Item::RedstoneOre; + case 167: return Item::RedstoneTorch; + case 462: return Item::Repeater; + case 354: return Item::RepeatingCommandBlock; + case 307: return Item::RoseBush; + case 573: return Item::RedDye; + case 618: return Item::RottenFlesh; + case 541: return Item::Saddle; + case 567: return Item::Salmon; + case 548: return Item::SalmonBucket; + case 663: return Item::SalmonSpawnEgg; + case 26: return Item::Sand; + case 68: return Item::Sandstone; + case 119: return Item::SandstoneSlab; + case 229: return Item::SandstoneStairs; + case 466: return Item::Scute; + case 349: return Item::SeaLantern; + case 80: return Item::SeaPickle; + case 79: return Item::Seagrass; + case 609: return Item::Shears; + case 664: return Item::SheepSpawnEgg; + case 757: return Item::Shield; + case 362: return Item::ShulkerBox; + case 765: return Item::ShulkerShell; + case 665: return Item::ShulkerSpawnEgg; + case 536: return Item::OakSign; + case 666: return Item::SilverfishSpawnEgg; + case 668: return Item::SkeletonHorseSpawnEgg; + case 698: return Item::SkeletonSkull; + case 667: return Item::SkeletonSpawnEgg; + case 558: return Item::SlimeBall; + case 303: return Item::SlimeBlock; + case 669: return Item::SlimeSpawnEgg; + case 131: return Item::SmoothQuartz; + case 132: return Item::SmoothRedSandstone; + case 133: return Item::SmoothSandstone; + case 134: return Item::SmoothStone; + case 169: return Item::Snow; + case 171: return Item::SnowBlock; + case 543: return Item::Snowball; + case 184: return Item::SoulSand; + case 147: return Item::Spawner; + case 754: return Item::SpectralArrow; + case 626: return Item::SpiderEye; + case 670: return Item::SpiderSpawnEgg; + case 753: return Item::SplashPotion; + case 62: return Item::Sponge; + case 759: return Item::SpruceBoat; + case 242: return Item::SpruceButton; + case 457: return Item::SpruceDoor; + case 176: return Item::SpruceFence; + case 211: return Item::SpruceFenceGate; + case 57: return Item::SpruceLeaves; + case 33: return Item::SpruceLog; + case 14: return Item::SprucePlanks; + case 161: return Item::SprucePressurePlate; + case 20: return Item::SpruceSapling; + case 113: return Item::SpruceSlab; + case 234: return Item::SpruceStairs; + case 188: return Item::SpruceTrapdoor; + case 51: return Item::SpruceWood; + case 671: return Item::SquidSpawnEgg; + case 492: return Item::Stick; + case 74: return Item::StickyPiston; + case 1: return Item::Stone; + case 487: return Item::StoneAxe; + case 123: return Item::StoneBrickSlab; + case 217: return Item::StoneBrickStairs; + case 199: return Item::StoneBricks; + case 168: return Item::StoneButton; + case 503: return Item::StoneHoe; + case 486: return Item::StonePickaxe; + case 159: return Item::StonePressurePlate; + case 485: return Item::StoneShovel; + case 118: return Item::StoneSlab; + case 484: return Item::StoneSword; + case 672: return Item::StraySpawnEgg; + case 499: return Item::String; + case 42: return Item::StrippedAcaciaLog; + case 48: return Item::StrippedAcaciaWood; + case 40: return Item::StrippedBirchLog; + case 46: return Item::StrippedBirchWood; + case 43: return Item::StrippedDarkOakLog; + case 49: return Item::StrippedDarkOakWood; + case 41: return Item::StrippedJungleLog; + case 47: return Item::StrippedJungleWood; + case 38: return Item::StrippedOakLog; + case 44: return Item::StrippedOakWood; + case 39: return Item::StrippedSpruceLog; + case 45: return Item::StrippedSpruceWood; + case 464: return Item::StructureBlock; + case 360: return Item::StructureVoid; + case 589: return Item::Sugar; + case 553: return Item::SugarCane; + case 305: return Item::Sunflower; + case 309: return Item::TallGrass; + case 298: return Item::Terracotta; + case 755: return Item::TippedArrow; + case 136: return Item::TNT; + case 712: return Item::TNTMinecart; + case 140: return Item::Torch; + case 764: return Item::TotemOfUndying; + case 250: return Item::TrappedChest; + case 781: return Item::Trident; + case 232: return Item::TripwireHook; + case 568: return Item::TropicalFish; + case 550: return Item::TropicalFishBucket; + case 673: return Item::TropicalFishSpawnEgg; + case 438: return Item::TubeCoral; + case 433: return Item::TubeCoralBlock; + case 443: return Item::TubeCoralFan; + case 427: return Item::TurtleEgg; + case 465: return Item::TurtleHelmet; + case 674: return Item::TurtleSpawnEgg; + case 675: return Item::VexSpawnEgg; + case 676: return Item::VillagerSpawnEgg; + case 677: return Item::VindicatorSpawnEgg; + case 209: return Item::Vine; + case 538: return Item::WaterBucket; + case 63: return Item::WetSponge; + case 508: return Item::Wheat; + case 507: return Item::WheatSeeds; + case 730: return Item::WhiteBanner; + case 591: return Item::WhiteBed; + case 282: return Item::WhiteCarpet; + case 395: return Item::WhiteConcrete; + case 411: return Item::WhiteConcretePowder; + case 379: return Item::WhiteGlazedTerracotta; + case 363: return Item::WhiteShulkerBox; + case 311: return Item::WhiteStainedGlass; + case 327: return Item::WhiteStainedGlassPane; + case 263: return Item::WhiteTerracotta; + case 105: return Item::WhiteTulip; + case 82: return Item::WhiteWool; + case 678: return Item::WitchSpawnEgg; + case 699: return Item::WitherSkeletonSkull; + case 679: return Item::WitherSkeletonSpawnEgg; + case 680: return Item::WolfSpawnEgg; + case 483: return Item::WoodenAxe; + case 502: return Item::WoodenHoe; + case 482: return Item::WoodenPickaxe; + case 481: return Item::WoodenShovel; + case 480: return Item::WoodenSword; + case 687: return Item::WritableBook; + case 688: return Item::WrittenBook; + case 734: return Item::YellowBanner; + case 595: return Item::YellowBed; + case 286: return Item::YellowCarpet; + case 399: return Item::YellowConcrete; + case 415: return Item::YellowConcretePowder; + case 383: return Item::YellowGlazedTerracotta; + case 367: return Item::YellowShulkerBox; + case 315: return Item::YellowStainedGlass; + case 331: return Item::YellowStainedGlassPane; + case 267: return Item::YellowTerracotta; + case 86: return Item::YellowWool; + case 701: return Item::ZombieHead; + case 682: return Item::ZombieHorseSpawnEgg; + case 683: return Item::ZombiePigmanSpawnEgg; + case 681: return Item::ZombieSpawnEgg; + case 684: return Item::ZombieVillagerSpawnEgg; + default: return Item::Air; + } + } +} diff --git a/src/Protocol/Palettes/Palette_1_13.h b/src/Protocol/Palettes/Palette_1_13.h new file mode 100644 index 000000000..0c71d422c --- /dev/null +++ b/src/Protocol/Palettes/Palette_1_13.h @@ -0,0 +1,10 @@ +#pragma once + +#include "../../Registries/Items.h" + +namespace Palette_1_13 +{ + Int32 FromBlock(short ID); + Int32 FromItem(Item ID); + Item ToItem(Int32 ID); +} diff --git a/src/Protocol/Palettes/Palette_1_16.cpp b/src/Protocol/Palettes/Palette_1_16.cpp new file mode 100644 index 000000000..5e86d54a0 --- /dev/null +++ b/src/Protocol/Palettes/Palette_1_16.cpp @@ -0,0 +1,13747 @@ +#include "Globals.h" + +#include "Palette_1_16.h" +#include "../../Registries/Blocks.h" + +namespace Palette_1_16 +{ + Int32 FromBlock(short ID) + { + using namespace Block; + + switch (ID) + { + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 6443; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 6447; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 6451; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 6455; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 6459; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 6463; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 6444; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 6448; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 6452; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 6456; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 6460; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 6464; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 6445; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 6449; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 6453; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 6457; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 6461; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 6465; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 6442; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 6446; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 6450; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 6454; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 6458; + case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 6462; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8955; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8987; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8956; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8988; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8957; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8989; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8958; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8990; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8959; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8991; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8960; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8992; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8961; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8930; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8962; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8931; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8963; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8932; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8964; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8933; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8965; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8934; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8966; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8935; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8967; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8936; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8968; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8937; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8969; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8938; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8970; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8939; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8971; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8940; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8972; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8941; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8973; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8942; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8974; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8943; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8975; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8944; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8976; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8945; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8977; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8946; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8978; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8947; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8979; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8948; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8980; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8949; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8981; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8950; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8982; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8951; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8983; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8952; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8984; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8953; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8985; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8954; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8986; + case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8993; + case AcaciaFence::AcaciaFence(true, true, true, false): return 8677; + case AcaciaFence::AcaciaFence(true, false, true, false): return 8685; + case AcaciaFence::AcaciaFence(false, true, true, false): return 8693; + case AcaciaFence::AcaciaFence(false, false, true, false): return 8701; + case AcaciaFence::AcaciaFence(true, true, false, true): return 8680; + case AcaciaFence::AcaciaFence(true, false, false, true): return 8688; + case AcaciaFence::AcaciaFence(false, true, false, true): return 8696; + case AcaciaFence::AcaciaFence(false, false, false, true): return 8704; + case AcaciaFence::AcaciaFence(true, true, false, false): return 8681; + case AcaciaFence::AcaciaFence(true, false, false, false): return 8689; + case AcaciaFence::AcaciaFence(false, true, false, false): return 8697; + case AcaciaFence::AcaciaFence(true, true, true, true): return 8676; + case AcaciaFence::AcaciaFence(true, false, true, true): return 8684; + case AcaciaFence::AcaciaFence(false, true, true, true): return 8692; + case AcaciaFence::AcaciaFence(false, false, true, true): return 8700; + case AcaciaFence::AcaciaFence(false, false, false, false): return 8705; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 8522; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 8530; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 8538; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 8515; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 8523; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 8531; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 8539; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 8516; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 8524; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 8532; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 8540; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 8517; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 8525; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 8533; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 8541; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 8518; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 8526; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 8534; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 8542; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 8519; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 8527; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 8535; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 8543; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 8520; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 8528; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 8536; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 8544; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 8521; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 8529; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 8537; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 8514; + case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 8545; + case AcaciaLeaves::AcaciaLeaves(7, true): return 213; + case AcaciaLeaves::AcaciaLeaves(3, false): return 206; + case AcaciaLeaves::AcaciaLeaves(7, false): return 214; + case AcaciaLeaves::AcaciaLeaves(4, true): return 207; + case AcaciaLeaves::AcaciaLeaves(4, false): return 208; + case AcaciaLeaves::AcaciaLeaves(1, true): return 201; + case AcaciaLeaves::AcaciaLeaves(5, true): return 209; + case AcaciaLeaves::AcaciaLeaves(1, false): return 202; + case AcaciaLeaves::AcaciaLeaves(5, false): return 210; + case AcaciaLeaves::AcaciaLeaves(2, true): return 203; + case AcaciaLeaves::AcaciaLeaves(6, true): return 211; + case AcaciaLeaves::AcaciaLeaves(2, false): return 204; + case AcaciaLeaves::AcaciaLeaves(6, false): return 212; + case AcaciaLeaves::AcaciaLeaves(3, true): return 205; + case AcaciaLog::AcaciaLog(AcaciaLog::Axis::X): return 85; + case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Y): return 86; + case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Z): return 87; + case AcaciaPlanks::AcaciaPlanks(): return 19; + case AcaciaPressurePlate::AcaciaPressurePlate(true): return 3881; + case AcaciaPressurePlate::AcaciaPressurePlate(false): return 3882; + case AcaciaSapling::AcaciaSapling(0): return 29; + case AcaciaSapling::AcaciaSapling(1): return 30; + case AcaciaSign::AcaciaSign(0): return 3478; + case AcaciaSign::AcaciaSign(1): return 3480; + case AcaciaSign::AcaciaSign(2): return 3482; + case AcaciaSign::AcaciaSign(3): return 3484; + case AcaciaSign::AcaciaSign(4): return 3486; + case AcaciaSign::AcaciaSign(5): return 3488; + case AcaciaSign::AcaciaSign(6): return 3490; + case AcaciaSign::AcaciaSign(7): return 3492; + case AcaciaSign::AcaciaSign(8): return 3494; + case AcaciaSign::AcaciaSign(9): return 3496; + case AcaciaSign::AcaciaSign(10): return 3498; + case AcaciaSign::AcaciaSign(11): return 3500; + case AcaciaSign::AcaciaSign(12): return 3502; + case AcaciaSign::AcaciaSign(13): return 3504; + case AcaciaSign::AcaciaSign(14): return 3506; + case AcaciaSign::AcaciaSign(15): return 3508; + case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Top): return 8325; + case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Double): return 8329; + case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Bottom): return 8327; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 7426; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 7428; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 7430; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 7432; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 7434; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 7436; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 7438; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 7376; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 7440; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 7378; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 7442; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 7380; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 7444; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 7382; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 7446; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 7384; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 7448; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 7386; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 7450; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 7388; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 7452; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 7390; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 7454; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 7392; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 7394; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 7396; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 7398; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 7400; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 7402; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 7404; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 7406; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 7408; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 7410; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 7412; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 7414; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 7416; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 7418; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 7420; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 7422; + case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 7424; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, true): return 4384; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, true): return 4400; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, true): return 4416; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, false): return 4370; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, false): return 4386; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, false): return 4402; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, false): return 4418; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, true): return 4372; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, true): return 4388; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, true): return 4404; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, true): return 4420; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, false): return 4374; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, false): return 4390; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, false): return 4406; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, false): return 4422; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, true): return 4376; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, true): return 4392; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, true): return 4408; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, true): return 4424; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, false): return 4378; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, false): return 4394; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, false): return 4410; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, false): return 4426; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, true): return 4380; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, true): return 4396; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, true): return 4412; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, true): return 4428; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, false): return 4382; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, false): return 4398; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, false): return 4414; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, true): return 4368; + case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, false): return 4430; + case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_XM): return 3764; + case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_ZM): return 3760; + case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_ZP): return 3762; + case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_XP): return 3766; + case AcaciaWood::AcaciaWood(AcaciaWood::Axis::X): return 121; + case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Y): return 122; + case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Z): return 123; + case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingWest): return 6826; + case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingNorth): return 6827; + case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingSouth): return 6828; + case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::NorthSouth): return 6829; + case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::EastWest): return 6830; + case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingEast): return 6831; + case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingWest): return 6832; + case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingNorth): return 6833; + case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingSouth): return 6834; + case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::NorthSouth): return 6823; + case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::EastWest): return 6824; + case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingEast): return 6825; + case Air::Air(): return -0; + case Allium::Allium(): return 1415; + case AncientDebris::AncientDebris(): return 15827; + case Andesite::Andesite(): return 6; + case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Bottom): return 10846; + case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Top): return 10844; + case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Double): return 10848; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 10470; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 10472; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 10474; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 10476; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 10478; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 10480; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 10482; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 10484; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 10486; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 10488; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 10490; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 10492; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 10494; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 10496; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 10498; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 10500; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 10502; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 10504; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 10506; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 10508; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 10510; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 10512; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 10514; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 10516; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 10518; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 10520; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 10522; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 10524; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 10526; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 10528; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 10530; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 10532; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 10534; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 10536; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 10538; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 10540; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 10542; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 10544; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 10546; + case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 10548; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13138; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13146; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13150; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13158; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13162; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13170; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13174; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13182; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13186; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13194; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13198; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13206; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13210; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13218; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13222; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13230; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13234; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13242; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13246; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13254; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13258; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13266; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13270; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13278; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13282; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13290; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13294; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13302; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13306; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13314; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13318; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13326; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13330; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13338; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13342; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13350; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13354; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13362; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13366; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13374; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13378; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13386; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13390; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13398; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13402; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13410; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13414; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13422; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13426; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13434; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13438; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13446; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13450; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13458; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13139; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13151; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13163; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13175; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13187; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13199; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13211; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13223; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13235; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13247; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13259; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13271; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13283; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13295; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13307; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13319; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13331; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13343; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13355; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13367; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13379; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13391; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13403; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13415; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13427; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13439; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13451; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13140; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13144; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13152; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13156; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13164; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13168; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13176; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13180; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13188; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13192; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13200; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13204; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13212; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13216; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13224; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13228; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13236; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13240; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13248; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13252; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13260; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13264; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13272; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13276; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13284; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13288; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13296; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13300; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13308; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13312; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13320; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13324; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13332; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13336; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13344; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13348; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13356; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13360; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13368; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13372; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13380; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13384; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13392; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13396; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13404; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13408; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13416; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13420; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13428; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13432; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13440; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13444; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13452; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13456; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13145; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13157; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13169; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13181; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13193; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13205; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13217; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13229; + case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13241; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13253; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13265; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13277; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13289; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13301; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13313; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13325; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13337; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13349; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13361; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13373; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13385; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13397; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13409; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13421; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13433; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13445; + case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13457; + case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZM): return 6610; + case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZP): return 6611; + case Anvil::Anvil(eBlockFace::BLOCK_FACE_XM): return 6612; + case Anvil::Anvil(eBlockFace::BLOCK_FACE_XP): return 6613; + case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZM): return 4768; + case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZP): return 4769; + case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XM): return 4770; + case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XP): return 4771; + case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZP): return 4765; + case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XM): return 4766; + case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZM): return 4764; + case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XP): return 4767; + case AzureBluet::AzureBluet(): return 1416; + case Bamboo::Bamboo(1, Bamboo::Leaves::Small, 0): return 9660; + case Bamboo::Bamboo(1, Bamboo::Leaves::Large, 0): return 9662; + case Bamboo::Bamboo(0, Bamboo::Leaves::None, 1): return 9653; + case Bamboo::Bamboo(0, Bamboo::Leaves::Small, 1): return 9655; + case Bamboo::Bamboo(0, Bamboo::Leaves::Large, 1): return 9657; + case Bamboo::Bamboo(1, Bamboo::Leaves::None, 1): return 9659; + case Bamboo::Bamboo(1, Bamboo::Leaves::Small, 1): return 9661; + case Bamboo::Bamboo(1, Bamboo::Leaves::Large, 1): return 9663; + case Bamboo::Bamboo(0, Bamboo::Leaves::None, 0): return 9652; + case Bamboo::Bamboo(0, Bamboo::Leaves::Small, 0): return 9654; + case Bamboo::Bamboo(0, Bamboo::Leaves::Large, 0): return 9656; + case Bamboo::Bamboo(1, Bamboo::Leaves::None, 0): return 9658; + case BambooSapling::BambooSapling(): return 9651; + case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZM, false): return 14792; + case Barrel::Barrel(eBlockFace::BLOCK_FACE_XP, false): return 14794; + case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZP, false): return 14796; + case Barrel::Barrel(eBlockFace::BLOCK_FACE_XM, false): return 14798; + case Barrel::Barrel(eBlockFace::BLOCK_FACE_YP, false): return 14800; + case Barrel::Barrel(eBlockFace::BLOCK_FACE_YM, false): return 14802; + case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZM, true): return 14791; + case Barrel::Barrel(eBlockFace::BLOCK_FACE_XP, true): return 14793; + case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZP, true): return 14795; + case Barrel::Barrel(eBlockFace::BLOCK_FACE_XM, true): return 14797; + case Barrel::Barrel(eBlockFace::BLOCK_FACE_YP, true): return 14799; + case Barrel::Barrel(eBlockFace::BLOCK_FACE_YM, true): return 14801; + case Barrier::Barrier(): return 7536; + case Basalt::Basalt(Basalt::Axis::Y): return 4003; + case Basalt::Basalt(Basalt::Axis::X): return 4002; + case Basalt::Basalt(Basalt::Axis::Z): return 4004; + case Beacon::Beacon(): return 5656; + case Bedrock::Bedrock(): return 33; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 0): return 15776; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 2): return 15784; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 4): return 15792; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 1): return 15777; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 3): return 15785; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 5): return 15793; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 2): return 15778; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 4): return 15786; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 0): return 15794; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 3): return 15779; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 5): return 15787; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 1): return 15795; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 4): return 15780; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 0): return 15788; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 2): return 15796; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 5): return 15781; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 1): return 15789; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 3): return 15797; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 0): return 15782; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 2): return 15790; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 4): return 15798; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 1): return 15783; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 3): return 15791; + case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 5): return 15799; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 1): return 15807; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 3): return 15815; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 5): return 15823; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 0): return 15800; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 2): return 15808; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 4): return 15816; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 1): return 15801; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 3): return 15809; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 5): return 15817; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 2): return 15802; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 4): return 15810; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 0): return 15818; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 3): return 15803; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 5): return 15811; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 1): return 15819; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 4): return 15804; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 0): return 15812; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 2): return 15820; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 5): return 15805; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 1): return 15813; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 3): return 15821; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 0): return 15806; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 2): return 15814; + case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 4): return 15822; + case Beetroots::Beetroots(0): return 9219; + case Beetroots::Beetroots(2): return 9221; + case Beetroots::Beetroots(1): return 9220; + case Beetroots::Beetroots(3): return 9222; + case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XP, false): return 14877; + case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 14854; + case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 14862; + case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZM, true): return 14870; + case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZM, true): return 14878; + case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 14855; + case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 14863; + case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZM, false): return 14871; + case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZM, false): return 14879; + case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 14856; + case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 14864; + case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZP, true): return 14872; + case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZP, true): return 14880; + case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 14857; + case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 14865; + case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZP, false): return 14873; + case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZP, false): return 14881; + case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XM, true): return 14858; + case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 14866; + case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XM, true): return 14874; + case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XM, true): return 14882; + case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XM, false): return 14859; + case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 14867; + case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XM, false): return 14875; + case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XM, false): return 14883; + case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XP, true): return 14860; + case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 14868; + case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XP, true): return 14876; + case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XP, true): return 14884; + case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XP, false): return 14861; + case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 14869; + case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XP, false): return 14885; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 6404; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 6408; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 6412; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 6416; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 6397; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 6401; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 6405; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 6409; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 6413; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 6417; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 6394; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 6398; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 6402; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 6406; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 6410; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 6414; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 6395; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 6399; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 6403; + case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 6407; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 6411; + case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 6415; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 6396; + case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 6400; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8829; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8861; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8830; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8862; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8831; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8863; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8832; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8864; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8833; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8802; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8834; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8803; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8835; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8804; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8836; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8805; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8837; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8806; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8838; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8807; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8839; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8808; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8840; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8809; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8841; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8810; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8842; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8811; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8843; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8812; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8844; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8813; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8845; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8814; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8846; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8815; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8847; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8816; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8848; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8817; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8849; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8818; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8850; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8819; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8851; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8820; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8852; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8821; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8853; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8822; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8854; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8823; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8855; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8824; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8856; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8825; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8857; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8826; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8858; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8827; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8859; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8828; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8860; + case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8865; + case BirchFence::BirchFence(true, true, false, true): return 8616; + case BirchFence::BirchFence(true, false, false, true): return 8624; + case BirchFence::BirchFence(false, true, false, true): return 8632; + case BirchFence::BirchFence(false, false, false, true): return 8640; + case BirchFence::BirchFence(true, true, false, false): return 8617; + case BirchFence::BirchFence(true, false, false, false): return 8625; + case BirchFence::BirchFence(false, true, false, false): return 8633; + case BirchFence::BirchFence(true, true, true, true): return 8612; + case BirchFence::BirchFence(true, false, true, true): return 8620; + case BirchFence::BirchFence(false, true, true, true): return 8628; + case BirchFence::BirchFence(false, false, true, true): return 8636; + case BirchFence::BirchFence(true, true, true, false): return 8613; + case BirchFence::BirchFence(true, false, true, false): return 8621; + case BirchFence::BirchFence(false, true, true, false): return 8629; + case BirchFence::BirchFence(false, false, true, false): return 8637; + case BirchFence::BirchFence(false, false, false, false): return 8641; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 8460; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 8468; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 8476; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 8453; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 8461; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 8469; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 8477; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 8454; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 8462; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 8470; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 8478; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 8455; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 8463; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 8471; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 8479; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 8456; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 8464; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 8472; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 8480; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 8457; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 8465; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 8473; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 8450; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 8458; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 8466; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 8474; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 8451; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 8459; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 8467; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 8475; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 8452; + case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 8481; + case BirchLeaves::BirchLeaves(6, true): return 183; + case BirchLeaves::BirchLeaves(2, false): return 176; + case BirchLeaves::BirchLeaves(6, false): return 184; + case BirchLeaves::BirchLeaves(3, true): return 177; + case BirchLeaves::BirchLeaves(7, true): return 185; + case BirchLeaves::BirchLeaves(3, false): return 178; + case BirchLeaves::BirchLeaves(7, false): return 186; + case BirchLeaves::BirchLeaves(4, true): return 179; + case BirchLeaves::BirchLeaves(4, false): return 180; + case BirchLeaves::BirchLeaves(1, true): return 173; + case BirchLeaves::BirchLeaves(5, true): return 181; + case BirchLeaves::BirchLeaves(1, false): return 174; + case BirchLeaves::BirchLeaves(5, false): return 182; + case BirchLeaves::BirchLeaves(2, true): return 175; + case BirchLog::BirchLog(BirchLog::Axis::X): return 79; + case BirchLog::BirchLog(BirchLog::Axis::Y): return 80; + case BirchLog::BirchLog(BirchLog::Axis::Z): return 81; + case BirchPlanks::BirchPlanks(): return 17; + case BirchPressurePlate::BirchPressurePlate(true): return 3877; + case BirchPressurePlate::BirchPressurePlate(false): return 3878; + case BirchSapling::BirchSapling(0): return 25; + case BirchSapling::BirchSapling(1): return 26; + case BirchSign::BirchSign(3): return 3452; + case BirchSign::BirchSign(4): return 3454; + case BirchSign::BirchSign(5): return 3456; + case BirchSign::BirchSign(6): return 3458; + case BirchSign::BirchSign(7): return 3460; + case BirchSign::BirchSign(8): return 3462; + case BirchSign::BirchSign(9): return 3464; + case BirchSign::BirchSign(10): return 3466; + case BirchSign::BirchSign(11): return 3468; + case BirchSign::BirchSign(12): return 3470; + case BirchSign::BirchSign(13): return 3472; + case BirchSign::BirchSign(14): return 3474; + case BirchSign::BirchSign(0): return 3446; + case BirchSign::BirchSign(1): return 3448; + case BirchSign::BirchSign(2): return 3450; + case BirchSign::BirchSign(15): return 3476; + case BirchSlab::BirchSlab(BirchSlab::Type::Bottom): return 8315; + case BirchSlab::BirchSlab(BirchSlab::Type::Top): return 8313; + case BirchSlab::BirchSlab(BirchSlab::Type::Double): return 8317; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5521; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5523; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5525; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5527; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5529; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5531; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5533; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5535; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5537; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5539; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5541; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5543; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5545; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5547; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5485; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5549; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5487; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5551; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5489; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5553; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5491; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5555; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5493; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5557; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5495; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5559; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5497; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5561; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5499; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5563; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5501; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5503; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5505; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5507; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5509; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5511; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5513; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5515; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5517; + case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5519; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, false): return 4258; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, false): return 4274; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, false): return 4290; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, true): return 4244; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, true): return 4260; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, true): return 4276; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, true): return 4292; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, false): return 4246; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, false): return 4262; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, false): return 4278; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, false): return 4294; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, true): return 4248; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, true): return 4264; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, true): return 4280; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, true): return 4296; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, false): return 4250; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, false): return 4266; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, false): return 4282; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, false): return 4298; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, true): return 4252; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, true): return 4268; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, true): return 4284; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, true): return 4300; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, false): return 4254; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, false): return 4270; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, false): return 4286; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, true): return 4240; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, true): return 4256; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, true): return 4272; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, true): return 4288; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, false): return 4242; + case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, false): return 4302; + case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_ZM): return 3752; + case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_ZP): return 3754; + case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_XM): return 3756; + case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_XP): return 3758; + case BirchWood::BirchWood(BirchWood::Axis::X): return 115; + case BirchWood::BirchWood(BirchWood::Axis::Y): return 116; + case BirchWood::BirchWood(BirchWood::Axis::Z): return 117; + case BlackBanner::BlackBanner(9): return 8146; + case BlackBanner::BlackBanner(10): return 8147; + case BlackBanner::BlackBanner(11): return 8148; + case BlackBanner::BlackBanner(12): return 8149; + case BlackBanner::BlackBanner(13): return 8150; + case BlackBanner::BlackBanner(14): return 8151; + case BlackBanner::BlackBanner(0): return 8137; + case BlackBanner::BlackBanner(1): return 8138; + case BlackBanner::BlackBanner(2): return 8139; + case BlackBanner::BlackBanner(3): return 8140; + case BlackBanner::BlackBanner(4): return 8141; + case BlackBanner::BlackBanner(5): return 8142; + case BlackBanner::BlackBanner(6): return 8143; + case BlackBanner::BlackBanner(7): return 8144; + case BlackBanner::BlackBanner(8): return 8145; + case BlackBanner::BlackBanner(15): return 8152; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Foot): return 1302; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Head): return 1291; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Head): return 1295; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Head): return 1299; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Head): return 1303; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Foot): return 1292; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Foot): return 1296; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Foot): return 1300; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Head): return 1289; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Head): return 1293; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Head): return 1297; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Head): return 1301; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Foot): return 1290; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Foot): return 1294; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Foot): return 1298; + case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Foot): return 1304; + case BlackCarpet::BlackCarpet(): return 7881; + case BlackConcrete::BlackConcrete(): return 9453; + case BlackConcretePowder::BlackConcretePowder(): return 9469; + case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9435; + case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9434; + case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9436; + case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9437; + case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9368; + case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9372; + case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9369; + case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9373; + case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9370; + case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9371; + case BlackStainedGlass::BlackStainedGlass(): return 4110; + case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, true): return 7365; + case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, true): return 7369; + case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, true): return 7373; + case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, false): return 7346; + case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, false): return 7350; + case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, false): return 7354; + case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, false): return 7358; + case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, false): return 7362; + case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, false): return 7366; + case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, false): return 7370; + case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, true): return 7345; + case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, true): return 7349; + case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, true): return 7353; + case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, true): return 7357; + case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, true): return 7361; + case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, false): return 7374; + case BlackTerracotta::BlackTerracotta(): return 6862; + case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8214; + case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8213; + case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XM): return 8215; + case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XP): return 8216; + case BlackWool::BlackWool(): return 1399; + case Blackstone::Blackstone(): return 15839; + case BlackstoneSlab::BlackstoneSlab(BlackstoneSlab::Type::Double): return 16249; + case BlackstoneSlab::BlackstoneSlab(BlackstoneSlab::Type::Bottom): return 16247; + case BlackstoneSlab::BlackstoneSlab(BlackstoneSlab::Type::Top): return 16245; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::Straight): return 15841; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerLeft): return 15843; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerRight): return 15845; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterLeft): return 15847; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterRight): return 15849; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::Straight): return 15851; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerLeft): return 15853; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerRight): return 15855; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterLeft): return 15857; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterRight): return 15859; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::Straight): return 15861; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerLeft): return 15863; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerRight): return 15865; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterLeft): return 15867; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterRight): return 15869; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::Straight): return 15871; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerLeft): return 15873; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerRight): return 15875; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterLeft): return 15877; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterRight): return 15879; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::Straight): return 15881; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerLeft): return 15883; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerRight): return 15885; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterLeft): return 15887; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterRight): return 15889; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::Straight): return 15891; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerLeft): return 15893; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerRight): return 15895; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterLeft): return 15897; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterRight): return 15899; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::Straight): return 15901; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerLeft): return 15903; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerRight): return 15905; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterLeft): return 15907; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterRight): return 15909; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::Straight): return 15911; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerLeft): return 15913; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerRight): return 15915; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterLeft): return 15917; + case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterRight): return 15919; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 16152; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 16164; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 16176; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 16188; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 16200; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 16212; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 16224; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 16236; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 15925; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 15929; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 15937; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 15941; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 15949; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 15953; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 15961; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 15965; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 15973; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 15977; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 15985; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 15989; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 15997; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 16001; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 16009; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 16013; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 16021; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 16025; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 16033; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 16037; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 16045; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 16049; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 16057; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 16061; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 16069; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 16073; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 16081; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 16085; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 16093; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 16097; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 16105; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 16109; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 16117; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 16121; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 16129; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 16133; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 16141; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 16145; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 16153; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 16157; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 16165; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 16169; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 16177; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 16181; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 16189; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 16193; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 16201; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 16205; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 16213; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 16217; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 16225; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 16229; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 16237; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 16241; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 15930; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 15942; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 15954; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 15966; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 15978; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 15990; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 16002; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 16014; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 16026; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 16038; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 16050; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 16062; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 16074; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 16086; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 16098; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 16110; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 16122; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 16134; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 16146; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 16158; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 16170; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 16182; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 16194; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 16206; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 16218; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 16230; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 16242; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 15923; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 15931; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 15935; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 15943; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 15947; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 15955; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 15959; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 15967; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 15971; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 15979; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 15983; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 15991; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 15995; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 16003; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 16007; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 16015; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 16019; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 16027; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 16031; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 16039; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 16043; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 16051; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 16055; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 16063; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 16067; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 16075; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 16079; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 16087; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 16091; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 16099; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 16103; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 16111; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 16115; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 16123; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 16127; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 16135; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 16139; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 16147; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 16151; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 16159; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 16163; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 16171; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 16175; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 16183; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 16187; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 16195; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 16199; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 16207; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 16211; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 16219; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 16223; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 16231; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 16235; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 16243; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 15924; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 15936; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 15948; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 15960; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 15972; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 15984; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 15996; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 16008; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 16020; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 16032; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 16044; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 16056; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 16068; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 16080; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 16092; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 16104; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 16116; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 16128; + case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 16140; + case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZP, false): return 14814; + case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZM, true): return 14811; + case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XM, true): return 14815; + case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZM, false): return 14812; + case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XM, false): return 14816; + case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZP, true): return 14813; + case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XP, true): return 14817; + case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XP, false): return 14818; + case BlueBanner::BlueBanner(13): return 8086; + case BlueBanner::BlueBanner(14): return 8087; + case BlueBanner::BlueBanner(0): return 8073; + case BlueBanner::BlueBanner(1): return 8074; + case BlueBanner::BlueBanner(2): return 8075; + case BlueBanner::BlueBanner(3): return 8076; + case BlueBanner::BlueBanner(4): return 8077; + case BlueBanner::BlueBanner(5): return 8078; + case BlueBanner::BlueBanner(6): return 8079; + case BlueBanner::BlueBanner(7): return 8080; + case BlueBanner::BlueBanner(8): return 8081; + case BlueBanner::BlueBanner(9): return 8082; + case BlueBanner::BlueBanner(10): return 8083; + case BlueBanner::BlueBanner(11): return 8084; + case BlueBanner::BlueBanner(12): return 8085; + case BlueBanner::BlueBanner(15): return 8088; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Head): return 1227; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Head): return 1231; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Head): return 1235; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Head): return 1239; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Foot): return 1228; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Foot): return 1232; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Foot): return 1236; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Head): return 1225; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Head): return 1229; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Head): return 1233; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Head): return 1237; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Foot): return 1226; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Foot): return 1230; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Foot): return 1234; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Foot): return 1238; + case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Foot): return 1240; + case BlueCarpet::BlueCarpet(): return 7877; + case BlueConcrete::BlueConcrete(): return 9449; + case BlueConcretePowder::BlueConcretePowder(): return 9465; + case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9420; + case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9419; + case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9418; + case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9421; + case BlueIce::BlueIce(): return 9648; + case BlueOrchid::BlueOrchid(): return 1414; + case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9347; + case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9344; + case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9348; + case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9345; + case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9349; + case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9346; + case BlueStainedGlass::BlueStainedGlass(): return 4106; + case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, true): return 7241; + case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, true): return 7245; + case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, false): return 7218; + case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, false): return 7222; + case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, false): return 7226; + case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, false): return 7230; + case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, false): return 7234; + case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, false): return 7238; + case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, false): return 7242; + case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, true): return 7217; + case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, true): return 7221; + case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, true): return 7225; + case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, true): return 7229; + case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, true): return 7233; + case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, true): return 7237; + case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, false): return 7246; + case BlueTerracotta::BlueTerracotta(): return 6858; + case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XM): return 8199; + case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8198; + case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8197; + case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XP): return 8200; + case BlueWool::BlueWool(): return 1395; + case BoneBlock::BoneBlock(BoneBlock::Axis::Z): return 9258; + case BoneBlock::BoneBlock(BoneBlock::Axis::Y): return 9257; + case BoneBlock::BoneBlock(BoneBlock::Axis::X): return 9256; + case Bookshelf::Bookshelf(): return 1432; + case BrainCoral::BrainCoral(): return 9533; + case BrainCoralBlock::BrainCoralBlock(): return 9516; + case BrainCoralFan::BrainCoralFan(): return 9553; + case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9613; + case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9611; + case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9609; + case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9615; + case BrewingStand::BrewingStand(true, true, true): return 5133; + case BrewingStand::BrewingStand(true, false, true): return 5135; + case BrewingStand::BrewingStand(false, true, true): return 5137; + case BrewingStand::BrewingStand(false, false, true): return 5139; + case BrewingStand::BrewingStand(true, true, false): return 5134; + case BrewingStand::BrewingStand(true, false, false): return 5136; + case BrewingStand::BrewingStand(false, true, false): return 5138; + case BrewingStand::BrewingStand(false, false, false): return 5140; + case BrickSlab::BrickSlab(BrickSlab::Type::Bottom): return 8375; + case BrickSlab::BrickSlab(BrickSlab::Type::Top): return 8373; + case BrickSlab::BrickSlab(BrickSlab::Type::Double): return 8377; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4885; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4887; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4889; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4891; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4893; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4895; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4897; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4899; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4901; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4903; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4905; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4907; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4909; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4911; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4913; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4915; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4853; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4917; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4855; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4919; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4857; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4921; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4859; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4923; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4861; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4925; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4863; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4927; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4865; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4929; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4867; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4931; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4869; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4871; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4873; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4875; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4877; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4879; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4881; + case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4883; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Tall): return 11034; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::None): return 11038; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Tall): return 11046; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::None): return 11050; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Tall): return 11058; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::None): return 11062; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Tall): return 11070; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::None): return 11074; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Tall): return 11082; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None): return 11086; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Tall): return 11094; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None): return 11098; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Tall): return 11106; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::None): return 11110; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Tall): return 11118; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None): return 11122; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Tall): return 11130; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None): return 11134; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Tall): return 11142; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::None): return 11146; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Tall): return 11154; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::None): return 11158; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Tall): return 11166; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::None): return 11170; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Tall): return 11178; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::None): return 11182; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Tall): return 11190; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low): return 10871; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low): return 10883; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Low): return 10895; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low): return 10907; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low): return 10919; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Low): return 10931; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Low): return 10943; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Low): return 10955; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Low): return 10967; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low): return 10979; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low): return 10991; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Low): return 11003; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low): return 11015; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low): return 11027; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Low): return 11039; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Low): return 11051; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Low): return 11063; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Low): return 11075; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low): return 11087; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low): return 11099; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Low): return 11111; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low): return 11123; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low): return 11135; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Low): return 11147; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Low): return 11159; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Low): return 11171; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Low): return 11183; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Tall): return 10872; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None): return 10876; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Tall): return 10884; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None): return 10888; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Tall): return 10896; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::None): return 10900; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Tall): return 10908; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None): return 10912; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Tall): return 10920; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None): return 10924; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Tall): return 10932; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::None): return 10936; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Tall): return 10944; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::None): return 10948; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Tall): return 10956; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::None): return 10960; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Tall): return 10968; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::None): return 10972; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Tall): return 10980; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None): return 10984; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Tall): return 10992; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None): return 10996; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Tall): return 11004; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::None): return 11008; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Tall): return 11016; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None): return 11020; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Tall): return 11028; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None): return 11032; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Tall): return 11040; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::None): return 11044; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Tall): return 11052; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::None): return 11056; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Tall): return 11064; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::None): return 11068; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Tall): return 11076; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::None): return 11080; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Tall): return 11088; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None): return 11092; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Tall): return 11100; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None): return 11104; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Tall): return 11112; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::None): return 11116; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Tall): return 11124; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None): return 11128; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Tall): return 11136; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None): return 11140; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Tall): return 11148; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::None): return 11152; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Tall): return 11160; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::None): return 11164; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Tall): return 11172; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::None): return 11176; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Tall): return 11184; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::None): return 11188; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low): return 10877; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low): return 10889; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Low): return 10901; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low): return 10913; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low): return 10925; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Low): return 10937; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Low): return 10949; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Low): return 10961; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Low): return 10973; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low): return 10985; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low): return 10997; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Low): return 11009; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low): return 11021; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low): return 11033; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Low): return 11045; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Low): return 11057; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Low): return 11069; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Low): return 11081; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low): return 11093; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low): return 11105; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Low): return 11117; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low): return 11129; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low): return 11141; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Low): return 11153; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Low): return 11165; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Low): return 11177; + case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Low): return 11189; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None): return 10870; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Tall): return 10878; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None): return 10882; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Tall): return 10890; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::None): return 10894; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Tall): return 10902; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None): return 10906; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Tall): return 10914; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None): return 10918; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Tall): return 10926; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::None): return 10930; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Tall): return 10938; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::None): return 10942; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Tall): return 10950; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::None): return 10954; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Tall): return 10962; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::None): return 10966; + case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Tall): return 10974; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None): return 10978; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Tall): return 10986; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None): return 10990; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Tall): return 10998; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::None): return 11002; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Tall): return 11010; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None): return 11014; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Tall): return 11022; + case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None): return 11026; + case Bricks::Bricks(): return 1429; + case BrownBanner::BrownBanner(12): return 8101; + case BrownBanner::BrownBanner(13): return 8102; + case BrownBanner::BrownBanner(14): return 8103; + case BrownBanner::BrownBanner(0): return 8089; + case BrownBanner::BrownBanner(1): return 8090; + case BrownBanner::BrownBanner(2): return 8091; + case BrownBanner::BrownBanner(3): return 8092; + case BrownBanner::BrownBanner(4): return 8093; + case BrownBanner::BrownBanner(5): return 8094; + case BrownBanner::BrownBanner(6): return 8095; + case BrownBanner::BrownBanner(7): return 8096; + case BrownBanner::BrownBanner(8): return 8097; + case BrownBanner::BrownBanner(9): return 8098; + case BrownBanner::BrownBanner(10): return 8099; + case BrownBanner::BrownBanner(11): return 8100; + case BrownBanner::BrownBanner(15): return 8104; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Foot): return 1242; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Foot): return 1246; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Foot): return 1250; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Foot): return 1254; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Head): return 1243; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Head): return 1247; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Head): return 1251; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Head): return 1255; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Foot): return 1244; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Foot): return 1248; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Foot): return 1252; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Head): return 1241; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Head): return 1245; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Head): return 1249; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Head): return 1253; + case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Foot): return 1256; + case BrownCarpet::BrownCarpet(): return 7878; + case BrownConcrete::BrownConcrete(): return 9450; + case BrownConcretePowder::BrownConcretePowder(): return 9466; + case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9423; + case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9422; + case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9424; + case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9425; + case BrownMushroom::BrownMushroom(): return 1425; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, false): return 4510; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, false): return 4526; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, false): return 4542; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, false): return 4558; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, true): return 4511; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, true): return 4527; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, true): return 4543; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, true): return 4559; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, false): return 4512; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, false): return 4528; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, false): return 4544; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, false): return 4560; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, true): return 4513; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, true): return 4529; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, true): return 4545; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, true): return 4561; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, false): return 4514; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, false): return 4530; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, false): return 4546; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, false): return 4562; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, true): return 4515; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, true): return 4531; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, true): return 4547; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, true): return 4563; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, false): return 4516; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, false): return 4532; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, false): return 4548; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, false): return 4564; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, true): return 4517; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, true): return 4533; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, true): return 4549; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, true): return 4565; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, false): return 4518; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, false): return 4534; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, false): return 4550; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, false): return 4566; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, true): return 4519; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, true): return 4535; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, true): return 4551; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, true): return 4567; + case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, false): return 4520; + case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, false): return 4536; + case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, false): return 4552; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, true): return 4505; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, true): return 4521; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, true): return 4537; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, true): return 4553; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, false): return 4506; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, false): return 4522; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, false): return 4538; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, false): return 4554; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, true): return 4507; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, true): return 4523; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, true): return 4539; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, true): return 4555; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, false): return 4508; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, false): return 4524; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, false): return 4540; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, false): return 4556; + case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, true): return 4509; + case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, true): return 4525; + case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, true): return 4541; + case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, true): return 4557; + case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false): return 4568; + case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9354; + case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9351; + case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9355; + case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9352; + case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9353; + case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9350; + case BrownStainedGlass::BrownStainedGlass(): return 4107; + case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, true): return 7249; + case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, true): return 7253; + case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, true): return 7257; + case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, true): return 7261; + case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, true): return 7265; + case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, true): return 7269; + case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, true): return 7273; + case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, true): return 7277; + case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, false): return 7250; + case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, false): return 7254; + case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, false): return 7258; + case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, false): return 7262; + case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, false): return 7266; + case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, false): return 7270; + case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, false): return 7274; + case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, false): return 7278; + case BrownTerracotta::BrownTerracotta(): return 6859; + case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8202; + case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8201; + case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XM): return 8203; + case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XP): return 8204; + case BrownWool::BrownWool(): return 1396; + case BubbleColumn::BubbleColumn(true): return 9667; + case BubbleColumn::BubbleColumn(false): return 9668; + case BubbleCoral::BubbleCoral(): return 9535; + case BubbleCoralBlock::BubbleCoralBlock(): return 9517; + case BubbleCoralFan::BubbleCoralFan(): return 9555; + case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9617; + case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9621; + case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9619; + case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9623; + case Cactus::Cactus(0): return 3931; + case Cactus::Cactus(8): return 3939; + case Cactus::Cactus(1): return 3932; + case Cactus::Cactus(9): return 3940; + case Cactus::Cactus(2): return 3933; + case Cactus::Cactus(10): return 3941; + case Cactus::Cactus(3): return 3934; + case Cactus::Cactus(11): return 3942; + case Cactus::Cactus(4): return 3935; + case Cactus::Cactus(12): return 3943; + case Cactus::Cactus(5): return 3936; + case Cactus::Cactus(13): return 3944; + case Cactus::Cactus(6): return 3937; + case Cactus::Cactus(14): return 3945; + case Cactus::Cactus(7): return 3938; + case Cactus::Cactus(15): return 3946; + case Cake::Cake(6): return 4030; + case Cake::Cake(0): return 4024; + case Cake::Cake(1): return 4025; + case Cake::Cake(2): return 4026; + case Cake::Cake(3): return 4027; + case Cake::Cake(4): return 4028; + case Cake::Cake(5): return 4029; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, true, false): return 14893; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, true, false): return 14901; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, true, false): return 14909; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, true, false): return 14917; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, false, true): return 14895; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, false, true): return 14903; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, false, true): return 14911; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, false, true): return 14919; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, false, false): return 14897; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, false, false): return 14905; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, false, false): return 14913; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, true, true): return 14891; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, true, true): return 14899; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, true, true): return 14907; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, true, true): return 14915; + case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, false, false): return 14921; + case Carrots::Carrots(0): return 6330; + case Carrots::Carrots(2): return 6332; + case Carrots::Carrots(4): return 6334; + case Carrots::Carrots(6): return 6336; + case Carrots::Carrots(1): return 6331; + case Carrots::Carrots(3): return 6333; + case Carrots::Carrots(5): return 6335; + case Carrots::Carrots(7): return 6337; + case CartographyTable::CartographyTable(): return 14819; + case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XM): return 4018; + case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZP): return 4017; + case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZM): return 4016; + case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XP): return 4019; + case Cauldron::Cauldron(2): return 5143; + case Cauldron::Cauldron(0): return 5141; + case Cauldron::Cauldron(1): return 5142; + case Cauldron::Cauldron(3): return 5144; + case CaveAir::CaveAir(): return 9666; + case Chain::Chain(): return 4730; + case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 9240; + case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 9242; + case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 9244; + case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 9246; + case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 9248; + case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 9237; + case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 9239; + case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 9241; + case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 9243; + case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 9245; + case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 9247; + case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 9238; + case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Left): return 2037; + case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Right): return 2039; + case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Single): return 2041; + case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Left): return 2043; + case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Right): return 2045; + case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Single): return 2047; + case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Right): return 2057; + case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Left): return 2055; + case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Single): return 2053; + case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Left): return 2049; + case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Single): return 2035; + case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Right): return 2051; + case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XM): return 6616; + case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZM): return 6614; + case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZP): return 6615; + case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XP): return 6617; + case ChiseledNetherBricks::ChiseledNetherBricks(): return 17101; + case ChiseledPolishedBlackstone::ChiseledPolishedBlackstone(): return 16253; + case ChiseledQuartzBlock::ChiseledQuartzBlock(): return 6739; + case ChiseledRedSandstone::ChiseledRedSandstone(): return 8218; + case ChiseledSandstone::ChiseledSandstone(): return 247; + case ChiseledStoneBricks::ChiseledStoneBricks(): return 4498; + case ChorusFlower::ChorusFlower(2): return 9130; + case ChorusFlower::ChorusFlower(3): return 9131; + case ChorusFlower::ChorusFlower(0): return 9128; + case ChorusFlower::ChorusFlower(4): return 9132; + case ChorusFlower::ChorusFlower(1): return 9129; + case ChorusFlower::ChorusFlower(5): return 9133; + case ChorusPlant::ChorusPlant(true, false, true, true, true, false): return 9081; + case ChorusPlant::ChorusPlant(false, false, true, true, true, false): return 9113; + case ChorusPlant::ChorusPlant(true, false, true, true, false, true): return 9082; + case ChorusPlant::ChorusPlant(false, false, true, true, false, true): return 9114; + case ChorusPlant::ChorusPlant(true, false, true, true, false, false): return 9083; + case ChorusPlant::ChorusPlant(false, false, true, true, false, false): return 9115; + case ChorusPlant::ChorusPlant(true, false, true, false, true, true): return 9084; + case ChorusPlant::ChorusPlant(false, false, true, false, true, true): return 9116; + case ChorusPlant::ChorusPlant(true, false, true, false, true, false): return 9085; + case ChorusPlant::ChorusPlant(false, false, true, false, true, false): return 9117; + case ChorusPlant::ChorusPlant(true, false, true, false, false, true): return 9086; + case ChorusPlant::ChorusPlant(false, false, true, false, false, true): return 9118; + case ChorusPlant::ChorusPlant(true, false, true, false, false, false): return 9087; + case ChorusPlant::ChorusPlant(false, false, true, false, false, false): return 9119; + case ChorusPlant::ChorusPlant(true, false, false, true, true, true): return 9088; + case ChorusPlant::ChorusPlant(false, false, false, true, true, true): return 9120; + case ChorusPlant::ChorusPlant(true, false, false, true, true, false): return 9089; + case ChorusPlant::ChorusPlant(false, false, false, true, true, false): return 9121; + case ChorusPlant::ChorusPlant(true, false, false, true, false, true): return 9090; + case ChorusPlant::ChorusPlant(false, false, false, true, false, true): return 9122; + case ChorusPlant::ChorusPlant(true, false, false, true, false, false): return 9091; + case ChorusPlant::ChorusPlant(false, false, false, true, false, false): return 9123; + case ChorusPlant::ChorusPlant(true, false, false, false, true, true): return 9092; + case ChorusPlant::ChorusPlant(false, false, false, false, true, true): return 9124; + case ChorusPlant::ChorusPlant(true, false, false, false, true, false): return 9093; + case ChorusPlant::ChorusPlant(false, false, false, false, true, false): return 9125; + case ChorusPlant::ChorusPlant(true, false, false, false, false, true): return 9094; + case ChorusPlant::ChorusPlant(false, false, false, false, false, true): return 9126; + case ChorusPlant::ChorusPlant(true, false, false, false, false, false): return 9095; + case ChorusPlant::ChorusPlant(true, true, true, true, true, true): return 9064; + case ChorusPlant::ChorusPlant(false, true, true, true, true, true): return 9096; + case ChorusPlant::ChorusPlant(true, true, true, true, true, false): return 9065; + case ChorusPlant::ChorusPlant(false, true, true, true, true, false): return 9097; + case ChorusPlant::ChorusPlant(true, true, true, true, false, true): return 9066; + case ChorusPlant::ChorusPlant(false, true, true, true, false, true): return 9098; + case ChorusPlant::ChorusPlant(true, true, true, true, false, false): return 9067; + case ChorusPlant::ChorusPlant(false, true, true, true, false, false): return 9099; + case ChorusPlant::ChorusPlant(true, true, true, false, true, true): return 9068; + case ChorusPlant::ChorusPlant(false, true, true, false, true, true): return 9100; + case ChorusPlant::ChorusPlant(true, true, true, false, true, false): return 9069; + case ChorusPlant::ChorusPlant(false, true, true, false, true, false): return 9101; + case ChorusPlant::ChorusPlant(true, true, true, false, false, true): return 9070; + case ChorusPlant::ChorusPlant(false, true, true, false, false, true): return 9102; + case ChorusPlant::ChorusPlant(true, true, true, false, false, false): return 9071; + case ChorusPlant::ChorusPlant(false, true, true, false, false, false): return 9103; + case ChorusPlant::ChorusPlant(true, true, false, true, true, true): return 9072; + case ChorusPlant::ChorusPlant(false, true, false, true, true, true): return 9104; + case ChorusPlant::ChorusPlant(true, true, false, true, true, false): return 9073; + case ChorusPlant::ChorusPlant(false, true, false, true, true, false): return 9105; + case ChorusPlant::ChorusPlant(true, true, false, true, false, true): return 9074; + case ChorusPlant::ChorusPlant(false, true, false, true, false, true): return 9106; + case ChorusPlant::ChorusPlant(true, true, false, true, false, false): return 9075; + case ChorusPlant::ChorusPlant(false, true, false, true, false, false): return 9107; + case ChorusPlant::ChorusPlant(true, true, false, false, true, true): return 9076; + case ChorusPlant::ChorusPlant(false, true, false, false, true, true): return 9108; + case ChorusPlant::ChorusPlant(true, true, false, false, true, false): return 9077; + case ChorusPlant::ChorusPlant(false, true, false, false, true, false): return 9109; + case ChorusPlant::ChorusPlant(true, true, false, false, false, true): return 9078; + case ChorusPlant::ChorusPlant(false, true, false, false, false, true): return 9110; + case ChorusPlant::ChorusPlant(true, true, false, false, false, false): return 9079; + case ChorusPlant::ChorusPlant(false, true, false, false, false, false): return 9111; + case ChorusPlant::ChorusPlant(true, false, true, true, true, true): return 9080; + case ChorusPlant::ChorusPlant(false, false, true, true, true, true): return 9112; + case ChorusPlant::ChorusPlant(false, false, false, false, false, false): return 9127; + case Clay::Clay(): return 3947; + case CoalBlock::CoalBlock(): return 7883; + case CoalOre::CoalOre(): return 71; + case CoarseDirt::CoarseDirt(): return 11; + case Cobblestone::Cobblestone(): return 14; + case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Top): return 8367; + case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Double): return 8371; + case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Bottom): return 8369; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3666; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3698; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3730; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3668; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3700; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3732; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3670; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3702; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3734; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3672; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3704; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3674; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3706; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3676; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3708; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3678; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3710; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3680; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3712; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3682; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3714; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3684; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3716; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3686; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3718; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3656; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3688; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3720; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3658; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3690; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3722; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3660; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3692; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3724; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3662; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3694; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3726; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3664; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3696; + case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3728; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5661; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5667; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5673; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5679; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5685; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5691; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5697; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5703; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5709; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5715; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5721; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5727; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5733; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5739; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5745; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5751; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5757; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5763; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5769; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5775; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5781; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5787; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5793; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5799; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5805; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5811; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5817; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5823; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5829; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5835; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5841; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5847; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5853; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5859; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5865; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5871; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5877; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5883; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5889; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5895; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5901; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5907; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5913; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5919; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5925; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5931; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5937; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5943; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5949; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5955; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5961; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5967; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5973; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5979; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5660; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5662; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5666; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5668; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5672; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5674; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5678; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5680; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5684; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5686; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5690; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5692; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5696; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5698; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5702; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5704; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5708; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5710; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5714; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5716; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5720; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5722; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5726; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5728; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5732; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5734; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5738; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5740; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5744; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5746; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5750; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5752; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5756; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5758; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5762; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5764; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5768; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5770; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5774; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5776; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5780; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5782; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5786; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5788; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5792; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5794; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5798; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5800; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5804; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5806; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5810; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5812; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5816; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5818; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5822; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5824; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5828; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5830; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5834; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5836; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5840; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5842; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5846; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5848; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5852; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5854; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5858; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5860; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5864; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5866; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5870; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5872; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5876; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5878; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5882; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5884; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5888; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5890; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5894; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5896; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5900; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5902; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5906; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5908; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5912; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5914; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5918; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5920; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5924; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5926; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5930; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5932; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5936; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5938; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5942; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5944; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5948; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5950; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5954; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5956; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5960; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5962; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5966; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5968; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5972; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5974; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5978; + case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5980; + case Cobweb::Cobweb(): return 1341; + case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XP): return 5161; + case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZM): return 5162; + case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZP): return 5163; + case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XM): return 5164; + case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XP): return 5165; + case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZM): return 5166; + case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZP): return 5167; + case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XM): return 5168; + case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XP): return 5169; + case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZM): return 5158; + case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZP): return 5159; + case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XM): return 5160; + case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 5644; + case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 5645; + case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 5646; + case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 5647; + case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 5648; + case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 5649; + case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 5650; + case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 5651; + case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 5652; + case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 5653; + case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 5654; + case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 5655; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, false): return 6691; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, true): return 6692; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, true): return 6678; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, false): return 6679; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, true): return 6680; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, false): return 6681; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, true): return 6682; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, false): return 6683; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, true): return 6684; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, false): return 6685; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, true): return 6686; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, false): return 6687; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, true): return 6688; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, false): return 6689; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, true): return 6690; + case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, false): return 6693; + case Composter::Composter(1): return 15752; + case Composter::Composter(3): return 15754; + case Composter::Composter(5): return 15756; + case Composter::Composter(7): return 15758; + case Composter::Composter(0): return 15751; + case Composter::Composter(2): return 15753; + case Composter::Composter(4): return 15755; + case Composter::Composter(6): return 15757; + case Composter::Composter(8): return 15759; + case Conduit::Conduit(): return 9650; + case Cornflower::Cornflower(): return 1422; + case CrackedNetherBricks::CrackedNetherBricks(): return 17102; + case CrackedPolishedBlackstoneBricks::CrackedPolishedBlackstoneBricks(): return 16252; + case CrackedStoneBricks::CrackedStoneBricks(): return 4497; + case CraftingTable::CraftingTable(): return 3356; + case CreeperHead::CreeperHead(1): return 6571; + case CreeperHead::CreeperHead(2): return 6572; + case CreeperHead::CreeperHead(3): return 6573; + case CreeperHead::CreeperHead(4): return 6574; + case CreeperHead::CreeperHead(5): return 6575; + case CreeperHead::CreeperHead(6): return 6576; + case CreeperHead::CreeperHead(7): return 6577; + case CreeperHead::CreeperHead(8): return 6578; + case CreeperHead::CreeperHead(9): return 6579; + case CreeperHead::CreeperHead(10): return 6580; + case CreeperHead::CreeperHead(11): return 6581; + case CreeperHead::CreeperHead(12): return 6582; + case CreeperHead::CreeperHead(13): return 6583; + case CreeperHead::CreeperHead(14): return 6584; + case CreeperHead::CreeperHead(0): return 6570; + case CreeperHead::CreeperHead(15): return 6585; + case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZM): return 6586; + case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZP): return 6587; + case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XM): return 6588; + case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XP): return 6589; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 15497; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 15482; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 15490; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 15498; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 15483; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 15491; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 15499; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 15484; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 15492; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 15500; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 15485; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 15493; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 15501; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 15486; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 15494; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 15502; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 15479; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 15487; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 15495; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 15480; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 15488; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 15496; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 15481; + case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 15489; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, false): return 15570; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, true): return 15539; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, true): return 15571; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, false): return 15540; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, false): return 15572; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, true): return 15541; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, true): return 15573; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, false): return 15542; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, false): return 15574; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, true): return 15543; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, true): return 15575; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, false): return 15544; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, false): return 15576; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, true): return 15545; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, true): return 15577; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, false): return 15546; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, false): return 15578; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, true): return 15547; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, true): return 15579; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, false): return 15548; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, false): return 15580; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, true): return 15549; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, true): return 15581; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, false): return 15550; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, false): return 15582; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, true): return 15551; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, true): return 15583; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, false): return 15552; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, false): return 15584; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, true): return 15553; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, true): return 15585; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, false): return 15554; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, false): return 15586; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, true): return 15555; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, true): return 15587; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, false): return 15556; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, false): return 15588; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, true): return 15557; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, true): return 15589; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, false): return 15558; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, true): return 15527; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, true): return 15559; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, false): return 15528; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, false): return 15560; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, true): return 15529; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, true): return 15561; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, false): return 15530; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, false): return 15562; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, true): return 15531; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, true): return 15563; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, false): return 15532; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, false): return 15564; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, true): return 15533; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, true): return 15565; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, false): return 15534; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, false): return 15566; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, true): return 15535; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, true): return 15567; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, false): return 15536; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, false): return 15568; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, true): return 15537; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, true): return 15569; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, false): return 15538; + case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, false): return 15590; + case CrimsonFence::CrimsonFence(true, true, true, true): return 15065; + case CrimsonFence::CrimsonFence(true, false, true, true): return 15073; + case CrimsonFence::CrimsonFence(false, true, true, true): return 15081; + case CrimsonFence::CrimsonFence(false, false, true, true): return 15089; + case CrimsonFence::CrimsonFence(true, true, true, false): return 15066; + case CrimsonFence::CrimsonFence(true, false, true, false): return 15074; + case CrimsonFence::CrimsonFence(false, true, true, false): return 15082; + case CrimsonFence::CrimsonFence(false, false, true, false): return 15090; + case CrimsonFence::CrimsonFence(true, true, false, true): return 15069; + case CrimsonFence::CrimsonFence(true, false, false, true): return 15077; + case CrimsonFence::CrimsonFence(false, true, false, true): return 15085; + case CrimsonFence::CrimsonFence(false, false, false, true): return 15093; + case CrimsonFence::CrimsonFence(true, true, false, false): return 15070; + case CrimsonFence::CrimsonFence(true, false, false, false): return 15078; + case CrimsonFence::CrimsonFence(false, true, false, false): return 15086; + case CrimsonFence::CrimsonFence(false, false, false, false): return 15094; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 15280; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 15257; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 15265; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 15273; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 15281; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 15258; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 15266; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 15274; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 15282; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 15259; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 15267; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 15275; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 15283; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 15260; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 15268; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 15276; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 15284; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 15261; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 15269; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 15277; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 15285; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 15262; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 15270; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 15278; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 15255; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 15263; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 15271; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 15279; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 15256; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 15264; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 15272; + case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 15286; + case CrimsonFungus::CrimsonFungus(): return 14988; + case CrimsonHyphae::CrimsonHyphae(CrimsonHyphae::Axis::Y): return 14982; + case CrimsonHyphae::CrimsonHyphae(CrimsonHyphae::Axis::X): return 14981; + case CrimsonHyphae::CrimsonHyphae(CrimsonHyphae::Axis::Z): return 14983; + case CrimsonNylium::CrimsonNylium(): return 14987; + case CrimsonPlanks::CrimsonPlanks(): return 15045; + case CrimsonPressurePlate::CrimsonPressurePlate(true): return 15059; + case CrimsonPressurePlate::CrimsonPressurePlate(false): return 15060; + case CrimsonRoots::CrimsonRoots(): return 15044; + case CrimsonSign::CrimsonSign(2): return 15660; + case CrimsonSign::CrimsonSign(6): return 15668; + case CrimsonSign::CrimsonSign(10): return 15676; + case CrimsonSign::CrimsonSign(14): return 15684; + case CrimsonSign::CrimsonSign(3): return 15662; + case CrimsonSign::CrimsonSign(7): return 15670; + case CrimsonSign::CrimsonSign(11): return 15678; + case CrimsonSign::CrimsonSign(0): return 15656; + case CrimsonSign::CrimsonSign(4): return 15664; + case CrimsonSign::CrimsonSign(8): return 15672; + case CrimsonSign::CrimsonSign(12): return 15680; + case CrimsonSign::CrimsonSign(1): return 15658; + case CrimsonSign::CrimsonSign(5): return 15666; + case CrimsonSign::CrimsonSign(9): return 15674; + case CrimsonSign::CrimsonSign(13): return 15682; + case CrimsonSign::CrimsonSign(15): return 15686; + case CrimsonSlab::CrimsonSlab(CrimsonSlab::Type::Double): return 15052; + case CrimsonSlab::CrimsonSlab(CrimsonSlab::Type::Bottom): return 15050; + case CrimsonSlab::CrimsonSlab(CrimsonSlab::Type::Top): return 15048; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::Straight): return 15320; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerLeft): return 15322; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerRight): return 15324; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterLeft): return 15326; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterRight): return 15328; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::Straight): return 15330; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerLeft): return 15332; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerRight): return 15334; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterLeft): return 15336; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterRight): return 15338; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::Straight): return 15340; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerLeft): return 15342; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerRight): return 15344; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterLeft): return 15346; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterRight): return 15348; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::Straight): return 15350; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerLeft): return 15352; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerRight): return 15354; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterLeft): return 15356; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterRight): return 15358; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::Straight): return 15360; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerLeft): return 15362; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerRight): return 15364; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterLeft): return 15366; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterRight): return 15368; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::Straight): return 15370; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerLeft): return 15372; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerRight): return 15374; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterLeft): return 15376; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterRight): return 15378; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::Straight): return 15380; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerLeft): return 15382; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerRight): return 15384; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterLeft): return 15386; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterRight): return 15388; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::Straight): return 15390; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerLeft): return 15392; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerRight): return 15394; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterLeft): return 15396; + case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterRight): return 15398; + case CrimsonStem::CrimsonStem(CrimsonStem::Axis::Y): return 14976; + case CrimsonStem::CrimsonStem(CrimsonStem::Axis::X): return 14975; + case CrimsonStem::CrimsonStem(CrimsonStem::Axis::Z): return 14977; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Top, true, false): return 15130; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Top, true, false): return 15162; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Top, false, true): return 15132; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Top, false, true): return 15164; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Top, false, false): return 15134; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Top, false, false): return 15166; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Bottom, true, true): return 15136; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Bottom, true, true): return 15168; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Bottom, true, false): return 15138; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Bottom, true, false): return 15170; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Bottom, false, true): return 15140; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Bottom, false, true): return 15172; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Bottom, false, false): return 15142; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Bottom, false, false): return 15174; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Top, true, true): return 15144; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Top, true, true): return 15176; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Top, true, false): return 15146; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Top, true, false): return 15178; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Top, false, true): return 15148; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Top, false, true): return 15180; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Top, false, false): return 15150; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Top, false, false): return 15182; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Bottom, true, true): return 15152; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Bottom, true, true): return 15184; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Bottom, true, false): return 15154; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Bottom, true, false): return 15186; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Bottom, false, true): return 15156; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Bottom, false, true): return 15188; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Bottom, false, false): return 15158; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Top, true, true): return 15128; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Top, true, true): return 15160; + case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Bottom, false, false): return 15190; + case CrimsonWallSign::CrimsonWallSign(eBlockFace::BLOCK_FACE_XM): return 15724; + case CrimsonWallSign::CrimsonWallSign(eBlockFace::BLOCK_FACE_ZP): return 15722; + case CrimsonWallSign::CrimsonWallSign(eBlockFace::BLOCK_FACE_ZM): return 15720; + case CrimsonWallSign::CrimsonWallSign(eBlockFace::BLOCK_FACE_XP): return 15726; + case CryingObsidian::CryingObsidian(): return 15828; + case CutRedSandstone::CutRedSandstone(): return 8219; + case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Top): return 8403; + case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Double): return 8407; + case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Bottom): return 8405; + case CutSandstone::CutSandstone(): return 248; + case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Bottom): return 8357; + case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Top): return 8355; + case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Double): return 8359; + case CyanBanner::CyanBanner(0): return 8041; + case CyanBanner::CyanBanner(1): return 8042; + case CyanBanner::CyanBanner(2): return 8043; + case CyanBanner::CyanBanner(3): return 8044; + case CyanBanner::CyanBanner(4): return 8045; + case CyanBanner::CyanBanner(5): return 8046; + case CyanBanner::CyanBanner(6): return 8047; + case CyanBanner::CyanBanner(7): return 8048; + case CyanBanner::CyanBanner(8): return 8049; + case CyanBanner::CyanBanner(9): return 8050; + case CyanBanner::CyanBanner(10): return 8051; + case CyanBanner::CyanBanner(11): return 8052; + case CyanBanner::CyanBanner(12): return 8053; + case CyanBanner::CyanBanner(13): return 8054; + case CyanBanner::CyanBanner(14): return 8055; + case CyanBanner::CyanBanner(15): return 8056; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Head): return 1197; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Head): return 1201; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Head): return 1205; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Foot): return 1194; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Foot): return 1198; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Foot): return 1202; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Foot): return 1206; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Head): return 1195; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Head): return 1199; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Head): return 1203; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Head): return 1207; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Foot): return 1196; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Foot): return 1200; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Foot): return 1204; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Head): return 1193; + case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Foot): return 1208; + case CyanCarpet::CyanCarpet(): return 7875; + case CyanConcrete::CyanConcrete(): return 9447; + case CyanConcretePowder::CyanConcretePowder(): return 9463; + case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9411; + case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9410; + case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9412; + case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9413; + case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9333; + case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9337; + case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9334; + case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9335; + case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9332; + case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9336; + case CyanStainedGlass::CyanStainedGlass(): return 4104; + case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, true): return 7153; + case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, true): return 7157; + case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, true): return 7161; + case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, true): return 7165; + case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, true): return 7169; + case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, true): return 7173; + case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, true): return 7177; + case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, true): return 7181; + case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, false): return 7154; + case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, false): return 7158; + case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, false): return 7162; + case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, false): return 7166; + case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, false): return 7170; + case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, false): return 7174; + case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, false): return 7178; + case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, false): return 7182; + case CyanTerracotta::CyanTerracotta(): return 6856; + case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XM): return 8191; + case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8189; + case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8190; + case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XP): return 8192; + case CyanWool::CyanWool(): return 1393; + case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZP): return 6619; + case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XM): return 6620; + case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZM): return 6618; + case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XP): return 6621; + case Dandelion::Dandelion(): return 1412; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 6466; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 6470; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 6474; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 6478; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 6482; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 6486; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 6467; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 6471; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 6475; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 6479; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 6483; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 6487; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 6468; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 6472; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 6476; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 6480; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 6484; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 6488; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 6469; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 6473; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 6477; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 6481; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 6485; + case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 6489; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 9018; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 9050; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 9019; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 9051; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 9020; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 9052; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 9021; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 9053; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 9022; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 9054; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 9023; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 9055; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 9024; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 9056; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 9025; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 8994; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 9026; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 8995; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 9027; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 8996; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 9028; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 8997; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 9029; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 8998; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 9030; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 8999; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 9031; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 9000; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 9032; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 9001; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 9033; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 9002; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 9034; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 9003; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 9035; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 9004; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 9036; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 9005; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 9037; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 9006; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 9038; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 9007; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 9039; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 9008; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 9040; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 9009; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 9041; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 9010; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 9042; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 9011; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 9043; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 9012; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 9044; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 9013; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 9045; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 9014; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 9046; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 9015; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 9047; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 9016; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 9048; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 9017; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 9049; + case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 9057; + case DarkOakFence::DarkOakFence(true, true, true, true): return 8708; + case DarkOakFence::DarkOakFence(true, false, true, true): return 8716; + case DarkOakFence::DarkOakFence(false, true, true, true): return 8724; + case DarkOakFence::DarkOakFence(false, false, true, true): return 8732; + case DarkOakFence::DarkOakFence(true, true, true, false): return 8709; + case DarkOakFence::DarkOakFence(true, false, true, false): return 8717; + case DarkOakFence::DarkOakFence(false, true, true, false): return 8725; + case DarkOakFence::DarkOakFence(false, false, true, false): return 8733; + case DarkOakFence::DarkOakFence(true, true, false, true): return 8712; + case DarkOakFence::DarkOakFence(true, false, false, true): return 8720; + case DarkOakFence::DarkOakFence(false, true, false, true): return 8728; + case DarkOakFence::DarkOakFence(false, false, false, true): return 8736; + case DarkOakFence::DarkOakFence(true, true, false, false): return 8713; + case DarkOakFence::DarkOakFence(true, false, false, false): return 8721; + case DarkOakFence::DarkOakFence(false, true, false, false): return 8729; + case DarkOakFence::DarkOakFence(false, false, false, false): return 8737; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 8553; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 8561; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 8569; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 8546; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 8554; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 8562; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 8570; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 8547; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 8555; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 8563; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 8571; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 8548; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 8556; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 8564; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 8572; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 8549; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 8557; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 8565; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 8573; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 8550; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 8558; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 8566; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 8574; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 8551; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 8559; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 8567; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 8575; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 8552; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 8560; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 8568; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 8576; + case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 8577; + case DarkOakLeaves::DarkOakLeaves(7, false): return 228; + case DarkOakLeaves::DarkOakLeaves(4, true): return 221; + case DarkOakLeaves::DarkOakLeaves(4, false): return 222; + case DarkOakLeaves::DarkOakLeaves(1, true): return 215; + case DarkOakLeaves::DarkOakLeaves(5, true): return 223; + case DarkOakLeaves::DarkOakLeaves(1, false): return 216; + case DarkOakLeaves::DarkOakLeaves(5, false): return 224; + case DarkOakLeaves::DarkOakLeaves(2, true): return 217; + case DarkOakLeaves::DarkOakLeaves(6, true): return 225; + case DarkOakLeaves::DarkOakLeaves(2, false): return 218; + case DarkOakLeaves::DarkOakLeaves(6, false): return 226; + case DarkOakLeaves::DarkOakLeaves(3, true): return 219; + case DarkOakLeaves::DarkOakLeaves(7, true): return 227; + case DarkOakLeaves::DarkOakLeaves(3, false): return 220; + case DarkOakLog::DarkOakLog(DarkOakLog::Axis::X): return 88; + case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Y): return 89; + case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Z): return 90; + case DarkOakPlanks::DarkOakPlanks(): return 20; + case DarkOakPressurePlate::DarkOakPressurePlate(true): return 3883; + case DarkOakPressurePlate::DarkOakPressurePlate(false): return 3884; + case DarkOakSapling::DarkOakSapling(0): return 31; + case DarkOakSapling::DarkOakSapling(1): return 32; + case DarkOakSign::DarkOakSign(0): return 3542; + case DarkOakSign::DarkOakSign(1): return 3544; + case DarkOakSign::DarkOakSign(2): return 3546; + case DarkOakSign::DarkOakSign(3): return 3548; + case DarkOakSign::DarkOakSign(4): return 3550; + case DarkOakSign::DarkOakSign(5): return 3552; + case DarkOakSign::DarkOakSign(6): return 3554; + case DarkOakSign::DarkOakSign(7): return 3556; + case DarkOakSign::DarkOakSign(8): return 3558; + case DarkOakSign::DarkOakSign(9): return 3560; + case DarkOakSign::DarkOakSign(10): return 3562; + case DarkOakSign::DarkOakSign(11): return 3564; + case DarkOakSign::DarkOakSign(12): return 3566; + case DarkOakSign::DarkOakSign(13): return 3568; + case DarkOakSign::DarkOakSign(14): return 3570; + case DarkOakSign::DarkOakSign(15): return 3572; + case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Bottom): return 8333; + case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Top): return 8331; + case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Double): return 8335; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 7490; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 7492; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 7494; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 7496; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 7498; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 7500; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 7502; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 7504; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 7506; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 7508; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 7510; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 7512; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 7514; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 7516; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 7518; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 7456; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 7520; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 7458; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 7522; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 7460; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 7524; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 7462; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 7526; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 7464; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 7528; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 7466; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 7530; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 7468; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 7532; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 7470; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 7534; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 7472; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 7474; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 7476; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 7478; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 7480; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 7482; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 7484; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 7486; + case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 7488; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, true): return 4432; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, true): return 4448; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, true): return 4464; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, true): return 4480; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, false): return 4434; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, false): return 4450; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, false): return 4466; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, false): return 4482; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, true): return 4436; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, true): return 4452; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, true): return 4468; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, true): return 4484; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, false): return 4438; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, false): return 4454; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, false): return 4470; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, false): return 4486; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, true): return 4440; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, true): return 4456; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, true): return 4472; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, true): return 4488; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, false): return 4442; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, false): return 4458; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, false): return 4474; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, false): return 4490; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, true): return 4444; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, true): return 4460; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, true): return 4476; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, true): return 4492; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, false): return 4446; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, false): return 4462; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, false): return 4478; + case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, false): return 4494; + case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_ZP): return 3778; + case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_XM): return 3780; + case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_ZM): return 3776; + case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_XP): return 3782; + case DarkOakWood::DarkOakWood(DarkOakWood::Axis::X): return 124; + case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Y): return 125; + case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Z): return 126; + case DarkPrismarine::DarkPrismarine(): return 7603; + case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Top): return 7857; + case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Bottom): return 7859; + case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Double): return 7861; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7807; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7809; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7811; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7813; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7815; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7817; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7819; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7821; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7823; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7825; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7827; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7765; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7829; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7767; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7831; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7769; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7833; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7771; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7835; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7773; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7837; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7775; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7839; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7777; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7841; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7779; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7843; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7781; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7783; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7785; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7787; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7789; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7791; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7793; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7795; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7797; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7799; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7801; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7803; + case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7805; + case DaylightDetector::DaylightDetector(false, 4): return 6714; + case DaylightDetector::DaylightDetector(false, 8): return 6718; + case DaylightDetector::DaylightDetector(false, 12): return 6722; + case DaylightDetector::DaylightDetector(true, 1): return 6695; + case DaylightDetector::DaylightDetector(true, 5): return 6699; + case DaylightDetector::DaylightDetector(true, 9): return 6703; + case DaylightDetector::DaylightDetector(true, 13): return 6707; + case DaylightDetector::DaylightDetector(false, 1): return 6711; + case DaylightDetector::DaylightDetector(false, 5): return 6715; + case DaylightDetector::DaylightDetector(false, 9): return 6719; + case DaylightDetector::DaylightDetector(false, 13): return 6723; + case DaylightDetector::DaylightDetector(true, 2): return 6696; + case DaylightDetector::DaylightDetector(true, 6): return 6700; + case DaylightDetector::DaylightDetector(true, 10): return 6704; + case DaylightDetector::DaylightDetector(true, 14): return 6708; + case DaylightDetector::DaylightDetector(false, 2): return 6712; + case DaylightDetector::DaylightDetector(false, 6): return 6716; + case DaylightDetector::DaylightDetector(false, 10): return 6720; + case DaylightDetector::DaylightDetector(false, 14): return 6724; + case DaylightDetector::DaylightDetector(true, 3): return 6697; + case DaylightDetector::DaylightDetector(true, 7): return 6701; + case DaylightDetector::DaylightDetector(true, 11): return 6705; + case DaylightDetector::DaylightDetector(true, 15): return 6709; + case DaylightDetector::DaylightDetector(false, 3): return 6713; + case DaylightDetector::DaylightDetector(false, 7): return 6717; + case DaylightDetector::DaylightDetector(false, 11): return 6721; + case DaylightDetector::DaylightDetector(true, 0): return 6694; + case DaylightDetector::DaylightDetector(true, 4): return 6698; + case DaylightDetector::DaylightDetector(true, 8): return 6702; + case DaylightDetector::DaylightDetector(true, 12): return 6706; + case DaylightDetector::DaylightDetector(false, 0): return 6710; + case DaylightDetector::DaylightDetector(false, 15): return 6725; + case DeadBrainCoral::DeadBrainCoral(): return 9523; + case DeadBrainCoralBlock::DeadBrainCoralBlock(): return 9511; + case DeadBrainCoralFan::DeadBrainCoralFan(): return 9543; + case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9571; + case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9569; + case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9573; + case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9575; + case DeadBubbleCoral::DeadBubbleCoral(): return 9525; + case DeadBubbleCoralBlock::DeadBubbleCoralBlock(): return 9512; + case DeadBubbleCoralFan::DeadBubbleCoralFan(): return 9545; + case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9579; + case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9577; + case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9581; + case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9583; + case DeadBush::DeadBush(): return 1344; + case DeadFireCoral::DeadFireCoral(): return 9527; + case DeadFireCoralBlock::DeadFireCoralBlock(): return 9513; + case DeadFireCoralFan::DeadFireCoralFan(): return 9547; + case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9585; + case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9589; + case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9587; + case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9591; + case DeadHornCoral::DeadHornCoral(): return 9529; + case DeadHornCoralBlock::DeadHornCoralBlock(): return 9514; + case DeadHornCoralFan::DeadHornCoralFan(): return 9549; + case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9593; + case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9597; + case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9595; + case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9599; + case DeadTubeCoral::DeadTubeCoral(): return 9521; + case DeadTubeCoralBlock::DeadTubeCoralBlock(): return 9510; + case DeadTubeCoralFan::DeadTubeCoralFan(): return 9541; + case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9561; + case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9565; + case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9563; + case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9567; + case DetectorRail::DetectorRail(true, DetectorRail::Shape::NorthSouth): return 1317; + case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingNorth): return 1321; + case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingEast): return 1325; + case DetectorRail::DetectorRail(true, DetectorRail::Shape::EastWest): return 1318; + case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingSouth): return 1322; + case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingWest): return 1326; + case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingEast): return 1319; + case DetectorRail::DetectorRail(false, DetectorRail::Shape::NorthSouth): return 1323; + case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingNorth): return 1327; + case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingWest): return 1320; + case DetectorRail::DetectorRail(false, DetectorRail::Shape::EastWest): return 1324; + case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingSouth): return 1328; + case DiamondBlock::DiamondBlock(): return 3355; + case DiamondOre::DiamondOre(): return 3354; + case Diorite::Diorite(): return 4; + case DioriteSlab::DioriteSlab(DioriteSlab::Type::Double): return 10866; + case DioriteSlab::DioriteSlab(DioriteSlab::Type::Bottom): return 10864; + case DioriteSlab::DioriteSlab(DioriteSlab::Type::Top): return 10862; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10722; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10724; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10726; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10728; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10730; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10732; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10734; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10736; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10738; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10740; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10742; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10744; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10746; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10748; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10750; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10752; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10754; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10756; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10758; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10760; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10762; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10764; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10766; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10768; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10770; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10772; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10774; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10776; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10778; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10780; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10782; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10784; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10786; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10788; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10710; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10712; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10714; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10716; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10718; + case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10720; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Low): return 14615; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14627; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14639; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low): return 14651; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14663; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14675; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low): return 14687; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14699; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14711; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Low): return 14723; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14735; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14747; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14436; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None): return 14440; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14448; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None): return 14452; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14460; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14464; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14472; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None): return 14476; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14484; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None): return 14488; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14496; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14500; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14508; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::None): return 14512; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14520; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::None): return 14524; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14532; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14536; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14544; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None): return 14548; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14556; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None): return 14560; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14568; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14572; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14580; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None): return 14584; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14592; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None): return 14596; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14604; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14608; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14616; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::None): return 14620; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14628; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::None): return 14632; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14640; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14644; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14652; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None): return 14656; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14664; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None): return 14668; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14676; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14680; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14688; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None): return 14692; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14700; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None): return 14704; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14712; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14716; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14724; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::None): return 14728; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14736; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::None): return 14740; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14748; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14752; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low): return 14441; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14453; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14465; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low): return 14477; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14489; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14501; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Low): return 14513; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14525; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14537; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low): return 14549; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14561; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14573; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low): return 14585; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14597; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14609; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Low): return 14621; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14633; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14645; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low): return 14657; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14669; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14681; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low): return 14693; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14705; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14717; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Low): return 14729; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14741; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14753; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None): return 14434; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14442; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None): return 14446; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14454; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14458; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14466; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None): return 14470; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14478; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None): return 14482; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14490; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14494; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14502; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::None): return 14506; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14514; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::None): return 14518; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14526; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14530; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14538; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None): return 14542; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14550; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None): return 14554; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14562; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14566; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14574; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None): return 14578; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14586; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None): return 14590; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14598; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14602; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14610; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::None): return 14614; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14622; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::None): return 14626; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14634; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14638; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14646; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None): return 14650; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14658; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None): return 14662; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14670; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14674; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14682; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None): return 14686; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14694; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None): return 14698; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14706; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14710; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14718; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::None): return 14722; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14730; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::None): return 14734; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14742; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14746; + case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14754; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low): return 14435; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14447; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14459; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low): return 14471; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14483; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14495; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Low): return 14507; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14519; + case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14531; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low): return 14543; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14555; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14567; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low): return 14579; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14591; + case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14603; + case Dirt::Dirt(): return 10; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, false): return 243; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, true): return 236; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, true): return 244; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, false): return 237; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, false): return 245; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, true): return 238; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, false): return 239; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, true): return 240; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, false): return 241; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, true): return 234; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, true): return 242; + case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, false): return 235; + case DragonEgg::DragonEgg(): return 5155; + case DragonHead::DragonHead(11): return 6601; + case DragonHead::DragonHead(12): return 6602; + case DragonHead::DragonHead(13): return 6603; + case DragonHead::DragonHead(14): return 6604; + case DragonHead::DragonHead(0): return 6590; + case DragonHead::DragonHead(1): return 6591; + case DragonHead::DragonHead(2): return 6592; + case DragonHead::DragonHead(3): return 6593; + case DragonHead::DragonHead(4): return 6594; + case DragonHead::DragonHead(5): return 6595; + case DragonHead::DragonHead(6): return 6596; + case DragonHead::DragonHead(7): return 6597; + case DragonHead::DragonHead(8): return 6598; + case DragonHead::DragonHead(9): return 6599; + case DragonHead::DragonHead(10): return 6600; + case DragonHead::DragonHead(15): return 6605; + case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZP): return 6607; + case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XM): return 6608; + case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZM): return 6606; + case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XP): return 6609; + case DriedKelpBlock::DriedKelpBlock(): return 9497; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, true): return 6841; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, false): return 6842; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, true): return 6843; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, false): return 6844; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, true): return 6845; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, false): return 6846; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, true): return 6835; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, false): return 6836; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, true): return 6837; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, false): return 6838; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, true): return 6839; + case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, false): return 6840; + case EmeraldBlock::EmeraldBlock(): return 5403; + case EmeraldOre::EmeraldOre(): return 5250; + case EnchantingTable::EnchantingTable(): return 5132; + case EndGateway::EndGateway(): return 9224; + case EndPortal::EndPortal(): return 5145; + case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZP): return 5147; + case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XP): return 5149; + case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZP): return 5151; + case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZM): return 5146; + case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XM): return 5148; + case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZM): return 5150; + case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XM): return 5152; + case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XP): return 5153; + case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZP): return 9060; + case EndRod::EndRod(eBlockFace::BLOCK_FACE_XM): return 9061; + case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZM): return 9058; + case EndRod::EndRod(eBlockFace::BLOCK_FACE_YP): return 9062; + case EndRod::EndRod(eBlockFace::BLOCK_FACE_XP): return 9059; + case EndRod::EndRod(eBlockFace::BLOCK_FACE_YM): return 9063; + case EndStone::EndStone(): return 5154; + case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Double): return 10824; + case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Bottom): return 10822; + case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Top): return 10820; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 10088; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 10090; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 10092; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 10094; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 10096; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 10098; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 10100; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 10102; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 10104; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 10106; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 10108; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 10110; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 10112; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 10114; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 10116; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 10118; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 10120; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 10122; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 10124; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 10126; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 10128; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 10130; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 10132; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 10134; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 10136; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 10138; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 10140; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 10142; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 10144; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 10146; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 10148; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 10070; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 10072; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 10074; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 10076; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 10078; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 10080; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 10082; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 10084; + case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 10086; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14112; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14116; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14124; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14128; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14136; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14140; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14148; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14152; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14160; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14164; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14172; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14176; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14184; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14188; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14196; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14200; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14208; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14212; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14220; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14224; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14232; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14236; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14244; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14248; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14256; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14260; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14268; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14272; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14280; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14284; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14292; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14296; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14304; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14308; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14316; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14320; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14328; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14332; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14340; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14344; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14352; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14356; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14364; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14368; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14376; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14380; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14388; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14392; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14400; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14404; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14412; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14416; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14424; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14428; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14117; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14129; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14141; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14153; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14165; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14177; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14189; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14201; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14213; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14225; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14237; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14249; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14261; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14273; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14285; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14297; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14309; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14321; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14333; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14345; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14357; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14369; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14381; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14393; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14405; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14417; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14429; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14110; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14118; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14122; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14130; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14134; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14142; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14146; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14154; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14158; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14166; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14170; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14178; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14182; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14190; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14194; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14202; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14206; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14214; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14218; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14226; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14230; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14238; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14242; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14250; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14254; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14262; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14266; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14274; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14278; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14286; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14290; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14298; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14302; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14310; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14314; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14322; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14326; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14334; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14338; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14346; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14350; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14358; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14362; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14370; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14374; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14382; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14386; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14394; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14398; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14406; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14410; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14418; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14422; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14430; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14111; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14123; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14135; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14147; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14159; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14171; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14183; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14195; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14207; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14219; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14231; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14243; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14255; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14267; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14279; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14291; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14303; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14315; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14327; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14339; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14351; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14363; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14375; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14387; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14399; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14411; + case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14423; + case EndStoneBricks::EndStoneBricks(): return 9218; + case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZM): return 5252; + case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZP): return 5254; + case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XM): return 5256; + case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XP): return 5258; + case Farmland::Farmland(0): return 3365; + case Farmland::Farmland(1): return 3366; + case Farmland::Farmland(2): return 3367; + case Farmland::Farmland(3): return 3368; + case Farmland::Farmland(4): return 3369; + case Farmland::Farmland(5): return 3370; + case Farmland::Farmland(6): return 3371; + case Farmland::Farmland(7): return 3372; + case Fern::Fern(): return 1343; + case Fire::Fire(2, true, false, true, true, false): return 1513; + case Fire::Fire(10, true, false, true, true, false): return 1769; + case Fire::Fire(2, true, false, true, false, true): return 1514; + case Fire::Fire(10, true, false, true, false, true): return 1770; + case Fire::Fire(2, true, false, true, false, false): return 1515; + case Fire::Fire(10, true, false, true, false, false): return 1771; + case Fire::Fire(2, true, false, false, true, true): return 1516; + case Fire::Fire(10, true, false, false, true, true): return 1772; + case Fire::Fire(2, true, false, false, true, false): return 1517; + case Fire::Fire(10, true, false, false, true, false): return 1773; + case Fire::Fire(2, true, false, false, false, true): return 1518; + case Fire::Fire(10, true, false, false, false, true): return 1774; + case Fire::Fire(2, true, false, false, false, false): return 1519; + case Fire::Fire(10, true, false, false, false, false): return 1775; + case Fire::Fire(2, false, true, true, true, true): return 1520; + case Fire::Fire(10, false, true, true, true, true): return 1776; + case Fire::Fire(2, false, true, true, true, false): return 1521; + case Fire::Fire(10, false, true, true, true, false): return 1777; + case Fire::Fire(2, false, true, true, false, true): return 1522; + case Fire::Fire(10, false, true, true, false, true): return 1778; + case Fire::Fire(2, false, true, true, false, false): return 1523; + case Fire::Fire(10, false, true, true, false, false): return 1779; + case Fire::Fire(2, false, true, false, true, true): return 1524; + case Fire::Fire(10, false, true, false, true, true): return 1780; + case Fire::Fire(2, false, true, false, true, false): return 1525; + case Fire::Fire(10, false, true, false, true, false): return 1781; + case Fire::Fire(2, false, true, false, false, true): return 1526; + case Fire::Fire(10, false, true, false, false, true): return 1782; + case Fire::Fire(2, false, true, false, false, false): return 1527; + case Fire::Fire(10, false, true, false, false, false): return 1783; + case Fire::Fire(2, false, false, true, true, true): return 1528; + case Fire::Fire(10, false, false, true, true, true): return 1784; + case Fire::Fire(2, false, false, true, true, false): return 1529; + case Fire::Fire(10, false, false, true, true, false): return 1785; + case Fire::Fire(2, false, false, true, false, true): return 1530; + case Fire::Fire(10, false, false, true, false, true): return 1786; + case Fire::Fire(2, false, false, true, false, false): return 1531; + case Fire::Fire(10, false, false, true, false, false): return 1787; + case Fire::Fire(2, false, false, false, true, true): return 1532; + case Fire::Fire(10, false, false, false, true, true): return 1788; + case Fire::Fire(2, false, false, false, true, false): return 1533; + case Fire::Fire(10, false, false, false, true, false): return 1789; + case Fire::Fire(2, false, false, false, false, true): return 1534; + case Fire::Fire(10, false, false, false, false, true): return 1790; + case Fire::Fire(2, false, false, false, false, false): return 1535; + case Fire::Fire(10, false, false, false, false, false): return 1791; + case Fire::Fire(3, true, true, true, true, true): return 1536; + case Fire::Fire(11, true, true, true, true, true): return 1792; + case Fire::Fire(3, true, true, true, true, false): return 1537; + case Fire::Fire(11, true, true, true, true, false): return 1793; + case Fire::Fire(3, true, true, true, false, true): return 1538; + case Fire::Fire(11, true, true, true, false, true): return 1794; + case Fire::Fire(3, true, true, true, false, false): return 1539; + case Fire::Fire(11, true, true, true, false, false): return 1795; + case Fire::Fire(3, true, true, false, true, true): return 1540; + case Fire::Fire(11, true, true, false, true, true): return 1796; + case Fire::Fire(3, true, true, false, true, false): return 1541; + case Fire::Fire(11, true, true, false, true, false): return 1797; + case Fire::Fire(3, true, true, false, false, true): return 1542; + case Fire::Fire(11, true, true, false, false, true): return 1798; + case Fire::Fire(3, true, true, false, false, false): return 1543; + case Fire::Fire(11, true, true, false, false, false): return 1799; + case Fire::Fire(3, true, false, true, true, true): return 1544; + case Fire::Fire(11, true, false, true, true, true): return 1800; + case Fire::Fire(3, true, false, true, true, false): return 1545; + case Fire::Fire(11, true, false, true, true, false): return 1801; + case Fire::Fire(3, true, false, true, false, true): return 1546; + case Fire::Fire(11, true, false, true, false, true): return 1802; + case Fire::Fire(3, true, false, true, false, false): return 1547; + case Fire::Fire(11, true, false, true, false, false): return 1803; + case Fire::Fire(3, true, false, false, true, true): return 1548; + case Fire::Fire(11, true, false, false, true, true): return 1804; + case Fire::Fire(3, true, false, false, true, false): return 1549; + case Fire::Fire(11, true, false, false, true, false): return 1805; + case Fire::Fire(3, true, false, false, false, true): return 1550; + case Fire::Fire(11, true, false, false, false, true): return 1806; + case Fire::Fire(3, true, false, false, false, false): return 1551; + case Fire::Fire(11, true, false, false, false, false): return 1807; + case Fire::Fire(3, false, true, true, true, true): return 1552; + case Fire::Fire(11, false, true, true, true, true): return 1808; + case Fire::Fire(3, false, true, true, true, false): return 1553; + case Fire::Fire(11, false, true, true, true, false): return 1809; + case Fire::Fire(3, false, true, true, false, true): return 1554; + case Fire::Fire(11, false, true, true, false, true): return 1810; + case Fire::Fire(3, false, true, true, false, false): return 1555; + case Fire::Fire(11, false, true, true, false, false): return 1811; + case Fire::Fire(3, false, true, false, true, true): return 1556; + case Fire::Fire(11, false, true, false, true, true): return 1812; + case Fire::Fire(3, false, true, false, true, false): return 1557; + case Fire::Fire(11, false, true, false, true, false): return 1813; + case Fire::Fire(3, false, true, false, false, true): return 1558; + case Fire::Fire(11, false, true, false, false, true): return 1814; + case Fire::Fire(3, false, true, false, false, false): return 1559; + case Fire::Fire(11, false, true, false, false, false): return 1815; + case Fire::Fire(3, false, false, true, true, true): return 1560; + case Fire::Fire(11, false, false, true, true, true): return 1816; + case Fire::Fire(3, false, false, true, true, false): return 1561; + case Fire::Fire(11, false, false, true, true, false): return 1817; + case Fire::Fire(3, false, false, true, false, true): return 1562; + case Fire::Fire(11, false, false, true, false, true): return 1818; + case Fire::Fire(3, false, false, true, false, false): return 1563; + case Fire::Fire(11, false, false, true, false, false): return 1819; + case Fire::Fire(3, false, false, false, true, true): return 1564; + case Fire::Fire(11, false, false, false, true, true): return 1820; + case Fire::Fire(3, false, false, false, true, false): return 1565; + case Fire::Fire(11, false, false, false, true, false): return 1821; + case Fire::Fire(3, false, false, false, false, true): return 1566; + case Fire::Fire(11, false, false, false, false, true): return 1822; + case Fire::Fire(3, false, false, false, false, false): return 1567; + case Fire::Fire(11, false, false, false, false, false): return 1823; + case Fire::Fire(4, true, true, true, true, true): return 1568; + case Fire::Fire(12, true, true, true, true, true): return 1824; + case Fire::Fire(4, true, true, true, true, false): return 1569; + case Fire::Fire(12, true, true, true, true, false): return 1825; + case Fire::Fire(4, true, true, true, false, true): return 1570; + case Fire::Fire(12, true, true, true, false, true): return 1826; + case Fire::Fire(4, true, true, true, false, false): return 1571; + case Fire::Fire(12, true, true, true, false, false): return 1827; + case Fire::Fire(4, true, true, false, true, true): return 1572; + case Fire::Fire(12, true, true, false, true, true): return 1828; + case Fire::Fire(4, true, true, false, true, false): return 1573; + case Fire::Fire(12, true, true, false, true, false): return 1829; + case Fire::Fire(4, true, true, false, false, true): return 1574; + case Fire::Fire(12, true, true, false, false, true): return 1830; + case Fire::Fire(4, true, true, false, false, false): return 1575; + case Fire::Fire(12, true, true, false, false, false): return 1831; + case Fire::Fire(4, true, false, true, true, true): return 1576; + case Fire::Fire(12, true, false, true, true, true): return 1832; + case Fire::Fire(4, true, false, true, true, false): return 1577; + case Fire::Fire(12, true, false, true, true, false): return 1833; + case Fire::Fire(4, true, false, true, false, true): return 1578; + case Fire::Fire(12, true, false, true, false, true): return 1834; + case Fire::Fire(4, true, false, true, false, false): return 1579; + case Fire::Fire(12, true, false, true, false, false): return 1835; + case Fire::Fire(4, true, false, false, true, true): return 1580; + case Fire::Fire(12, true, false, false, true, true): return 1836; + case Fire::Fire(4, true, false, false, true, false): return 1581; + case Fire::Fire(12, true, false, false, true, false): return 1837; + case Fire::Fire(4, true, false, false, false, true): return 1582; + case Fire::Fire(12, true, false, false, false, true): return 1838; + case Fire::Fire(4, true, false, false, false, false): return 1583; + case Fire::Fire(12, true, false, false, false, false): return 1839; + case Fire::Fire(4, false, true, true, true, true): return 1584; + case Fire::Fire(12, false, true, true, true, true): return 1840; + case Fire::Fire(4, false, true, true, true, false): return 1585; + case Fire::Fire(12, false, true, true, true, false): return 1841; + case Fire::Fire(4, false, true, true, false, true): return 1586; + case Fire::Fire(12, false, true, true, false, true): return 1842; + case Fire::Fire(4, false, true, true, false, false): return 1587; + case Fire::Fire(12, false, true, true, false, false): return 1843; + case Fire::Fire(4, false, true, false, true, true): return 1588; + case Fire::Fire(12, false, true, false, true, true): return 1844; + case Fire::Fire(4, false, true, false, true, false): return 1589; + case Fire::Fire(12, false, true, false, true, false): return 1845; + case Fire::Fire(4, false, true, false, false, true): return 1590; + case Fire::Fire(12, false, true, false, false, true): return 1846; + case Fire::Fire(4, false, true, false, false, false): return 1591; + case Fire::Fire(12, false, true, false, false, false): return 1847; + case Fire::Fire(4, false, false, true, true, true): return 1592; + case Fire::Fire(12, false, false, true, true, true): return 1848; + case Fire::Fire(4, false, false, true, true, false): return 1593; + case Fire::Fire(12, false, false, true, true, false): return 1849; + case Fire::Fire(4, false, false, true, false, true): return 1594; + case Fire::Fire(12, false, false, true, false, true): return 1850; + case Fire::Fire(4, false, false, true, false, false): return 1595; + case Fire::Fire(12, false, false, true, false, false): return 1851; + case Fire::Fire(4, false, false, false, true, true): return 1596; + case Fire::Fire(12, false, false, false, true, true): return 1852; + case Fire::Fire(4, false, false, false, true, false): return 1597; + case Fire::Fire(12, false, false, false, true, false): return 1853; + case Fire::Fire(4, false, false, false, false, true): return 1598; + case Fire::Fire(12, false, false, false, false, true): return 1854; + case Fire::Fire(4, false, false, false, false, false): return 1599; + case Fire::Fire(12, false, false, false, false, false): return 1855; + case Fire::Fire(5, true, true, true, true, true): return 1600; + case Fire::Fire(13, true, true, true, true, true): return 1856; + case Fire::Fire(5, true, true, true, true, false): return 1601; + case Fire::Fire(13, true, true, true, true, false): return 1857; + case Fire::Fire(5, true, true, true, false, true): return 1602; + case Fire::Fire(13, true, true, true, false, true): return 1858; + case Fire::Fire(5, true, true, true, false, false): return 1603; + case Fire::Fire(13, true, true, true, false, false): return 1859; + case Fire::Fire(5, true, true, false, true, true): return 1604; + case Fire::Fire(13, true, true, false, true, true): return 1860; + case Fire::Fire(5, true, true, false, true, false): return 1605; + case Fire::Fire(13, true, true, false, true, false): return 1861; + case Fire::Fire(5, true, true, false, false, true): return 1606; + case Fire::Fire(13, true, true, false, false, true): return 1862; + case Fire::Fire(5, true, true, false, false, false): return 1607; + case Fire::Fire(13, true, true, false, false, false): return 1863; + case Fire::Fire(5, true, false, true, true, true): return 1608; + case Fire::Fire(13, true, false, true, true, true): return 1864; + case Fire::Fire(5, true, false, true, true, false): return 1609; + case Fire::Fire(13, true, false, true, true, false): return 1865; + case Fire::Fire(5, true, false, true, false, true): return 1610; + case Fire::Fire(13, true, false, true, false, true): return 1866; + case Fire::Fire(5, true, false, true, false, false): return 1611; + case Fire::Fire(13, true, false, true, false, false): return 1867; + case Fire::Fire(5, true, false, false, true, true): return 1612; + case Fire::Fire(13, true, false, false, true, true): return 1868; + case Fire::Fire(5, true, false, false, true, false): return 1613; + case Fire::Fire(13, true, false, false, true, false): return 1869; + case Fire::Fire(5, true, false, false, false, true): return 1614; + case Fire::Fire(13, true, false, false, false, true): return 1870; + case Fire::Fire(5, true, false, false, false, false): return 1615; + case Fire::Fire(13, true, false, false, false, false): return 1871; + case Fire::Fire(5, false, true, true, true, true): return 1616; + case Fire::Fire(13, false, true, true, true, true): return 1872; + case Fire::Fire(5, false, true, true, true, false): return 1617; + case Fire::Fire(13, false, true, true, true, false): return 1873; + case Fire::Fire(5, false, true, true, false, true): return 1618; + case Fire::Fire(13, false, true, true, false, true): return 1874; + case Fire::Fire(5, false, true, true, false, false): return 1619; + case Fire::Fire(13, false, true, true, false, false): return 1875; + case Fire::Fire(5, false, true, false, true, true): return 1620; + case Fire::Fire(13, false, true, false, true, true): return 1876; + case Fire::Fire(5, false, true, false, true, false): return 1621; + case Fire::Fire(13, false, true, false, true, false): return 1877; + case Fire::Fire(5, false, true, false, false, true): return 1622; + case Fire::Fire(13, false, true, false, false, true): return 1878; + case Fire::Fire(5, false, true, false, false, false): return 1623; + case Fire::Fire(13, false, true, false, false, false): return 1879; + case Fire::Fire(5, false, false, true, true, true): return 1624; + case Fire::Fire(13, false, false, true, true, true): return 1880; + case Fire::Fire(5, false, false, true, true, false): return 1625; + case Fire::Fire(13, false, false, true, true, false): return 1881; + case Fire::Fire(5, false, false, true, false, true): return 1626; + case Fire::Fire(13, false, false, true, false, true): return 1882; + case Fire::Fire(5, false, false, true, false, false): return 1627; + case Fire::Fire(13, false, false, true, false, false): return 1883; + case Fire::Fire(5, false, false, false, true, true): return 1628; + case Fire::Fire(13, false, false, false, true, true): return 1884; + case Fire::Fire(5, false, false, false, true, false): return 1629; + case Fire::Fire(13, false, false, false, true, false): return 1885; + case Fire::Fire(5, false, false, false, false, true): return 1630; + case Fire::Fire(13, false, false, false, false, true): return 1886; + case Fire::Fire(5, false, false, false, false, false): return 1631; + case Fire::Fire(13, false, false, false, false, false): return 1887; + case Fire::Fire(6, true, true, true, true, true): return 1632; + case Fire::Fire(14, true, true, true, true, true): return 1888; + case Fire::Fire(6, true, true, true, true, false): return 1633; + case Fire::Fire(14, true, true, true, true, false): return 1889; + case Fire::Fire(6, true, true, true, false, true): return 1634; + case Fire::Fire(14, true, true, true, false, true): return 1890; + case Fire::Fire(6, true, true, true, false, false): return 1635; + case Fire::Fire(14, true, true, true, false, false): return 1891; + case Fire::Fire(6, true, true, false, true, true): return 1636; + case Fire::Fire(14, true, true, false, true, true): return 1892; + case Fire::Fire(6, true, true, false, true, false): return 1637; + case Fire::Fire(14, true, true, false, true, false): return 1893; + case Fire::Fire(6, true, true, false, false, true): return 1638; + case Fire::Fire(14, true, true, false, false, true): return 1894; + case Fire::Fire(6, true, true, false, false, false): return 1639; + case Fire::Fire(14, true, true, false, false, false): return 1895; + case Fire::Fire(6, true, false, true, true, true): return 1640; + case Fire::Fire(14, true, false, true, true, true): return 1896; + case Fire::Fire(6, true, false, true, true, false): return 1641; + case Fire::Fire(14, true, false, true, true, false): return 1897; + case Fire::Fire(6, true, false, true, false, true): return 1642; + case Fire::Fire(14, true, false, true, false, true): return 1898; + case Fire::Fire(6, true, false, true, false, false): return 1643; + case Fire::Fire(14, true, false, true, false, false): return 1899; + case Fire::Fire(6, true, false, false, true, true): return 1644; + case Fire::Fire(14, true, false, false, true, true): return 1900; + case Fire::Fire(6, true, false, false, true, false): return 1645; + case Fire::Fire(14, true, false, false, true, false): return 1901; + case Fire::Fire(6, true, false, false, false, true): return 1646; + case Fire::Fire(14, true, false, false, false, true): return 1902; + case Fire::Fire(6, true, false, false, false, false): return 1647; + case Fire::Fire(14, true, false, false, false, false): return 1903; + case Fire::Fire(6, false, true, true, true, true): return 1648; + case Fire::Fire(14, false, true, true, true, true): return 1904; + case Fire::Fire(6, false, true, true, true, false): return 1649; + case Fire::Fire(14, false, true, true, true, false): return 1905; + case Fire::Fire(6, false, true, true, false, true): return 1650; + case Fire::Fire(14, false, true, true, false, true): return 1906; + case Fire::Fire(6, false, true, true, false, false): return 1651; + case Fire::Fire(14, false, true, true, false, false): return 1907; + case Fire::Fire(6, false, true, false, true, true): return 1652; + case Fire::Fire(14, false, true, false, true, true): return 1908; + case Fire::Fire(6, false, true, false, true, false): return 1653; + case Fire::Fire(14, false, true, false, true, false): return 1909; + case Fire::Fire(6, false, true, false, false, true): return 1654; + case Fire::Fire(14, false, true, false, false, true): return 1910; + case Fire::Fire(6, false, true, false, false, false): return 1655; + case Fire::Fire(14, false, true, false, false, false): return 1911; + case Fire::Fire(6, false, false, true, true, true): return 1656; + case Fire::Fire(14, false, false, true, true, true): return 1912; + case Fire::Fire(6, false, false, true, true, false): return 1657; + case Fire::Fire(14, false, false, true, true, false): return 1913; + case Fire::Fire(6, false, false, true, false, true): return 1658; + case Fire::Fire(14, false, false, true, false, true): return 1914; + case Fire::Fire(6, false, false, true, false, false): return 1659; + case Fire::Fire(14, false, false, true, false, false): return 1915; + case Fire::Fire(6, false, false, false, true, true): return 1660; + case Fire::Fire(14, false, false, false, true, true): return 1916; + case Fire::Fire(6, false, false, false, true, false): return 1661; + case Fire::Fire(14, false, false, false, true, false): return 1917; + case Fire::Fire(6, false, false, false, false, true): return 1662; + case Fire::Fire(14, false, false, false, false, true): return 1918; + case Fire::Fire(6, false, false, false, false, false): return 1663; + case Fire::Fire(14, false, false, false, false, false): return 1919; + case Fire::Fire(7, true, true, true, true, true): return 1664; + case Fire::Fire(15, true, true, true, true, true): return 1920; + case Fire::Fire(7, true, true, true, true, false): return 1665; + case Fire::Fire(15, true, true, true, true, false): return 1921; + case Fire::Fire(7, true, true, true, false, true): return 1666; + case Fire::Fire(15, true, true, true, false, true): return 1922; + case Fire::Fire(7, true, true, true, false, false): return 1667; + case Fire::Fire(15, true, true, true, false, false): return 1923; + case Fire::Fire(7, true, true, false, true, true): return 1668; + case Fire::Fire(15, true, true, false, true, true): return 1924; + case Fire::Fire(7, true, true, false, true, false): return 1669; + case Fire::Fire(15, true, true, false, true, false): return 1925; + case Fire::Fire(7, true, true, false, false, true): return 1670; + case Fire::Fire(15, true, true, false, false, true): return 1926; + case Fire::Fire(7, true, true, false, false, false): return 1671; + case Fire::Fire(15, true, true, false, false, false): return 1927; + case Fire::Fire(7, true, false, true, true, true): return 1672; + case Fire::Fire(15, true, false, true, true, true): return 1928; + case Fire::Fire(7, true, false, true, true, false): return 1673; + case Fire::Fire(15, true, false, true, true, false): return 1929; + case Fire::Fire(7, true, false, true, false, true): return 1674; + case Fire::Fire(15, true, false, true, false, true): return 1930; + case Fire::Fire(7, true, false, true, false, false): return 1675; + case Fire::Fire(15, true, false, true, false, false): return 1931; + case Fire::Fire(7, true, false, false, true, true): return 1676; + case Fire::Fire(15, true, false, false, true, true): return 1932; + case Fire::Fire(7, true, false, false, true, false): return 1677; + case Fire::Fire(15, true, false, false, true, false): return 1933; + case Fire::Fire(7, true, false, false, false, true): return 1678; + case Fire::Fire(15, true, false, false, false, true): return 1934; + case Fire::Fire(7, true, false, false, false, false): return 1679; + case Fire::Fire(15, true, false, false, false, false): return 1935; + case Fire::Fire(7, false, true, true, true, true): return 1680; + case Fire::Fire(15, false, true, true, true, true): return 1936; + case Fire::Fire(7, false, true, true, true, false): return 1681; + case Fire::Fire(15, false, true, true, true, false): return 1937; + case Fire::Fire(7, false, true, true, false, true): return 1682; + case Fire::Fire(15, false, true, true, false, true): return 1938; + case Fire::Fire(7, false, true, true, false, false): return 1683; + case Fire::Fire(15, false, true, true, false, false): return 1939; + case Fire::Fire(7, false, true, false, true, true): return 1684; + case Fire::Fire(15, false, true, false, true, true): return 1940; + case Fire::Fire(7, false, true, false, true, false): return 1685; + case Fire::Fire(15, false, true, false, true, false): return 1941; + case Fire::Fire(7, false, true, false, false, true): return 1686; + case Fire::Fire(15, false, true, false, false, true): return 1942; + case Fire::Fire(7, false, true, false, false, false): return 1687; + case Fire::Fire(15, false, true, false, false, false): return 1943; + case Fire::Fire(7, false, false, true, true, true): return 1688; + case Fire::Fire(15, false, false, true, true, true): return 1944; + case Fire::Fire(7, false, false, true, true, false): return 1689; + case Fire::Fire(15, false, false, true, true, false): return 1945; + case Fire::Fire(7, false, false, true, false, true): return 1690; + case Fire::Fire(15, false, false, true, false, true): return 1946; + case Fire::Fire(7, false, false, true, false, false): return 1691; + case Fire::Fire(15, false, false, true, false, false): return 1947; + case Fire::Fire(7, false, false, false, true, true): return 1692; + case Fire::Fire(15, false, false, false, true, true): return 1948; + case Fire::Fire(7, false, false, false, true, false): return 1693; + case Fire::Fire(15, false, false, false, true, false): return 1949; + case Fire::Fire(7, false, false, false, false, true): return 1694; + case Fire::Fire(15, false, false, false, false, true): return 1950; + case Fire::Fire(7, false, false, false, false, false): return 1695; + case Fire::Fire(0, true, true, true, true, true): return 1440; + case Fire::Fire(8, true, true, true, true, true): return 1696; + case Fire::Fire(0, true, true, true, true, false): return 1441; + case Fire::Fire(8, true, true, true, true, false): return 1697; + case Fire::Fire(0, true, true, true, false, true): return 1442; + case Fire::Fire(8, true, true, true, false, true): return 1698; + case Fire::Fire(0, true, true, true, false, false): return 1443; + case Fire::Fire(8, true, true, true, false, false): return 1699; + case Fire::Fire(0, true, true, false, true, true): return 1444; + case Fire::Fire(8, true, true, false, true, true): return 1700; + case Fire::Fire(0, true, true, false, true, false): return 1445; + case Fire::Fire(8, true, true, false, true, false): return 1701; + case Fire::Fire(0, true, true, false, false, true): return 1446; + case Fire::Fire(8, true, true, false, false, true): return 1702; + case Fire::Fire(0, true, true, false, false, false): return 1447; + case Fire::Fire(8, true, true, false, false, false): return 1703; + case Fire::Fire(0, true, false, true, true, true): return 1448; + case Fire::Fire(8, true, false, true, true, true): return 1704; + case Fire::Fire(0, true, false, true, true, false): return 1449; + case Fire::Fire(8, true, false, true, true, false): return 1705; + case Fire::Fire(0, true, false, true, false, true): return 1450; + case Fire::Fire(8, true, false, true, false, true): return 1706; + case Fire::Fire(0, true, false, true, false, false): return 1451; + case Fire::Fire(8, true, false, true, false, false): return 1707; + case Fire::Fire(0, true, false, false, true, true): return 1452; + case Fire::Fire(8, true, false, false, true, true): return 1708; + case Fire::Fire(0, true, false, false, true, false): return 1453; + case Fire::Fire(8, true, false, false, true, false): return 1709; + case Fire::Fire(0, true, false, false, false, true): return 1454; + case Fire::Fire(8, true, false, false, false, true): return 1710; + case Fire::Fire(0, true, false, false, false, false): return 1455; + case Fire::Fire(8, true, false, false, false, false): return 1711; + case Fire::Fire(0, false, true, true, true, true): return 1456; + case Fire::Fire(8, false, true, true, true, true): return 1712; + case Fire::Fire(0, false, true, true, true, false): return 1457; + case Fire::Fire(8, false, true, true, true, false): return 1713; + case Fire::Fire(0, false, true, true, false, true): return 1458; + case Fire::Fire(8, false, true, true, false, true): return 1714; + case Fire::Fire(0, false, true, true, false, false): return 1459; + case Fire::Fire(8, false, true, true, false, false): return 1715; + case Fire::Fire(0, false, true, false, true, true): return 1460; + case Fire::Fire(8, false, true, false, true, true): return 1716; + case Fire::Fire(0, false, true, false, true, false): return 1461; + case Fire::Fire(8, false, true, false, true, false): return 1717; + case Fire::Fire(0, false, true, false, false, true): return 1462; + case Fire::Fire(8, false, true, false, false, true): return 1718; + case Fire::Fire(0, false, true, false, false, false): return 1463; + case Fire::Fire(8, false, true, false, false, false): return 1719; + case Fire::Fire(0, false, false, true, true, true): return 1464; + case Fire::Fire(8, false, false, true, true, true): return 1720; + case Fire::Fire(0, false, false, true, true, false): return 1465; + case Fire::Fire(8, false, false, true, true, false): return 1721; + case Fire::Fire(0, false, false, true, false, true): return 1466; + case Fire::Fire(8, false, false, true, false, true): return 1722; + case Fire::Fire(0, false, false, true, false, false): return 1467; + case Fire::Fire(8, false, false, true, false, false): return 1723; + case Fire::Fire(0, false, false, false, true, true): return 1468; + case Fire::Fire(8, false, false, false, true, true): return 1724; + case Fire::Fire(0, false, false, false, true, false): return 1469; + case Fire::Fire(8, false, false, false, true, false): return 1725; + case Fire::Fire(0, false, false, false, false, true): return 1470; + case Fire::Fire(8, false, false, false, false, true): return 1726; + case Fire::Fire(0, false, false, false, false, false): return 1471; + case Fire::Fire(8, false, false, false, false, false): return 1727; + case Fire::Fire(1, true, true, true, true, true): return 1472; + case Fire::Fire(9, true, true, true, true, true): return 1728; + case Fire::Fire(1, true, true, true, true, false): return 1473; + case Fire::Fire(9, true, true, true, true, false): return 1729; + case Fire::Fire(1, true, true, true, false, true): return 1474; + case Fire::Fire(9, true, true, true, false, true): return 1730; + case Fire::Fire(1, true, true, true, false, false): return 1475; + case Fire::Fire(9, true, true, true, false, false): return 1731; + case Fire::Fire(1, true, true, false, true, true): return 1476; + case Fire::Fire(9, true, true, false, true, true): return 1732; + case Fire::Fire(1, true, true, false, true, false): return 1477; + case Fire::Fire(9, true, true, false, true, false): return 1733; + case Fire::Fire(1, true, true, false, false, true): return 1478; + case Fire::Fire(9, true, true, false, false, true): return 1734; + case Fire::Fire(1, true, true, false, false, false): return 1479; + case Fire::Fire(9, true, true, false, false, false): return 1735; + case Fire::Fire(1, true, false, true, true, true): return 1480; + case Fire::Fire(9, true, false, true, true, true): return 1736; + case Fire::Fire(1, true, false, true, true, false): return 1481; + case Fire::Fire(9, true, false, true, true, false): return 1737; + case Fire::Fire(1, true, false, true, false, true): return 1482; + case Fire::Fire(9, true, false, true, false, true): return 1738; + case Fire::Fire(1, true, false, true, false, false): return 1483; + case Fire::Fire(9, true, false, true, false, false): return 1739; + case Fire::Fire(1, true, false, false, true, true): return 1484; + case Fire::Fire(9, true, false, false, true, true): return 1740; + case Fire::Fire(1, true, false, false, true, false): return 1485; + case Fire::Fire(9, true, false, false, true, false): return 1741; + case Fire::Fire(1, true, false, false, false, true): return 1486; + case Fire::Fire(9, true, false, false, false, true): return 1742; + case Fire::Fire(1, true, false, false, false, false): return 1487; + case Fire::Fire(9, true, false, false, false, false): return 1743; + case Fire::Fire(1, false, true, true, true, true): return 1488; + case Fire::Fire(9, false, true, true, true, true): return 1744; + case Fire::Fire(1, false, true, true, true, false): return 1489; + case Fire::Fire(9, false, true, true, true, false): return 1745; + case Fire::Fire(1, false, true, true, false, true): return 1490; + case Fire::Fire(9, false, true, true, false, true): return 1746; + case Fire::Fire(1, false, true, true, false, false): return 1491; + case Fire::Fire(9, false, true, true, false, false): return 1747; + case Fire::Fire(1, false, true, false, true, true): return 1492; + case Fire::Fire(9, false, true, false, true, true): return 1748; + case Fire::Fire(1, false, true, false, true, false): return 1493; + case Fire::Fire(9, false, true, false, true, false): return 1749; + case Fire::Fire(1, false, true, false, false, true): return 1494; + case Fire::Fire(9, false, true, false, false, true): return 1750; + case Fire::Fire(1, false, true, false, false, false): return 1495; + case Fire::Fire(9, false, true, false, false, false): return 1751; + case Fire::Fire(1, false, false, true, true, true): return 1496; + case Fire::Fire(9, false, false, true, true, true): return 1752; + case Fire::Fire(1, false, false, true, true, false): return 1497; + case Fire::Fire(9, false, false, true, true, false): return 1753; + case Fire::Fire(1, false, false, true, false, true): return 1498; + case Fire::Fire(9, false, false, true, false, true): return 1754; + case Fire::Fire(1, false, false, true, false, false): return 1499; + case Fire::Fire(9, false, false, true, false, false): return 1755; + case Fire::Fire(1, false, false, false, true, true): return 1500; + case Fire::Fire(9, false, false, false, true, true): return 1756; + case Fire::Fire(1, false, false, false, true, false): return 1501; + case Fire::Fire(9, false, false, false, true, false): return 1757; + case Fire::Fire(1, false, false, false, false, true): return 1502; + case Fire::Fire(9, false, false, false, false, true): return 1758; + case Fire::Fire(1, false, false, false, false, false): return 1503; + case Fire::Fire(9, false, false, false, false, false): return 1759; + case Fire::Fire(2, true, true, true, true, true): return 1504; + case Fire::Fire(10, true, true, true, true, true): return 1760; + case Fire::Fire(2, true, true, true, true, false): return 1505; + case Fire::Fire(10, true, true, true, true, false): return 1761; + case Fire::Fire(2, true, true, true, false, true): return 1506; + case Fire::Fire(10, true, true, true, false, true): return 1762; + case Fire::Fire(2, true, true, true, false, false): return 1507; + case Fire::Fire(10, true, true, true, false, false): return 1763; + case Fire::Fire(2, true, true, false, true, true): return 1508; + case Fire::Fire(10, true, true, false, true, true): return 1764; + case Fire::Fire(2, true, true, false, true, false): return 1509; + case Fire::Fire(10, true, true, false, true, false): return 1765; + case Fire::Fire(2, true, true, false, false, true): return 1510; + case Fire::Fire(10, true, true, false, false, true): return 1766; + case Fire::Fire(2, true, true, false, false, false): return 1511; + case Fire::Fire(10, true, true, false, false, false): return 1767; + case Fire::Fire(2, true, false, true, true, true): return 1512; + case Fire::Fire(10, true, false, true, true, true): return 1768; + case Fire::Fire(15, false, false, false, false, false): return 1951; + case FireCoral::FireCoral(): return 9537; + case FireCoralBlock::FireCoralBlock(): return 9518; + case FireCoralFan::FireCoralFan(): return 9557; + case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9627; + case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9625; + case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9629; + case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9631; + case FletchingTable::FletchingTable(): return 14820; + case FlowerPot::FlowerPot(): return 6305; + case FrostedIce::FrostedIce(0): return 9249; + case FrostedIce::FrostedIce(2): return 9251; + case FrostedIce::FrostedIce(1): return 9250; + case FrostedIce::FrostedIce(3): return 9252; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, true): return 3379; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, true): return 3373; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, false): return 3374; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, true): return 3375; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, false): return 3376; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, true): return 3377; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, false): return 3378; + case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, false): return 3380; + case GildedBlackstone::GildedBlackstone(): return 16664; + case Glass::Glass(): return 231; + case GlassPane::GlassPane(false, false, false, true): return 4761; + case GlassPane::GlassPane(true, true, true, false): return 4734; + case GlassPane::GlassPane(true, true, false, false): return 4738; + case GlassPane::GlassPane(true, false, true, false): return 4742; + case GlassPane::GlassPane(true, false, false, false): return 4746; + case GlassPane::GlassPane(false, true, true, false): return 4750; + case GlassPane::GlassPane(false, true, false, false): return 4754; + case GlassPane::GlassPane(false, false, true, false): return 4758; + case GlassPane::GlassPane(true, true, true, true): return 4733; + case GlassPane::GlassPane(true, true, false, true): return 4737; + case GlassPane::GlassPane(true, false, true, true): return 4741; + case GlassPane::GlassPane(true, false, false, true): return 4745; + case GlassPane::GlassPane(false, true, true, true): return 4749; + case GlassPane::GlassPane(false, true, false, true): return 4753; + case GlassPane::GlassPane(false, false, true, true): return 4757; + case GlassPane::GlassPane(false, false, false, false): return 4762; + case Glowstone::Glowstone(): return 4013; + case GoldBlock::GoldBlock(): return 1427; + case GoldOre::GoldOre(): return 69; + case Granite::Granite(): return 2; + case GraniteSlab::GraniteSlab(GraniteSlab::Type::Top): return 10838; + case GraniteSlab::GraniteSlab(GraniteSlab::Type::Double): return 10842; + case GraniteSlab::GraniteSlab(GraniteSlab::Type::Bottom): return 10840; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 10468; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 10390; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 10392; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 10394; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 10396; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 10398; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 10400; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 10402; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 10404; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 10406; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 10408; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 10410; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 10412; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 10414; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 10416; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 10418; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 10420; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 10422; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 10424; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 10426; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 10428; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 10430; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 10432; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 10434; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 10436; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 10438; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 10440; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 10442; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 10444; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 10446; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 10448; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 10450; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 10452; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 10454; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 10456; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 10458; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 10460; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 10462; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 10464; + case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 10466; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12168; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None): return 12172; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12180; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None): return 12184; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12192; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12196; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12204; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None): return 12208; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12216; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None): return 12220; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12228; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12232; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12240; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::None): return 12244; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12252; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::None): return 12256; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12264; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12268; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12276; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None): return 12280; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12288; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None): return 12292; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12300; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12304; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12312; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None): return 12316; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12324; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None): return 12328; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12336; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12340; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12348; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::None): return 12352; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12360; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::None): return 12364; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12372; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12376; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12384; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None): return 12388; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12396; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None): return 12400; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12408; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12412; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12420; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None): return 12424; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12432; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None): return 12436; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12444; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12448; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12456; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::None): return 12460; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12468; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::None): return 12472; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12480; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12484; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low): return 12173; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12185; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12197; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low): return 12209; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12221; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12233; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Low): return 12245; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12257; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12269; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low): return 12281; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12293; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12305; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low): return 12317; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12329; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12341; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Low): return 12353; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12365; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12377; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low): return 12389; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12401; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12413; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low): return 12425; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12437; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12449; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Low): return 12461; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12473; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12485; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None): return 12166; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12174; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None): return 12178; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12186; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12190; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12198; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None): return 12202; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12210; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None): return 12214; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12222; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12226; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12234; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::None): return 12238; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12246; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::None): return 12250; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12258; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12262; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12270; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None): return 12274; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12282; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None): return 12286; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12294; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12298; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12306; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None): return 12310; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12318; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None): return 12322; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12330; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12334; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12342; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::None): return 12346; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12354; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::None): return 12358; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12366; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12370; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12378; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None): return 12382; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12390; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None): return 12394; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12402; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12406; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12414; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None): return 12418; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12426; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None): return 12430; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12438; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12442; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12450; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::None): return 12454; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12462; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::None): return 12466; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12474; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12478; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12486; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low): return 12167; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12179; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12191; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low): return 12203; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12215; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12227; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Low): return 12239; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12251; + case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12263; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low): return 12275; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12287; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12299; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low): return 12311; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12323; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12335; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Low): return 12347; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12359; + case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12371; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low): return 12383; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12395; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12407; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low): return 12419; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12431; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12443; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Low): return 12455; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12467; + case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12479; + case Grass::Grass(): return 1342; + case GrassBlock::GrassBlock(true): return 8; + case GrassBlock::GrassBlock(false): return 9; + case GrassPath::GrassPath(): return 9223; + case Gravel::Gravel(): return 68; + case GrayBanner::GrayBanner(2): return 8011; + case GrayBanner::GrayBanner(3): return 8012; + case GrayBanner::GrayBanner(4): return 8013; + case GrayBanner::GrayBanner(5): return 8014; + case GrayBanner::GrayBanner(6): return 8015; + case GrayBanner::GrayBanner(7): return 8016; + case GrayBanner::GrayBanner(8): return 8017; + case GrayBanner::GrayBanner(9): return 8018; + case GrayBanner::GrayBanner(10): return 8019; + case GrayBanner::GrayBanner(11): return 8020; + case GrayBanner::GrayBanner(12): return 8021; + case GrayBanner::GrayBanner(13): return 8022; + case GrayBanner::GrayBanner(14): return 8023; + case GrayBanner::GrayBanner(0): return 8009; + case GrayBanner::GrayBanner(1): return 8010; + case GrayBanner::GrayBanner(15): return 8024; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Head): return 1167; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Head): return 1171; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Head): return 1175; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Foot): return 1164; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Foot): return 1168; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Foot): return 1172; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Head): return 1161; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Head): return 1165; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Head): return 1169; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Head): return 1173; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Foot): return 1162; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Foot): return 1166; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Foot): return 1170; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Foot): return 1174; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Head): return 1163; + case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Foot): return 1176; + case GrayCarpet::GrayCarpet(): return 7873; + case GrayConcrete::GrayConcrete(): return 9445; + case GrayConcretePowder::GrayConcretePowder(): return 9461; + case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9402; + case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9404; + case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9403; + case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9405; + case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9323; + case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9320; + case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9324; + case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9321; + case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9325; + case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9322; + case GrayStainedGlass::GrayStainedGlass(): return 4102; + case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, true): return 7117; + case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, false): return 7090; + case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, false): return 7094; + case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, false): return 7098; + case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, false): return 7102; + case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, false): return 7106; + case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, false): return 7110; + case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, false): return 7114; + case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, true): return 7089; + case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, true): return 7093; + case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, true): return 7097; + case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, true): return 7101; + case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, true): return 7105; + case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, true): return 7109; + case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, true): return 7113; + case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, false): return 7118; + case GrayTerracotta::GrayTerracotta(): return 6854; + case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8182; + case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XM): return 8183; + case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8181; + case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XP): return 8184; + case GrayWool::GrayWool(): return 1391; + case GreenBanner::GreenBanner(11): return 8116; + case GreenBanner::GreenBanner(12): return 8117; + case GreenBanner::GreenBanner(13): return 8118; + case GreenBanner::GreenBanner(14): return 8119; + case GreenBanner::GreenBanner(0): return 8105; + case GreenBanner::GreenBanner(1): return 8106; + case GreenBanner::GreenBanner(2): return 8107; + case GreenBanner::GreenBanner(3): return 8108; + case GreenBanner::GreenBanner(4): return 8109; + case GreenBanner::GreenBanner(5): return 8110; + case GreenBanner::GreenBanner(6): return 8111; + case GreenBanner::GreenBanner(7): return 8112; + case GreenBanner::GreenBanner(8): return 8113; + case GreenBanner::GreenBanner(9): return 8114; + case GreenBanner::GreenBanner(10): return 8115; + case GreenBanner::GreenBanner(15): return 8120; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Head): return 1257; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Head): return 1261; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Head): return 1265; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Head): return 1269; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Foot): return 1258; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Foot): return 1262; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Foot): return 1266; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Foot): return 1270; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Head): return 1259; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Head): return 1263; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Head): return 1267; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Head): return 1271; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Foot): return 1260; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Foot): return 1264; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Foot): return 1268; + case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Foot): return 1272; + case GreenCarpet::GreenCarpet(): return 7879; + case GreenConcrete::GreenConcrete(): return 9451; + case GreenConcretePowder::GreenConcretePowder(): return 9467; + case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9426; + case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9428; + case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9427; + case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9429; + case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9361; + case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9358; + case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9359; + case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9356; + case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9360; + case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9357; + case GreenStainedGlass::GreenStainedGlass(): return 4108; + case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, true): return 7281; + case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, true): return 7285; + case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, true): return 7289; + case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, true): return 7293; + case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, true): return 7297; + case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, true): return 7301; + case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, true): return 7305; + case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, true): return 7309; + case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, false): return 7282; + case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, false): return 7286; + case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, false): return 7290; + case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, false): return 7294; + case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, false): return 7298; + case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, false): return 7302; + case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, false): return 7306; + case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, false): return 7310; + case GreenTerracotta::GreenTerracotta(): return 6860; + case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8205; + case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XM): return 8207; + case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8206; + case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XP): return 8208; + case GreenWool::GreenWool(): return 1397; + case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_ZP): return 14822; + case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_XP): return 14824; + case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_ZP): return 14826; + case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_XP): return 14828; + case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP): return 14830; + case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_XP): return 14832; + case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_ZM): return 14821; + case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_XM): return 14823; + case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_ZM): return 14825; + case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_XM): return 14827; + case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM): return 14829; + case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_XM): return 14831; + case HayBale::HayBale(HayBale::Axis::Y): return 7864; + case HayBale::HayBale(HayBale::Axis::Z): return 7865; + case HayBale::HayBale(HayBale::Axis::X): return 7863; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(14): return 6676; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(0): return 6662; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(1): return 6663; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(2): return 6664; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(3): return 6665; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(4): return 6666; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(5): return 6667; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(6): return 6668; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(7): return 6669; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(8): return 6670; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(9): return 6671; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(10): return 6672; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(11): return 6673; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(12): return 6674; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(13): return 6675; + case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(15): return 6677; + case HoneyBlock::HoneyBlock(): return 15824; + case HoneycombBlock::HoneycombBlock(): return 15825; + case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XM): return 6736; + case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XP): return 6737; + case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_YM): return 6728; + case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZM): return 6729; + case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZP): return 6730; + case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XM): return 6731; + case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XP): return 6732; + case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_YM): return 6733; + case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZM): return 6734; + case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZP): return 6735; + case HornCoral::HornCoral(): return 9539; + case HornCoralBlock::HornCoralBlock(): return 9519; + case HornCoralFan::HornCoralFan(): return 9559; + case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9635; + case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9633; + case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9637; + case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9639; + case Ice::Ice(): return 3929; + case InfestedChiseledStoneBricks::InfestedChiseledStoneBricks(): return 4504; + case InfestedCobblestone::InfestedCobblestone(): return 4500; + case InfestedCrackedStoneBricks::InfestedCrackedStoneBricks(): return 4503; + case InfestedMossyStoneBricks::InfestedMossyStoneBricks(): return 4502; + case InfestedStone::InfestedStone(): return 4499; + case InfestedStoneBricks::InfestedStoneBricks(): return 4501; + case IronBars::IronBars(true, true, true, true): return 4699; + case IronBars::IronBars(true, true, false, true): return 4703; + case IronBars::IronBars(true, false, true, true): return 4707; + case IronBars::IronBars(true, false, false, true): return 4711; + case IronBars::IronBars(false, true, true, true): return 4715; + case IronBars::IronBars(false, true, false, true): return 4719; + case IronBars::IronBars(false, false, true, true): return 4723; + case IronBars::IronBars(false, false, false, true): return 4727; + case IronBars::IronBars(true, true, true, false): return 4700; + case IronBars::IronBars(true, true, false, false): return 4704; + case IronBars::IronBars(true, false, true, false): return 4708; + case IronBars::IronBars(true, false, false, false): return 4712; + case IronBars::IronBars(false, true, true, false): return 4716; + case IronBars::IronBars(false, true, false, false): return 4720; + case IronBars::IronBars(false, false, true, false): return 4724; + case IronBars::IronBars(false, false, false, false): return 4728; + case IronBlock::IronBlock(): return 1428; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3862; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3870; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3815; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3823; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3831; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3839; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3847; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3855; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3863; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3871; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3816; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3824; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3832; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3840; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3848; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3856; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3864; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3809; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3817; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3825; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3833; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3841; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3849; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3857; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3865; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3810; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3818; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3826; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3834; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3842; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3850; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3858; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3866; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3811; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3819; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3827; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3835; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3843; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3851; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3859; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3867; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3812; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3820; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3828; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3836; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3844; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3852; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3860; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3868; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3813; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3821; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3829; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3837; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3845; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3853; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3861; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3869; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3814; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3822; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3830; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3838; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3846; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3854; + case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3872; + case IronOre::IronOre(): return 70; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, true): return 7550; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, true): return 7566; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, true): return 7582; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, true): return 7598; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, false): return 7552; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, false): return 7568; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, false): return 7584; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, true): return 7538; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, true): return 7554; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, true): return 7570; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, true): return 7586; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, false): return 7540; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, false): return 7556; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, false): return 7572; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, false): return 7588; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, true): return 7542; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, true): return 7558; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, true): return 7574; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, true): return 7590; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, false): return 7544; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, false): return 7560; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, false): return 7576; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, false): return 7592; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, true): return 7546; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, true): return 7562; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, true): return 7578; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, true): return 7594; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, false): return 7548; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, false): return 7564; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, false): return 7580; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, false): return 7596; + case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, false): return 7600; + case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZP): return 4021; + case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZM): return 4020; + case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XM): return 4022; + case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XP): return 4023; + case Jigsaw::Jigsaw(Jigsaw::Orientation::SouthUp): return 15750; + case Jigsaw::Jigsaw(Jigsaw::Orientation::DownEast): return 15739; + case Jigsaw::Jigsaw(Jigsaw::Orientation::DownSouth): return 15741; + case Jigsaw::Jigsaw(Jigsaw::Orientation::UpEast): return 15743; + case Jigsaw::Jigsaw(Jigsaw::Orientation::UpSouth): return 15745; + case Jigsaw::Jigsaw(Jigsaw::Orientation::WestUp): return 15747; + case Jigsaw::Jigsaw(Jigsaw::Orientation::NorthUp): return 15749; + case Jigsaw::Jigsaw(Jigsaw::Orientation::DownNorth): return 15740; + case Jigsaw::Jigsaw(Jigsaw::Orientation::DownWest): return 15742; + case Jigsaw::Jigsaw(Jigsaw::Orientation::UpNorth): return 15744; + case Jigsaw::Jigsaw(Jigsaw::Orientation::UpWest): return 15746; + case Jigsaw::Jigsaw(Jigsaw::Orientation::EastUp): return 15748; + case Jukebox::Jukebox(true): return 3964; + case Jukebox::Jukebox(false): return 3965; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 6435; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 6439; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 6420; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 6424; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 6428; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 6432; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 6436; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 6440; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 6421; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 6425; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 6429; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 6433; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 6437; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 6441; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 6418; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 6422; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 6426; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 6430; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 6434; + case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 6438; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 6419; + case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 6423; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 6427; + case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 6431; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8892; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8924; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8893; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8925; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8894; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8926; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8895; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8927; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8896; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8928; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8897; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8866; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8898; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8867; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8899; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8868; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8900; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8869; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8901; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8870; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8902; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8871; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8903; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8872; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8904; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8873; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8905; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8874; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8906; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8875; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8907; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8876; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8908; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8877; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8909; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8878; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8910; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8879; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8911; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8880; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8912; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8881; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8913; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8882; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8914; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8883; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8915; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8884; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8916; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8885; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8917; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8886; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8918; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8887; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8919; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8888; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8920; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8889; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8921; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8890; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8922; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8891; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8923; + case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8929; + case JungleFence::JungleFence(true, true, false, true): return 8648; + case JungleFence::JungleFence(true, false, false, true): return 8656; + case JungleFence::JungleFence(false, true, false, true): return 8664; + case JungleFence::JungleFence(false, false, false, true): return 8672; + case JungleFence::JungleFence(true, true, false, false): return 8649; + case JungleFence::JungleFence(true, false, false, false): return 8657; + case JungleFence::JungleFence(false, true, false, false): return 8665; + case JungleFence::JungleFence(true, true, true, true): return 8644; + case JungleFence::JungleFence(true, false, true, true): return 8652; + case JungleFence::JungleFence(false, true, true, true): return 8660; + case JungleFence::JungleFence(false, false, true, true): return 8668; + case JungleFence::JungleFence(true, true, true, false): return 8645; + case JungleFence::JungleFence(true, false, true, false): return 8653; + case JungleFence::JungleFence(false, true, true, false): return 8661; + case JungleFence::JungleFence(false, false, true, false): return 8669; + case JungleFence::JungleFence(false, false, false, false): return 8673; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 8491; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 8499; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 8507; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 8484; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 8492; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 8500; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 8508; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 8485; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 8493; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 8501; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 8509; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 8486; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 8494; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 8502; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 8510; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 8487; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 8495; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 8503; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 8511; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 8488; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 8496; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 8504; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 8512; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 8489; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 8497; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 8505; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 8482; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 8490; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 8498; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 8506; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 8483; + case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 8513; + case JungleLeaves::JungleLeaves(6, false): return 198; + case JungleLeaves::JungleLeaves(3, true): return 191; + case JungleLeaves::JungleLeaves(7, true): return 199; + case JungleLeaves::JungleLeaves(3, false): return 192; + case JungleLeaves::JungleLeaves(7, false): return 200; + case JungleLeaves::JungleLeaves(4, true): return 193; + case JungleLeaves::JungleLeaves(4, false): return 194; + case JungleLeaves::JungleLeaves(1, true): return 187; + case JungleLeaves::JungleLeaves(5, true): return 195; + case JungleLeaves::JungleLeaves(1, false): return 188; + case JungleLeaves::JungleLeaves(5, false): return 196; + case JungleLeaves::JungleLeaves(2, true): return 189; + case JungleLeaves::JungleLeaves(6, true): return 197; + case JungleLeaves::JungleLeaves(2, false): return 190; + case JungleLog::JungleLog(JungleLog::Axis::X): return 82; + case JungleLog::JungleLog(JungleLog::Axis::Y): return 83; + case JungleLog::JungleLog(JungleLog::Axis::Z): return 84; + case JunglePlanks::JunglePlanks(): return 18; + case JunglePressurePlate::JunglePressurePlate(true): return 3879; + case JunglePressurePlate::JunglePressurePlate(false): return 3880; + case JungleSapling::JungleSapling(0): return 27; + case JungleSapling::JungleSapling(1): return 28; + case JungleSign::JungleSign(2): return 3514; + case JungleSign::JungleSign(3): return 3516; + case JungleSign::JungleSign(4): return 3518; + case JungleSign::JungleSign(5): return 3520; + case JungleSign::JungleSign(6): return 3522; + case JungleSign::JungleSign(7): return 3524; + case JungleSign::JungleSign(8): return 3526; + case JungleSign::JungleSign(9): return 3528; + case JungleSign::JungleSign(10): return 3530; + case JungleSign::JungleSign(11): return 3532; + case JungleSign::JungleSign(12): return 3534; + case JungleSign::JungleSign(13): return 3536; + case JungleSign::JungleSign(14): return 3538; + case JungleSign::JungleSign(0): return 3510; + case JungleSign::JungleSign(1): return 3512; + case JungleSign::JungleSign(15): return 3540; + case JungleSlab::JungleSlab(JungleSlab::Type::Top): return 8319; + case JungleSlab::JungleSlab(JungleSlab::Type::Double): return 8323; + case JungleSlab::JungleSlab(JungleSlab::Type::Bottom): return 8321; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5585; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5587; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5589; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5591; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5593; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5595; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5597; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5599; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5601; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5603; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5605; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5607; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5609; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5611; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5613; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5615; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5617; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5619; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5621; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5623; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5625; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5627; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5565; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5629; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5567; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5631; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5569; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5633; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5571; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5635; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5573; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5637; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5575; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5639; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5577; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5641; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5579; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5643; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5581; + case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5583; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, false): return 4306; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, false): return 4322; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, false): return 4338; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, false): return 4354; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, true): return 4308; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, true): return 4324; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, true): return 4340; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, true): return 4356; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, false): return 4310; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, false): return 4326; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, false): return 4342; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, false): return 4358; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, true): return 4312; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, true): return 4328; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, true): return 4344; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, true): return 4360; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, false): return 4314; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, false): return 4330; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, false): return 4346; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, false): return 4362; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, true): return 4316; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, true): return 4332; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, true): return 4348; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, true): return 4364; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, false): return 4318; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, false): return 4334; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, false): return 4350; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, true): return 4304; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, true): return 4320; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, true): return 4336; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, true): return 4352; + case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, false): return 4366; + case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_XM): return 3772; + case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_ZM): return 3768; + case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_ZP): return 3770; + case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_XP): return 3774; + case JungleWood::JungleWood(JungleWood::Axis::X): return 118; + case JungleWood::JungleWood(JungleWood::Axis::Y): return 119; + case JungleWood::JungleWood(JungleWood::Axis::Z): return 120; + case Kelp::Kelp(13): return 9483; + case Kelp::Kelp(21): return 9491; + case Kelp::Kelp(6): return 9476; + case Kelp::Kelp(14): return 9484; + case Kelp::Kelp(22): return 9492; + case Kelp::Kelp(7): return 9477; + case Kelp::Kelp(15): return 9485; + case Kelp::Kelp(23): return 9493; + case Kelp::Kelp(0): return 9470; + case Kelp::Kelp(8): return 9478; + case Kelp::Kelp(16): return 9486; + case Kelp::Kelp(24): return 9494; + case Kelp::Kelp(1): return 9471; + case Kelp::Kelp(9): return 9479; + case Kelp::Kelp(17): return 9487; + case Kelp::Kelp(25): return 9495; + case Kelp::Kelp(2): return 9472; + case Kelp::Kelp(10): return 9480; + case Kelp::Kelp(18): return 9488; + case Kelp::Kelp(3): return 9473; + case Kelp::Kelp(11): return 9481; + case Kelp::Kelp(19): return 9489; + case Kelp::Kelp(4): return 9474; + case Kelp::Kelp(12): return 9482; + case Kelp::Kelp(20): return 9490; + case Kelp::Kelp(5): return 9475; + case KelpPlant::KelpPlant(): return 9496; + case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZM): return 3638; + case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZP): return 3640; + case Ladder::Ladder(eBlockFace::BLOCK_FACE_XM): return 3642; + case Ladder::Ladder(eBlockFace::BLOCK_FACE_XP): return 3644; + case Lantern::Lantern(true): return 14886; + case Lantern::Lantern(false): return 14887; + case LapisBlock::LapisBlock(): return 233; + case LapisOre::LapisOre(): return 232; + case LargeFern::LargeFern(LargeFern::Half::Upper): return 7895; + case LargeFern::LargeFern(LargeFern::Half::Lower): return 7896; + case Lava::Lava(11): return 61; + case Lava::Lava(13): return 63; + case Lava::Lava(0): return 50; + case Lava::Lava(2): return 52; + case Lava::Lava(4): return 54; + case Lava::Lava(6): return 56; + case Lava::Lava(8): return 58; + case Lava::Lava(10): return 60; + case Lava::Lava(12): return 62; + case Lava::Lava(14): return 64; + case Lava::Lava(1): return 51; + case Lava::Lava(3): return 53; + case Lava::Lava(5): return 55; + case Lava::Lava(7): return 57; + case Lava::Lava(9): return 59; + case Lava::Lava(15): return 65; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, false, true): return 14835; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, true, true): return 14837; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, false, true): return 14839; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, true, true): return 14841; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, false, true): return 14843; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, true, true): return 14845; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, false, true): return 14847; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, true, false): return 14834; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, false, false): return 14836; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, true, false): return 14838; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, false, false): return 14840; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, true, false): return 14842; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, false, false): return 14844; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, true, false): return 14846; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, true, true): return 14833; + case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, false, false): return 14848; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 3793; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 3795; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 3797; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 3799; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 3801; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 3803; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 3805; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 3784; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 3786; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 3788; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 3790; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 3792; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 3794; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 3796; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 3798; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 3800; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 3802; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 3804; + case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 3806; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 3783; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 3785; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 3787; + case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 3789; + case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 3791; + case LightBlueBanner::LightBlueBanner(6): return 7951; + case LightBlueBanner::LightBlueBanner(7): return 7952; + case LightBlueBanner::LightBlueBanner(8): return 7953; + case LightBlueBanner::LightBlueBanner(9): return 7954; + case LightBlueBanner::LightBlueBanner(10): return 7955; + case LightBlueBanner::LightBlueBanner(11): return 7956; + case LightBlueBanner::LightBlueBanner(12): return 7957; + case LightBlueBanner::LightBlueBanner(13): return 7958; + case LightBlueBanner::LightBlueBanner(14): return 7959; + case LightBlueBanner::LightBlueBanner(0): return 7945; + case LightBlueBanner::LightBlueBanner(1): return 7946; + case LightBlueBanner::LightBlueBanner(2): return 7947; + case LightBlueBanner::LightBlueBanner(3): return 7948; + case LightBlueBanner::LightBlueBanner(4): return 7949; + case LightBlueBanner::LightBlueBanner(5): return 7950; + case LightBlueBanner::LightBlueBanner(15): return 7960; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Head): return 1107; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Head): return 1111; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Foot): return 1100; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Foot): return 1104; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Foot): return 1108; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Head): return 1097; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Head): return 1101; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Head): return 1105; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Head): return 1109; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Foot): return 1098; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Foot): return 1102; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Foot): return 1106; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Foot): return 1110; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Head): return 1099; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Head): return 1103; + case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Foot): return 1112; + case LightBlueCarpet::LightBlueCarpet(): return 7869; + case LightBlueConcrete::LightBlueConcrete(): return 9441; + case LightBlueConcretePowder::LightBlueConcretePowder(): return 9457; + case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9387; + case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9386; + case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9388; + case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9389; + case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9298; + case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9299; + case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9296; + case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9300; + case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9297; + case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9301; + case LightBlueStainedGlass::LightBlueStainedGlass(): return 4098; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, false): return 6962; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, false): return 6966; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, false): return 6970; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, false): return 6974; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, false): return 6978; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, false): return 6982; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, false): return 6986; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, true): return 6961; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, true): return 6965; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, true): return 6969; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, true): return 6973; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, true): return 6977; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, true): return 6981; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, true): return 6985; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, true): return 6989; + case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, false): return 6990; + case LightBlueTerracotta::LightBlueTerracotta(): return 6850; + case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XM): return 8167; + case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8165; + case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8166; + case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XP): return 8168; + case LightBlueWool::LightBlueWool(): return 1387; + case LightGrayBanner::LightGrayBanner(1): return 8026; + case LightGrayBanner::LightGrayBanner(2): return 8027; + case LightGrayBanner::LightGrayBanner(3): return 8028; + case LightGrayBanner::LightGrayBanner(4): return 8029; + case LightGrayBanner::LightGrayBanner(5): return 8030; + case LightGrayBanner::LightGrayBanner(6): return 8031; + case LightGrayBanner::LightGrayBanner(7): return 8032; + case LightGrayBanner::LightGrayBanner(8): return 8033; + case LightGrayBanner::LightGrayBanner(9): return 8034; + case LightGrayBanner::LightGrayBanner(10): return 8035; + case LightGrayBanner::LightGrayBanner(11): return 8036; + case LightGrayBanner::LightGrayBanner(12): return 8037; + case LightGrayBanner::LightGrayBanner(13): return 8038; + case LightGrayBanner::LightGrayBanner(14): return 8039; + case LightGrayBanner::LightGrayBanner(0): return 8025; + case LightGrayBanner::LightGrayBanner(15): return 8040; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Foot): return 1182; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Foot): return 1186; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Foot): return 1190; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Head): return 1179; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Head): return 1183; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Head): return 1187; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Head): return 1191; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Foot): return 1180; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Foot): return 1184; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Foot): return 1188; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Head): return 1177; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Head): return 1181; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Head): return 1185; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Head): return 1189; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Foot): return 1178; + case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Foot): return 1192; + case LightGrayCarpet::LightGrayCarpet(): return 7874; + case LightGrayConcrete::LightGrayConcrete(): return 9446; + case LightGrayConcretePowder::LightGrayConcretePowder(): return 9462; + case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9408; + case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9407; + case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9406; + case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9409; + case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9326; + case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9330; + case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9327; + case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9331; + case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9328; + case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9329; + case LightGrayStainedGlass::LightGrayStainedGlass(): return 4103; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, true): return 7121; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, true): return 7125; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, true): return 7129; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, true): return 7133; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, true): return 7137; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, true): return 7141; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, true): return 7145; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, true): return 7149; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, false): return 7122; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, false): return 7126; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, false): return 7130; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, false): return 7134; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, false): return 7138; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, false): return 7142; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, false): return 7146; + case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, false): return 7150; + case LightGrayTerracotta::LightGrayTerracotta(): return 6855; + case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8185; + case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8186; + case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XM): return 8187; + case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XP): return 8188; + case LightGrayWool::LightGrayWool(): return 1392; + case LightWeightedPressurePlate::LightWeightedPressurePlate(0): return 6646; + case LightWeightedPressurePlate::LightWeightedPressurePlate(1): return 6647; + case LightWeightedPressurePlate::LightWeightedPressurePlate(2): return 6648; + case LightWeightedPressurePlate::LightWeightedPressurePlate(3): return 6649; + case LightWeightedPressurePlate::LightWeightedPressurePlate(4): return 6650; + case LightWeightedPressurePlate::LightWeightedPressurePlate(5): return 6651; + case LightWeightedPressurePlate::LightWeightedPressurePlate(6): return 6652; + case LightWeightedPressurePlate::LightWeightedPressurePlate(7): return 6653; + case LightWeightedPressurePlate::LightWeightedPressurePlate(8): return 6654; + case LightWeightedPressurePlate::LightWeightedPressurePlate(9): return 6655; + case LightWeightedPressurePlate::LightWeightedPressurePlate(10): return 6656; + case LightWeightedPressurePlate::LightWeightedPressurePlate(11): return 6657; + case LightWeightedPressurePlate::LightWeightedPressurePlate(12): return 6658; + case LightWeightedPressurePlate::LightWeightedPressurePlate(13): return 6659; + case LightWeightedPressurePlate::LightWeightedPressurePlate(14): return 6660; + case LightWeightedPressurePlate::LightWeightedPressurePlate(15): return 6661; + case Lilac::Lilac(Lilac::Half::Upper): return 7887; + case Lilac::Lilac(Lilac::Half::Lower): return 7888; + case LilyOfTheValley::LilyOfTheValley(): return 1424; + case LilyPad::LilyPad(): return 5014; + case LimeBanner::LimeBanner(4): return 7981; + case LimeBanner::LimeBanner(5): return 7982; + case LimeBanner::LimeBanner(6): return 7983; + case LimeBanner::LimeBanner(7): return 7984; + case LimeBanner::LimeBanner(8): return 7985; + case LimeBanner::LimeBanner(9): return 7986; + case LimeBanner::LimeBanner(10): return 7987; + case LimeBanner::LimeBanner(11): return 7988; + case LimeBanner::LimeBanner(12): return 7989; + case LimeBanner::LimeBanner(13): return 7990; + case LimeBanner::LimeBanner(14): return 7991; + case LimeBanner::LimeBanner(0): return 7977; + case LimeBanner::LimeBanner(1): return 7978; + case LimeBanner::LimeBanner(2): return 7979; + case LimeBanner::LimeBanner(3): return 7980; + case LimeBanner::LimeBanner(15): return 7992; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Head): return 1137; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Head): return 1141; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Foot): return 1130; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Foot): return 1134; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Foot): return 1138; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Foot): return 1142; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Head): return 1131; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Head): return 1135; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Head): return 1139; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Head): return 1143; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Foot): return 1132; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Foot): return 1136; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Foot): return 1140; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Head): return 1129; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Head): return 1133; + case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Foot): return 1144; + case LimeCarpet::LimeCarpet(): return 7871; + case LimeConcrete::LimeConcrete(): return 9443; + case LimeConcretePowder::LimeConcretePowder(): return 9459; + case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9396; + case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9395; + case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9394; + case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9397; + case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9312; + case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9309; + case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9313; + case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9310; + case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9311; + case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9308; + case LimeStainedGlass::LimeStainedGlass(): return 4100; + case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, true): return 7025; + case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, true): return 7029; + case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, true): return 7033; + case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, true): return 7037; + case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, true): return 7041; + case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, true): return 7045; + case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, true): return 7049; + case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, true): return 7053; + case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, false): return 7026; + case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, false): return 7030; + case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, false): return 7034; + case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, false): return 7038; + case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, false): return 7042; + case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, false): return 7046; + case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, false): return 7050; + case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, false): return 7054; + case LimeTerracotta::LimeTerracotta(): return 6852; + case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8173; + case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8174; + case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XM): return 8175; + case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XP): return 8176; + case LimeWool::LimeWool(): return 1389; + case Lodestone::Lodestone(): return 15838; + case Loom::Loom(eBlockFace::BLOCK_FACE_ZM): return 14787; + case Loom::Loom(eBlockFace::BLOCK_FACE_XM): return 14789; + case Loom::Loom(eBlockFace::BLOCK_FACE_ZP): return 14788; + case Loom::Loom(eBlockFace::BLOCK_FACE_XP): return 14790; + case MagentaBanner::MagentaBanner(7): return 7936; + case MagentaBanner::MagentaBanner(8): return 7937; + case MagentaBanner::MagentaBanner(9): return 7938; + case MagentaBanner::MagentaBanner(10): return 7939; + case MagentaBanner::MagentaBanner(11): return 7940; + case MagentaBanner::MagentaBanner(12): return 7941; + case MagentaBanner::MagentaBanner(13): return 7942; + case MagentaBanner::MagentaBanner(14): return 7943; + case MagentaBanner::MagentaBanner(0): return 7929; + case MagentaBanner::MagentaBanner(1): return 7930; + case MagentaBanner::MagentaBanner(2): return 7931; + case MagentaBanner::MagentaBanner(3): return 7932; + case MagentaBanner::MagentaBanner(4): return 7933; + case MagentaBanner::MagentaBanner(5): return 7934; + case MagentaBanner::MagentaBanner(6): return 7935; + case MagentaBanner::MagentaBanner(15): return 7944; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Foot): return 1092; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Head): return 1081; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Head): return 1085; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Head): return 1089; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Head): return 1093; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Foot): return 1082; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Foot): return 1086; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Foot): return 1090; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Foot): return 1094; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Head): return 1083; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Head): return 1087; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Head): return 1091; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Head): return 1095; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Foot): return 1084; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Foot): return 1088; + case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Foot): return 1096; + case MagentaCarpet::MagentaCarpet(): return 7868; + case MagentaConcrete::MagentaConcrete(): return 9440; + case MagentaConcretePowder::MagentaConcretePowder(): return 9456; + case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9384; + case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9383; + case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9382; + case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9385; + case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9291; + case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9295; + case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9292; + case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9293; + case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9290; + case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9294; + case MagentaStainedGlass::MagentaStainedGlass(): return 4097; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, true): return 6929; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, true): return 6933; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, true): return 6937; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, true): return 6941; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, true): return 6945; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, true): return 6949; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, true): return 6953; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, true): return 6957; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, false): return 6930; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, false): return 6934; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, false): return 6938; + case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, false): return 6942; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, false): return 6946; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, false): return 6950; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, false): return 6954; + case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, false): return 6958; + case MagentaTerracotta::MagentaTerracotta(): return 6849; + case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8161; + case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8162; + case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XM): return 8163; + case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XP): return 8164; + case MagentaWool::MagentaWool(): return 1386; + case MagmaBlock::MagmaBlock(): return 9253; + case Melon::Melon(): return 4763; + case MelonStem::MelonStem(3): return 4783; + case MelonStem::MelonStem(5): return 4785; + case MelonStem::MelonStem(0): return 4780; + case MelonStem::MelonStem(2): return 4782; + case MelonStem::MelonStem(4): return 4784; + case MelonStem::MelonStem(6): return 4786; + case MelonStem::MelonStem(1): return 4781; + case MelonStem::MelonStem(7): return 4787; + case MossyCobblestone::MossyCobblestone(): return 1433; + case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Top): return 10814; + case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Double): return 10818; + case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Bottom): return 10816; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 9990; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 9992; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 9994; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 9996; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 9998; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 10000; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 10002; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 10004; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 10006; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 10008; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 10010; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 10012; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 10014; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 10016; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 10018; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 10020; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 10022; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 10024; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 10026; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 10028; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 10030; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 10032; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 10034; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 10036; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 10038; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 10040; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 10042; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 10044; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 10046; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 10048; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 10050; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 10052; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 10054; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 10056; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 10058; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 10060; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 10062; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 10064; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 10066; + case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 10068; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6038; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6040; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6044; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6046; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6050; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6052; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6056; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6058; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6062; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6064; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6068; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6070; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6074; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6076; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6080; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6082; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6086; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6088; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6092; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6094; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6098; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6100; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6104; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6106; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6110; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6112; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6116; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6118; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6122; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6124; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6128; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6130; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6134; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6136; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6140; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6142; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6146; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6148; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6152; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6154; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6158; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6160; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6164; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6166; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6170; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6172; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6176; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6178; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6182; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6184; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6188; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6190; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6194; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6196; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6200; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6202; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6206; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6208; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6212; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6214; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6218; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6220; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6224; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6226; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6230; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6232; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6236; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6238; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6242; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6244; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6248; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6250; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6254; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6256; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6260; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6262; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6266; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6268; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6272; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6274; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6278; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6280; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6284; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6286; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6290; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6292; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6296; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6298; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6302; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6304; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5985; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5991; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5997; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6003; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6009; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6015; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6021; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6027; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6033; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6039; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6045; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6051; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6057; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6063; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6069; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6075; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6081; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6087; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6093; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6099; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6105; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6111; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6117; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6123; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6129; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6135; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6141; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6147; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6153; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6159; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6165; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6171; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6177; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6183; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6189; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6195; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6201; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6207; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6213; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6219; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6225; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6231; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6237; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6243; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6249; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6255; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6261; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6267; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6273; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6279; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6285; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6291; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6297; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6303; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5984; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 5986; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5990; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 5992; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5996; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 5998; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6002; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6004; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6008; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6010; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6014; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6016; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6020; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6022; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6026; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6028; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6032; + case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6034; + case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Bottom): return 10804; + case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Top): return 10802; + case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Double): return 10806; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9834; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9836; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9838; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9840; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9842; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9844; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9846; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9848; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9850; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9852; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9854; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9856; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9858; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9860; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9862; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9864; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9866; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9868; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9870; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9872; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9874; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9876; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9878; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9880; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9882; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9884; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9886; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9888; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9890; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9892; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9894; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9896; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9898; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9900; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9902; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9904; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9906; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9908; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9830; + case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9832; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 12060; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 12064; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 12072; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 12076; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 12084; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 12088; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 12096; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 12100; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 12108; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 12112; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 12120; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 12124; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 12132; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 12136; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 12144; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 12148; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 12156; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 12160; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 11849; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 11861; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 11873; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 11885; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 11897; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 11909; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 11921; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 11933; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 11945; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 11957; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 11969; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 11981; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 11993; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 12005; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 12017; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 12029; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 12041; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 12053; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 12065; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 12077; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 12089; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 12101; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 12113; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 12125; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 12137; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 12149; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 12161; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 11842; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 11850; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 11854; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 11862; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 11866; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 11874; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 11878; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 11886; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 11890; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 11898; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 11902; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 11910; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 11914; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 11922; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 11926; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 11934; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 11938; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 11946; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 11950; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 11958; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 11962; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 11970; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 11974; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 11982; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 11986; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 11994; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 11998; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 12006; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 12010; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 12018; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 12022; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 12030; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 12034; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 12042; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 12046; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 12054; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 12058; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 12066; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 12070; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 12078; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 12082; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 12090; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 12094; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 12102; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 12106; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 12114; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 12118; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 12126; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 12130; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 12138; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 12142; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 12150; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 12154; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 12162; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 11843; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 11855; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 11867; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 11879; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 11891; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 11903; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 11915; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 11927; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 11939; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 11951; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 11963; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 11975; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 11987; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 11999; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 12011; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 12023; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 12035; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 12047; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 12059; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 12071; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 12083; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 12095; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 12107; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 12119; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 12131; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 12143; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 12155; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 11844; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 11848; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 11856; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 11860; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 11868; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 11872; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 11880; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 11884; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 11892; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 11896; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 11904; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 11908; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 11916; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 11920; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 11928; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 11932; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 11940; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 11944; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 11952; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 11956; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 11964; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 11968; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 11976; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 11980; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 11988; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 11992; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 12000; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 12004; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 12012; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 12016; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 12024; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 12028; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 12036; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 12040; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 12048; + case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 12052; + case MossyStoneBricks::MossyStoneBricks(): return 4496; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Sticky): return 1407; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Sticky): return 1411; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Normal): return 1400; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Normal): return 1404; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Normal): return 1408; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Sticky): return 1401; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Sticky): return 1405; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Sticky): return 1409; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Normal): return 1402; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Normal): return 1406; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Normal): return 1410; + case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Sticky): return 1403; + case MushroomStem::MushroomStem(true, true, true, true, false, false): return 4636; + case MushroomStem::MushroomStem(true, false, true, true, false, false): return 4652; + case MushroomStem::MushroomStem(false, true, true, true, false, false): return 4668; + case MushroomStem::MushroomStem(false, false, true, true, false, false): return 4684; + case MushroomStem::MushroomStem(true, true, true, false, true, true): return 4637; + case MushroomStem::MushroomStem(true, false, true, false, true, true): return 4653; + case MushroomStem::MushroomStem(false, true, true, false, true, true): return 4669; + case MushroomStem::MushroomStem(false, false, true, false, true, true): return 4685; + case MushroomStem::MushroomStem(true, true, true, false, true, false): return 4638; + case MushroomStem::MushroomStem(true, false, true, false, true, false): return 4654; + case MushroomStem::MushroomStem(false, true, true, false, true, false): return 4670; + case MushroomStem::MushroomStem(false, false, true, false, true, false): return 4686; + case MushroomStem::MushroomStem(true, true, true, false, false, true): return 4639; + case MushroomStem::MushroomStem(true, false, true, false, false, true): return 4655; + case MushroomStem::MushroomStem(false, true, true, false, false, true): return 4671; + case MushroomStem::MushroomStem(false, false, true, false, false, true): return 4687; + case MushroomStem::MushroomStem(true, true, true, false, false, false): return 4640; + case MushroomStem::MushroomStem(true, false, true, false, false, false): return 4656; + case MushroomStem::MushroomStem(false, true, true, false, false, false): return 4672; + case MushroomStem::MushroomStem(false, false, true, false, false, false): return 4688; + case MushroomStem::MushroomStem(true, true, false, true, true, true): return 4641; + case MushroomStem::MushroomStem(true, false, false, true, true, true): return 4657; + case MushroomStem::MushroomStem(false, true, false, true, true, true): return 4673; + case MushroomStem::MushroomStem(false, false, false, true, true, true): return 4689; + case MushroomStem::MushroomStem(true, true, false, true, true, false): return 4642; + case MushroomStem::MushroomStem(true, false, false, true, true, false): return 4658; + case MushroomStem::MushroomStem(false, true, false, true, true, false): return 4674; + case MushroomStem::MushroomStem(false, false, false, true, true, false): return 4690; + case MushroomStem::MushroomStem(true, true, false, true, false, true): return 4643; + case MushroomStem::MushroomStem(true, false, false, true, false, true): return 4659; + case MushroomStem::MushroomStem(false, true, false, true, false, true): return 4675; + case MushroomStem::MushroomStem(false, false, false, true, false, true): return 4691; + case MushroomStem::MushroomStem(true, true, false, true, false, false): return 4644; + case MushroomStem::MushroomStem(true, false, false, true, false, false): return 4660; + case MushroomStem::MushroomStem(false, true, false, true, false, false): return 4676; + case MushroomStem::MushroomStem(false, false, false, true, false, false): return 4692; + case MushroomStem::MushroomStem(true, true, false, false, true, true): return 4645; + case MushroomStem::MushroomStem(true, false, false, false, true, true): return 4661; + case MushroomStem::MushroomStem(false, true, false, false, true, true): return 4677; + case MushroomStem::MushroomStem(false, false, false, false, true, true): return 4693; + case MushroomStem::MushroomStem(true, true, false, false, true, false): return 4646; + case MushroomStem::MushroomStem(true, false, false, false, true, false): return 4662; + case MushroomStem::MushroomStem(false, true, false, false, true, false): return 4678; + case MushroomStem::MushroomStem(false, false, false, false, true, false): return 4694; + case MushroomStem::MushroomStem(true, true, false, false, false, true): return 4647; + case MushroomStem::MushroomStem(true, false, false, false, false, true): return 4663; + case MushroomStem::MushroomStem(false, true, false, false, false, true): return 4679; + case MushroomStem::MushroomStem(false, false, false, false, false, true): return 4695; + case MushroomStem::MushroomStem(true, true, false, false, false, false): return 4648; + case MushroomStem::MushroomStem(true, false, false, false, false, false): return 4664; + case MushroomStem::MushroomStem(false, true, false, false, false, false): return 4680; + case MushroomStem::MushroomStem(true, true, true, true, true, true): return 4633; + case MushroomStem::MushroomStem(true, false, true, true, true, true): return 4649; + case MushroomStem::MushroomStem(false, true, true, true, true, true): return 4665; + case MushroomStem::MushroomStem(false, false, true, true, true, true): return 4681; + case MushroomStem::MushroomStem(true, true, true, true, true, false): return 4634; + case MushroomStem::MushroomStem(true, false, true, true, true, false): return 4650; + case MushroomStem::MushroomStem(false, true, true, true, true, false): return 4666; + case MushroomStem::MushroomStem(false, false, true, true, true, false): return 4682; + case MushroomStem::MushroomStem(true, true, true, true, false, true): return 4635; + case MushroomStem::MushroomStem(true, false, true, true, false, true): return 4651; + case MushroomStem::MushroomStem(false, true, true, true, false, true): return 4667; + case MushroomStem::MushroomStem(false, false, true, true, false, true): return 4683; + case MushroomStem::MushroomStem(false, false, false, false, false, false): return 4696; + case Mycelium::Mycelium(true): return 5012; + case Mycelium::Mycelium(false): return 5013; + case NetherBrickFence::NetherBrickFence(true, true, true, true): return 5018; + case NetherBrickFence::NetherBrickFence(true, true, false, true): return 5022; + case NetherBrickFence::NetherBrickFence(true, false, true, true): return 5026; + case NetherBrickFence::NetherBrickFence(true, false, false, true): return 5030; + case NetherBrickFence::NetherBrickFence(false, true, true, true): return 5034; + case NetherBrickFence::NetherBrickFence(false, true, false, true): return 5038; + case NetherBrickFence::NetherBrickFence(false, false, true, true): return 5042; + case NetherBrickFence::NetherBrickFence(false, false, false, true): return 5046; + case NetherBrickFence::NetherBrickFence(true, true, true, false): return 5019; + case NetherBrickFence::NetherBrickFence(true, true, false, false): return 5023; + case NetherBrickFence::NetherBrickFence(true, false, true, false): return 5027; + case NetherBrickFence::NetherBrickFence(true, false, false, false): return 5031; + case NetherBrickFence::NetherBrickFence(false, true, true, false): return 5035; + case NetherBrickFence::NetherBrickFence(false, true, false, false): return 5039; + case NetherBrickFence::NetherBrickFence(false, false, true, false): return 5043; + case NetherBrickFence::NetherBrickFence(false, false, false, false): return 5047; + case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Top): return 8385; + case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Double): return 8389; + case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Bottom): return 8387; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5077; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5079; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5081; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5083; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5085; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5087; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5089; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5091; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5093; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5095; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5097; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5099; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5101; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5103; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5105; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5107; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5109; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5111; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5049; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5113; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5051; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5115; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5053; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5117; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5055; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5119; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5057; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5121; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5059; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5123; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5061; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5125; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5063; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5127; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5065; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5067; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5069; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5071; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5073; + case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5075; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 13078; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 13086; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 13090; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 13098; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 13102; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 13110; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 13114; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 13122; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 13126; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 13134; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 12815; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 12827; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 12839; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 12851; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 12863; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 12875; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 12887; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 12899; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 12911; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 12923; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 12935; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 12947; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 12959; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 12971; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 12983; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 12995; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 13007; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 13019; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 13031; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 13043; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 13055; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 13067; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 13079; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 13091; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 13103; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 13115; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 13127; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 12816; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 12820; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 12828; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 12832; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 12840; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 12844; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 12852; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 12856; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 12864; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 12868; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 12876; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 12880; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 12888; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 12892; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 12900; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 12904; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 12912; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 12916; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 12924; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 12928; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 12936; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 12940; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 12948; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 12952; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 12960; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 12964; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 12972; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 12976; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 12984; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 12988; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 12996; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 13000; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 13008; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 13012; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 13020; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 13024; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 13032; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 13036; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 13044; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 13048; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 13056; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 13060; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 13068; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 13072; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 13080; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 13084; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 13092; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 13096; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 13104; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 13108; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 13116; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 13120; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 13128; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 13132; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 12821; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 12833; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 12845; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 12857; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 12869; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 12881; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 12893; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 12905; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 12917; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 12929; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 12941; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 12953; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 12965; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 12977; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 12989; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 13001; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 13013; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 13025; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 13037; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 13049; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 13061; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 13073; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 13085; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 13097; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 13109; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 13121; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 13133; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 12814; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 12822; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 12826; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 12834; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 12838; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 12846; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 12850; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 12858; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 12862; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 12870; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 12874; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 12882; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 12886; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 12894; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 12898; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 12906; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 12910; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 12918; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 12922; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 12930; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 12934; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 12942; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 12946; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 12954; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 12958; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 12966; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 12970; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 12978; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 12982; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 12990; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 12994; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 13002; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 13006; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 13014; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 13018; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 13026; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 13030; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 13038; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 13042; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 13050; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 13054; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 13062; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 13066; + case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 13074; + case NetherBricks::NetherBricks(): return 5015; + case NetherGoldOre::NetherGoldOre(): return 72; + case NetherPortal::NetherPortal(NetherPortal::Axis::X): return 4014; + case NetherPortal::NetherPortal(NetherPortal::Axis::Z): return 4015; + case NetherQuartzOre::NetherQuartzOre(): return 6727; + case NetherSprouts::NetherSprouts(): return 14974; + case NetherWart::NetherWart(0): return 5128; + case NetherWart::NetherWart(1): return 5129; + case NetherWart::NetherWart(2): return 5130; + case NetherWart::NetherWart(3): return 5131; + case NetherWartBlock::NetherWartBlock(): return 9254; + case NetheriteBlock::NetheriteBlock(): return 15826; + case Netherrack::Netherrack(): return 3999; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, true): return 249; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, false): return 250; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, true): return 251; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, false): return 252; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, true): return 253; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, false): return 254; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, true): return 255; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, false): return 256; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, true): return 257; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, false): return 258; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, true): return 259; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, false): return 260; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, true): return 261; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, false): return 262; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, true): return 263; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, false): return 264; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, true): return 265; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, false): return 266; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, true): return 267; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, false): return 268; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, true): return 269; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, false): return 270; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, true): return 271; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, false): return 272; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, true): return 273; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, false): return 274; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, true): return 275; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, false): return 276; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, true): return 277; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, false): return 278; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, true): return 279; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, false): return 280; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, true): return 281; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, false): return 282; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, true): return 283; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, false): return 284; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, true): return 285; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, false): return 286; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, true): return 287; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, false): return 288; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, true): return 289; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, false): return 290; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, true): return 291; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, false): return 292; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, true): return 293; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, false): return 294; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, true): return 295; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, false): return 296; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, true): return 297; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, false): return 298; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, true): return 299; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, false): return 300; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, true): return 301; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, false): return 302; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, true): return 303; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, false): return 304; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, true): return 305; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, false): return 306; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, true): return 307; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, false): return 308; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, true): return 309; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, false): return 310; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, true): return 311; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, false): return 312; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, true): return 313; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, false): return 314; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, true): return 315; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, false): return 316; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, true): return 317; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, false): return 318; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, true): return 319; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, false): return 320; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, true): return 321; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, false): return 322; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, true): return 323; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, false): return 324; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, true): return 325; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, false): return 326; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, true): return 327; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, false): return 328; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, true): return 329; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, false): return 330; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, true): return 331; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, false): return 332; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, true): return 333; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, false): return 334; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, true): return 335; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, false): return 336; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, true): return 337; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, false): return 338; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, true): return 339; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, false): return 340; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, true): return 341; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, false): return 342; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, true): return 343; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, false): return 344; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, true): return 345; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, false): return 346; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, true): return 347; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, false): return 348; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, true): return 349; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, false): return 350; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, true): return 351; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, false): return 352; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, true): return 353; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, false): return 354; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, true): return 355; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, false): return 356; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, true): return 357; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, false): return 358; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, true): return 359; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, false): return 360; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, true): return 361; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, false): return 362; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, true): return 363; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, false): return 364; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, true): return 365; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, false): return 366; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, true): return 367; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, false): return 368; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, true): return 369; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, false): return 370; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, true): return 371; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, false): return 372; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, true): return 373; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, false): return 374; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, true): return 375; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, false): return 376; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, true): return 377; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, false): return 378; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, true): return 379; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, false): return 380; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, true): return 381; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, false): return 382; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, true): return 383; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, false): return 384; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, true): return 385; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, false): return 386; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, true): return 387; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, false): return 388; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, true): return 389; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, false): return 390; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, true): return 391; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, false): return 392; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, true): return 393; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, false): return 394; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, true): return 395; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, false): return 396; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, true): return 397; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, false): return 398; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, true): return 399; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, false): return 400; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, true): return 401; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, false): return 402; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, true): return 403; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, false): return 404; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, true): return 405; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, false): return 406; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, true): return 407; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, false): return 408; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, true): return 409; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, false): return 410; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, true): return 411; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, false): return 412; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, true): return 413; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, false): return 414; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, true): return 415; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, false): return 416; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, true): return 417; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, false): return 418; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, true): return 419; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, false): return 420; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, true): return 421; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, false): return 422; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, true): return 423; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, false): return 424; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, true): return 425; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, false): return 426; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, true): return 427; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, false): return 428; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, true): return 429; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, false): return 430; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, true): return 431; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, false): return 432; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, true): return 433; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, false): return 434; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, true): return 435; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, false): return 436; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, true): return 437; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, false): return 438; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, true): return 439; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, false): return 440; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, true): return 441; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, false): return 442; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, true): return 443; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, false): return 444; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, true): return 445; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, false): return 446; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, true): return 447; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, false): return 448; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, true): return 449; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, false): return 450; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, true): return 451; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, false): return 452; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, true): return 453; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, false): return 454; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, true): return 455; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, false): return 456; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, true): return 457; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, false): return 458; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, true): return 459; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, false): return 460; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, true): return 461; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, false): return 462; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, true): return 463; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, false): return 464; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, true): return 465; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, false): return 466; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, true): return 467; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, false): return 468; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, true): return 469; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, false): return 470; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, true): return 471; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, false): return 472; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, true): return 473; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, false): return 474; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, true): return 475; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, false): return 476; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, true): return 477; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, false): return 478; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, true): return 479; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, false): return 480; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, true): return 481; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, false): return 482; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, true): return 483; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, false): return 484; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, true): return 485; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, false): return 486; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, true): return 487; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, false): return 488; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, true): return 489; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, false): return 490; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, true): return 491; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, false): return 492; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, true): return 493; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, false): return 494; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, true): return 495; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, false): return 496; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, true): return 497; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, false): return 498; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, true): return 499; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, false): return 500; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, true): return 501; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, false): return 502; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, true): return 503; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, false): return 504; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, true): return 505; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, false): return 506; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, true): return 507; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, false): return 508; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, true): return 509; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, false): return 510; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, true): return 511; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, false): return 512; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, true): return 513; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, false): return 514; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, true): return 515; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, false): return 516; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, true): return 517; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, false): return 518; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, true): return 519; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, false): return 520; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, true): return 521; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, false): return 522; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, true): return 523; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, false): return 524; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, true): return 525; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, false): return 526; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, true): return 527; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, false): return 528; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, true): return 529; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, false): return 530; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, true): return 531; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, false): return 532; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, true): return 533; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, false): return 534; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, true): return 535; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, false): return 536; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, true): return 537; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, false): return 538; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, true): return 539; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, false): return 540; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, true): return 541; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, false): return 542; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, true): return 543; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, false): return 544; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, true): return 545; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, false): return 546; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, true): return 547; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, false): return 548; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, true): return 549; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, false): return 550; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, true): return 551; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, false): return 552; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, true): return 553; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, false): return 554; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, true): return 555; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, false): return 556; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, true): return 557; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, false): return 558; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, true): return 559; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, false): return 560; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, true): return 561; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, false): return 562; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, true): return 563; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, false): return 564; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, true): return 565; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, false): return 566; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, true): return 567; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, false): return 568; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, true): return 569; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, false): return 570; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, true): return 571; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, false): return 572; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, true): return 573; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, false): return 574; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, true): return 575; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, false): return 576; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, true): return 577; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, false): return 578; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, true): return 579; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, false): return 580; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, true): return 581; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, false): return 582; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, true): return 583; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, false): return 584; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, true): return 585; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, false): return 586; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, true): return 587; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, false): return 588; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, true): return 589; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, false): return 590; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, true): return 591; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, false): return 592; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, true): return 593; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, false): return 594; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, true): return 595; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, false): return 596; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, true): return 597; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, false): return 598; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, true): return 599; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, false): return 600; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, true): return 601; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, false): return 602; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, true): return 603; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, false): return 604; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, true): return 605; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, false): return 606; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, true): return 607; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, false): return 608; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, true): return 609; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, false): return 610; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, true): return 611; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, false): return 612; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, true): return 613; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, false): return 614; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, true): return 615; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, false): return 616; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, true): return 617; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, false): return 618; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, true): return 619; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, false): return 620; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, true): return 621; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, false): return 622; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, true): return 623; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, false): return 624; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, true): return 625; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, false): return 626; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, true): return 627; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, false): return 628; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, true): return 629; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, false): return 630; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, true): return 631; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, false): return 632; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, true): return 633; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, false): return 634; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, true): return 635; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, false): return 636; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, true): return 637; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, false): return 638; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, true): return 639; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, false): return 640; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, true): return 641; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, false): return 642; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, true): return 643; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, false): return 644; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, true): return 645; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, false): return 646; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, true): return 647; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, false): return 648; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, true): return 649; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, false): return 650; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, true): return 651; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, false): return 652; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, true): return 653; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, false): return 654; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, true): return 655; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, false): return 656; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, true): return 657; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, false): return 658; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, true): return 659; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, false): return 660; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, true): return 661; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, false): return 662; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, true): return 663; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, false): return 664; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, true): return 665; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, false): return 666; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, true): return 667; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, false): return 668; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, true): return 669; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, false): return 670; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, true): return 671; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, false): return 672; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, true): return 673; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, false): return 674; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, true): return 675; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, false): return 676; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, true): return 677; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, false): return 678; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, true): return 679; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, false): return 680; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, true): return 681; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, false): return 682; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, true): return 683; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, false): return 684; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, true): return 685; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, false): return 686; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, true): return 687; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, false): return 688; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, true): return 689; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, false): return 690; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, true): return 691; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, false): return 692; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, true): return 693; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, false): return 694; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, true): return 695; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, false): return 696; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, true): return 697; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, false): return 698; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, true): return 699; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, false): return 700; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, true): return 701; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, false): return 702; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, true): return 703; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, false): return 704; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, true): return 705; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, false): return 706; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, true): return 707; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, false): return 708; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, true): return 709; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, false): return 710; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, true): return 711; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, false): return 712; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, true): return 713; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, false): return 714; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, true): return 715; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, false): return 716; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, true): return 717; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, false): return 718; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, true): return 719; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, false): return 720; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, true): return 721; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, false): return 722; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, true): return 723; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, false): return 724; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, true): return 725; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, false): return 726; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, true): return 727; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, false): return 728; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, true): return 729; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, false): return 730; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, true): return 731; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, false): return 732; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, true): return 733; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, false): return 734; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, true): return 735; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, false): return 736; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, true): return 737; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, false): return 738; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, true): return 739; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, false): return 740; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, true): return 741; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, false): return 742; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, true): return 743; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, false): return 744; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, true): return 745; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, false): return 746; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, true): return 747; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, false): return 748; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 0, true): return 749; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 0, false): return 750; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 1, true): return 751; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 1, false): return 752; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 2, true): return 753; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 2, false): return 754; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 3, true): return 755; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 3, false): return 756; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 4, true): return 757; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 4, false): return 758; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 5, true): return 759; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 5, false): return 760; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 6, true): return 761; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 6, false): return 762; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 7, true): return 763; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 7, false): return 764; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 8, true): return 765; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 8, false): return 766; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 9, true): return 767; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 9, false): return 768; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 10, true): return 769; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 10, false): return 770; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 11, true): return 771; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 11, false): return 772; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 12, true): return 773; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 12, false): return 774; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 13, true): return 775; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 13, false): return 776; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 14, true): return 777; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 14, false): return 778; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 15, true): return 779; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 15, false): return 780; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 16, true): return 781; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 16, false): return 782; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 17, true): return 783; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 17, false): return 784; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 18, true): return 785; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 18, false): return 786; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 19, true): return 787; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 19, false): return 788; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 20, true): return 789; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 20, false): return 790; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 21, true): return 791; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 21, false): return 792; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 22, true): return 793; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 22, false): return 794; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 23, true): return 795; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 23, false): return 796; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 24, true): return 797; + case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 24, false): return 798; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 0, true): return 799; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 0, false): return 800; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 1, true): return 801; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 1, false): return 802; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 2, true): return 803; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 2, false): return 804; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 3, true): return 805; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 3, false): return 806; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 4, true): return 807; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 4, false): return 808; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 5, true): return 809; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 5, false): return 810; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 6, true): return 811; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 6, false): return 812; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 7, true): return 813; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 7, false): return 814; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 8, true): return 815; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 8, false): return 816; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 9, true): return 817; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 9, false): return 818; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 10, true): return 819; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 10, false): return 820; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 11, true): return 821; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 11, false): return 822; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 12, true): return 823; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 12, false): return 824; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 13, true): return 825; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 13, false): return 826; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 14, true): return 827; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 14, false): return 828; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 15, true): return 829; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 15, false): return 830; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 16, true): return 831; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 16, false): return 832; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 17, true): return 833; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 17, false): return 834; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 18, true): return 835; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 18, false): return 836; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 19, true): return 837; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 19, false): return 838; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 20, true): return 839; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 20, false): return 840; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 21, true): return 841; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 21, false): return 842; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 22, true): return 843; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 22, false): return 844; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 23, true): return 845; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 23, false): return 846; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 24, true): return 847; + case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 24, false): return 848; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 0, true): return 849; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 0, false): return 850; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 1, true): return 851; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 1, false): return 852; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 2, true): return 853; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 2, false): return 854; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 3, true): return 855; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 3, false): return 856; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 4, true): return 857; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 4, false): return 858; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 5, true): return 859; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 5, false): return 860; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 6, true): return 861; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 6, false): return 862; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 7, true): return 863; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 7, false): return 864; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 8, true): return 865; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 8, false): return 866; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 9, true): return 867; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 9, false): return 868; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 10, true): return 869; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 10, false): return 870; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 11, true): return 871; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 11, false): return 872; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 12, true): return 873; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 12, false): return 874; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 13, true): return 875; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 13, false): return 876; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 14, true): return 877; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 14, false): return 878; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 15, true): return 879; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 15, false): return 880; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 16, true): return 881; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 16, false): return 882; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 17, true): return 883; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 17, false): return 884; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 18, true): return 885; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 18, false): return 886; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 19, true): return 887; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 19, false): return 888; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 20, true): return 889; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 20, false): return 890; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 21, true): return 891; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 21, false): return 892; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 22, true): return 893; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 22, false): return 894; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 23, true): return 895; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 23, false): return 896; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 24, true): return 897; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 24, false): return 898; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 0, true): return 899; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 0, false): return 900; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 1, true): return 901; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 1, false): return 902; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 2, true): return 903; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 2, false): return 904; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 3, true): return 905; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 3, false): return 906; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 4, true): return 907; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 4, false): return 908; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 5, true): return 909; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 5, false): return 910; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 6, true): return 911; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 6, false): return 912; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 7, true): return 913; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 7, false): return 914; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 8, true): return 915; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 8, false): return 916; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 9, true): return 917; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 9, false): return 918; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 10, true): return 919; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 10, false): return 920; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 11, true): return 921; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 11, false): return 922; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 12, true): return 923; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 12, false): return 924; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 13, true): return 925; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 13, false): return 926; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 14, true): return 927; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 14, false): return 928; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 15, true): return 929; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 15, false): return 930; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 16, true): return 931; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 16, false): return 932; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 17, true): return 933; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 17, false): return 934; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 18, true): return 935; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 18, false): return 936; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 19, true): return 937; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 19, false): return 938; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 20, true): return 939; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 20, false): return 940; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 21, true): return 941; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 21, false): return 942; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 22, true): return 943; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 22, false): return 944; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 23, true): return 945; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 23, false): return 946; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 24, true): return 947; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 24, false): return 948; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 0, true): return 949; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 0, false): return 950; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 1, true): return 951; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 1, false): return 952; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 2, true): return 953; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 2, false): return 954; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 3, true): return 955; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 3, false): return 956; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 4, true): return 957; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 4, false): return 958; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 5, true): return 959; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 5, false): return 960; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 6, true): return 961; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 6, false): return 962; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 7, true): return 963; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 7, false): return 964; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 8, true): return 965; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 8, false): return 966; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 9, true): return 967; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 9, false): return 968; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 10, true): return 969; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 10, false): return 970; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 11, true): return 971; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 11, false): return 972; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 12, true): return 973; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 12, false): return 974; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 13, true): return 975; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 13, false): return 976; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 14, true): return 977; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 14, false): return 978; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 15, true): return 979; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 15, false): return 980; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 16, true): return 981; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 16, false): return 982; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 17, true): return 983; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 17, false): return 984; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 18, true): return 985; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 18, false): return 986; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 19, true): return 987; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 19, false): return 988; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 20, true): return 989; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 20, false): return 990; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 21, true): return 991; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 21, false): return 992; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 22, true): return 993; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 22, false): return 994; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 23, true): return 995; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 23, false): return 996; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 24, true): return 997; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 24, false): return 998; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 0, true): return 999; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 0, false): return 1000; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 1, true): return 1001; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 1, false): return 1002; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 2, true): return 1003; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 2, false): return 1004; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 3, true): return 1005; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 3, false): return 1006; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 4, true): return 1007; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 4, false): return 1008; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 5, true): return 1009; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 5, false): return 1010; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 6, true): return 1011; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 6, false): return 1012; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 7, true): return 1013; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 7, false): return 1014; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 8, true): return 1015; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 8, false): return 1016; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 9, true): return 1017; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 9, false): return 1018; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 10, true): return 1019; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 10, false): return 1020; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 11, true): return 1021; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 11, false): return 1022; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 12, true): return 1023; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 12, false): return 1024; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 23, true): return 1045; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 23, false): return 1046; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 24, true): return 1047; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 24, false): return 1048; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 13, true): return 1025; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 13, false): return 1026; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 14, true): return 1027; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 14, false): return 1028; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 15, true): return 1029; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 15, false): return 1030; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 16, true): return 1031; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 16, false): return 1032; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 17, true): return 1033; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 17, false): return 1034; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 18, true): return 1035; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 18, false): return 1036; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 19, true): return 1037; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 19, false): return 1038; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 20, true): return 1039; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 20, false): return 1040; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 21, true): return 1041; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 21, false): return 1042; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 22, true): return 1043; + case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 22, false): return 1044; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 6346; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 6350; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 6354; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 6358; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 6362; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 6366; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 6347; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 6351; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 6355; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 6359; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 6363; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 6367; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 6348; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 6352; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 6356; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 6360; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 6364; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 6368; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 6349; + case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 6353; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 6357; + case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 6361; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 6365; + case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 6369; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3610; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3618; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3626; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3634; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3579; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3587; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3595; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3603; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3611; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3619; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3627; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3635; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3580; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3588; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3596; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3604; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3612; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3620; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3628; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3573; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3581; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3589; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3597; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3605; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3613; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3621; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3629; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3574; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3582; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3590; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3598; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3606; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3614; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3622; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3630; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3575; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3583; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3591; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3599; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3607; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3615; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3623; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3631; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3576; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3584; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3592; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3600; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3608; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3616; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3624; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3632; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3577; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3585; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3593; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3601; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3609; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3617; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3625; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3633; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3578; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3586; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3594; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3602; + case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3636; + case OakFence::OakFence(true, false, false, false): return 3981; + case OakFence::OakFence(false, true, true, false): return 3985; + case OakFence::OakFence(false, true, false, false): return 3989; + case OakFence::OakFence(false, false, true, false): return 3993; + case OakFence::OakFence(true, true, true, true): return 3968; + case OakFence::OakFence(true, true, false, true): return 3972; + case OakFence::OakFence(true, false, true, true): return 3976; + case OakFence::OakFence(true, false, false, true): return 3980; + case OakFence::OakFence(false, true, true, true): return 3984; + case OakFence::OakFence(false, true, false, true): return 3988; + case OakFence::OakFence(false, false, true, true): return 3992; + case OakFence::OakFence(false, false, false, true): return 3996; + case OakFence::OakFence(true, true, true, false): return 3969; + case OakFence::OakFence(true, true, false, false): return 3973; + case OakFence::OakFence(true, false, true, false): return 3977; + case OakFence::OakFence(false, false, false, false): return 3997; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 4823; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 4827; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 4831; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 4835; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 4839; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 4843; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 4847; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 4820; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 4824; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 4828; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 4832; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 4836; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 4840; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 4844; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 4848; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 4821; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 4825; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 4829; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 4833; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 4837; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 4841; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 4845; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 4849; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 4822; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 4826; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 4830; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 4834; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 4838; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 4842; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 4846; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 4850; + case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 4851; + case OakLeaves::OakLeaves(5, true): return 153; + case OakLeaves::OakLeaves(1, false): return 146; + case OakLeaves::OakLeaves(5, false): return 154; + case OakLeaves::OakLeaves(2, true): return 147; + case OakLeaves::OakLeaves(6, true): return 155; + case OakLeaves::OakLeaves(2, false): return 148; + case OakLeaves::OakLeaves(6, false): return 156; + case OakLeaves::OakLeaves(3, true): return 149; + case OakLeaves::OakLeaves(7, true): return 157; + case OakLeaves::OakLeaves(3, false): return 150; + case OakLeaves::OakLeaves(7, false): return 158; + case OakLeaves::OakLeaves(4, true): return 151; + case OakLeaves::OakLeaves(4, false): return 152; + case OakLeaves::OakLeaves(1, true): return 145; + case OakLog::OakLog(OakLog::Axis::X): return 73; + case OakLog::OakLog(OakLog::Axis::Y): return 74; + case OakLog::OakLog(OakLog::Axis::Z): return 75; + case OakPlanks::OakPlanks(): return 15; + case OakPressurePlate::OakPressurePlate(true): return 3873; + case OakPressurePlate::OakPressurePlate(false): return 3874; + case OakSapling::OakSapling(0): return 21; + case OakSapling::OakSapling(1): return 22; + case OakSign::OakSign(4): return 3390; + case OakSign::OakSign(5): return 3392; + case OakSign::OakSign(6): return 3394; + case OakSign::OakSign(7): return 3396; + case OakSign::OakSign(8): return 3398; + case OakSign::OakSign(9): return 3400; + case OakSign::OakSign(10): return 3402; + case OakSign::OakSign(11): return 3404; + case OakSign::OakSign(12): return 3406; + case OakSign::OakSign(13): return 3408; + case OakSign::OakSign(14): return 3410; + case OakSign::OakSign(0): return 3382; + case OakSign::OakSign(1): return 3384; + case OakSign::OakSign(2): return 3386; + case OakSign::OakSign(3): return 3388; + case OakSign::OakSign(15): return 3412; + case OakSlab::OakSlab(OakSlab::Type::Top): return 8301; + case OakSlab::OakSlab(OakSlab::Type::Double): return 8305; + case OakSlab::OakSlab(OakSlab::Type::Bottom): return 8303; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 2031; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1969; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1985; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 2001; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 2017; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 2033; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1955; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1971; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1987; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 2003; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 2019; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1957; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1973; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1989; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 2005; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 2021; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1959; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1975; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1991; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 2007; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 2023; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1961; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1977; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1993; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 2009; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 2025; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1963; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1979; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1995; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 2011; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 2027; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1965; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1981; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1997; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 2013; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 2029; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1967; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1983; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1999; + case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::Straight): return 2015; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, true): return 4132; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, true): return 4148; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, true): return 4164; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, false): return 4118; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, false): return 4134; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, false): return 4150; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, false): return 4166; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, true): return 4120; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, true): return 4136; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, true): return 4152; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, true): return 4168; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, false): return 4122; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, false): return 4138; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, false): return 4154; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, false): return 4170; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, true): return 4124; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, true): return 4140; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, true): return 4156; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, true): return 4172; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, false): return 4126; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, false): return 4142; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, false): return 4158; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, true): return 4112; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, true): return 4128; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, true): return 4144; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, true): return 4160; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, false): return 4114; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, false): return 4130; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, false): return 4146; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, false): return 4162; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, true): return 4116; + case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, false): return 4174; + case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZM): return 3736; + case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZP): return 3738; + case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XM): return 3740; + case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XP): return 3742; + case OakWood::OakWood(OakWood::Axis::X): return 109; + case OakWood::OakWood(OakWood::Axis::Y): return 110; + case OakWood::OakWood(OakWood::Axis::Z): return 111; + case Observer::Observer(eBlockFace::BLOCK_FACE_YM, true): return 9270; + case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, false): return 9261; + case Observer::Observer(eBlockFace::BLOCK_FACE_XP, false): return 9263; + case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, false): return 9265; + case Observer::Observer(eBlockFace::BLOCK_FACE_XM, false): return 9267; + case Observer::Observer(eBlockFace::BLOCK_FACE_YP, false): return 9269; + case Observer::Observer(eBlockFace::BLOCK_FACE_YM, false): return 9271; + case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, true): return 9260; + case Observer::Observer(eBlockFace::BLOCK_FACE_XP, true): return 9262; + case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, true): return 9264; + case Observer::Observer(eBlockFace::BLOCK_FACE_XM, true): return 9266; + case Observer::Observer(eBlockFace::BLOCK_FACE_YP, true): return 9268; + case Obsidian::Obsidian(): return 1434; + case OrangeBanner::OrangeBanner(8): return 7921; + case OrangeBanner::OrangeBanner(9): return 7922; + case OrangeBanner::OrangeBanner(10): return 7923; + case OrangeBanner::OrangeBanner(11): return 7924; + case OrangeBanner::OrangeBanner(12): return 7925; + case OrangeBanner::OrangeBanner(13): return 7926; + case OrangeBanner::OrangeBanner(14): return 7927; + case OrangeBanner::OrangeBanner(0): return 7913; + case OrangeBanner::OrangeBanner(1): return 7914; + case OrangeBanner::OrangeBanner(2): return 7915; + case OrangeBanner::OrangeBanner(3): return 7916; + case OrangeBanner::OrangeBanner(4): return 7917; + case OrangeBanner::OrangeBanner(5): return 7918; + case OrangeBanner::OrangeBanner(6): return 7919; + case OrangeBanner::OrangeBanner(7): return 7920; + case OrangeBanner::OrangeBanner(15): return 7928; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Head): return 1077; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Foot): return 1066; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Foot): return 1070; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Foot): return 1074; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Foot): return 1078; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Head): return 1067; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Head): return 1071; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Head): return 1075; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Head): return 1079; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Foot): return 1068; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Foot): return 1072; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Foot): return 1076; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Head): return 1065; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Head): return 1069; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Head): return 1073; + case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Foot): return 1080; + case OrangeCarpet::OrangeCarpet(): return 7867; + case OrangeConcrete::OrangeConcrete(): return 9439; + case OrangeConcretePowder::OrangeConcretePowder(): return 9455; + case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9378; + case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9380; + case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9379; + case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9381; + case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9284; + case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9288; + case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9285; + case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9289; + case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9286; + case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9287; + case OrangeStainedGlass::OrangeStainedGlass(): return 4096; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, true): return 6897; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, true): return 6901; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, true): return 6905; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, true): return 6909; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, true): return 6913; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, true): return 6917; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, true): return 6921; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, true): return 6925; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, false): return 6898; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, false): return 6902; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, false): return 6906; + case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, false): return 6910; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, false): return 6914; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, false): return 6918; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, false): return 6922; + case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, false): return 6926; + case OrangeTerracotta::OrangeTerracotta(): return 6848; + case OrangeTulip::OrangeTulip(): return 1418; + case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8158; + case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XM): return 8159; + case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8157; + case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XP): return 8160; + case OrangeWool::OrangeWool(): return 1385; + case OxeyeDaisy::OxeyeDaisy(): return 1421; + case PackedIce::PackedIce(): return 7884; + case Peony::Peony(Peony::Half::Upper): return 7891; + case Peony::Peony(Peony::Half::Lower): return 7892; + case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Top): return 8361; + case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Double): return 8365; + case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Bottom): return 8363; + case PinkBanner::PinkBanner(3): return 7996; + case PinkBanner::PinkBanner(4): return 7997; + case PinkBanner::PinkBanner(5): return 7998; + case PinkBanner::PinkBanner(6): return 7999; + case PinkBanner::PinkBanner(7): return 8000; + case PinkBanner::PinkBanner(8): return 8001; + case PinkBanner::PinkBanner(9): return 8002; + case PinkBanner::PinkBanner(10): return 8003; + case PinkBanner::PinkBanner(11): return 8004; + case PinkBanner::PinkBanner(12): return 8005; + case PinkBanner::PinkBanner(13): return 8006; + case PinkBanner::PinkBanner(14): return 8007; + case PinkBanner::PinkBanner(0): return 7993; + case PinkBanner::PinkBanner(1): return 7994; + case PinkBanner::PinkBanner(2): return 7995; + case PinkBanner::PinkBanner(15): return 8008; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Foot): return 1152; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Foot): return 1156; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Head): return 1145; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Head): return 1149; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Head): return 1153; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Head): return 1157; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Foot): return 1146; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Foot): return 1150; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Foot): return 1154; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Foot): return 1158; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Head): return 1147; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Head): return 1151; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Head): return 1155; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Head): return 1159; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Foot): return 1148; + case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Foot): return 1160; + case PinkCarpet::PinkCarpet(): return 7872; + case PinkConcrete::PinkConcrete(): return 9444; + case PinkConcretePowder::PinkConcretePowder(): return 9460; + case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9399; + case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9398; + case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9400; + case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9401; + case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9319; + case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9316; + case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9317; + case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9314; + case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9318; + case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9315; + case PinkStainedGlass::PinkStainedGlass(): return 4101; + case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, true): return 7057; + case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, true): return 7061; + case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, true): return 7065; + case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, true): return 7069; + case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, true): return 7073; + case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, true): return 7077; + case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, true): return 7081; + case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, true): return 7085; + case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, false): return 7058; + case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, false): return 7062; + case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, false): return 7066; + case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, false): return 7070; + case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, false): return 7074; + case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, false): return 7078; + case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, false): return 7082; + case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, false): return 7086; + case PinkTerracotta::PinkTerracotta(): return 6853; + case PinkTulip::PinkTulip(): return 1420; + case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XM): return 8179; + case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8177; + case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8178; + case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XP): return 8180; + case PinkWool::PinkWool(): return 1390; + case Piston::Piston(true, eBlockFace::BLOCK_FACE_XM): return 1351; + case Piston::Piston(false, eBlockFace::BLOCK_FACE_XP): return 1355; + case Piston::Piston(false, eBlockFace::BLOCK_FACE_YM): return 1359; + case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZM): return 1348; + case Piston::Piston(true, eBlockFace::BLOCK_FACE_YP): return 1352; + case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZP): return 1356; + case Piston::Piston(true, eBlockFace::BLOCK_FACE_XP): return 1349; + case Piston::Piston(true, eBlockFace::BLOCK_FACE_YM): return 1353; + case Piston::Piston(false, eBlockFace::BLOCK_FACE_XM): return 1357; + case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZP): return 1350; + case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZM): return 1354; + case Piston::Piston(false, eBlockFace::BLOCK_FACE_YP): return 1358; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Normal): return 1360; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Sticky): return 1361; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Normal): return 1362; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Sticky): return 1363; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Normal): return 1364; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Sticky): return 1365; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Normal): return 1366; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Sticky): return 1367; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Normal): return 1368; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Sticky): return 1369; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Normal): return 1370; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Sticky): return 1371; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Normal): return 1372; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Sticky): return 1373; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Normal): return 1374; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Sticky): return 1375; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Normal): return 1376; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Sticky): return 1377; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Normal): return 1378; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Sticky): return 1379; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Normal): return 1380; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Sticky): return 1381; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Normal): return 1382; + case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Sticky): return 1383; + case PlayerHead::PlayerHead(6): return 6556; + case PlayerHead::PlayerHead(7): return 6557; + case PlayerHead::PlayerHead(8): return 6558; + case PlayerHead::PlayerHead(9): return 6559; + case PlayerHead::PlayerHead(10): return 6560; + case PlayerHead::PlayerHead(11): return 6561; + case PlayerHead::PlayerHead(12): return 6562; + case PlayerHead::PlayerHead(13): return 6563; + case PlayerHead::PlayerHead(14): return 6564; + case PlayerHead::PlayerHead(0): return 6550; + case PlayerHead::PlayerHead(1): return 6551; + case PlayerHead::PlayerHead(2): return 6552; + case PlayerHead::PlayerHead(3): return 6553; + case PlayerHead::PlayerHead(4): return 6554; + case PlayerHead::PlayerHead(5): return 6555; + case PlayerHead::PlayerHead(15): return 6565; + case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XM): return 6568; + case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZM): return 6566; + case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZP): return 6567; + case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XP): return 6569; + case Podzol::Podzol(true): return 12; + case Podzol::Podzol(false): return 13; + case PolishedAndesite::PolishedAndesite(): return 7; + case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Top): return 10856; + case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Double): return 10860; + case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Bottom): return 10858; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10630; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10632; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10634; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10636; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10638; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10640; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10642; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10644; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10646; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10648; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10650; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10652; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10654; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10656; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10658; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10660; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10662; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10664; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10666; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10668; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10670; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10672; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10674; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10676; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10678; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10680; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10682; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10684; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10686; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10688; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10690; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10692; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10694; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10696; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10698; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10700; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10702; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10704; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10706; + case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10708; + case PolishedBasalt::PolishedBasalt(PolishedBasalt::Axis::Y): return 4006; + case PolishedBasalt::PolishedBasalt(PolishedBasalt::Axis::X): return 4005; + case PolishedBasalt::PolishedBasalt(PolishedBasalt::Axis::Z): return 4007; + case PolishedBlackstone::PolishedBlackstone(): return 16250; + case PolishedBlackstoneBrickSlab::PolishedBlackstoneBrickSlab(PolishedBlackstoneBrickSlab::Type::Bottom): return 16257; + case PolishedBlackstoneBrickSlab::PolishedBlackstoneBrickSlab(PolishedBlackstoneBrickSlab::Type::Top): return 16255; + case PolishedBlackstoneBrickSlab::PolishedBlackstoneBrickSlab(PolishedBlackstoneBrickSlab::Type::Double): return 16259; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::Straight): return 16311; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16313; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16315; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16317; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16319; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::Straight): return 16321; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16323; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16325; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16327; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16329; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::Straight): return 16331; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16333; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16335; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16337; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16339; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::Straight): return 16261; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16263; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16265; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16267; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16269; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::Straight): return 16271; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16273; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16275; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16277; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16279; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::Straight): return 16281; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16283; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16285; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16287; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16289; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::Straight): return 16291; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16293; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16295; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16297; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16299; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::Straight): return 16301; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16303; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16305; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16307; + case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16309; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16415; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16423; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16439; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16447; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16463; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16471; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16487; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16495; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16511; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16519; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16535; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16543; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16559; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16567; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16583; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16591; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16607; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16615; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16631; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16639; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16655; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16663; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16344; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16356; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16368; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16380; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16392; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16416; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16440; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16464; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16488; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16512; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16536; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16560; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16584; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16608; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16632; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16656; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16385; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16393; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16409; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16417; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16433; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16441; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16457; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16465; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16481; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16489; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16505; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16513; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16529; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16537; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16553; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16561; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16577; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16585; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16601; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16609; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16625; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16633; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16649; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16657; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16345; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16349; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16357; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16361; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16369; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16373; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16381; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16386; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16410; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16434; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16458; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16482; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16506; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16530; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16554; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16578; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16602; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16626; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16650; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16387; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16403; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16411; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16427; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16435; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16451; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16459; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16475; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16483; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16499; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16507; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16523; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16531; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16547; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16555; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16571; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16579; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16595; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16603; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16619; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16627; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16643; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16651; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16350; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16362; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16374; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16404; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16428; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16452; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16476; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16500; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16524; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16548; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16572; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16596; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16620; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16644; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16397; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16405; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16421; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16429; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16445; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16453; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16469; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16477; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16493; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16501; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16517; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16525; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16541; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16549; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16565; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16573; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16589; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16597; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16613; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16621; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16637; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16645; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16661; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16343; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16351; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16355; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16363; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16367; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16375; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16379; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16398; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16422; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16446; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16470; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16494; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16518; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16542; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16566; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16590; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16614; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16638; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16662; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16391; + case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16399; + case PolishedBlackstoneBricks::PolishedBlackstoneBricks(): return 16251; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 16765; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 16766; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 16767; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 16768; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 16753; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 16769; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 16754; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 16770; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 16755; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 16771; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 16756; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 16772; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 16757; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 16773; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 16758; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 16774; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 16759; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 16775; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 16760; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 16776; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 16761; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 16762; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 16763; + case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 16764; + case PolishedBlackstonePressurePlate::PolishedBlackstonePressurePlate(true): return 16751; + case PolishedBlackstonePressurePlate::PolishedBlackstonePressurePlate(false): return 16752; + case PolishedBlackstoneSlab::PolishedBlackstoneSlab(PolishedBlackstoneSlab::Type::Top): return 16746; + case PolishedBlackstoneSlab::PolishedBlackstoneSlab(PolishedBlackstoneSlab::Type::Bottom): return 16748; + case PolishedBlackstoneSlab::PolishedBlackstoneSlab(PolishedBlackstoneSlab::Type::Double): return 16750; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterRight): return 16744; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::Straight): return 16666; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerLeft): return 16668; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerRight): return 16670; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterLeft): return 16672; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterRight): return 16674; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::Straight): return 16676; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerLeft): return 16678; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerRight): return 16680; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterLeft): return 16682; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterRight): return 16684; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::Straight): return 16686; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerLeft): return 16688; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerRight): return 16690; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterLeft): return 16692; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterRight): return 16694; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::Straight): return 16696; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerLeft): return 16698; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerRight): return 16700; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterLeft): return 16702; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterRight): return 16704; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::Straight): return 16706; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerLeft): return 16708; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerRight): return 16710; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterLeft): return 16712; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterRight): return 16714; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::Straight): return 16716; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerLeft): return 16718; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerRight): return 16720; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterLeft): return 16722; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterRight): return 16724; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::Straight): return 16726; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerLeft): return 16728; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerRight): return 16730; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterLeft): return 16732; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterRight): return 16734; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::Straight): return 16736; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerLeft): return 16738; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerRight): return 16740; + case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterLeft): return 16742; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 16926; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 16942; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 16950; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 16966; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 16974; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 16990; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 16998; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 17014; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 17022; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 17038; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 17046; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 17062; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 17070; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 17086; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 17094; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 16799; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 16823; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 16847; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 16871; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 16895; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 16919; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 16943; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 16967; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 16991; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 17015; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 17039; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 17063; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 17087; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 16792; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 16800; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 16816; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 16824; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 16840; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 16848; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 16864; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 16872; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 16888; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 16896; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 16912; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 16920; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 16936; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 16944; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 16960; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 16968; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 16984; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 16992; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 17008; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 17016; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 17032; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 17040; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 17056; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 17064; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 17080; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 17088; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 16793; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 16817; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 16841; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 16865; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 16889; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 16913; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 16937; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 16961; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 16985; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 17009; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 17033; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 17057; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 17081; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 16786; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 16794; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 16810; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 16818; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 16834; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 16842; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 16858; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 16866; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 16882; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 16890; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 16906; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 16914; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 16930; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 16938; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 16954; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 16962; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 16978; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 16986; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 17002; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 17010; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 17026; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 17034; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 17050; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 17058; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 17074; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 17082; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 17098; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 16787; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 16811; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 16835; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 16859; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 16883; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 16907; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 16931; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 16955; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 16979; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 17003; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 17027; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 17051; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 17075; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 17099; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 16780; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 16788; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 16804; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 16812; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 16828; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 16836; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 16852; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 16860; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 16876; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 16884; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 16900; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 16908; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 16924; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 16932; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 16948; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 16956; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 16972; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 16980; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 16996; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 17004; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 17020; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 17028; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 17044; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 17052; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 17068; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 17076; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 17092; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 17100; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 16781; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 16805; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 16829; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 16853; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 16877; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 16901; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 16925; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 16949; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 16973; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 16997; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 17021; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 17045; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 17069; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 17093; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 16782; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 16798; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 16806; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 16822; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 16830; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 16846; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 16854; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 16870; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 16878; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 16894; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 16902; + case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 16918; + case PolishedDiorite::PolishedDiorite(): return 5; + case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Bottom): return 10810; + case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Top): return 10808; + case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Double): return 10812; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9960; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9962; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9964; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9966; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9968; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9970; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9972; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9974; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9976; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9978; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9980; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9982; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9984; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9986; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9988; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9910; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9912; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9914; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9916; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9918; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9920; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9922; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9924; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9926; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9928; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9930; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9932; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9934; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9936; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9938; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9940; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9942; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9944; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9946; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9948; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9950; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9952; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9954; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9956; + case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9958; + case PolishedGranite::PolishedGranite(): return 3; + case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Top): return 10790; + case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Double): return 10794; + case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Bottom): return 10792; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9706; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9708; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9710; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9712; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9714; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9716; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9718; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9720; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9722; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9724; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9726; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9728; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9730; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9732; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9734; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9736; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9738; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9740; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9742; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9744; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9746; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9748; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9670; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9672; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9674; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9676; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9678; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9680; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9682; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9684; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9686; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9688; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9690; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9692; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9694; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9696; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9698; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9700; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9702; + case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9704; + case Poppy::Poppy(): return 1413; + case Potatoes::Potatoes(6): return 6344; + case Potatoes::Potatoes(1): return 6339; + case Potatoes::Potatoes(3): return 6341; + case Potatoes::Potatoes(5): return 6343; + case Potatoes::Potatoes(0): return 6338; + case Potatoes::Potatoes(2): return 6340; + case Potatoes::Potatoes(4): return 6342; + case Potatoes::Potatoes(7): return 6345; + case PottedAcaciaSapling::PottedAcaciaSapling(): return 6310; + case PottedAllium::PottedAllium(): return 6316; + case PottedAzureBluet::PottedAzureBluet(): return 6317; + case PottedBamboo::PottedBamboo(): return 9664; + case PottedBirchSapling::PottedBirchSapling(): return 6308; + case PottedBlueOrchid::PottedBlueOrchid(): return 6315; + case PottedBrownMushroom::PottedBrownMushroom(): return 6327; + case PottedCactus::PottedCactus(): return 6329; + case PottedCornflower::PottedCornflower(): return 6323; + case PottedCrimsonFungus::PottedCrimsonFungus(): return 15834; + case PottedCrimsonRoots::PottedCrimsonRoots(): return 15836; + case PottedDandelion::PottedDandelion(): return 6313; + case PottedDarkOakSapling::PottedDarkOakSapling(): return 6311; + case PottedDeadBush::PottedDeadBush(): return 6328; + case PottedFern::PottedFern(): return 6312; + case PottedJungleSapling::PottedJungleSapling(): return 6309; + case PottedLilyOfTheValley::PottedLilyOfTheValley(): return 6324; + case PottedOakSapling::PottedOakSapling(): return 6306; + case PottedOrangeTulip::PottedOrangeTulip(): return 6319; + case PottedOxeyeDaisy::PottedOxeyeDaisy(): return 6322; + case PottedPinkTulip::PottedPinkTulip(): return 6321; + case PottedPoppy::PottedPoppy(): return 6314; + case PottedRedMushroom::PottedRedMushroom(): return 6326; + case PottedRedTulip::PottedRedTulip(): return 6318; + case PottedSpruceSapling::PottedSpruceSapling(): return 6307; + case PottedWarpedFungus::PottedWarpedFungus(): return 15835; + case PottedWarpedRoots::PottedWarpedRoots(): return 15837; + case PottedWhiteTulip::PottedWhiteTulip(): return 6320; + case PottedWitherRose::PottedWitherRose(): return 6325; + case PoweredRail::PoweredRail(true, PoweredRail::Shape::EastWest): return 1306; + case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingSouth): return 1310; + case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingWest): return 1314; + case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingEast): return 1307; + case PoweredRail::PoweredRail(false, PoweredRail::Shape::NorthSouth): return 1311; + case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingNorth): return 1315; + case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingWest): return 1308; + case PoweredRail::PoweredRail(false, PoweredRail::Shape::EastWest): return 1312; + case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingSouth): return 1316; + case PoweredRail::PoweredRail(true, PoweredRail::Shape::NorthSouth): return 1305; + case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingNorth): return 1309; + case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingEast): return 1313; + case Prismarine::Prismarine(): return 7601; + case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Top): return 7851; + case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Bottom): return 7853; + case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Double): return 7855; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7743; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7745; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7747; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7685; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7749; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7687; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7751; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7689; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7753; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7691; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7755; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7693; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7757; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7695; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7759; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7697; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7761; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7699; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7763; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7701; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7703; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7705; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7707; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7709; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7711; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7713; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7715; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7717; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7719; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7721; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7723; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7725; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7727; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7729; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7731; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7733; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7735; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7737; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7739; + case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7741; + case PrismarineBricks::PrismarineBricks(): return 7602; + case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Double): return 7849; + case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Top): return 7845; + case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Bottom): return 7847; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7679; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7617; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7681; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7619; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7683; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7621; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7623; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7625; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7627; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7629; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7631; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7633; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7635; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7637; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7639; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7641; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7643; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7645; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7647; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7649; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7651; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7653; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7655; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7657; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7659; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7661; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7663; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7665; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7667; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7605; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7669; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7607; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7671; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7609; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7673; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7611; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7675; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7613; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7677; + case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7615; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11194; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11202; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11206; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11214; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11218; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11226; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11230; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11238; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11242; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11250; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11254; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11262; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11266; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11274; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11278; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11286; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11290; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11298; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11302; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11310; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11314; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11322; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11326; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11334; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11338; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11346; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11350; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11358; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11362; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11370; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11374; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11382; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11386; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11394; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11398; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11406; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11410; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11418; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11422; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11430; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11434; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11442; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11446; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11454; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11458; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11466; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11470; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11478; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11482; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11490; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11494; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11502; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11506; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11514; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11195; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11207; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11219; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11231; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11243; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11255; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11267; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11279; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11291; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11303; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11315; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11327; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11339; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11351; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11363; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11375; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11387; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11399; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11411; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11423; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11435; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11447; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11459; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11471; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11483; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11495; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11507; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11196; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11200; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11208; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11212; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11220; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11224; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11232; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11236; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11244; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11248; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11256; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11260; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11268; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11272; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11280; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11284; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11292; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11296; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11304; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11308; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11316; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11320; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11328; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11332; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11340; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11344; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11352; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11356; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11364; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11368; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11376; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11380; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11388; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11392; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11400; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11404; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11412; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11416; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11424; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11428; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11436; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11440; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11448; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11452; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11460; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11464; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11472; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11476; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11484; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11488; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11496; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11500; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11508; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11512; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11201; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11213; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11225; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11237; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11249; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11261; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11273; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11285; + case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11297; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11309; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11321; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11333; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11345; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11357; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11369; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11381; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11393; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11405; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11417; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11429; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11441; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11453; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11465; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11477; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11489; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11501; + case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11513; + case Pumpkin::Pumpkin(): return 3998; + case PumpkinStem::PumpkinStem(4): return 4776; + case PumpkinStem::PumpkinStem(6): return 4778; + case PumpkinStem::PumpkinStem(1): return 4773; + case PumpkinStem::PumpkinStem(3): return 4775; + case PumpkinStem::PumpkinStem(5): return 4777; + case PumpkinStem::PumpkinStem(0): return 4772; + case PumpkinStem::PumpkinStem(2): return 4774; + case PumpkinStem::PumpkinStem(7): return 4779; + case PurpleBanner::PurpleBanner(14): return 8071; + case PurpleBanner::PurpleBanner(0): return 8057; + case PurpleBanner::PurpleBanner(1): return 8058; + case PurpleBanner::PurpleBanner(2): return 8059; + case PurpleBanner::PurpleBanner(3): return 8060; + case PurpleBanner::PurpleBanner(4): return 8061; + case PurpleBanner::PurpleBanner(5): return 8062; + case PurpleBanner::PurpleBanner(6): return 8063; + case PurpleBanner::PurpleBanner(7): return 8064; + case PurpleBanner::PurpleBanner(8): return 8065; + case PurpleBanner::PurpleBanner(9): return 8066; + case PurpleBanner::PurpleBanner(10): return 8067; + case PurpleBanner::PurpleBanner(11): return 8068; + case PurpleBanner::PurpleBanner(12): return 8069; + case PurpleBanner::PurpleBanner(13): return 8070; + case PurpleBanner::PurpleBanner(15): return 8072; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Foot): return 1212; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Foot): return 1216; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Foot): return 1220; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Head): return 1209; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Head): return 1213; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Head): return 1217; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Head): return 1221; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Foot): return 1210; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Foot): return 1214; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Foot): return 1218; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Foot): return 1222; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Head): return 1211; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Head): return 1215; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Head): return 1219; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Head): return 1223; + case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Foot): return 1224; + case PurpleCarpet::PurpleCarpet(): return 7876; + case PurpleConcrete::PurpleConcrete(): return 9448; + case PurpleConcretePowder::PurpleConcretePowder(): return 9464; + case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9414; + case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9416; + case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9415; + case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9417; + case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9340; + case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9341; + case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9338; + case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9342; + case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9339; + case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9343; + case PurpleStainedGlass::PurpleStainedGlass(): return 4105; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, false): return 7210; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, true): return 7185; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, true): return 7189; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, true): return 7193; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, true): return 7197; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, true): return 7201; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, true): return 7205; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, true): return 7209; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, true): return 7213; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, false): return 7186; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, false): return 7190; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, false): return 7194; + case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, false): return 7198; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, false): return 7202; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, false): return 7206; + case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, false): return 7214; + case PurpleTerracotta::PurpleTerracotta(): return 6857; + case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8193; + case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XM): return 8195; + case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8194; + case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XP): return 8196; + case PurpleWool::PurpleWool(): return 1394; + case PurpurBlock::PurpurBlock(): return 9134; + case PurpurPillar::PurpurPillar(PurpurPillar::Axis::X): return 9135; + case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Z): return 9137; + case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Y): return 9136; + case PurpurSlab::PurpurSlab(PurpurSlab::Type::Top): return 8409; + case PurpurSlab::PurpurSlab(PurpurSlab::Type::Double): return 8413; + case PurpurSlab::PurpurSlab(PurpurSlab::Type::Bottom): return 8411; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 9199; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 9201; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 9203; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 9205; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 9207; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 9209; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 9211; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 9213; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 9215; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 9217; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 9139; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 9141; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 9143; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 9145; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 9147; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 9149; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 9151; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 9153; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 9155; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 9157; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 9159; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 9161; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 9163; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 9165; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 9167; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 9169; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 9171; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 9173; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 9175; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 9177; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 9179; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 9181; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 9183; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 9185; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 9187; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 9189; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 9191; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 9193; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 9195; + case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 9197; + case QuartzBlock::QuartzBlock(): return 6738; + case QuartzBricks::QuartzBricks(): return 17103; + case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Z): return 6742; + case QuartzPillar::QuartzPillar(QuartzPillar::Axis::X): return 6740; + case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Y): return 6741; + case QuartzSlab::QuartzSlab(QuartzSlab::Type::Double): return 8395; + case QuartzSlab::QuartzSlab(QuartzSlab::Type::Bottom): return 8393; + case QuartzSlab::QuartzSlab(QuartzSlab::Type::Top): return 8391; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6790; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6792; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6794; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6796; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6798; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6800; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6802; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6804; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6806; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6744; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6808; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6746; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6810; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6748; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6812; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6750; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6814; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6752; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6816; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6754; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6818; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6756; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6820; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6758; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6822; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6760; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6762; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6764; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6766; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6768; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6770; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6772; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6774; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6776; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6778; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6780; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6782; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6784; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6786; + case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6788; + case Rail::Rail(Rail::Shape::EastWest): return 3646; + case Rail::Rail(Rail::Shape::NorthEast): return 3654; + case Rail::Rail(Rail::Shape::AscendingEast): return 3647; + case Rail::Rail(Rail::Shape::AscendingWest): return 3648; + case Rail::Rail(Rail::Shape::AscendingNorth): return 3649; + case Rail::Rail(Rail::Shape::AscendingSouth): return 3650; + case Rail::Rail(Rail::Shape::SouthEast): return 3651; + case Rail::Rail(Rail::Shape::SouthWest): return 3652; + case Rail::Rail(Rail::Shape::NorthSouth): return 3645; + case Rail::Rail(Rail::Shape::NorthWest): return 3653; + case RedBanner::RedBanner(10): return 8131; + case RedBanner::RedBanner(11): return 8132; + case RedBanner::RedBanner(12): return 8133; + case RedBanner::RedBanner(13): return 8134; + case RedBanner::RedBanner(14): return 8135; + case RedBanner::RedBanner(0): return 8121; + case RedBanner::RedBanner(1): return 8122; + case RedBanner::RedBanner(2): return 8123; + case RedBanner::RedBanner(3): return 8124; + case RedBanner::RedBanner(4): return 8125; + case RedBanner::RedBanner(5): return 8126; + case RedBanner::RedBanner(6): return 8127; + case RedBanner::RedBanner(7): return 8128; + case RedBanner::RedBanner(8): return 8129; + case RedBanner::RedBanner(9): return 8130; + case RedBanner::RedBanner(15): return 8136; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Head): return 1287; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Foot): return 1276; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Foot): return 1280; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Foot): return 1284; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Head): return 1273; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Head): return 1277; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Head): return 1281; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Head): return 1285; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Foot): return 1274; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Foot): return 1278; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Foot): return 1282; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Foot): return 1286; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Head): return 1275; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Head): return 1279; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Head): return 1283; + case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Foot): return 1288; + case RedCarpet::RedCarpet(): return 7880; + case RedConcrete::RedConcrete(): return 9452; + case RedConcretePowder::RedConcretePowder(): return 9468; + case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9432; + case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9431; + case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9430; + case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9433; + case RedMushroom::RedMushroom(): return 1426; + case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, true): return 4573; + case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, true): return 4589; + case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, true): return 4605; + case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, true): return 4621; + case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, false): return 4574; + case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, false): return 4590; + case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, false): return 4606; + case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, false): return 4622; + case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, true): return 4575; + case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, true): return 4591; + case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, true): return 4607; + case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, true): return 4623; + case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, false): return 4576; + case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, false): return 4592; + case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, false): return 4608; + case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, false): return 4624; + case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, true): return 4577; + case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, true): return 4593; + case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, true): return 4609; + case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, true): return 4625; + case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, false): return 4578; + case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, false): return 4594; + case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, false): return 4610; + case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, false): return 4626; + case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, true): return 4579; + case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, true): return 4595; + case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, true): return 4611; + case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, true): return 4627; + case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, false): return 4580; + case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, false): return 4596; + case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, false): return 4612; + case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, false): return 4628; + case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, true): return 4581; + case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, true): return 4597; + case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, true): return 4613; + case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, true): return 4629; + case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, false): return 4582; + case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, false): return 4598; + case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, false): return 4614; + case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, false): return 4630; + case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, true): return 4583; + case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, true): return 4599; + case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, true): return 4615; + case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, true): return 4631; + case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, false): return 4584; + case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, false): return 4600; + case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, false): return 4616; + case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, true): return 4569; + case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, true): return 4585; + case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, true): return 4601; + case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, true): return 4617; + case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, false): return 4570; + case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, false): return 4586; + case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, false): return 4602; + case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, false): return 4618; + case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, true): return 4571; + case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, true): return 4587; + case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, true): return 4603; + case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, true): return 4619; + case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, false): return 4572; + case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, false): return 4588; + case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, false): return 4604; + case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, false): return 4620; + case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false): return 4632; + case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Bottom): return 10852; + case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Top): return 10850; + case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Double): return 10854; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10596; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10598; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10600; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10602; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10604; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10606; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10608; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10610; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10612; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10614; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10616; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10618; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10620; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10622; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10624; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10626; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10628; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10550; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10552; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10554; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10556; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10558; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10560; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10562; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10564; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10566; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10568; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10570; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10572; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10574; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10576; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10578; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10580; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10582; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10584; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10586; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10588; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10590; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10592; + case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10594; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13589; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13601; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13613; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13625; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13637; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13649; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13661; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13673; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13685; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13697; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13709; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13721; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13733; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13745; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13757; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13769; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13781; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13462; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13470; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13474; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13482; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13486; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13494; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13498; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13506; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13510; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13518; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13522; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13530; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13534; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13542; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13546; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13554; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13558; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13566; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13570; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13578; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13582; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13590; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13594; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13602; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13606; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13614; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13618; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13626; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13630; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13638; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13642; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13650; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13654; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13662; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13666; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13674; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13678; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13686; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13690; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13698; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13702; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13710; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13714; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13722; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13726; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13734; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13738; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13746; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13750; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13758; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13762; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13770; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13774; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13782; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13463; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13475; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13487; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13499; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13511; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13523; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13535; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13547; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13559; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13571; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13583; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13595; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13607; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13619; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13631; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13643; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13655; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13667; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13679; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13691; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13703; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13715; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13727; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13739; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13751; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13763; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13775; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13464; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13468; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13476; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13480; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13488; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13492; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13500; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13504; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13512; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13516; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13524; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13528; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13536; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13540; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13548; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13552; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13560; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13564; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13572; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13576; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13584; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13588; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13596; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13600; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13608; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13612; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13620; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13624; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13632; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13636; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13644; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13648; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13656; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13660; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13668; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13672; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13680; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13684; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13692; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13696; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13704; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13708; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13716; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13720; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13728; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13732; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13740; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13744; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13752; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13756; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13764; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13768; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13776; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13780; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13469; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13481; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13493; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13505; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13517; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13529; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13541; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13553; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13565; + case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13577; + case RedNetherBricks::RedNetherBricks(): return 9255; + case RedSand::RedSand(): return 67; + case RedSandstone::RedSandstone(): return 8217; + case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Bottom): return 8399; + case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Top): return 8397; + case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Double): return 8401; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 8221; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 8223; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 8225; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 8227; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 8229; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 8231; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 8233; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 8235; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 8237; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 8239; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 8241; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 8243; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 8245; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 8247; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 8249; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 8251; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 8253; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 8255; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 8257; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 8259; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 8261; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 8263; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 8265; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 8267; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 8269; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 8271; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 8273; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 8275; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 8277; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 8279; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 8281; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 8283; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 8285; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 8287; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 8289; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 8291; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 8293; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 8295; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 8297; + case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 8299; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11549; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11561; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11573; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11585; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11597; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11609; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11621; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11633; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11645; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11657; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11669; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11681; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11693; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11705; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11717; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11729; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11741; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11753; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11765; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11777; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11789; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11801; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11813; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11825; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11837; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11518; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11526; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11530; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11538; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11542; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11550; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11554; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11562; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11566; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11574; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11578; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11586; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11590; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11598; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11602; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11610; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11614; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11622; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11626; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11634; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11638; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11646; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11650; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11658; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11662; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11670; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11674; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11682; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11686; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11694; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11698; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11706; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11710; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11718; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11722; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11730; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11734; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11742; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11746; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11754; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11758; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11766; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11770; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11778; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11782; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11790; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11794; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11802; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11806; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11814; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11818; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11826; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11830; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11838; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11519; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11531; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11543; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11555; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11567; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11579; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11591; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11603; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11615; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11627; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11639; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11651; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11663; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11675; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11687; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11699; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11711; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11723; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11735; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11747; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11759; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11771; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11783; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11795; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11807; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11819; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11831; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11520; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11524; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11532; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11536; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11544; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11548; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11556; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11560; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11568; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11572; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11580; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11584; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11592; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11596; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11604; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11608; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11616; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11620; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11628; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11632; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11640; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11644; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11652; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11656; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11664; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11668; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11676; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11680; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11688; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11692; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11700; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11704; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11712; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11716; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11724; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11728; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11736; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11740; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11748; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11752; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11760; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11764; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11772; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11776; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11784; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11788; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11796; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11800; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11808; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11812; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11820; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11824; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11832; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11836; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11525; + case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11537; + case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9365; + case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9362; + case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9366; + case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9363; + case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9367; + case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9364; + case RedStainedGlass::RedStainedGlass(): return 4109; + case RedStainedGlassPane::RedStainedGlassPane(false, true, false, false): return 7334; + case RedStainedGlassPane::RedStainedGlassPane(false, false, true, false): return 7338; + case RedStainedGlassPane::RedStainedGlassPane(true, true, true, true): return 7313; + case RedStainedGlassPane::RedStainedGlassPane(true, true, false, true): return 7317; + case RedStainedGlassPane::RedStainedGlassPane(true, false, true, true): return 7321; + case RedStainedGlassPane::RedStainedGlassPane(true, false, false, true): return 7325; + case RedStainedGlassPane::RedStainedGlassPane(false, true, true, true): return 7329; + case RedStainedGlassPane::RedStainedGlassPane(false, true, false, true): return 7333; + case RedStainedGlassPane::RedStainedGlassPane(false, false, true, true): return 7337; + case RedStainedGlassPane::RedStainedGlassPane(false, false, false, true): return 7341; + case RedStainedGlassPane::RedStainedGlassPane(true, true, true, false): return 7314; + case RedStainedGlassPane::RedStainedGlassPane(true, true, false, false): return 7318; + case RedStainedGlassPane::RedStainedGlassPane(true, false, true, false): return 7322; + case RedStainedGlassPane::RedStainedGlassPane(true, false, false, false): return 7326; + case RedStainedGlassPane::RedStainedGlassPane(false, true, true, false): return 7330; + case RedStainedGlassPane::RedStainedGlassPane(false, false, false, false): return 7342; + case RedTerracotta::RedTerracotta(): return 6861; + case RedTulip::RedTulip(): return 1417; + case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XM): return 8211; + case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8210; + case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8209; + case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XP): return 8212; + case RedWool::RedWool(): return 1398; + case RedstoneBlock::RedstoneBlock(): return 6726; + case RedstoneLamp::RedstoneLamp(true): return 5156; + case RedstoneLamp::RedstoneLamp(false): return 5157; + case RedstoneOre::RedstoneOre(true): return 3885; + case RedstoneOre::RedstoneOre(false): return 3886; + case RedstoneTorch::RedstoneTorch(true): return 3887; + case RedstoneTorch::RedstoneTorch(false): return 3888; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, false): return 3890; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, true): return 3891; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, false): return 3892; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, true): return 3893; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, false): return 3894; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, true): return 3895; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, true): return 3889; + case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, false): return 3896; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3061; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 3065; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3069; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 3073; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 3077; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 3081; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3085; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 3089; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3093; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3097; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 3101; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3105; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 3109; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 3113; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 3117; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3121; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 3125; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3129; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3133; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 3137; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3141; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 3145; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 3149; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 3153; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3157; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 3161; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3165; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3169; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 3173; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3177; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 3181; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 3185; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 3189; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3193; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 3197; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3201; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3205; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 3209; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3213; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 3217; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 3221; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 3225; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3229; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 3233; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3237; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3241; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 3245; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3249; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 3253; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 3257; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 3261; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3265; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 3269; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3273; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3277; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 3281; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3285; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 3289; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 3293; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 3297; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3301; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 3305; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3309; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3313; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 3317; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3321; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 3325; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 3329; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 3333; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3337; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 3341; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3345; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3349; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 3353; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2058; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2062; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2066; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2070; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2074; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2078; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2082; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2086; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2090; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2094; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2098; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2102; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2106; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2110; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2114; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2118; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2122; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2126; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2130; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2134; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2138; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2142; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2146; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2150; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2154; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2158; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2162; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2166; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2170; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2174; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2178; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2182; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2186; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2190; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2194; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2198; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2202; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2206; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2210; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2214; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2218; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2222; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2226; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2230; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2234; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2238; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2242; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2246; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2250; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2254; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2258; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2262; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2266; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2270; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2274; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2278; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2282; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2286; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2290; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2294; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2298; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2302; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2306; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2310; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2314; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2318; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2322; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2326; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2330; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2334; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2338; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2342; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2346; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2350; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2354; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2358; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2362; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2366; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2370; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2374; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2378; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2382; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2386; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2390; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2394; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2398; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2402; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2406; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2410; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2414; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2418; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2422; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2426; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2430; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2434; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2438; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2442; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2446; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2450; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2454; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2458; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2462; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2466; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2470; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2474; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2478; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2482; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2486; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2490; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2494; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2498; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2502; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2506; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2510; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2514; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2518; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2522; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2526; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2530; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2534; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2538; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2542; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2546; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2550; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2554; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2558; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2562; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2566; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2570; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2574; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2578; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2582; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2586; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2590; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2594; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2598; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2602; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2606; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2610; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2614; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2618; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2622; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2626; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2630; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2634; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2638; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2642; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2646; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2650; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2654; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2658; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2662; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2666; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2670; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2674; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2678; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2682; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2686; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2690; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2694; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2698; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2702; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2706; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2710; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2714; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2718; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2722; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2726; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2730; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2734; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2738; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2742; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2746; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2750; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2754; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2758; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2762; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2766; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2770; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2774; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2778; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2782; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2786; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2790; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2794; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2798; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2802; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2806; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2810; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2814; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2818; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2822; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2826; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2830; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2834; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2838; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2842; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2846; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2850; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2854; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2858; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2862; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2866; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2870; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2874; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2878; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2882; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2886; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2890; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2894; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2898; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2902; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2906; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2910; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2914; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2918; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2922; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2926; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2930; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2934; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2938; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2942; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2946; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2950; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2954; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2958; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2962; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2966; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2970; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2974; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2978; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2982; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2986; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2990; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2994; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2998; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 3002; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3006; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 3010; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 3014; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 3018; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3022; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 3026; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3030; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3034; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 3038; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3042; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 3046; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 3050; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 3054; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3058; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 3062; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3066; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3070; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 3074; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3078; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 3082; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 3086; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 3090; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3094; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 3098; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3102; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3106; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 3110; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3114; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 3118; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 3122; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 3126; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3130; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 3134; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3138; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3142; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 3146; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3150; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 3154; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 3158; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 3162; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3166; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 3170; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3174; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3178; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 3182; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3186; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 3190; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 3194; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 3198; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3202; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 3206; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3210; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3214; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 3218; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3222; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 3226; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 3230; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 3234; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3238; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 3242; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3246; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3250; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 3254; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3258; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 3262; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 3266; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 3270; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3274; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 3278; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3282; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3286; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 3290; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3294; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 3298; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 3302; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 3306; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3310; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 3314; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3318; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3322; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 3326; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3330; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 3334; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 3338; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 3342; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3346; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 3350; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2059; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2063; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2067; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2071; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2075; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2079; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2083; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2087; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2091; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2095; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2099; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2103; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2107; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2111; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2115; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2119; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2123; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2127; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2131; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2135; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2139; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2143; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2147; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2151; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2155; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2159; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2163; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2167; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2171; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2175; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2179; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2183; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2187; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2191; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2195; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2199; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2203; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2207; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2211; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2215; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2219; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2223; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2227; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2231; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2235; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2239; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2243; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2247; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2251; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2255; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2259; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2263; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2267; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2271; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2275; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2279; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2283; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2287; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2291; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2295; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2299; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2303; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2307; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2311; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2315; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2319; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2323; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2327; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2331; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2335; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2339; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2343; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2347; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2351; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2355; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2359; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2363; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2367; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2371; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2375; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2379; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2383; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2387; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2391; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2395; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2399; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2403; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2407; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2411; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2415; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2419; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2423; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2427; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2431; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2435; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2439; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2443; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2447; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2451; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2455; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2459; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2463; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2467; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2471; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2475; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2479; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2483; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2487; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2491; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2495; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2499; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2503; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2507; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2511; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2515; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2519; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2523; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2527; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2531; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2535; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2539; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2543; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2547; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2551; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2555; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2559; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2563; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2567; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2571; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2575; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2579; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2583; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2587; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2591; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2595; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2599; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2603; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2607; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2611; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2615; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2619; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2623; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2627; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2631; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2635; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2639; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2643; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2647; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2651; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2655; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2659; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2663; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2667; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2671; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2675; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2679; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2683; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2687; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2691; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2695; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2699; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2703; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2707; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2711; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2715; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2719; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2723; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2727; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2731; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2735; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2739; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2743; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2747; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2751; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2755; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2759; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2763; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2767; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2771; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2775; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2779; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2783; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2787; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2791; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2795; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2799; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2803; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2807; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2811; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2815; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2819; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2823; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2827; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2831; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2835; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2839; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2843; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2847; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2851; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2855; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2859; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2863; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2867; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2871; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2875; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2879; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2883; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2887; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2891; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2895; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2899; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2903; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2907; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2911; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2915; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2919; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2923; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2927; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2931; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2935; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2939; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2943; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2947; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2951; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2955; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2959; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2963; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2967; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2971; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2975; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2979; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2983; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2987; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2991; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2995; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2999; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3003; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3007; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 3011; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3015; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 3019; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 3023; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 3027; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3031; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 3035; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3039; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3043; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 3047; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3051; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 3055; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 3059; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 3063; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3067; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 3071; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3075; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3079; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 3083; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3087; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 3091; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 3095; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 3099; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3103; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 3107; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3111; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3115; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 3119; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3123; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 3127; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 3131; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 3135; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3139; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 3143; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3147; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3151; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 3155; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3159; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 3163; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 3167; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 3171; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3175; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 3179; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3183; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3187; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 3191; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3195; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 3199; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 3203; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 3207; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3211; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 3215; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3219; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3223; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 3227; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3231; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 3235; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 3239; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 3243; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3247; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 3251; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3255; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3259; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 3263; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3267; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 3271; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 3275; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 3279; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3283; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 3287; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3291; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3295; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 3299; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3303; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 3307; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 3311; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 3315; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3319; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 3323; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3327; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3331; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 3335; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3339; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 3343; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 3347; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 3351; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2060; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2064; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2068; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2072; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2076; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2080; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2084; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2088; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2092; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2096; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2100; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2104; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2108; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2112; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2116; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2120; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2124; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2128; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2132; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2136; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2140; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2144; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2148; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2152; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2156; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2160; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2164; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2168; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2172; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2176; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2180; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2184; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2188; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2192; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2196; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2200; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2204; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2208; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2212; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2216; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2220; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2224; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2228; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2232; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2236; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2240; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2244; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2248; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2252; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2256; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2260; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2264; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2268; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2272; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2276; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2280; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2284; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2288; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2292; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2296; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2300; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2304; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2308; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2312; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2316; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2320; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2324; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2328; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2332; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2336; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2340; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2344; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2348; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2352; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2356; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2360; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2364; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2368; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2372; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2376; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2380; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2384; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2388; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2392; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2396; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2400; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2404; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2408; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2412; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2416; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2420; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2424; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2428; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2432; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2436; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2440; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2444; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2448; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2452; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2456; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2460; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2464; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2468; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2472; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2476; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2480; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2484; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2488; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2492; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2496; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2500; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2504; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2508; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2512; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2516; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2520; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2524; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2528; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2532; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2536; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2540; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2544; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2548; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2552; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2556; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2560; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2564; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2568; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2572; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2576; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2580; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2584; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2588; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2592; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2596; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2600; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2604; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2608; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2612; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2616; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2620; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2624; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2628; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2632; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2636; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2640; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2644; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2648; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2652; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2656; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2660; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2664; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2668; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2672; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2676; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2680; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2684; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2688; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2692; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2696; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2700; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2704; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2708; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2712; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2716; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2720; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2724; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2728; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2732; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2736; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2740; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2744; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2748; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2752; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2756; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2760; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2764; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2768; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2772; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2776; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2780; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2784; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2788; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2792; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2796; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2800; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2804; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2808; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2812; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2816; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2820; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2824; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2828; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2832; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2836; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2840; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2844; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2848; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2852; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2856; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2860; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2864; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2868; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2872; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2876; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2880; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2884; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2888; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2892; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2896; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2900; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2904; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2908; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2912; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2916; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2920; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2924; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2928; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2932; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2936; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2940; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2944; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2948; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2952; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2956; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2960; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2964; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2968; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2972; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2976; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2980; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2984; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2988; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2992; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2996; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 3000; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3004; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 3008; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3012; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3016; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 3020; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3024; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 3028; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 3032; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 3036; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3040; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 3044; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3048; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3052; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 3056; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3060; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 3064; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 3068; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 3072; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3076; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 3080; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3084; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3088; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 3092; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3096; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 3100; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 3104; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 3108; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3112; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 3116; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3120; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3124; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 3128; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3132; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 3136; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 3140; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 3144; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3148; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 3152; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3156; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3160; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 3164; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3168; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 3172; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 3176; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 3180; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3184; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 3188; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3192; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3196; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 3200; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3204; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 3208; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 3212; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 3216; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3220; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 3224; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3228; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3232; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 3236; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3240; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 3244; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 3248; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 3252; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3256; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 3260; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3264; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3268; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 3272; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3276; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 3280; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 3284; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 3288; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3292; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 3296; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3300; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3304; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 3308; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3312; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 3316; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 3320; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 3324; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3328; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 3332; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3336; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3340; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 3344; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3348; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 3352; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2061; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2065; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2069; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2073; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2077; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2081; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2085; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2089; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2093; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2097; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2101; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2105; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2109; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2113; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2117; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2121; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2125; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2129; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2133; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2137; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2141; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2145; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2149; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2153; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2157; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2161; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2165; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2169; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2173; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2177; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2181; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2185; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2189; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2193; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2197; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2201; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2205; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2209; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2213; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2217; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2221; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2225; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2229; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2233; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2237; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2241; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2245; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2249; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2253; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2257; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2261; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2265; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2269; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2273; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2277; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2281; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2285; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2289; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2293; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2297; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2301; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2305; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2309; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2313; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2317; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2321; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2325; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2329; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2333; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2337; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2341; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2345; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2349; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2353; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2357; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2361; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2365; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2369; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2373; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2377; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2381; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2385; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2389; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2393; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2397; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2401; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2405; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2409; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2413; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2417; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2421; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2425; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2429; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2433; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2437; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2441; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2445; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2449; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2453; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2457; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2461; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2465; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2469; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2473; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2477; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2481; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2485; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2489; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2493; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2497; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2501; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2505; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2509; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2513; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2517; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2521; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2525; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2529; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2533; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2537; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2541; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2545; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2549; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2553; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2557; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2561; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2565; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2569; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2573; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2577; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2581; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2585; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2589; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2593; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2597; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2601; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2605; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2609; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2613; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2617; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2621; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2625; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2629; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2633; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2637; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2641; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2645; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2649; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2653; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2657; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2661; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2665; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2669; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2673; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2677; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2681; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2685; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2689; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2693; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2697; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2701; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2705; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2709; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2713; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2717; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2721; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2725; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2729; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2733; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2737; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2741; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2745; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2749; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2753; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2757; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2761; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2765; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2769; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2773; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2777; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2781; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2785; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2789; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2793; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2797; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2801; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2805; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2809; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2813; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2817; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2821; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2825; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2829; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2833; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2837; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2841; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2845; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2849; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2853; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2857; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2861; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2865; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2869; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2873; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2877; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2881; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2885; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2889; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2893; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2897; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2901; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2905; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2909; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2913; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2917; + case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2921; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2925; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2929; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2933; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2937; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2941; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2945; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2949; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2953; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2957; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2961; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2965; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2969; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2973; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2977; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2981; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2985; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2989; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2993; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2997; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 3001; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 3005; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 3009; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3013; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 3017; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3021; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3025; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 3029; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3033; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 3037; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 3041; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 3045; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3049; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 3053; + case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3057; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, true): return 4051; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, true): return 4059; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, true): return 4067; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, true): return 4075; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, true): return 4083; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, true): return 4091; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, false): return 4036; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, false): return 4044; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, false): return 4052; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, false): return 4060; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, false): return 4068; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, false): return 4076; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, false): return 4084; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, false): return 4092; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, true): return 4037; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, true): return 4045; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, true): return 4053; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, true): return 4061; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, true): return 4069; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, true): return 4077; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, true): return 4085; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, true): return 4093; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, false): return 4038; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, false): return 4046; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, false): return 4054; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, false): return 4062; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, false): return 4070; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, false): return 4078; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, false): return 4086; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, true): return 4031; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, true): return 4039; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, true): return 4047; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, true): return 4055; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, true): return 4063; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, true): return 4071; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, true): return 4079; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, true): return 4087; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, false): return 4032; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, false): return 4040; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, false): return 4048; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, false): return 4056; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, false): return 4064; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, false): return 4072; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, false): return 4080; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, false): return 4088; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, true): return 4033; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, true): return 4041; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, true): return 4049; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, true): return 4057; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, true): return 4065; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, true): return 4073; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, true): return 4081; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, true): return 4089; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, false): return 4034; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, false): return 4042; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, false): return 4050; + case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, false): return 4058; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, false): return 4066; + case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, false): return 4074; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, false): return 4082; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, false): return 4090; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, true): return 4035; + case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, true): return 4043; + case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, false): return 4094; + case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 9225; + case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 9227; + case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 9229; + case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 9231; + case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 9233; + case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 9235; + case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 9226; + case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 9228; + case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 9230; + case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 9232; + case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 9234; + case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 9236; + case RespawnAnchor::RespawnAnchor(0): return 15829; + case RespawnAnchor::RespawnAnchor(4): return 15833; + case RespawnAnchor::RespawnAnchor(1): return 15830; + case RespawnAnchor::RespawnAnchor(2): return 15831; + case RespawnAnchor::RespawnAnchor(3): return 15832; + case RoseBush::RoseBush(RoseBush::Half::Upper): return 7889; + case RoseBush::RoseBush(RoseBush::Half::Lower): return 7890; + case Sand::Sand(): return 66; + case Sandstone::Sandstone(): return 246; + case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Double): return 8353; + case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Bottom): return 8351; + case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Top): return 8349; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5203; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5205; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5207; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5209; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5211; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5213; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5215; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5217; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5219; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5221; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5223; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5225; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5227; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5229; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5231; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5233; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5171; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5235; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5173; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5237; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5175; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5239; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5177; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5241; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5179; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5243; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5181; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5245; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5183; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5247; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5185; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5249; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5187; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5189; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5191; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5193; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5195; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5197; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5199; + case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5201; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 14100; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 14104; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 13793; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 13805; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 13817; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 13829; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 13841; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 13853; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 13865; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 13877; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 13889; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 13901; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 13913; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 13925; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 13937; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 13949; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 13961; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 13973; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 13985; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 13997; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 14009; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 14021; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 14033; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 14045; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 14057; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 14069; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 14081; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 14093; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 14105; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None): return 13786; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 13794; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 13798; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 13806; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 13810; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 13818; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None): return 13822; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 13830; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 13834; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 13842; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 13846; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 13854; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::None): return 13858; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 13866; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 13870; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 13878; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 13882; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 13890; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None): return 13894; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 13902; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 13906; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 13914; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 13918; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 13926; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None): return 13930; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 13938; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 13942; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 13950; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 13954; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 13962; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::None): return 13966; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 13974; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 13978; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 13986; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 13990; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 13998; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None): return 14002; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 14010; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 14014; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 14022; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 14026; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 14034; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None): return 14038; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 14046; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 14050; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 14058; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 14062; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 14070; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::None): return 14074; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 14082; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 14086; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 14094; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 14098; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 14106; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 13787; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 13799; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 13811; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 13823; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 13835; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 13847; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 13859; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 13871; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 13883; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 13895; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 13907; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 13919; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 13931; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 13943; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 13955; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 13967; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 13979; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 13991; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 14003; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 14015; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 14027; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 14039; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 14051; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 14063; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 14075; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 14087; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 14099; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 13788; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None): return 13792; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 13800; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 13804; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 13812; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 13816; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 13824; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None): return 13828; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 13836; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 13840; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 13848; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 13852; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 13860; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::None): return 13864; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 13872; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 13876; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 13884; + case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 13888; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 13896; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None): return 13900; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 13908; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 13912; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 13920; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 13924; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 13932; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None): return 13936; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 13944; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 13948; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 13956; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 13960; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 13968; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::None): return 13972; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 13980; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 13984; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 13992; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 13996; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 14004; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None): return 14008; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 14016; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 14020; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 14028; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 14032; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 14040; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None): return 14044; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 14052; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 14056; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 14064; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 14068; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 14076; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::None): return 14080; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 14088; + case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 14092; + case Scaffolding::Scaffolding(false, 6): return 14784; + case Scaffolding::Scaffolding(true, 3): return 14762; + case Scaffolding::Scaffolding(true, 7): return 14770; + case Scaffolding::Scaffolding(false, 3): return 14778; + case Scaffolding::Scaffolding(true, 0): return 14756; + case Scaffolding::Scaffolding(true, 4): return 14764; + case Scaffolding::Scaffolding(false, 0): return 14772; + case Scaffolding::Scaffolding(false, 4): return 14780; + case Scaffolding::Scaffolding(true, 1): return 14758; + case Scaffolding::Scaffolding(true, 5): return 14766; + case Scaffolding::Scaffolding(false, 1): return 14774; + case Scaffolding::Scaffolding(false, 5): return 14782; + case Scaffolding::Scaffolding(true, 2): return 14760; + case Scaffolding::Scaffolding(true, 6): return 14768; + case Scaffolding::Scaffolding(false, 2): return 14776; + case Scaffolding::Scaffolding(false, 7): return 14786; + case SeaLantern::SeaLantern(): return 7862; + case SeaPickle::SeaPickle(1): return 9641; + case SeaPickle::SeaPickle(3): return 9645; + case SeaPickle::SeaPickle(2): return 9643; + case SeaPickle::SeaPickle(4): return 9647; + case Seagrass::Seagrass(): return 1345; + case Shroomlight::Shroomlight(): return 14989; + case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9277; + case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9274; + case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9275; + case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9272; + case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9276; + case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9273; + case SkeletonSkull::SkeletonSkull(6): return 6496; + case SkeletonSkull::SkeletonSkull(7): return 6497; + case SkeletonSkull::SkeletonSkull(8): return 6498; + case SkeletonSkull::SkeletonSkull(9): return 6499; + case SkeletonSkull::SkeletonSkull(10): return 6500; + case SkeletonSkull::SkeletonSkull(11): return 6501; + case SkeletonSkull::SkeletonSkull(12): return 6502; + case SkeletonSkull::SkeletonSkull(13): return 6503; + case SkeletonSkull::SkeletonSkull(14): return 6504; + case SkeletonSkull::SkeletonSkull(0): return 6490; + case SkeletonSkull::SkeletonSkull(1): return 6491; + case SkeletonSkull::SkeletonSkull(2): return 6492; + case SkeletonSkull::SkeletonSkull(3): return 6493; + case SkeletonSkull::SkeletonSkull(4): return 6494; + case SkeletonSkull::SkeletonSkull(5): return 6495; + case SkeletonSkull::SkeletonSkull(15): return 6505; + case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XM): return 6508; + case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM): return 6506; + case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP): return 6507; + case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XP): return 6509; + case SlimeBlock::SlimeBlock(): return 7535; + case SmithingTable::SmithingTable(): return 14849; + case Smoker::Smoker(eBlockFace::BLOCK_FACE_XM, true): return 14807; + case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZM, false): return 14804; + case Smoker::Smoker(eBlockFace::BLOCK_FACE_XM, false): return 14808; + case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZP, true): return 14805; + case Smoker::Smoker(eBlockFace::BLOCK_FACE_XP, true): return 14809; + case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZP, false): return 14806; + case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZM, true): return 14803; + case Smoker::Smoker(eBlockFace::BLOCK_FACE_XP, false): return 14810; + case SmoothQuartz::SmoothQuartz(): return 8416; + case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Top): return 10832; + case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Double): return 10836; + case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Bottom): return 10834; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 10342; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 10344; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 10346; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 10348; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 10350; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 10352; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 10354; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 10356; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 10358; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 10360; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 10362; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 10364; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 10366; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 10368; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 10370; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 10372; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 10374; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 10376; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 10378; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 10380; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 10382; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 10384; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 10386; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 10388; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 10310; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 10312; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 10314; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 10316; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 10318; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 10320; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 10322; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 10324; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 10326; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 10328; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 10330; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 10332; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 10334; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 10336; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 10338; + case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 10340; + case SmoothRedSandstone::SmoothRedSandstone(): return 8417; + case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Top): return 10796; + case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Double): return 10800; + case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Bottom): return 10798; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9750; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9752; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9754; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9756; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9758; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9760; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9762; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9764; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9766; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9768; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9770; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9772; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9774; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9776; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9778; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9780; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9782; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9784; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9786; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9788; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9790; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9792; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9794; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9796; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9798; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9800; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9802; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9804; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9806; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9808; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9810; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9812; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9814; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9816; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9818; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9820; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9822; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9824; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9826; + case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9828; + case SmoothSandstone::SmoothSandstone(): return 8415; + case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Bottom): return 10828; + case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Top): return 10826; + case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Double): return 10830; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 10230; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 10232; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 10234; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 10236; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 10238; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 10240; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 10242; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 10244; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 10246; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 10248; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 10250; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 10252; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 10254; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 10256; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 10258; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 10260; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 10262; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 10264; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 10266; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 10268; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 10270; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 10272; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 10274; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 10276; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 10278; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 10280; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 10282; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 10284; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 10286; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 10288; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 10290; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 10292; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 10294; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 10296; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 10298; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 10300; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 10302; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 10304; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 10306; + case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 10308; + case SmoothStone::SmoothStone(): return 8414; + case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Top): return 8343; + case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Double): return 8347; + case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Bottom): return 8345; + case Snow::Snow(5): return 3925; + case Snow::Snow(6): return 3926; + case Snow::Snow(7): return 3927; + case Snow::Snow(1): return 3921; + case Snow::Snow(2): return 3922; + case Snow::Snow(3): return 3923; + case Snow::Snow(4): return 3924; + case Snow::Snow(8): return 3928; + case SnowBlock::SnowBlock(): return 3930; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XM, true, true): return 14939; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XP, true, true): return 14947; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZM, true, false): return 14925; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZP, true, false): return 14933; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XM, true, false): return 14941; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XP, true, false): return 14949; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZM, false, true): return 14927; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZP, false, true): return 14935; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XM, false, true): return 14943; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XP, false, true): return 14951; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZM, false, false): return 14929; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZP, false, false): return 14937; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XM, false, false): return 14945; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZM, true, true): return 14923; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZP, true, true): return 14931; + case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XP, false, false): return 14953; + case SoulFire::SoulFire(): return 1952; + case SoulLantern::SoulLantern(true): return 14888; + case SoulLantern::SoulLantern(false): return 14889; + case SoulSand::SoulSand(): return 4000; + case SoulSoil::SoulSoil(): return 4001; + case SoulTorch::SoulTorch(): return 4008; + case SoulWallTorch::SoulWallTorch(eBlockFace::BLOCK_FACE_ZM): return 4009; + case SoulWallTorch::SoulWallTorch(eBlockFace::BLOCK_FACE_XM): return 4011; + case SoulWallTorch::SoulWallTorch(eBlockFace::BLOCK_FACE_ZP): return 4010; + case SoulWallTorch::SoulWallTorch(eBlockFace::BLOCK_FACE_XP): return 4012; + case Spawner::Spawner(): return 1953; + case Sponge::Sponge(): return 229; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 6373; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 6377; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 6381; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 6385; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 6389; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 6393; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 6370; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 6374; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 6378; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 6382; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 6386; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 6390; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 6371; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 6375; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 6379; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 6383; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 6387; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 6391; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 6372; + case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 6376; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 6380; + case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 6384; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 6388; + case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 6392; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8766; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8798; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8767; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8799; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8768; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8800; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8769; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8738; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8770; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8739; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8771; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8740; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8772; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8741; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8773; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8742; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8774; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8743; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8775; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8744; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8776; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8745; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8777; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8746; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8778; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8747; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8779; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8748; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8780; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8749; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8781; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8750; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8782; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8751; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8783; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8752; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8784; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8753; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8785; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8754; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8786; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8755; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8787; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8756; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8788; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8757; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8789; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8758; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8790; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8759; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8791; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8760; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8792; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8761; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8793; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8762; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8794; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8763; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8795; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8764; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8796; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8765; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8797; + case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8801; + case SpruceFence::SpruceFence(true, true, false, true): return 8584; + case SpruceFence::SpruceFence(true, false, false, true): return 8592; + case SpruceFence::SpruceFence(false, true, false, true): return 8600; + case SpruceFence::SpruceFence(false, false, false, true): return 8608; + case SpruceFence::SpruceFence(true, true, false, false): return 8585; + case SpruceFence::SpruceFence(true, false, false, false): return 8593; + case SpruceFence::SpruceFence(false, true, false, false): return 8601; + case SpruceFence::SpruceFence(true, true, true, true): return 8580; + case SpruceFence::SpruceFence(true, false, true, true): return 8588; + case SpruceFence::SpruceFence(false, true, true, true): return 8596; + case SpruceFence::SpruceFence(false, false, true, true): return 8604; + case SpruceFence::SpruceFence(true, true, true, false): return 8581; + case SpruceFence::SpruceFence(true, false, true, false): return 8589; + case SpruceFence::SpruceFence(false, true, true, false): return 8597; + case SpruceFence::SpruceFence(false, false, true, false): return 8605; + case SpruceFence::SpruceFence(false, false, false, false): return 8609; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 8429; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 8437; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 8445; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 8422; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 8430; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 8438; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 8446; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 8423; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 8431; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 8439; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 8447; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 8424; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 8432; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 8440; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 8448; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 8425; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 8433; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 8441; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 8418; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 8426; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 8434; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 8442; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 8419; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 8427; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 8435; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 8443; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 8420; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 8428; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 8436; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 8444; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 8421; + case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 8449; + case SpruceLeaves::SpruceLeaves(5, false): return 168; + case SpruceLeaves::SpruceLeaves(2, true): return 161; + case SpruceLeaves::SpruceLeaves(6, true): return 169; + case SpruceLeaves::SpruceLeaves(2, false): return 162; + case SpruceLeaves::SpruceLeaves(6, false): return 170; + case SpruceLeaves::SpruceLeaves(3, true): return 163; + case SpruceLeaves::SpruceLeaves(7, true): return 171; + case SpruceLeaves::SpruceLeaves(3, false): return 164; + case SpruceLeaves::SpruceLeaves(7, false): return 172; + case SpruceLeaves::SpruceLeaves(4, true): return 165; + case SpruceLeaves::SpruceLeaves(4, false): return 166; + case SpruceLeaves::SpruceLeaves(1, true): return 159; + case SpruceLeaves::SpruceLeaves(5, true): return 167; + case SpruceLeaves::SpruceLeaves(1, false): return 160; + case SpruceLog::SpruceLog(SpruceLog::Axis::X): return 76; + case SpruceLog::SpruceLog(SpruceLog::Axis::Y): return 77; + case SpruceLog::SpruceLog(SpruceLog::Axis::Z): return 78; + case SprucePlanks::SprucePlanks(): return 16; + case SprucePressurePlate::SprucePressurePlate(true): return 3875; + case SprucePressurePlate::SprucePressurePlate(false): return 3876; + case SpruceSapling::SpruceSapling(0): return 23; + case SpruceSapling::SpruceSapling(1): return 24; + case SpruceSign::SpruceSign(0): return 3414; + case SpruceSign::SpruceSign(1): return 3416; + case SpruceSign::SpruceSign(2): return 3418; + case SpruceSign::SpruceSign(3): return 3420; + case SpruceSign::SpruceSign(4): return 3422; + case SpruceSign::SpruceSign(5): return 3424; + case SpruceSign::SpruceSign(6): return 3426; + case SpruceSign::SpruceSign(7): return 3428; + case SpruceSign::SpruceSign(8): return 3430; + case SpruceSign::SpruceSign(9): return 3432; + case SpruceSign::SpruceSign(10): return 3434; + case SpruceSign::SpruceSign(11): return 3436; + case SpruceSign::SpruceSign(12): return 3438; + case SpruceSign::SpruceSign(13): return 3440; + case SpruceSign::SpruceSign(14): return 3442; + case SpruceSign::SpruceSign(15): return 3444; + case SpruceSlab::SpruceSlab(SpruceSlab::Type::Double): return 8311; + case SpruceSlab::SpruceSlab(SpruceSlab::Type::Bottom): return 8309; + case SpruceSlab::SpruceSlab(SpruceSlab::Type::Top): return 8307; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5457; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5459; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5461; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5463; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5465; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5467; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5405; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5469; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5407; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5471; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5409; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5473; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5411; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5475; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5413; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5477; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5415; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5479; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5417; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5481; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5419; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5483; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5421; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5423; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5425; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5427; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5429; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5431; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5433; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5435; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5437; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5439; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5441; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5443; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5445; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5447; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5449; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5451; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5453; + case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5455; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, true): return 4180; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, true): return 4196; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, true): return 4212; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, true): return 4228; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, false): return 4182; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, false): return 4198; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, false): return 4214; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, false): return 4230; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, true): return 4184; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, true): return 4200; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, true): return 4216; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, true): return 4232; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, false): return 4186; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, false): return 4202; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, false): return 4218; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, false): return 4234; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, true): return 4188; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, true): return 4204; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, true): return 4220; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, true): return 4236; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, false): return 4190; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, false): return 4206; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, false): return 4222; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, true): return 4176; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, true): return 4192; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, true): return 4208; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, true): return 4224; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, false): return 4178; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, false): return 4194; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, false): return 4210; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, false): return 4226; + case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, false): return 4238; + case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_ZM): return 3744; + case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_ZP): return 3746; + case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_XM): return 3748; + case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_XP): return 3750; + case SpruceWood::SpruceWood(SpruceWood::Axis::X): return 112; + case SpruceWood::SpruceWood(SpruceWood::Axis::Y): return 113; + case SpruceWood::SpruceWood(SpruceWood::Axis::Z): return 114; + case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XM): return 1332; + case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XP): return 1336; + case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YM): return 1340; + case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZM): return 1329; + case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YP): return 1333; + case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZP): return 1337; + case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XP): return 1330; + case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YM): return 1334; + case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XM): return 1338; + case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZP): return 1331; + case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZM): return 1335; + case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YP): return 1339; + case Stone::Stone(): return 1; + case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Bottom): return 8381; + case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Top): return 8379; + case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Double): return 8383; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4949; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4951; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4953; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4955; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4957; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4959; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4961; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4963; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4965; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4967; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4969; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4971; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4973; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4975; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4977; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4979; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4981; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4983; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4985; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4987; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4989; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4991; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4993; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4995; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4933; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4997; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4935; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4999; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4937; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 5001; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4939; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 5003; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4941; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 5005; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4943; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 5007; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4945; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 5009; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4947; + case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 5011; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12575; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12587; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12599; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12611; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12623; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12635; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12647; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12659; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12671; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12683; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12695; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12707; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12719; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12731; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12743; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12755; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12767; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12779; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12791; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12803; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12492; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12496; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12504; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12508; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12516; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12520; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12528; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12532; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12540; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12544; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12552; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12556; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12564; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12568; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12576; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12580; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12588; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12592; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12600; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12604; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12612; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12616; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12624; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12628; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12636; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12640; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12648; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12652; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12660; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12664; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12672; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12676; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12684; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12688; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12696; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12700; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12708; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12712; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12720; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12724; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12732; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12736; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12744; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12748; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12756; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12760; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12768; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12772; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12780; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12784; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12792; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12796; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12804; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12808; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12497; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12509; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12521; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12533; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12545; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12557; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12569; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12581; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12593; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12605; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12617; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12629; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12641; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12653; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12665; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12677; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12689; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12701; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12713; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12725; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12737; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12749; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12761; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12773; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12785; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12797; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12809; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12490; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12498; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12502; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12510; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12514; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12522; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12526; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12534; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12538; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12546; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12550; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12558; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12562; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12570; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12574; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12582; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12586; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12594; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12598; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12606; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12610; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12618; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12622; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12630; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12634; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12642; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12646; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12654; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12658; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12666; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12670; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12678; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12682; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12690; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12694; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12702; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12706; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12714; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12718; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12726; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12730; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12738; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12742; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12750; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12754; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12762; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12766; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12774; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12778; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12786; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12790; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12798; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12802; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12810; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12491; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12503; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12515; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12527; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12539; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12551; + case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12563; + case StoneBricks::StoneBricks(): return 4495; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 3917; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 3919; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 3898; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 3900; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 3902; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 3904; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 3906; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 3908; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 3910; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 3912; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 3914; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 3916; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 3918; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 3920; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 3897; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 3899; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 3901; + case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 3903; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 3905; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 3907; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 3909; + case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 3911; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 3913; + case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 3915; + case StonePressurePlate::StonePressurePlate(true): return 3807; + case StonePressurePlate::StonePressurePlate(false): return 3808; + case StoneSlab::StoneSlab(StoneSlab::Type::Bottom): return 8339; + case StoneSlab::StoneSlab(StoneSlab::Type::Top): return 8337; + case StoneSlab::StoneSlab(StoneSlab::Type::Double): return 8341; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 10214; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 10216; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 10218; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 10220; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 10222; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 10224; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 10226; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 10228; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 10150; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 10152; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 10154; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 10156; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 10158; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 10160; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 10162; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 10164; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 10166; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 10168; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 10170; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 10172; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 10174; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 10176; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 10178; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 10180; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 10182; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 10184; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 10186; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 10188; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 10190; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 10192; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 10194; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 10196; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 10198; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 10200; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 10202; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 10204; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 10206; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 10208; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 10210; + case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 10212; + case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_ZM): return 14850; + case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_XM): return 14852; + case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_ZP): return 14851; + case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_XP): return 14853; + case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::X): return 100; + case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Y): return 101; + case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Z): return 102; + case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Z): return 141; + case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Y): return 140; + case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::X): return 139; + case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::X): return 94; + case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Y): return 95; + case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Z): return 96; + case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Z): return 135; + case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Y): return 134; + case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::X): return 133; + case StrippedCrimsonHyphae::StrippedCrimsonHyphae(StrippedCrimsonHyphae::Axis::Y): return 14985; + case StrippedCrimsonHyphae::StrippedCrimsonHyphae(StrippedCrimsonHyphae::Axis::X): return 14984; + case StrippedCrimsonHyphae::StrippedCrimsonHyphae(StrippedCrimsonHyphae::Axis::Z): return 14986; + case StrippedCrimsonStem::StrippedCrimsonStem(StrippedCrimsonStem::Axis::Y): return 14979; + case StrippedCrimsonStem::StrippedCrimsonStem(StrippedCrimsonStem::Axis::X): return 14978; + case StrippedCrimsonStem::StrippedCrimsonStem(StrippedCrimsonStem::Axis::Z): return 14980; + case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::X): return 103; + case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Y): return 104; + case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Z): return 105; + case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Z): return 144; + case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Y): return 143; + case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::X): return 142; + case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::X): return 97; + case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Y): return 98; + case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Z): return 99; + case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Z): return 138; + case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Y): return 137; + case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::X): return 136; + case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::X): return 106; + case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Y): return 107; + case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Z): return 108; + case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::X): return 127; + case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Y): return 128; + case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Z): return 129; + case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::X): return 91; + case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Y): return 92; + case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Z): return 93; + case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Z): return 132; + case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Y): return 131; + case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::X): return 130; + case StrippedWarpedHyphae::StrippedWarpedHyphae(StrippedWarpedHyphae::Axis::X): return 14967; + case StrippedWarpedHyphae::StrippedWarpedHyphae(StrippedWarpedHyphae::Axis::Z): return 14969; + case StrippedWarpedHyphae::StrippedWarpedHyphae(StrippedWarpedHyphae::Axis::Y): return 14968; + case StrippedWarpedStem::StrippedWarpedStem(StrippedWarpedStem::Axis::X): return 14961; + case StrippedWarpedStem::StrippedWarpedStem(StrippedWarpedStem::Axis::Z): return 14963; + case StrippedWarpedStem::StrippedWarpedStem(StrippedWarpedStem::Axis::Y): return 14962; + case StructureBlock::StructureBlock(StructureBlock::Mode::Save): return 15735; + case StructureBlock::StructureBlock(StructureBlock::Mode::Corner): return 15737; + case StructureBlock::StructureBlock(StructureBlock::Mode::Load): return 15736; + case StructureBlock::StructureBlock(StructureBlock::Mode::Data): return 15738; + case StructureVoid::StructureVoid(): return 9259; + case SugarCane::SugarCane(13): return 3961; + case SugarCane::SugarCane(6): return 3954; + case SugarCane::SugarCane(14): return 3962; + case SugarCane::SugarCane(7): return 3955; + case SugarCane::SugarCane(0): return 3948; + case SugarCane::SugarCane(8): return 3956; + case SugarCane::SugarCane(1): return 3949; + case SugarCane::SugarCane(9): return 3957; + case SugarCane::SugarCane(2): return 3950; + case SugarCane::SugarCane(10): return 3958; + case SugarCane::SugarCane(3): return 3951; + case SugarCane::SugarCane(11): return 3959; + case SugarCane::SugarCane(4): return 3952; + case SugarCane::SugarCane(12): return 3960; + case SugarCane::SugarCane(5): return 3953; + case SugarCane::SugarCane(15): return 3963; + case Sunflower::Sunflower(Sunflower::Half::Upper): return 7885; + case Sunflower::Sunflower(Sunflower::Half::Lower): return 7886; + case SweetBerryBush::SweetBerryBush(1): return 14955; + case SweetBerryBush::SweetBerryBush(0): return 14954; + case SweetBerryBush::SweetBerryBush(2): return 14956; + case SweetBerryBush::SweetBerryBush(3): return 14957; + case TallGrass::TallGrass(TallGrass::Half::Upper): return 7893; + case TallGrass::TallGrass(TallGrass::Half::Lower): return 7894; + case TallSeagrass::TallSeagrass(TallSeagrass::Half::Upper): return 1346; + case TallSeagrass::TallSeagrass(TallSeagrass::Half::Lower): return 1347; + case Target::Target(5): return 15765; + case Target::Target(7): return 15767; + case Target::Target(9): return 15769; + case Target::Target(11): return 15771; + case Target::Target(13): return 15773; + case Target::Target(0): return 15760; + case Target::Target(2): return 15762; + case Target::Target(4): return 15764; + case Target::Target(6): return 15766; + case Target::Target(8): return 15768; + case Target::Target(10): return 15770; + case Target::Target(12): return 15772; + case Target::Target(14): return 15774; + case Target::Target(1): return 15761; + case Target::Target(3): return 15763; + case Target::Target(15): return 15775; + case Terracotta::Terracotta(): return 7882; + case TNT::TNT(true): return 1430; + case TNT::TNT(false): return 1431; + case Torch::Torch(): return 1435; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Left): return 6625; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Single): return 6629; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Right): return 6633; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Left): return 6637; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Single): return 6641; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Right): return 6645; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Single): return 6623; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Right): return 6627; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Left): return 6631; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Single): return 6635; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Right): return 6639; + case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Left): return 6643; + case Tripwire::Tripwire(false, false, false, true, false, false, true): return 5393; + case Tripwire::Tripwire(true, false, false, true, false, false, false): return 5330; + case Tripwire::Tripwire(false, false, false, true, false, false, false): return 5394; + case Tripwire::Tripwire(true, false, false, false, true, true, true): return 5331; + case Tripwire::Tripwire(false, false, false, false, true, true, true): return 5395; + case Tripwire::Tripwire(true, false, false, false, true, true, false): return 5332; + case Tripwire::Tripwire(false, false, false, false, true, true, false): return 5396; + case Tripwire::Tripwire(true, false, false, false, true, false, true): return 5333; + case Tripwire::Tripwire(false, false, false, false, true, false, true): return 5397; + case Tripwire::Tripwire(true, false, false, false, true, false, false): return 5334; + case Tripwire::Tripwire(false, false, false, false, true, false, false): return 5398; + case Tripwire::Tripwire(true, false, false, false, false, true, true): return 5335; + case Tripwire::Tripwire(false, false, false, false, false, true, true): return 5399; + case Tripwire::Tripwire(true, false, false, false, false, true, false): return 5336; + case Tripwire::Tripwire(false, false, false, false, false, true, false): return 5400; + case Tripwire::Tripwire(true, false, false, false, false, false, true): return 5337; + case Tripwire::Tripwire(false, false, false, false, false, false, true): return 5401; + case Tripwire::Tripwire(true, false, false, false, false, false, false): return 5338; + case Tripwire::Tripwire(true, true, true, true, true, true, true): return 5275; + case Tripwire::Tripwire(false, true, true, true, true, true, true): return 5339; + case Tripwire::Tripwire(true, true, true, true, true, true, false): return 5276; + case Tripwire::Tripwire(false, true, true, true, true, true, false): return 5340; + case Tripwire::Tripwire(true, true, true, true, true, false, true): return 5277; + case Tripwire::Tripwire(false, true, true, true, true, false, true): return 5341; + case Tripwire::Tripwire(true, true, true, true, true, false, false): return 5278; + case Tripwire::Tripwire(false, true, true, true, true, false, false): return 5342; + case Tripwire::Tripwire(true, true, true, true, false, true, true): return 5279; + case Tripwire::Tripwire(false, true, true, true, false, true, true): return 5343; + case Tripwire::Tripwire(true, true, true, true, false, true, false): return 5280; + case Tripwire::Tripwire(false, true, true, true, false, true, false): return 5344; + case Tripwire::Tripwire(true, true, true, true, false, false, true): return 5281; + case Tripwire::Tripwire(false, true, true, true, false, false, true): return 5345; + case Tripwire::Tripwire(true, true, true, true, false, false, false): return 5282; + case Tripwire::Tripwire(false, true, true, true, false, false, false): return 5346; + case Tripwire::Tripwire(true, true, true, false, true, true, true): return 5283; + case Tripwire::Tripwire(false, true, true, false, true, true, true): return 5347; + case Tripwire::Tripwire(true, true, true, false, true, true, false): return 5284; + case Tripwire::Tripwire(false, true, true, false, true, true, false): return 5348; + case Tripwire::Tripwire(true, true, true, false, true, false, true): return 5285; + case Tripwire::Tripwire(false, true, true, false, true, false, true): return 5349; + case Tripwire::Tripwire(true, true, true, false, true, false, false): return 5286; + case Tripwire::Tripwire(false, true, true, false, true, false, false): return 5350; + case Tripwire::Tripwire(true, true, true, false, false, true, true): return 5287; + case Tripwire::Tripwire(false, true, true, false, false, true, true): return 5351; + case Tripwire::Tripwire(true, true, true, false, false, true, false): return 5288; + case Tripwire::Tripwire(false, true, true, false, false, true, false): return 5352; + case Tripwire::Tripwire(true, true, true, false, false, false, true): return 5289; + case Tripwire::Tripwire(false, true, true, false, false, false, true): return 5353; + case Tripwire::Tripwire(true, true, true, false, false, false, false): return 5290; + case Tripwire::Tripwire(false, true, true, false, false, false, false): return 5354; + case Tripwire::Tripwire(true, true, false, true, true, true, true): return 5291; + case Tripwire::Tripwire(false, true, false, true, true, true, true): return 5355; + case Tripwire::Tripwire(true, true, false, true, true, true, false): return 5292; + case Tripwire::Tripwire(false, true, false, true, true, true, false): return 5356; + case Tripwire::Tripwire(true, true, false, true, true, false, true): return 5293; + case Tripwire::Tripwire(false, true, false, true, true, false, true): return 5357; + case Tripwire::Tripwire(true, true, false, true, true, false, false): return 5294; + case Tripwire::Tripwire(false, true, false, true, true, false, false): return 5358; + case Tripwire::Tripwire(true, true, false, true, false, true, true): return 5295; + case Tripwire::Tripwire(false, true, false, true, false, true, true): return 5359; + case Tripwire::Tripwire(true, true, false, true, false, true, false): return 5296; + case Tripwire::Tripwire(false, true, false, true, false, true, false): return 5360; + case Tripwire::Tripwire(true, true, false, true, false, false, true): return 5297; + case Tripwire::Tripwire(false, true, false, true, false, false, true): return 5361; + case Tripwire::Tripwire(true, true, false, true, false, false, false): return 5298; + case Tripwire::Tripwire(false, true, false, true, false, false, false): return 5362; + case Tripwire::Tripwire(true, true, false, false, true, true, true): return 5299; + case Tripwire::Tripwire(false, true, false, false, true, true, true): return 5363; + case Tripwire::Tripwire(true, true, false, false, true, true, false): return 5300; + case Tripwire::Tripwire(false, true, false, false, true, true, false): return 5364; + case Tripwire::Tripwire(true, true, false, false, true, false, true): return 5301; + case Tripwire::Tripwire(false, true, false, false, true, false, true): return 5365; + case Tripwire::Tripwire(true, true, false, false, true, false, false): return 5302; + case Tripwire::Tripwire(false, true, false, false, true, false, false): return 5366; + case Tripwire::Tripwire(true, true, false, false, false, true, true): return 5303; + case Tripwire::Tripwire(false, true, false, false, false, true, true): return 5367; + case Tripwire::Tripwire(true, true, false, false, false, true, false): return 5304; + case Tripwire::Tripwire(false, true, false, false, false, true, false): return 5368; + case Tripwire::Tripwire(true, true, false, false, false, false, true): return 5305; + case Tripwire::Tripwire(false, true, false, false, false, false, true): return 5369; + case Tripwire::Tripwire(true, true, false, false, false, false, false): return 5306; + case Tripwire::Tripwire(false, true, false, false, false, false, false): return 5370; + case Tripwire::Tripwire(true, false, true, true, true, true, true): return 5307; + case Tripwire::Tripwire(false, false, true, true, true, true, true): return 5371; + case Tripwire::Tripwire(true, false, true, true, true, true, false): return 5308; + case Tripwire::Tripwire(false, false, true, true, true, true, false): return 5372; + case Tripwire::Tripwire(true, false, true, true, true, false, true): return 5309; + case Tripwire::Tripwire(false, false, true, true, true, false, true): return 5373; + case Tripwire::Tripwire(true, false, true, true, true, false, false): return 5310; + case Tripwire::Tripwire(false, false, true, true, true, false, false): return 5374; + case Tripwire::Tripwire(true, false, true, true, false, true, true): return 5311; + case Tripwire::Tripwire(false, false, true, true, false, true, true): return 5375; + case Tripwire::Tripwire(true, false, true, true, false, true, false): return 5312; + case Tripwire::Tripwire(false, false, true, true, false, true, false): return 5376; + case Tripwire::Tripwire(true, false, true, true, false, false, true): return 5313; + case Tripwire::Tripwire(false, false, true, true, false, false, true): return 5377; + case Tripwire::Tripwire(true, false, true, true, false, false, false): return 5314; + case Tripwire::Tripwire(false, false, true, true, false, false, false): return 5378; + case Tripwire::Tripwire(true, false, true, false, true, true, true): return 5315; + case Tripwire::Tripwire(false, false, true, false, true, true, true): return 5379; + case Tripwire::Tripwire(true, false, true, false, true, true, false): return 5316; + case Tripwire::Tripwire(false, false, true, false, true, true, false): return 5380; + case Tripwire::Tripwire(true, false, true, false, true, false, true): return 5317; + case Tripwire::Tripwire(false, false, true, false, true, false, true): return 5381; + case Tripwire::Tripwire(true, false, true, false, true, false, false): return 5318; + case Tripwire::Tripwire(false, false, true, false, true, false, false): return 5382; + case Tripwire::Tripwire(true, false, true, false, false, true, true): return 5319; + case Tripwire::Tripwire(false, false, true, false, false, true, true): return 5383; + case Tripwire::Tripwire(true, false, true, false, false, true, false): return 5320; + case Tripwire::Tripwire(false, false, true, false, false, true, false): return 5384; + case Tripwire::Tripwire(true, false, true, false, false, false, true): return 5321; + case Tripwire::Tripwire(false, false, true, false, false, false, true): return 5385; + case Tripwire::Tripwire(true, false, true, false, false, false, false): return 5322; + case Tripwire::Tripwire(false, false, true, false, false, false, false): return 5386; + case Tripwire::Tripwire(true, false, false, true, true, true, true): return 5323; + case Tripwire::Tripwire(false, false, false, true, true, true, true): return 5387; + case Tripwire::Tripwire(true, false, false, true, true, true, false): return 5324; + case Tripwire::Tripwire(false, false, false, true, true, true, false): return 5388; + case Tripwire::Tripwire(true, false, false, true, true, false, true): return 5325; + case Tripwire::Tripwire(false, false, false, true, true, false, true): return 5389; + case Tripwire::Tripwire(true, false, false, true, true, false, false): return 5326; + case Tripwire::Tripwire(false, false, false, true, true, false, false): return 5390; + case Tripwire::Tripwire(true, false, false, true, false, true, true): return 5327; + case Tripwire::Tripwire(false, false, false, true, false, true, true): return 5391; + case Tripwire::Tripwire(true, false, false, true, false, true, false): return 5328; + case Tripwire::Tripwire(false, false, false, true, false, true, false): return 5392; + case Tripwire::Tripwire(true, false, false, true, false, false, true): return 5329; + case Tripwire::Tripwire(false, false, false, false, false, false, false): return 5402; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, false): return 5266; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, true): return 5267; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, false): return 5268; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, true): return 5269; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, false): return 5270; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, true): return 5271; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, false): return 5272; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, true): return 5273; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, true): return 5259; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, false): return 5260; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, true): return 5261; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, false): return 5262; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, true): return 5263; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, false): return 5264; + case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, true): return 5265; + case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, false): return 5274; + case TubeCoral::TubeCoral(): return 9531; + case TubeCoralBlock::TubeCoralBlock(): return 9515; + case TubeCoralFan::TubeCoralFan(): return 9551; + case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9603; + case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9601; + case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9605; + case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9607; + case TurtleEgg::TurtleEgg(1, 1): return 9499; + case TurtleEgg::TurtleEgg(2, 0): return 9501; + case TurtleEgg::TurtleEgg(2, 2): return 9503; + case TurtleEgg::TurtleEgg(3, 1): return 9505; + case TurtleEgg::TurtleEgg(4, 0): return 9507; + case TurtleEgg::TurtleEgg(4, 2): return 9509; + case TurtleEgg::TurtleEgg(1, 0): return 9498; + case TurtleEgg::TurtleEgg(1, 2): return 9500; + case TurtleEgg::TurtleEgg(2, 1): return 9502; + case TurtleEgg::TurtleEgg(3, 0): return 9504; + case TurtleEgg::TurtleEgg(3, 2): return 9506; + case TurtleEgg::TurtleEgg(4, 1): return 9508; + case TwistingVines::TwistingVines(15): return 15032; + case TwistingVines::TwistingVines(23): return 15040; + case TwistingVines::TwistingVines(0): return 15017; + case TwistingVines::TwistingVines(8): return 15025; + case TwistingVines::TwistingVines(16): return 15033; + case TwistingVines::TwistingVines(24): return 15041; + case TwistingVines::TwistingVines(1): return 15018; + case TwistingVines::TwistingVines(9): return 15026; + case TwistingVines::TwistingVines(17): return 15034; + case TwistingVines::TwistingVines(25): return 15042; + case TwistingVines::TwistingVines(2): return 15019; + case TwistingVines::TwistingVines(10): return 15027; + case TwistingVines::TwistingVines(18): return 15035; + case TwistingVines::TwistingVines(3): return 15020; + case TwistingVines::TwistingVines(11): return 15028; + case TwistingVines::TwistingVines(19): return 15036; + case TwistingVines::TwistingVines(4): return 15021; + case TwistingVines::TwistingVines(12): return 15029; + case TwistingVines::TwistingVines(20): return 15037; + case TwistingVines::TwistingVines(5): return 15022; + case TwistingVines::TwistingVines(13): return 15030; + case TwistingVines::TwistingVines(21): return 15038; + case TwistingVines::TwistingVines(6): return 15023; + case TwistingVines::TwistingVines(14): return 15031; + case TwistingVines::TwistingVines(22): return 15039; + case TwistingVines::TwistingVines(7): return 15024; + case TwistingVinesPlant::TwistingVinesPlant(): return 15043; + case Vine::Vine(true, true, false, true, true): return 4792; + case Vine::Vine(true, false, true, true, true): return 4796; + case Vine::Vine(true, false, false, true, true): return 4800; + case Vine::Vine(false, true, true, true, true): return 4804; + case Vine::Vine(false, true, false, true, true): return 4808; + case Vine::Vine(false, false, true, true, true): return 4812; + case Vine::Vine(false, false, false, true, true): return 4816; + case Vine::Vine(true, true, true, true, false): return 4789; + case Vine::Vine(true, true, false, true, false): return 4793; + case Vine::Vine(true, false, true, true, false): return 4797; + case Vine::Vine(true, false, false, true, false): return 4801; + case Vine::Vine(false, true, true, true, false): return 4805; + case Vine::Vine(false, true, false, true, false): return 4809; + case Vine::Vine(false, false, true, true, false): return 4813; + case Vine::Vine(false, false, false, true, false): return 4817; + case Vine::Vine(true, true, true, false, true): return 4790; + case Vine::Vine(true, true, false, false, true): return 4794; + case Vine::Vine(true, false, true, false, true): return 4798; + case Vine::Vine(true, false, false, false, true): return 4802; + case Vine::Vine(false, true, true, false, true): return 4806; + case Vine::Vine(false, true, false, false, true): return 4810; + case Vine::Vine(false, false, true, false, true): return 4814; + case Vine::Vine(false, false, false, false, true): return 4818; + case Vine::Vine(true, true, true, false, false): return 4791; + case Vine::Vine(true, true, false, false, false): return 4795; + case Vine::Vine(true, false, true, false, false): return 4799; + case Vine::Vine(true, false, false, false, false): return 4803; + case Vine::Vine(false, true, true, false, false): return 4807; + case Vine::Vine(false, true, false, false, false): return 4811; + case Vine::Vine(false, false, true, false, false): return 4815; + case Vine::Vine(true, true, true, true, true): return 4788; + case Vine::Vine(false, false, false, false, false): return 4819; + case VoidAir::VoidAir(): return 9665; + case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZP): return 1437; + case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XM): return 1438; + case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZM): return 1436; + case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XP): return 1439; + case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 15505; + case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 15513; + case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 15521; + case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 15506; + case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 15514; + case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 15522; + case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 15507; + case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 15515; + case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 15523; + case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 15508; + case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 15516; + case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 15524; + case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 15509; + case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 15517; + case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 15525; + case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 15510; + case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 15518; + case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 15526; + case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 15503; + case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 15511; + case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 15519; + case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 15504; + case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 15512; + case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 15520; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, true): return 15633; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, false): return 15602; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, false): return 15634; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, true): return 15603; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, true): return 15635; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, false): return 15604; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, false): return 15636; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, true): return 15605; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, true): return 15637; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, false): return 15606; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, false): return 15638; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, true): return 15607; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, true): return 15639; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, false): return 15608; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, false): return 15640; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, true): return 15609; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, true): return 15641; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, false): return 15610; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, false): return 15642; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, true): return 15611; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, true): return 15643; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, false): return 15612; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, false): return 15644; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, true): return 15613; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, true): return 15645; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, false): return 15614; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, false): return 15646; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, true): return 15615; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, true): return 15647; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, false): return 15616; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, false): return 15648; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, true): return 15617; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, true): return 15649; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, false): return 15618; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, false): return 15650; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, true): return 15619; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, true): return 15651; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, false): return 15620; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, false): return 15652; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, true): return 15621; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, true): return 15653; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, false): return 15622; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, true): return 15591; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, true): return 15623; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, false): return 15592; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, false): return 15624; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, true): return 15593; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, true): return 15625; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, false): return 15594; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, false): return 15626; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, true): return 15595; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, true): return 15627; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, false): return 15596; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, false): return 15628; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, true): return 15597; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, true): return 15629; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, false): return 15598; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, false): return 15630; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, true): return 15599; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, true): return 15631; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, false): return 15600; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, false): return 15632; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, true): return 15601; + case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, false): return 15654; + case WarpedFence::WarpedFence(false, false, false, true): return 15125; + case WarpedFence::WarpedFence(true, true, false, false): return 15102; + case WarpedFence::WarpedFence(true, false, false, false): return 15110; + case WarpedFence::WarpedFence(false, true, false, false): return 15118; + case WarpedFence::WarpedFence(true, true, true, true): return 15097; + case WarpedFence::WarpedFence(true, false, true, true): return 15105; + case WarpedFence::WarpedFence(false, true, true, true): return 15113; + case WarpedFence::WarpedFence(false, false, true, true): return 15121; + case WarpedFence::WarpedFence(true, true, true, false): return 15098; + case WarpedFence::WarpedFence(true, false, true, false): return 15106; + case WarpedFence::WarpedFence(false, true, true, false): return 15114; + case WarpedFence::WarpedFence(false, false, true, false): return 15122; + case WarpedFence::WarpedFence(true, true, false, true): return 15101; + case WarpedFence::WarpedFence(true, false, false, true): return 15109; + case WarpedFence::WarpedFence(false, true, false, true): return 15117; + case WarpedFence::WarpedFence(false, false, false, false): return 15126; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 15311; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 15288; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 15296; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 15304; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 15312; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 15289; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 15297; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 15305; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 15313; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 15290; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 15298; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 15306; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 15314; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 15291; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 15299; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 15307; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 15315; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 15292; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 15300; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 15308; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 15316; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 15293; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 15301; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 15309; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 15317; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 15294; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 15302; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 15310; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 15287; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 15295; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 15303; + case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 15318; + case WarpedFungus::WarpedFungus(): return 14971; + case WarpedHyphae::WarpedHyphae(WarpedHyphae::Axis::X): return 14964; + case WarpedHyphae::WarpedHyphae(WarpedHyphae::Axis::Z): return 14966; + case WarpedHyphae::WarpedHyphae(WarpedHyphae::Axis::Y): return 14965; + case WarpedNylium::WarpedNylium(): return 14970; + case WarpedPlanks::WarpedPlanks(): return 15046; + case WarpedPressurePlate::WarpedPressurePlate(true): return 15061; + case WarpedPressurePlate::WarpedPressurePlate(false): return 15062; + case WarpedRoots::WarpedRoots(): return 14973; + case WarpedSign::WarpedSign(13): return 15714; + case WarpedSign::WarpedSign(2): return 15692; + case WarpedSign::WarpedSign(6): return 15700; + case WarpedSign::WarpedSign(10): return 15708; + case WarpedSign::WarpedSign(14): return 15716; + case WarpedSign::WarpedSign(3): return 15694; + case WarpedSign::WarpedSign(7): return 15702; + case WarpedSign::WarpedSign(11): return 15710; + case WarpedSign::WarpedSign(0): return 15688; + case WarpedSign::WarpedSign(4): return 15696; + case WarpedSign::WarpedSign(8): return 15704; + case WarpedSign::WarpedSign(12): return 15712; + case WarpedSign::WarpedSign(1): return 15690; + case WarpedSign::WarpedSign(5): return 15698; + case WarpedSign::WarpedSign(9): return 15706; + case WarpedSign::WarpedSign(15): return 15718; + case WarpedSlab::WarpedSlab(WarpedSlab::Type::Bottom): return 15056; + case WarpedSlab::WarpedSlab(WarpedSlab::Type::Top): return 15054; + case WarpedSlab::WarpedSlab(WarpedSlab::Type::Double): return 15058; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerLeft): return 15422; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerRight): return 15424; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterLeft): return 15426; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterRight): return 15428; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::Straight): return 15430; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerLeft): return 15432; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerRight): return 15434; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterLeft): return 15436; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterRight): return 15438; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Top, WarpedStairs::Shape::Straight): return 15440; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerLeft): return 15442; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerRight): return 15444; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterLeft): return 15446; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterRight): return 15448; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::Straight): return 15450; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerLeft): return 15452; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerRight): return 15454; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterLeft): return 15456; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterRight): return 15458; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Top, WarpedStairs::Shape::Straight): return 15460; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerLeft): return 15462; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerRight): return 15464; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterLeft): return 15466; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterRight): return 15468; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::Straight): return 15470; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerLeft): return 15472; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerRight): return 15474; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterLeft): return 15476; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterRight): return 15478; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Top, WarpedStairs::Shape::Straight): return 15400; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerLeft): return 15402; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerRight): return 15404; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterLeft): return 15406; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterRight): return 15408; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::Straight): return 15410; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerLeft): return 15412; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerRight): return 15414; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterLeft): return 15416; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterRight): return 15418; + case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Top, WarpedStairs::Shape::Straight): return 15420; + case WarpedStem::WarpedStem(WarpedStem::Axis::X): return 14958; + case WarpedStem::WarpedStem(WarpedStem::Axis::Z): return 14960; + case WarpedStem::WarpedStem(WarpedStem::Axis::Y): return 14959; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Top, true, true): return 15192; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Top, true, true): return 15224; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Top, true, false): return 15194; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Top, true, false): return 15226; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Top, false, true): return 15196; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Top, false, true): return 15228; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Top, false, false): return 15198; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Top, false, false): return 15230; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Bottom, true, true): return 15200; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Bottom, true, true): return 15232; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Bottom, true, false): return 15202; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Bottom, true, false): return 15234; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Bottom, false, true): return 15204; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Bottom, false, true): return 15236; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Bottom, false, false): return 15206; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Bottom, false, false): return 15238; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Top, true, true): return 15208; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Top, true, true): return 15240; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Top, true, false): return 15210; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Top, true, false): return 15242; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Top, false, true): return 15212; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Top, false, true): return 15244; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Top, false, false): return 15214; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Top, false, false): return 15246; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Bottom, true, true): return 15216; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Bottom, true, true): return 15248; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Bottom, true, false): return 15218; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Bottom, true, false): return 15250; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Bottom, false, true): return 15220; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Bottom, false, true): return 15252; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Bottom, false, false): return 15222; + case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Bottom, false, false): return 15254; + case WarpedWallSign::WarpedWallSign(eBlockFace::BLOCK_FACE_ZM): return 15728; + case WarpedWallSign::WarpedWallSign(eBlockFace::BLOCK_FACE_XM): return 15732; + case WarpedWallSign::WarpedWallSign(eBlockFace::BLOCK_FACE_ZP): return 15730; + case WarpedWallSign::WarpedWallSign(eBlockFace::BLOCK_FACE_XP): return 15734; + case WarpedWartBlock::WarpedWartBlock(): return 14972; + case Water::Water(12): return 46; + case Water::Water(14): return 48; + case Water::Water(1): return 35; + case Water::Water(3): return 37; + case Water::Water(5): return 39; + case Water::Water(7): return 41; + case Water::Water(9): return 43; + case Water::Water(11): return 45; + case Water::Water(13): return 47; + case Water::Water(0): return 34; + case Water::Water(2): return 36; + case Water::Water(4): return 38; + case Water::Water(6): return 40; + case Water::Water(8): return 42; + case Water::Water(10): return 44; + case Water::Water(15): return 49; + case WeepingVines::WeepingVines(11): return 15001; + case WeepingVines::WeepingVines(19): return 15009; + case WeepingVines::WeepingVines(4): return 14994; + case WeepingVines::WeepingVines(12): return 15002; + case WeepingVines::WeepingVines(20): return 15010; + case WeepingVines::WeepingVines(5): return 14995; + case WeepingVines::WeepingVines(13): return 15003; + case WeepingVines::WeepingVines(21): return 15011; + case WeepingVines::WeepingVines(6): return 14996; + case WeepingVines::WeepingVines(14): return 15004; + case WeepingVines::WeepingVines(22): return 15012; + case WeepingVines::WeepingVines(7): return 14997; + case WeepingVines::WeepingVines(15): return 15005; + case WeepingVines::WeepingVines(23): return 15013; + case WeepingVines::WeepingVines(0): return 14990; + case WeepingVines::WeepingVines(8): return 14998; + case WeepingVines::WeepingVines(16): return 15006; + case WeepingVines::WeepingVines(24): return 15014; + case WeepingVines::WeepingVines(1): return 14991; + case WeepingVines::WeepingVines(9): return 14999; + case WeepingVines::WeepingVines(17): return 15007; + case WeepingVines::WeepingVines(25): return 15015; + case WeepingVines::WeepingVines(2): return 14992; + case WeepingVines::WeepingVines(10): return 15000; + case WeepingVines::WeepingVines(18): return 15008; + case WeepingVines::WeepingVines(3): return 14993; + case WeepingVinesPlant::WeepingVinesPlant(): return 15016; + case WetSponge::WetSponge(): return 230; + case Wheat::Wheat(1): return 3358; + case Wheat::Wheat(2): return 3359; + case Wheat::Wheat(3): return 3360; + case Wheat::Wheat(4): return 3361; + case Wheat::Wheat(5): return 3362; + case Wheat::Wheat(6): return 3363; + case Wheat::Wheat(0): return 3357; + case Wheat::Wheat(7): return 3364; + case WhiteBanner::WhiteBanner(9): return 7906; + case WhiteBanner::WhiteBanner(10): return 7907; + case WhiteBanner::WhiteBanner(11): return 7908; + case WhiteBanner::WhiteBanner(12): return 7909; + case WhiteBanner::WhiteBanner(13): return 7910; + case WhiteBanner::WhiteBanner(14): return 7911; + case WhiteBanner::WhiteBanner(0): return 7897; + case WhiteBanner::WhiteBanner(1): return 7898; + case WhiteBanner::WhiteBanner(2): return 7899; + case WhiteBanner::WhiteBanner(3): return 7900; + case WhiteBanner::WhiteBanner(4): return 7901; + case WhiteBanner::WhiteBanner(5): return 7902; + case WhiteBanner::WhiteBanner(6): return 7903; + case WhiteBanner::WhiteBanner(7): return 7904; + case WhiteBanner::WhiteBanner(8): return 7905; + case WhiteBanner::WhiteBanner(15): return 7912; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Foot): return 1062; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Head): return 1051; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Head): return 1055; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Head): return 1059; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Head): return 1063; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Foot): return 1052; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Foot): return 1056; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Foot): return 1060; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Head): return 1049; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Head): return 1053; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Head): return 1057; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Head): return 1061; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Foot): return 1050; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Foot): return 1054; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Foot): return 1058; + case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Foot): return 1064; + case WhiteCarpet::WhiteCarpet(): return 7866; + case WhiteConcrete::WhiteConcrete(): return 9438; + case WhiteConcretePowder::WhiteConcretePowder(): return 9454; + case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9375; + case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9374; + case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9376; + case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9377; + case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9281; + case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9278; + case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9282; + case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9279; + case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9283; + case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9280; + case WhiteStainedGlass::WhiteStainedGlass(): return 4095; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, true): return 6869; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, true): return 6873; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, true): return 6877; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, true): return 6881; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, true): return 6885; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, true): return 6889; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, true): return 6893; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, false): return 6866; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, false): return 6870; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, false): return 6874; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, false): return 6878; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, false): return 6882; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, false): return 6886; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, false): return 6890; + case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, true): return 6865; + case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, false): return 6894; + case WhiteTerracotta::WhiteTerracotta(): return 6847; + case WhiteTulip::WhiteTulip(): return 1419; + case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XM): return 8155; + case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8153; + case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8154; + case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XP): return 8156; + case WhiteWool::WhiteWool(): return 1384; + case WitherRose::WitherRose(): return 1423; + case WitherSkeletonSkull::WitherSkeletonSkull(1): return 6511; + case WitherSkeletonSkull::WitherSkeletonSkull(2): return 6512; + case WitherSkeletonSkull::WitherSkeletonSkull(3): return 6513; + case WitherSkeletonSkull::WitherSkeletonSkull(4): return 6514; + case WitherSkeletonSkull::WitherSkeletonSkull(5): return 6515; + case WitherSkeletonSkull::WitherSkeletonSkull(6): return 6516; + case WitherSkeletonSkull::WitherSkeletonSkull(7): return 6517; + case WitherSkeletonSkull::WitherSkeletonSkull(8): return 6518; + case WitherSkeletonSkull::WitherSkeletonSkull(9): return 6519; + case WitherSkeletonSkull::WitherSkeletonSkull(10): return 6520; + case WitherSkeletonSkull::WitherSkeletonSkull(11): return 6521; + case WitherSkeletonSkull::WitherSkeletonSkull(12): return 6522; + case WitherSkeletonSkull::WitherSkeletonSkull(13): return 6523; + case WitherSkeletonSkull::WitherSkeletonSkull(14): return 6524; + case WitherSkeletonSkull::WitherSkeletonSkull(0): return 6510; + case WitherSkeletonSkull::WitherSkeletonSkull(15): return 6525; + case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM): return 6526; + case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP): return 6527; + case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XM): return 6528; + case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XP): return 6529; + case YellowBanner::YellowBanner(5): return 7966; + case YellowBanner::YellowBanner(6): return 7967; + case YellowBanner::YellowBanner(7): return 7968; + case YellowBanner::YellowBanner(8): return 7969; + case YellowBanner::YellowBanner(9): return 7970; + case YellowBanner::YellowBanner(10): return 7971; + case YellowBanner::YellowBanner(11): return 7972; + case YellowBanner::YellowBanner(12): return 7973; + case YellowBanner::YellowBanner(13): return 7974; + case YellowBanner::YellowBanner(14): return 7975; + case YellowBanner::YellowBanner(0): return 7961; + case YellowBanner::YellowBanner(1): return 7962; + case YellowBanner::YellowBanner(2): return 7963; + case YellowBanner::YellowBanner(3): return 7964; + case YellowBanner::YellowBanner(4): return 7965; + case YellowBanner::YellowBanner(15): return 7976; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Foot): return 1122; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Foot): return 1126; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Head): return 1115; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Head): return 1119; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Head): return 1123; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Head): return 1127; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Foot): return 1116; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Foot): return 1120; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Foot): return 1124; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Head): return 1113; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Head): return 1117; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Head): return 1121; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Head): return 1125; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Foot): return 1114; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Foot): return 1118; + case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Foot): return 1128; + case YellowCarpet::YellowCarpet(): return 7870; + case YellowConcrete::YellowConcrete(): return 9442; + case YellowConcretePowder::YellowConcretePowder(): return 9458; + case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9390; + case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9392; + case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9391; + case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9393; + case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9305; + case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9302; + case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9306; + case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9303; + case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9307; + case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9304; + case YellowStainedGlass::YellowStainedGlass(): return 4099; + case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, true): return 6993; + case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, true): return 6997; + case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, true): return 7001; + case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, true): return 7005; + case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, true): return 7009; + case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, true): return 7013; + case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, true): return 7017; + case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, true): return 7021; + case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, false): return 6994; + case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, false): return 6998; + case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, false): return 7002; + case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, false): return 7006; + case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, false): return 7010; + case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, false): return 7014; + case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, false): return 7018; + case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, false): return 7022; + case YellowTerracotta::YellowTerracotta(): return 6851; + case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8170; + case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XM): return 8171; + case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8169; + case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XP): return 8172; + case YellowWool::YellowWool(): return 1388; + case ZombieHead::ZombieHead(11): return 6541; + case ZombieHead::ZombieHead(12): return 6542; + case ZombieHead::ZombieHead(13): return 6543; + case ZombieHead::ZombieHead(14): return 6544; + case ZombieHead::ZombieHead(0): return 6530; + case ZombieHead::ZombieHead(1): return 6531; + case ZombieHead::ZombieHead(2): return 6532; + case ZombieHead::ZombieHead(3): return 6533; + case ZombieHead::ZombieHead(4): return 6534; + case ZombieHead::ZombieHead(5): return 6535; + case ZombieHead::ZombieHead(6): return 6536; + case ZombieHead::ZombieHead(7): return 6537; + case ZombieHead::ZombieHead(8): return 6538; + case ZombieHead::ZombieHead(9): return 6539; + case ZombieHead::ZombieHead(10): return 6540; + case ZombieHead::ZombieHead(15): return 6545; + case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZP): return 6547; + case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XM): return 6548; + case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZM): return 6546; + case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XP): return 6549; + default: return Air::Air(); + } + } + + Int32 FromItem(Item ID) + { + switch (ID) + { + case Item::AcaciaBoat: return 901; + case Item::AcaciaButton: return 309; + case Item::AcaciaDoor: return 562; + case Item::AcaciaFence: return 212; + case Item::AcaciaFenceGate: return 256; + case Item::AcaciaLeaves: return 73; + case Item::AcaciaLog: return 41; + case Item::AcaciaPlanks: return 19; + case Item::AcaciaPressurePlate: return 195; + case Item::AcaciaSapling: return 27; + case Item::AcaciaSign: return 656; + case Item::AcaciaSlab: return 142; + case Item::AcaciaStairs: return 369; + case Item::AcaciaTrapdoor: return 230; + case Item::AcaciaWood: return 65; + case Item::ActivatorRail: return 329; + case Item::Air: return -0; + case Item::Allium: return 114; + case Item::AncientDebris: return 959; + case Item::Andesite: return 6; + case Item::AndesiteSlab: return 552; + case Item::AndesiteStairs: return 539; + case Item::AndesiteWall: return 296; + case Item::Anvil: return 314; + case Item::Apple: return 576; + case Item::ArmorStand: return 859; + case Item::Arrow: return 578; + case Item::AzureBluet: return 115; + case Item::BakedPotato: return 831; + case Item::Bamboo: return 135; + case Item::Barrel: return 935; + case Item::Barrier: return 347; + case Item::Basalt: return 221; + case Item::BatSpawnEgg: return 759; + case Item::Beacon: return 286; + case Item::Bedrock: return 29; + case Item::BeeNest: return 952; + case Item::BeeSpawnEgg: return 760; + case Item::Beef: return 739; + case Item::Beehive: return 953; + case Item::Beetroot: return 888; + case Item::BeetrootSeeds: return 889; + case Item::BeetrootSoup: return 890; + case Item::Bell: return 944; + case Item::BirchBoat: return 899; + case Item::BirchButton: return 307; + case Item::BirchDoor: return 560; + case Item::BirchFence: return 210; + case Item::BirchFenceGate: return 254; + case Item::BirchLeaves: return 71; + case Item::BirchLog: return 39; + case Item::BirchPlanks: return 17; + case Item::BirchPressurePlate: return 193; + case Item::BirchSapling: return 25; + case Item::BirchSign: return 654; + case Item::BirchSlab: return 140; + case Item::BirchStairs: return 281; + case Item::BirchTrapdoor: return 228; + case Item::BirchWood: return 63; + case Item::BlackBanner: return 884; + case Item::BlackBed: return 731; + case Item::BlackCarpet: return 365; + case Item::BlackConcrete: return 479; + case Item::BlackConcretePowder: return 495; + case Item::BlackDye: return 711; + case Item::BlackGlazedTerracotta: return 463; + case Item::BlackShulkerBox: return 447; + case Item::BlackStainedGlass: return 394; + case Item::BlackStainedGlassPane: return 410; + case Item::BlackTerracotta: return 346; + case Item::BlackWool: return 110; + case Item::Blackstone: return 962; + case Item::BlackstoneSlab: return 963; + case Item::BlackstoneStairs: return 964; + case Item::BlackstoneWall: return 301; + case Item::BlastFurnace: return 937; + case Item::BlazePowder: return 753; + case Item::BlazeRod: return 745; + case Item::BlazeSpawnEgg: return 761; + case Item::BlueBanner: return 880; + case Item::BlueBed: return 727; + case Item::BlueCarpet: return 361; + case Item::BlueConcrete: return 475; + case Item::BlueConcretePowder: return 491; + case Item::BlueDye: return 709; + case Item::BlueGlazedTerracotta: return 459; + case Item::BlueIce: return 527; + case Item::BlueOrchid: return 113; + case Item::BlueShulkerBox: return 443; + case Item::BlueStainedGlass: return 390; + case Item::BlueStainedGlassPane: return 406; + case Item::BlueTerracotta: return 342; + case Item::BlueWool: return 106; + case Item::Bone: return 713; + case Item::BoneBlock: return 428; + case Item::BoneMeal: return 708; + case Item::Book: return 678; + case Item::Bookshelf: return 168; + case Item::Bow: return 577; + case Item::Bowl: return 600; + case Item::BrainCoral: return 508; + case Item::BrainCoralBlock: return 503; + case Item::BrainCoralFan: return 518; + case Item::Bread: return 621; + case Item::BrewingStand: return 755; + case Item::Brick: return 674; + case Item::BrickSlab: return 152; + case Item::BrickStairs: return 260; + case Item::BrickWall: return 289; + case Item::Bricks: return 166; + case Item::BrownBanner: return 881; + case Item::BrownBed: return 728; + case Item::BrownCarpet: return 362; + case Item::BrownConcrete: return 476; + case Item::BrownConcretePowder: return 492; + case Item::BrownDye: return 710; + case Item::BrownGlazedTerracotta: return 460; + case Item::BrownMushroom: return 124; + case Item::BrownMushroomBlock: return 244; + case Item::BrownShulkerBox: return 444; + case Item::BrownStainedGlass: return 391; + case Item::BrownStainedGlassPane: return 407; + case Item::BrownTerracotta: return 343; + case Item::BrownWool: return 107; + case Item::BubbleCoral: return 509; + case Item::BubbleCoralBlock: return 504; + case Item::BubbleCoralFan: return 519; + case Item::Bucket: return 660; + case Item::Cactus: return 205; + case Item::Cake: return 715; + case Item::Campfire: return 948; + case Item::Carrot: return 829; + case Item::CarrotOnAStick: return 841; + case Item::CartographyTable: return 938; + case Item::CarvedPumpkin: return 217; + case Item::CatSpawnEgg: return 762; + case Item::Cauldron: return 756; + case Item::CaveSpiderSpawnEgg: return 763; + case Item::Chain: return 248; + case Item::ChainCommandBlock: return 423; + case Item::ChainmailBoots: return 629; + case Item::ChainmailChestplate: return 627; + case Item::ChainmailHelmet: return 626; + case Item::ChainmailLeggings: return 628; + case Item::Charcoal: return 580; + case Item::Chest: return 180; + case Item::ChestMinecart: return 680; + case Item::Chicken: return 741; + case Item::ChickenSpawnEgg: return 764; + case Item::ChippedAnvil: return 315; + case Item::ChiseledNetherBricks: return 266; + case Item::ChiseledPolishedBlackstone: return 969; + case Item::ChiseledQuartzBlock: return 324; + case Item::ChiseledRedSandstone: return 419; + case Item::ChiseledSandstone: return 82; + case Item::ChiseledStoneBricks: return 243; + case Item::ChorusFlower: return 174; + case Item::ChorusFruit: return 886; + case Item::ChorusPlant: return 173; + case Item::Clay: return 206; + case Item::ClayBall: return 675; + case Item::Clock: return 685; + case Item::Coal: return 579; + case Item::CoalBlock: return 367; + case Item::CoalOre: return 35; + case Item::CoarseDirt: return 10; + case Item::Cobblestone: return 14; + case Item::CobblestoneSlab: return 151; + case Item::CobblestoneStairs: return 188; + case Item::CobblestoneWall: return 287; + case Item::Cobweb: return 88; + case Item::CocoaBeans: return 696; + case Item::Cod: return 687; + case Item::CodBucket: return 672; + case Item::CodSpawnEgg: return 765; + case Item::CommandBlock: return 285; + case Item::CommandBlockMinecart: return 866; + case Item::Comparator: return 567; + case Item::Compass: return 683; + case Item::Composter: return 934; + case Item::Conduit: return 528; + case Item::CookedBeef: return 740; + case Item::CookedChicken: return 742; + case Item::CookedCod: return 691; + case Item::CookedMutton: return 868; + case Item::CookedPorkchop: return 648; + case Item::CookedRabbit: return 855; + case Item::CookedSalmon: return 692; + case Item::Cookie: return 732; + case Item::Cornflower: return 121; + case Item::CowSpawnEgg: return 766; + case Item::CrackedNetherBricks: return 265; + case Item::CrackedPolishedBlackstoneBricks: return 973; + case Item::CrackedStoneBricks: return 242; + case Item::CraftingTable: return 183; + case Item::CreeperBannerPattern: return 929; + case Item::CreeperHead: return 839; + case Item::CreeperSpawnEgg: return 767; + case Item::CrimsonButton: return 311; + case Item::CrimsonDoor: return 564; + case Item::CrimsonFence: return 214; + case Item::CrimsonFenceGate: return 258; + case Item::CrimsonFungus: return 126; + case Item::CrimsonHyphae: return 67; + case Item::CrimsonNylium: return 12; + case Item::CrimsonPlanks: return 21; + case Item::CrimsonPressurePlate: return 197; + case Item::CrimsonRoots: return 128; + case Item::CrimsonSign: return 658; + case Item::CrimsonSlab: return 144; + case Item::CrimsonStairs: return 283; + case Item::CrimsonStem: return 43; + case Item::CrimsonTrapdoor: return 232; + case Item::Crossbow: return 925; + case Item::CryingObsidian: return 961; + case Item::CutRedSandstone: return 420; + case Item::CutRedSandstoneSlab: return 157; + case Item::CutSandstone: return 83; + case Item::CutSandstoneSlab: return 149; + case Item::CyanBanner: return 878; + case Item::CyanBed: return 725; + case Item::CyanCarpet: return 359; + case Item::CyanConcrete: return 473; + case Item::CyanConcretePowder: return 489; + case Item::CyanDye: return 699; + case Item::CyanGlazedTerracotta: return 457; + case Item::CyanShulkerBox: return 441; + case Item::CyanStainedGlass: return 388; + case Item::CyanStainedGlassPane: return 404; + case Item::CyanTerracotta: return 340; + case Item::CyanWool: return 104; + case Item::DamagedAnvil: return 316; + case Item::Dandelion: return 111; + case Item::DarkOakBoat: return 902; + case Item::DarkOakButton: return 310; + case Item::DarkOakDoor: return 563; + case Item::DarkOakFence: return 213; + case Item::DarkOakFenceGate: return 257; + case Item::DarkOakLeaves: return 74; + case Item::DarkOakLog: return 42; + case Item::DarkOakPlanks: return 20; + case Item::DarkOakPressurePlate: return 196; + case Item::DarkOakSapling: return 28; + case Item::DarkOakSign: return 657; + case Item::DarkOakSlab: return 143; + case Item::DarkOakStairs: return 370; + case Item::DarkOakTrapdoor: return 231; + case Item::DarkOakWood: return 66; + case Item::DarkPrismarine: return 413; + case Item::DarkPrismarineSlab: return 161; + case Item::DarkPrismarineStairs: return 416; + case Item::DaylightDetector: return 320; + case Item::DeadBrainCoral: return 512; + case Item::DeadBrainCoralBlock: return 498; + case Item::DeadBrainCoralFan: return 523; + case Item::DeadBubbleCoral: return 513; + case Item::DeadBubbleCoralBlock: return 499; + case Item::DeadBubbleCoralFan: return 524; + case Item::DeadBush: return 91; + case Item::DeadFireCoral: return 514; + case Item::DeadFireCoralBlock: return 500; + case Item::DeadFireCoralFan: return 525; + case Item::DeadHornCoral: return 515; + case Item::DeadHornCoralBlock: return 501; + case Item::DeadHornCoralFan: return 526; + case Item::DeadTubeCoral: return 516; + case Item::DeadTubeCoralBlock: return 497; + case Item::DeadTubeCoralFan: return 522; + case Item::DebugStick: return 907; + case Item::DetectorRail: return 86; + case Item::Diamond: return 581; + case Item::DiamondAxe: return 598; + case Item::DiamondBlock: return 182; + case Item::DiamondBoots: return 637; + case Item::DiamondChestplate: return 635; + case Item::DiamondHelmet: return 634; + case Item::DiamondHoe: return 616; + case Item::DiamondHorseArmor: return 862; + case Item::DiamondLeggings: return 636; + case Item::DiamondOre: return 181; + case Item::DiamondPickaxe: return 597; + case Item::DiamondShovel: return 596; + case Item::DiamondSword: return 595; + case Item::Diorite: return 4; + case Item::DioriteSlab: return 555; + case Item::DioriteStairs: return 542; + case Item::DioriteWall: return 300; + case Item::Dirt: return 9; + case Item::Dispenser: return 80; + case Item::DolphinSpawnEgg: return 768; + case Item::DonkeySpawnEgg: return 769; + case Item::DragonBreath: return 891; + case Item::DragonEgg: return 273; + case Item::DragonHead: return 840; + case Item::DriedKelp: return 736; + case Item::DriedKelpBlock: return 676; + case Item::Dropper: return 330; + case Item::DrownedSpawnEgg: return 770; + case Item::Egg: return 682; + case Item::ElderGuardianSpawnEgg: return 771; + case Item::Elytra: return 897; + case Item::Emerald: return 826; + case Item::EmeraldBlock: return 279; + case Item::EmeraldOre: return 276; + case Item::EnchantedBook: return 847; + case Item::EnchantedGoldenApple: return 651; + case Item::EnchantingTable: return 269; + case Item::EndCrystal: return 885; + case Item::EndPortalFrame: return 270; + case Item::EndRod: return 172; + case Item::EndStone: return 271; + case Item::EndStoneBrickSlab: return 548; + case Item::EndStoneBrickStairs: return 534; + case Item::EndStoneBrickWall: return 299; + case Item::EndStoneBricks: return 272; + case Item::EnderChest: return 277; + case Item::EnderEye: return 757; + case Item::EnderPearl: return 744; + case Item::EndermanSpawnEgg: return 772; + case Item::EndermiteSpawnEgg: return 773; + case Item::EvokerSpawnEgg: return 774; + case Item::ExperienceBottle: return 822; + case Item::Farmland: return 184; + case Item::Feather: return 611; + case Item::FermentedSpiderEye: return 752; + case Item::Fern: return 90; + case Item::FilledMap: return 733; + case Item::FireCharge: return 823; + case Item::FireCoral: return 510; + case Item::FireCoralBlock: return 505; + case Item::FireCoralFan: return 520; + case Item::FireworkRocket: return 845; + case Item::FireworkStar: return 846; + case Item::FishingRod: return 684; + case Item::FletchingTable: return 939; + case Item::Flint: return 646; + case Item::FlintAndSteel: return 575; + case Item::FlowerBannerPattern: return 928; + case Item::FlowerPot: return 828; + case Item::FoxSpawnEgg: return 775; + case Item::Furnace: return 185; + case Item::FurnaceMinecart: return 681; + case Item::GhastSpawnEgg: return 776; + case Item::GhastTear: return 746; + case Item::GildedBlackstone: return 965; + case Item::Glass: return 77; + case Item::GlassBottle: return 750; + case Item::GlassPane: return 249; + case Item::GlisteringMelonSlice: return 758; + case Item::GlobeBannerPattern: return 932; + case Item::Glowstone: return 224; + case Item::GlowstoneDust: return 686; + case Item::GoldBlock: return 136; + case Item::GoldIngot: return 583; + case Item::GoldNugget: return 747; + case Item::GoldOre: return 33; + case Item::GoldenApple: return 650; + case Item::GoldenAxe: return 605; + case Item::GoldenBoots: return 641; + case Item::GoldenCarrot: return 834; + case Item::GoldenChestplate: return 639; + case Item::GoldenHelmet: return 638; + case Item::GoldenHoe: return 617; + case Item::GoldenHorseArmor: return 861; + case Item::GoldenLeggings: return 640; + case Item::GoldenPickaxe: return 604; + case Item::GoldenShovel: return 603; + case Item::GoldenSword: return 602; + case Item::Granite: return 2; + case Item::GraniteSlab: return 551; + case Item::GraniteStairs: return 538; + case Item::GraniteWall: return 293; + case Item::Grass: return 89; + case Item::GrassBlock: return 8; + case Item::GrassPath: return 372; + case Item::Gravel: return 32; + case Item::GrayBanner: return 876; + case Item::GrayBed: return 723; + case Item::GrayCarpet: return 357; + case Item::GrayConcrete: return 471; + case Item::GrayConcretePowder: return 487; + case Item::GrayDye: return 701; + case Item::GrayGlazedTerracotta: return 455; + case Item::GrayShulkerBox: return 439; + case Item::GrayStainedGlass: return 386; + case Item::GrayStainedGlassPane: return 402; + case Item::GrayTerracotta: return 338; + case Item::GrayWool: return 102; + case Item::GreenBanner: return 882; + case Item::GreenBed: return 729; + case Item::GreenCarpet: return 363; + case Item::GreenConcrete: return 477; + case Item::GreenConcretePowder: return 493; + case Item::GreenDye: return 695; + case Item::GreenGlazedTerracotta: return 461; + case Item::GreenShulkerBox: return 445; + case Item::GreenStainedGlass: return 392; + case Item::GreenStainedGlassPane: return 408; + case Item::GreenTerracotta: return 344; + case Item::GreenWool: return 108; + case Item::Grindstone: return 940; + case Item::GuardianSpawnEgg: return 777; + case Item::Gunpowder: return 612; + case Item::HayBale: return 349; + case Item::HeartOfTheSea: return 924; + case Item::HeavyWeightedPressurePlate: return 319; + case Item::HoglinSpawnEgg: return 778; + case Item::HoneyBlock: return 955; + case Item::HoneyBottle: return 954; + case Item::Honeycomb: return 951; + case Item::HoneycombBlock: return 956; + case Item::Hopper: return 323; + case Item::HopperMinecart: return 851; + case Item::HornCoral: return 511; + case Item::HornCoralBlock: return 506; + case Item::HornCoralFan: return 521; + case Item::HorseSpawnEgg: return 779; + case Item::HuskSpawnEgg: return 780; + case Item::Ice: return 203; + case Item::InfestedChiseledStoneBricks: return 239; + case Item::InfestedCobblestone: return 235; + case Item::InfestedCrackedStoneBricks: return 238; + case Item::InfestedMossyStoneBricks: return 237; + case Item::InfestedStone: return 234; + case Item::InfestedStoneBricks: return 236; + case Item::InkSac: return 693; + case Item::IronAxe: return 574; + case Item::IronBars: return 247; + case Item::IronBlock: return 137; + case Item::IronBoots: return 633; + case Item::IronChestplate: return 631; + case Item::IronDoor: return 557; + case Item::IronHelmet: return 630; + case Item::IronHoe: return 615; + case Item::IronHorseArmor: return 860; + case Item::IronIngot: return 582; + case Item::IronLeggings: return 632; + case Item::IronNugget: return 905; + case Item::IronOre: return 34; + case Item::IronPickaxe: return 573; + case Item::IronShovel: return 572; + case Item::IronSword: return 586; + case Item::IronTrapdoor: return 348; + case Item::ItemFrame: return 827; + case Item::JackOLantern: return 225; + case Item::Jigsaw: return 569; + case Item::Jukebox: return 207; + case Item::JungleBoat: return 900; + case Item::JungleButton: return 308; + case Item::JungleDoor: return 561; + case Item::JungleFence: return 211; + case Item::JungleFenceGate: return 255; + case Item::JungleLeaves: return 72; + case Item::JungleLog: return 40; + case Item::JunglePlanks: return 18; + case Item::JunglePressurePlate: return 194; + case Item::JungleSapling: return 26; + case Item::JungleSign: return 655; + case Item::JungleSlab: return 141; + case Item::JungleStairs: return 282; + case Item::JungleTrapdoor: return 229; + case Item::JungleWood: return 64; + case Item::Kelp: return 134; + case Item::KnowledgeBook: return 906; + case Item::Ladder: return 186; + case Item::Lantern: return 945; + case Item::LapisBlock: return 79; + case Item::LapisLazuli: return 697; + case Item::LapisOre: return 78; + case Item::LargeFern: return 378; + case Item::LavaBucket: return 662; + case Item::Lead: return 864; + case Item::Leather: return 668; + case Item::LeatherBoots: return 625; + case Item::LeatherChestplate: return 623; + case Item::LeatherHelmet: return 622; + case Item::LeatherHorseArmor: return 863; + case Item::LeatherLeggings: return 624; + case Item::Lectern: return 941; + case Item::Lever: return 189; + case Item::LightBlueBanner: return 872; + case Item::LightBlueBed: return 719; + case Item::LightBlueCarpet: return 353; + case Item::LightBlueConcrete: return 467; + case Item::LightBlueConcretePowder: return 483; + case Item::LightBlueDye: return 705; + case Item::LightBlueGlazedTerracotta: return 451; + case Item::LightBlueShulkerBox: return 435; + case Item::LightBlueStainedGlass: return 382; + case Item::LightBlueStainedGlassPane: return 398; + case Item::LightBlueTerracotta: return 334; + case Item::LightBlueWool: return 98; + case Item::LightGrayBanner: return 877; + case Item::LightGrayBed: return 724; + case Item::LightGrayCarpet: return 358; + case Item::LightGrayConcrete: return 472; + case Item::LightGrayConcretePowder: return 488; + case Item::LightGrayDye: return 700; + case Item::LightGrayGlazedTerracotta: return 456; + case Item::LightGrayShulkerBox: return 440; + case Item::LightGrayStainedGlass: return 387; + case Item::LightGrayStainedGlassPane: return 403; + case Item::LightGrayTerracotta: return 339; + case Item::LightGrayWool: return 103; + case Item::LightWeightedPressurePlate: return 318; + case Item::Lilac: return 374; + case Item::LilyOfTheValley: return 122; + case Item::LilyPad: return 263; + case Item::LimeBanner: return 874; + case Item::LimeBed: return 721; + case Item::LimeCarpet: return 355; + case Item::LimeConcrete: return 469; + case Item::LimeConcretePowder: return 485; + case Item::LimeDye: return 703; + case Item::LimeGlazedTerracotta: return 453; + case Item::LimeShulkerBox: return 437; + case Item::LimeStainedGlass: return 384; + case Item::LimeStainedGlassPane: return 400; + case Item::LimeTerracotta: return 336; + case Item::LimeWool: return 100; + case Item::LingeringPotion: return 895; + case Item::LlamaSpawnEgg: return 781; + case Item::Lodestone: return 957; + case Item::Loom: return 927; + case Item::MagentaBanner: return 871; + case Item::MagentaBed: return 718; + case Item::MagentaCarpet: return 352; + case Item::MagentaConcrete: return 466; + case Item::MagentaConcretePowder: return 482; + case Item::MagentaDye: return 706; + case Item::MagentaGlazedTerracotta: return 450; + case Item::MagentaShulkerBox: return 434; + case Item::MagentaStainedGlass: return 381; + case Item::MagentaStainedGlassPane: return 397; + case Item::MagentaTerracotta: return 333; + case Item::MagentaWool: return 97; + case Item::MagmaBlock: return 424; + case Item::MagmaCream: return 754; + case Item::MagmaCubeSpawnEgg: return 782; + case Item::Map: return 833; + case Item::Melon: return 250; + case Item::MelonSeeds: return 738; + case Item::MelonSlice: return 735; + case Item::MilkBucket: return 669; + case Item::Minecart: return 663; + case Item::MojangBannerPattern: return 931; + case Item::MooshroomSpawnEgg: return 783; + case Item::MossyCobblestone: return 169; + case Item::MossyCobblestoneSlab: return 547; + case Item::MossyCobblestoneStairs: return 533; + case Item::MossyCobblestoneWall: return 288; + case Item::MossyStoneBrickSlab: return 545; + case Item::MossyStoneBrickStairs: return 531; + case Item::MossyStoneBrickWall: return 292; + case Item::MossyStoneBricks: return 241; + case Item::MuleSpawnEgg: return 784; + case Item::MushroomStem: return 246; + case Item::MushroomStew: return 601; + case Item::MusicDiscBlocks: return 910; + case Item::MusicDiscCat: return 909; + case Item::MusicDiscChirp: return 911; + case Item::MusicDiscFar: return 912; + case Item::MusicDiscMall: return 913; + case Item::MusicDiscMellohi: return 914; + case Item::MusicDiscPigstep: return 920; + case Item::MusicDiscStal: return 915; + case Item::MusicDiscStrad: return 916; + case Item::MusicDiscWait: return 919; + case Item::MusicDiscWard: return 917; + case Item::MusicDisc11: return 918; + case Item::MusicDisc13: return 908; + case Item::Mutton: return 867; + case Item::Mycelium: return 262; + case Item::NameTag: return 865; + case Item::NautilusShell: return 923; + case Item::NetherBrick: return 848; + case Item::NetherBrickFence: return 267; + case Item::NetherBrickSlab: return 154; + case Item::NetherBrickStairs: return 268; + case Item::NetherBrickWall: return 295; + case Item::NetherBricks: return 264; + case Item::NetherGoldOre: return 36; + case Item::NetherQuartzOre: return 322; + case Item::NetherSprouts: return 130; + case Item::NetherStar: return 843; + case Item::NetherWart: return 748; + case Item::NetherWartBlock: return 425; + case Item::NetheriteAxe: return 609; + case Item::NetheriteBlock: return 958; + case Item::NetheriteBoots: return 645; + case Item::NetheriteChestplate: return 643; + case Item::NetheriteHelmet: return 642; + case Item::NetheriteHoe: return 618; + case Item::NetheriteIngot: return 584; + case Item::NetheriteLeggings: return 644; + case Item::NetheritePickaxe: return 608; + case Item::NetheriteScrap: return 585; + case Item::NetheriteShovel: return 607; + case Item::NetheriteSword: return 606; + case Item::Netherrack: return 218; + case Item::NoteBlock: return 84; + case Item::OakBoat: return 667; + case Item::OakButton: return 305; + case Item::OakDoor: return 558; + case Item::OakFence: return 208; + case Item::OakFenceGate: return 252; + case Item::OakLeaves: return 69; + case Item::OakLog: return 37; + case Item::OakPlanks: return 15; + case Item::OakPressurePlate: return 191; + case Item::OakSapling: return 23; + case Item::OakSign: return 652; + case Item::OakSlab: return 138; + case Item::OakStairs: return 179; + case Item::OakTrapdoor: return 226; + case Item::OakWood: return 61; + case Item::Observer: return 430; + case Item::Obsidian: return 170; + case Item::OcelotSpawnEgg: return 785; + case Item::OrangeBanner: return 870; + case Item::OrangeBed: return 717; + case Item::OrangeCarpet: return 351; + case Item::OrangeConcrete: return 465; + case Item::OrangeConcretePowder: return 481; + case Item::OrangeDye: return 707; + case Item::OrangeGlazedTerracotta: return 449; + case Item::OrangeShulkerBox: return 433; + case Item::OrangeStainedGlass: return 380; + case Item::OrangeStainedGlassPane: return 396; + case Item::OrangeTerracotta: return 332; + case Item::OrangeTulip: return 117; + case Item::OrangeWool: return 96; + case Item::OxeyeDaisy: return 120; + case Item::PackedIce: return 368; + case Item::Painting: return 649; + case Item::PandaSpawnEgg: return 786; + case Item::Paper: return 677; + case Item::ParrotSpawnEgg: return 787; + case Item::Peony: return 376; + case Item::PetrifiedOakSlab: return 150; + case Item::PhantomMembrane: return 922; + case Item::PhantomSpawnEgg: return 788; + case Item::PigSpawnEgg: return 789; + case Item::PiglinBannerPattern: return 933; + case Item::PiglinSpawnEgg: return 790; + case Item::PillagerSpawnEgg: return 791; + case Item::PinkBanner: return 875; + case Item::PinkBed: return 722; + case Item::PinkCarpet: return 356; + case Item::PinkConcrete: return 470; + case Item::PinkConcretePowder: return 486; + case Item::PinkDye: return 702; + case Item::PinkGlazedTerracotta: return 454; + case Item::PinkShulkerBox: return 438; + case Item::PinkStainedGlass: return 385; + case Item::PinkStainedGlassPane: return 401; + case Item::PinkTerracotta: return 337; + case Item::PinkTulip: return 119; + case Item::PinkWool: return 101; + case Item::Piston: return 94; + case Item::PlayerHead: return 837; + case Item::Podzol: return 11; + case Item::PoisonousPotato: return 832; + case Item::PolarBearSpawnEgg: return 792; + case Item::PolishedAndesite: return 7; + case Item::PolishedAndesiteSlab: return 554; + case Item::PolishedAndesiteStairs: return 541; + case Item::PolishedBasalt: return 222; + case Item::PolishedBlackstone: return 966; + case Item::PolishedBlackstoneBrickSlab: return 971; + case Item::PolishedBlackstoneBrickStairs: return 972; + case Item::PolishedBlackstoneBrickWall: return 303; + case Item::PolishedBlackstoneBricks: return 970; + case Item::PolishedBlackstoneButton: return 313; + case Item::PolishedBlackstonePressurePlate: return 199; + case Item::PolishedBlackstoneSlab: return 967; + case Item::PolishedBlackstoneStairs: return 968; + case Item::PolishedBlackstoneWall: return 302; + case Item::PolishedDiorite: return 5; + case Item::PolishedDioriteSlab: return 546; + case Item::PolishedDioriteStairs: return 532; + case Item::PolishedGranite: return 3; + case Item::PolishedGraniteSlab: return 543; + case Item::PolishedGraniteStairs: return 529; + case Item::PoppedChorusFruit: return 887; + case Item::Poppy: return 112; + case Item::Porkchop: return 647; + case Item::Potato: return 830; + case Item::Potion: return 749; + case Item::PoweredRail: return 85; + case Item::Prismarine: return 411; + case Item::PrismarineBrickSlab: return 160; + case Item::PrismarineBrickStairs: return 415; + case Item::PrismarineBricks: return 412; + case Item::PrismarineCrystals: return 853; + case Item::PrismarineShard: return 852; + case Item::PrismarineSlab: return 159; + case Item::PrismarineStairs: return 414; + case Item::PrismarineWall: return 290; + case Item::Pufferfish: return 690; + case Item::PufferfishBucket: return 670; + case Item::PufferfishSpawnEgg: return 793; + case Item::Pumpkin: return 216; + case Item::PumpkinPie: return 844; + case Item::PumpkinSeeds: return 737; + case Item::PurpleBanner: return 879; + case Item::PurpleBed: return 726; + case Item::PurpleCarpet: return 360; + case Item::PurpleConcrete: return 474; + case Item::PurpleConcretePowder: return 490; + case Item::PurpleDye: return 698; + case Item::PurpleGlazedTerracotta: return 458; + case Item::PurpleShulkerBox: return 442; + case Item::PurpleStainedGlass: return 389; + case Item::PurpleStainedGlassPane: return 405; + case Item::PurpleTerracotta: return 341; + case Item::PurpleWool: return 105; + case Item::PurpurBlock: return 175; + case Item::PurpurPillar: return 176; + case Item::PurpurSlab: return 158; + case Item::PurpurStairs: return 177; + case Item::Quartz: return 849; + case Item::QuartzBlock: return 325; + case Item::QuartzBricks: return 326; + case Item::QuartzPillar: return 327; + case Item::QuartzSlab: return 155; + case Item::QuartzStairs: return 328; + case Item::Rabbit: return 854; + case Item::RabbitFoot: return 857; + case Item::RabbitHide: return 858; + case Item::RabbitSpawnEgg: return 794; + case Item::RabbitStew: return 856; + case Item::Rail: return 187; + case Item::RavagerSpawnEgg: return 795; + case Item::RedBanner: return 883; + case Item::RedBed: return 730; + case Item::RedCarpet: return 364; + case Item::RedConcrete: return 478; + case Item::RedConcretePowder: return 494; + case Item::RedDye: return 694; + case Item::RedGlazedTerracotta: return 462; + case Item::RedMushroom: return 125; + case Item::RedMushroomBlock: return 245; + case Item::RedNetherBrickSlab: return 553; + case Item::RedNetherBrickStairs: return 540; + case Item::RedNetherBrickWall: return 297; + case Item::RedNetherBricks: return 427; + case Item::RedSand: return 31; + case Item::RedSandstone: return 418; + case Item::RedSandstoneSlab: return 156; + case Item::RedSandstoneStairs: return 421; + case Item::RedSandstoneWall: return 291; + case Item::RedShulkerBox: return 446; + case Item::RedStainedGlass: return 393; + case Item::RedStainedGlassPane: return 409; + case Item::RedTerracotta: return 345; + case Item::RedTulip: return 116; + case Item::RedWool: return 109; + case Item::Redstone: return 665; + case Item::RedstoneBlock: return 321; + case Item::RedstoneLamp: return 274; + case Item::RedstoneOre: return 200; + case Item::RedstoneTorch: return 201; + case Item::Repeater: return 566; + case Item::RepeatingCommandBlock: return 422; + case Item::RespawnAnchor: return 974; + case Item::RoseBush: return 375; + case Item::RottenFlesh: return 743; + case Item::Saddle: return 664; + case Item::Salmon: return 688; + case Item::SalmonBucket: return 671; + case Item::SalmonSpawnEgg: return 796; + case Item::Sand: return 30; + case Item::Sandstone: return 81; + case Item::SandstoneSlab: return 148; + case Item::SandstoneStairs: return 275; + case Item::SandstoneWall: return 298; + case Item::Scaffolding: return 556; + case Item::Scute: return 571; + case Item::SeaLantern: return 417; + case Item::SeaPickle: return 93; + case Item::Seagrass: return 92; + case Item::Shears: return 734; + case Item::SheepSpawnEgg: return 797; + case Item::Shield: return 896; + case Item::Shroomlight: return 950; + case Item::ShulkerBox: return 431; + case Item::ShulkerShell: return 904; + case Item::ShulkerSpawnEgg: return 798; + case Item::SilverfishSpawnEgg: return 799; + case Item::SkeletonHorseSpawnEgg: return 801; + case Item::SkeletonSkull: return 835; + case Item::SkeletonSpawnEgg: return 800; + case Item::SkullBannerPattern: return 930; + case Item::SlimeBall: return 679; + case Item::SlimeBlock: return 371; + case Item::SlimeSpawnEgg: return 802; + case Item::SmithingTable: return 942; + case Item::Smoker: return 936; + case Item::SmoothQuartz: return 162; + case Item::SmoothQuartzSlab: return 550; + case Item::SmoothQuartzStairs: return 537; + case Item::SmoothRedSandstone: return 163; + case Item::SmoothRedSandstoneSlab: return 544; + case Item::SmoothRedSandstoneStairs: return 530; + case Item::SmoothSandstone: return 164; + case Item::SmoothSandstoneSlab: return 549; + case Item::SmoothSandstoneStairs: return 536; + case Item::SmoothStone: return 165; + case Item::SmoothStoneSlab: return 147; + case Item::Snow: return 202; + case Item::SnowBlock: return 204; + case Item::Snowball: return 666; + case Item::SoulCampfire: return 949; + case Item::SoulLantern: return 946; + case Item::SoulSand: return 219; + case Item::SoulSoil: return 220; + case Item::SoulTorch: return 223; + case Item::Spawner: return 178; + case Item::SpectralArrow: return 893; + case Item::SpiderEye: return 751; + case Item::SpiderSpawnEgg: return 803; + case Item::SplashPotion: return 892; + case Item::Sponge: return 75; + case Item::SpruceBoat: return 898; + case Item::SpruceButton: return 306; + case Item::SpruceDoor: return 559; + case Item::SpruceFence: return 209; + case Item::SpruceFenceGate: return 253; + case Item::SpruceLeaves: return 70; + case Item::SpruceLog: return 38; + case Item::SprucePlanks: return 16; + case Item::SprucePressurePlate: return 192; + case Item::SpruceSapling: return 24; + case Item::SpruceSign: return 653; + case Item::SpruceSlab: return 139; + case Item::SpruceStairs: return 280; + case Item::SpruceTrapdoor: return 227; + case Item::SpruceWood: return 62; + case Item::SquidSpawnEgg: return 804; + case Item::Stick: return 599; + case Item::StickyPiston: return 87; + case Item::Stone: return 1; + case Item::StoneAxe: return 594; + case Item::StoneBrickSlab: return 153; + case Item::StoneBrickStairs: return 261; + case Item::StoneBrickWall: return 294; + case Item::StoneBricks: return 240; + case Item::StoneButton: return 304; + case Item::StoneHoe: return 614; + case Item::StonePickaxe: return 593; + case Item::StonePressurePlate: return 190; + case Item::StoneShovel: return 592; + case Item::StoneSlab: return 146; + case Item::StoneStairs: return 535; + case Item::StoneSword: return 591; + case Item::Stonecutter: return 943; + case Item::StraySpawnEgg: return 805; + case Item::StriderSpawnEgg: return 806; + case Item::String: return 610; + case Item::StrippedAcaciaLog: return 49; + case Item::StrippedAcaciaWood: return 57; + case Item::StrippedBirchLog: return 47; + case Item::StrippedBirchWood: return 55; + case Item::StrippedCrimsonHyphae: return 59; + case Item::StrippedCrimsonStem: return 51; + case Item::StrippedDarkOakLog: return 50; + case Item::StrippedDarkOakWood: return 58; + case Item::StrippedJungleLog: return 48; + case Item::StrippedJungleWood: return 56; + case Item::StrippedOakLog: return 45; + case Item::StrippedOakWood: return 53; + case Item::StrippedSpruceLog: return 46; + case Item::StrippedSpruceWood: return 54; + case Item::StrippedWarpedHyphae: return 60; + case Item::StrippedWarpedStem: return 52; + case Item::StructureBlock: return 568; + case Item::StructureVoid: return 429; + case Item::Sugar: return 714; + case Item::SugarCane: return 133; + case Item::Sunflower: return 373; + case Item::SuspiciousStew: return 926; + case Item::SweetBerries: return 947; + case Item::TallGrass: return 377; + case Item::Target: return 960; + case Item::Terracotta: return 366; + case Item::TippedArrow: return 894; + case Item::TNT: return 167; + case Item::TNTMinecart: return 850; + case Item::Torch: return 171; + case Item::TotemOfUndying: return 903; + case Item::TraderLlamaSpawnEgg: return 807; + case Item::TrappedChest: return 317; + case Item::Trident: return 921; + case Item::TripwireHook: return 278; + case Item::TropicalFish: return 689; + case Item::TropicalFishBucket: return 673; + case Item::TropicalFishSpawnEgg: return 808; + case Item::TubeCoral: return 507; + case Item::TubeCoralBlock: return 502; + case Item::TubeCoralFan: return 517; + case Item::TurtleEgg: return 496; + case Item::TurtleHelmet: return 570; + case Item::TurtleSpawnEgg: return 809; + case Item::TwistingVines: return 132; + case Item::VexSpawnEgg: return 810; + case Item::VillagerSpawnEgg: return 811; + case Item::VindicatorSpawnEgg: return 812; + case Item::Vine: return 251; + case Item::WanderingTraderSpawnEgg: return 813; + case Item::WarpedButton: return 312; + case Item::WarpedDoor: return 565; + case Item::WarpedFence: return 215; + case Item::WarpedFenceGate: return 259; + case Item::WarpedFungus: return 127; + case Item::WarpedFungusOnA_stick: return 842; + case Item::WarpedHyphae: return 68; + case Item::WarpedNylium: return 13; + case Item::WarpedPlanks: return 22; + case Item::WarpedPressurePlate: return 198; + case Item::WarpedRoots: return 129; + case Item::WarpedSign: return 659; + case Item::WarpedSlab: return 145; + case Item::WarpedStairs: return 284; + case Item::WarpedStem: return 44; + case Item::WarpedTrapdoor: return 233; + case Item::WarpedWartBlock: return 426; + case Item::WaterBucket: return 661; + case Item::WeepingVines: return 131; + case Item::WetSponge: return 76; + case Item::Wheat: return 620; + case Item::WheatSeeds: return 619; + case Item::WhiteBanner: return 869; + case Item::WhiteBed: return 716; + case Item::WhiteCarpet: return 350; + case Item::WhiteConcrete: return 464; + case Item::WhiteConcretePowder: return 480; + case Item::WhiteDye: return 712; + case Item::WhiteGlazedTerracotta: return 448; + case Item::WhiteShulkerBox: return 432; + case Item::WhiteStainedGlass: return 379; + case Item::WhiteStainedGlassPane: return 395; + case Item::WhiteTerracotta: return 331; + case Item::WhiteTulip: return 118; + case Item::WhiteWool: return 95; + case Item::WitchSpawnEgg: return 814; + case Item::WitherRose: return 123; + case Item::WitherSkeletonSkull: return 836; + case Item::WitherSkeletonSpawnEgg: return 815; + case Item::WolfSpawnEgg: return 816; + case Item::WoodenAxe: return 590; + case Item::WoodenHoe: return 613; + case Item::WoodenPickaxe: return 589; + case Item::WoodenShovel: return 588; + case Item::WoodenSword: return 587; + case Item::WritableBook: return 824; + case Item::WrittenBook: return 825; + case Item::YellowBanner: return 873; + case Item::YellowBed: return 720; + case Item::YellowCarpet: return 354; + case Item::YellowConcrete: return 468; + case Item::YellowConcretePowder: return 484; + case Item::YellowDye: return 704; + case Item::YellowGlazedTerracotta: return 452; + case Item::YellowShulkerBox: return 436; + case Item::YellowStainedGlass: return 383; + case Item::YellowStainedGlassPane: return 399; + case Item::YellowTerracotta: return 335; + case Item::YellowWool: return 99; + case Item::ZoglinSpawnEgg: return 817; + case Item::ZombieHead: return 838; + case Item::ZombieHorseSpawnEgg: return 819; + case Item::ZombieSpawnEgg: return 818; + case Item::ZombieVillagerSpawnEgg: return 820; + case Item::ZombiePigmanSpawnEgg: return 821; + default: return 0; + } + } + + Item ToItem(Int32 ID) + { + switch (ID) + { + case 901: return Item::AcaciaBoat; + case 309: return Item::AcaciaButton; + case 562: return Item::AcaciaDoor; + case 212: return Item::AcaciaFence; + case 256: return Item::AcaciaFenceGate; + case 73: return Item::AcaciaLeaves; + case 41: return Item::AcaciaLog; + case 19: return Item::AcaciaPlanks; + case 195: return Item::AcaciaPressurePlate; + case 27: return Item::AcaciaSapling; + case 656: return Item::AcaciaSign; + case 142: return Item::AcaciaSlab; + case 369: return Item::AcaciaStairs; + case 230: return Item::AcaciaTrapdoor; + case 65: return Item::AcaciaWood; + case 329: return Item::ActivatorRail; + case -0: return Item::Air; + case 114: return Item::Allium; + case 959: return Item::AncientDebris; + case 6: return Item::Andesite; + case 552: return Item::AndesiteSlab; + case 539: return Item::AndesiteStairs; + case 296: return Item::AndesiteWall; + case 314: return Item::Anvil; + case 576: return Item::Apple; + case 859: return Item::ArmorStand; + case 578: return Item::Arrow; + case 115: return Item::AzureBluet; + case 831: return Item::BakedPotato; + case 135: return Item::Bamboo; + case 935: return Item::Barrel; + case 347: return Item::Barrier; + case 221: return Item::Basalt; + case 759: return Item::BatSpawnEgg; + case 286: return Item::Beacon; + case 29: return Item::Bedrock; + case 952: return Item::BeeNest; + case 760: return Item::BeeSpawnEgg; + case 739: return Item::Beef; + case 953: return Item::Beehive; + case 888: return Item::Beetroot; + case 889: return Item::BeetrootSeeds; + case 890: return Item::BeetrootSoup; + case 944: return Item::Bell; + case 899: return Item::BirchBoat; + case 307: return Item::BirchButton; + case 560: return Item::BirchDoor; + case 210: return Item::BirchFence; + case 254: return Item::BirchFenceGate; + case 71: return Item::BirchLeaves; + case 39: return Item::BirchLog; + case 17: return Item::BirchPlanks; + case 193: return Item::BirchPressurePlate; + case 25: return Item::BirchSapling; + case 654: return Item::BirchSign; + case 140: return Item::BirchSlab; + case 281: return Item::BirchStairs; + case 228: return Item::BirchTrapdoor; + case 63: return Item::BirchWood; + case 884: return Item::BlackBanner; + case 731: return Item::BlackBed; + case 365: return Item::BlackCarpet; + case 479: return Item::BlackConcrete; + case 495: return Item::BlackConcretePowder; + case 711: return Item::BlackDye; + case 463: return Item::BlackGlazedTerracotta; + case 447: return Item::BlackShulkerBox; + case 394: return Item::BlackStainedGlass; + case 410: return Item::BlackStainedGlassPane; + case 346: return Item::BlackTerracotta; + case 110: return Item::BlackWool; + case 962: return Item::Blackstone; + case 963: return Item::BlackstoneSlab; + case 964: return Item::BlackstoneStairs; + case 301: return Item::BlackstoneWall; + case 937: return Item::BlastFurnace; + case 753: return Item::BlazePowder; + case 745: return Item::BlazeRod; + case 761: return Item::BlazeSpawnEgg; + case 880: return Item::BlueBanner; + case 727: return Item::BlueBed; + case 361: return Item::BlueCarpet; + case 475: return Item::BlueConcrete; + case 491: return Item::BlueConcretePowder; + case 709: return Item::BlueDye; + case 459: return Item::BlueGlazedTerracotta; + case 527: return Item::BlueIce; + case 113: return Item::BlueOrchid; + case 443: return Item::BlueShulkerBox; + case 390: return Item::BlueStainedGlass; + case 406: return Item::BlueStainedGlassPane; + case 342: return Item::BlueTerracotta; + case 106: return Item::BlueWool; + case 713: return Item::Bone; + case 428: return Item::BoneBlock; + case 708: return Item::BoneMeal; + case 678: return Item::Book; + case 168: return Item::Bookshelf; + case 577: return Item::Bow; + case 600: return Item::Bowl; + case 508: return Item::BrainCoral; + case 503: return Item::BrainCoralBlock; + case 518: return Item::BrainCoralFan; + case 621: return Item::Bread; + case 755: return Item::BrewingStand; + case 674: return Item::Brick; + case 152: return Item::BrickSlab; + case 260: return Item::BrickStairs; + case 289: return Item::BrickWall; + case 166: return Item::Bricks; + case 881: return Item::BrownBanner; + case 728: return Item::BrownBed; + case 362: return Item::BrownCarpet; + case 476: return Item::BrownConcrete; + case 492: return Item::BrownConcretePowder; + case 710: return Item::BrownDye; + case 460: return Item::BrownGlazedTerracotta; + case 124: return Item::BrownMushroom; + case 244: return Item::BrownMushroomBlock; + case 444: return Item::BrownShulkerBox; + case 391: return Item::BrownStainedGlass; + case 407: return Item::BrownStainedGlassPane; + case 343: return Item::BrownTerracotta; + case 107: return Item::BrownWool; + case 509: return Item::BubbleCoral; + case 504: return Item::BubbleCoralBlock; + case 519: return Item::BubbleCoralFan; + case 660: return Item::Bucket; + case 205: return Item::Cactus; + case 715: return Item::Cake; + case 948: return Item::Campfire; + case 829: return Item::Carrot; + case 841: return Item::CarrotOnAStick; + case 938: return Item::CartographyTable; + case 217: return Item::CarvedPumpkin; + case 762: return Item::CatSpawnEgg; + case 756: return Item::Cauldron; + case 763: return Item::CaveSpiderSpawnEgg; + case 248: return Item::Chain; + case 423: return Item::ChainCommandBlock; + case 629: return Item::ChainmailBoots; + case 627: return Item::ChainmailChestplate; + case 626: return Item::ChainmailHelmet; + case 628: return Item::ChainmailLeggings; + case 580: return Item::Charcoal; + case 180: return Item::Chest; + case 680: return Item::ChestMinecart; + case 741: return Item::Chicken; + case 764: return Item::ChickenSpawnEgg; + case 315: return Item::ChippedAnvil; + case 266: return Item::ChiseledNetherBricks; + case 969: return Item::ChiseledPolishedBlackstone; + case 324: return Item::ChiseledQuartzBlock; + case 419: return Item::ChiseledRedSandstone; + case 82: return Item::ChiseledSandstone; + case 243: return Item::ChiseledStoneBricks; + case 174: return Item::ChorusFlower; + case 886: return Item::ChorusFruit; + case 173: return Item::ChorusPlant; + case 206: return Item::Clay; + case 675: return Item::ClayBall; + case 685: return Item::Clock; + case 579: return Item::Coal; + case 367: return Item::CoalBlock; + case 35: return Item::CoalOre; + case 10: return Item::CoarseDirt; + case 14: return Item::Cobblestone; + case 151: return Item::CobblestoneSlab; + case 188: return Item::CobblestoneStairs; + case 287: return Item::CobblestoneWall; + case 88: return Item::Cobweb; + case 696: return Item::CocoaBeans; + case 687: return Item::Cod; + case 672: return Item::CodBucket; + case 765: return Item::CodSpawnEgg; + case 285: return Item::CommandBlock; + case 866: return Item::CommandBlockMinecart; + case 567: return Item::Comparator; + case 683: return Item::Compass; + case 934: return Item::Composter; + case 528: return Item::Conduit; + case 740: return Item::CookedBeef; + case 742: return Item::CookedChicken; + case 691: return Item::CookedCod; + case 868: return Item::CookedMutton; + case 648: return Item::CookedPorkchop; + case 855: return Item::CookedRabbit; + case 692: return Item::CookedSalmon; + case 732: return Item::Cookie; + case 121: return Item::Cornflower; + case 766: return Item::CowSpawnEgg; + case 265: return Item::CrackedNetherBricks; + case 973: return Item::CrackedPolishedBlackstoneBricks; + case 242: return Item::CrackedStoneBricks; + case 183: return Item::CraftingTable; + case 929: return Item::CreeperBannerPattern; + case 839: return Item::CreeperHead; + case 767: return Item::CreeperSpawnEgg; + case 311: return Item::CrimsonButton; + case 564: return Item::CrimsonDoor; + case 214: return Item::CrimsonFence; + case 258: return Item::CrimsonFenceGate; + case 126: return Item::CrimsonFungus; + case 67: return Item::CrimsonHyphae; + case 12: return Item::CrimsonNylium; + case 21: return Item::CrimsonPlanks; + case 197: return Item::CrimsonPressurePlate; + case 128: return Item::CrimsonRoots; + case 658: return Item::CrimsonSign; + case 144: return Item::CrimsonSlab; + case 283: return Item::CrimsonStairs; + case 43: return Item::CrimsonStem; + case 232: return Item::CrimsonTrapdoor; + case 925: return Item::Crossbow; + case 961: return Item::CryingObsidian; + case 420: return Item::CutRedSandstone; + case 157: return Item::CutRedSandstoneSlab; + case 83: return Item::CutSandstone; + case 149: return Item::CutSandstoneSlab; + case 878: return Item::CyanBanner; + case 725: return Item::CyanBed; + case 359: return Item::CyanCarpet; + case 473: return Item::CyanConcrete; + case 489: return Item::CyanConcretePowder; + case 699: return Item::CyanDye; + case 457: return Item::CyanGlazedTerracotta; + case 441: return Item::CyanShulkerBox; + case 388: return Item::CyanStainedGlass; + case 404: return Item::CyanStainedGlassPane; + case 340: return Item::CyanTerracotta; + case 104: return Item::CyanWool; + case 316: return Item::DamagedAnvil; + case 111: return Item::Dandelion; + case 902: return Item::DarkOakBoat; + case 310: return Item::DarkOakButton; + case 563: return Item::DarkOakDoor; + case 213: return Item::DarkOakFence; + case 257: return Item::DarkOakFenceGate; + case 74: return Item::DarkOakLeaves; + case 42: return Item::DarkOakLog; + case 20: return Item::DarkOakPlanks; + case 196: return Item::DarkOakPressurePlate; + case 28: return Item::DarkOakSapling; + case 657: return Item::DarkOakSign; + case 143: return Item::DarkOakSlab; + case 370: return Item::DarkOakStairs; + case 231: return Item::DarkOakTrapdoor; + case 66: return Item::DarkOakWood; + case 413: return Item::DarkPrismarine; + case 161: return Item::DarkPrismarineSlab; + case 416: return Item::DarkPrismarineStairs; + case 320: return Item::DaylightDetector; + case 512: return Item::DeadBrainCoral; + case 498: return Item::DeadBrainCoralBlock; + case 523: return Item::DeadBrainCoralFan; + case 513: return Item::DeadBubbleCoral; + case 499: return Item::DeadBubbleCoralBlock; + case 524: return Item::DeadBubbleCoralFan; + case 91: return Item::DeadBush; + case 514: return Item::DeadFireCoral; + case 500: return Item::DeadFireCoralBlock; + case 525: return Item::DeadFireCoralFan; + case 515: return Item::DeadHornCoral; + case 501: return Item::DeadHornCoralBlock; + case 526: return Item::DeadHornCoralFan; + case 516: return Item::DeadTubeCoral; + case 497: return Item::DeadTubeCoralBlock; + case 522: return Item::DeadTubeCoralFan; + case 907: return Item::DebugStick; + case 86: return Item::DetectorRail; + case 581: return Item::Diamond; + case 598: return Item::DiamondAxe; + case 182: return Item::DiamondBlock; + case 637: return Item::DiamondBoots; + case 635: return Item::DiamondChestplate; + case 634: return Item::DiamondHelmet; + case 616: return Item::DiamondHoe; + case 862: return Item::DiamondHorseArmor; + case 636: return Item::DiamondLeggings; + case 181: return Item::DiamondOre; + case 597: return Item::DiamondPickaxe; + case 596: return Item::DiamondShovel; + case 595: return Item::DiamondSword; + case 4: return Item::Diorite; + case 555: return Item::DioriteSlab; + case 542: return Item::DioriteStairs; + case 300: return Item::DioriteWall; + case 9: return Item::Dirt; + case 80: return Item::Dispenser; + case 768: return Item::DolphinSpawnEgg; + case 769: return Item::DonkeySpawnEgg; + case 891: return Item::DragonBreath; + case 273: return Item::DragonEgg; + case 840: return Item::DragonHead; + case 736: return Item::DriedKelp; + case 676: return Item::DriedKelpBlock; + case 330: return Item::Dropper; + case 770: return Item::DrownedSpawnEgg; + case 682: return Item::Egg; + case 771: return Item::ElderGuardianSpawnEgg; + case 897: return Item::Elytra; + case 826: return Item::Emerald; + case 279: return Item::EmeraldBlock; + case 276: return Item::EmeraldOre; + case 847: return Item::EnchantedBook; + case 651: return Item::EnchantedGoldenApple; + case 269: return Item::EnchantingTable; + case 885: return Item::EndCrystal; + case 270: return Item::EndPortalFrame; + case 172: return Item::EndRod; + case 271: return Item::EndStone; + case 548: return Item::EndStoneBrickSlab; + case 534: return Item::EndStoneBrickStairs; + case 299: return Item::EndStoneBrickWall; + case 272: return Item::EndStoneBricks; + case 277: return Item::EnderChest; + case 757: return Item::EnderEye; + case 744: return Item::EnderPearl; + case 772: return Item::EndermanSpawnEgg; + case 773: return Item::EndermiteSpawnEgg; + case 774: return Item::EvokerSpawnEgg; + case 822: return Item::ExperienceBottle; + case 184: return Item::Farmland; + case 611: return Item::Feather; + case 752: return Item::FermentedSpiderEye; + case 90: return Item::Fern; + case 733: return Item::FilledMap; + case 823: return Item::FireCharge; + case 510: return Item::FireCoral; + case 505: return Item::FireCoralBlock; + case 520: return Item::FireCoralFan; + case 845: return Item::FireworkRocket; + case 846: return Item::FireworkStar; + case 684: return Item::FishingRod; + case 939: return Item::FletchingTable; + case 646: return Item::Flint; + case 575: return Item::FlintAndSteel; + case 928: return Item::FlowerBannerPattern; + case 828: return Item::FlowerPot; + case 775: return Item::FoxSpawnEgg; + case 185: return Item::Furnace; + case 681: return Item::FurnaceMinecart; + case 776: return Item::GhastSpawnEgg; + case 746: return Item::GhastTear; + case 965: return Item::GildedBlackstone; + case 77: return Item::Glass; + case 750: return Item::GlassBottle; + case 249: return Item::GlassPane; + case 758: return Item::GlisteringMelonSlice; + case 932: return Item::GlobeBannerPattern; + case 224: return Item::Glowstone; + case 686: return Item::GlowstoneDust; + case 136: return Item::GoldBlock; + case 583: return Item::GoldIngot; + case 747: return Item::GoldNugget; + case 33: return Item::GoldOre; + case 650: return Item::GoldenApple; + case 605: return Item::GoldenAxe; + case 641: return Item::GoldenBoots; + case 834: return Item::GoldenCarrot; + case 639: return Item::GoldenChestplate; + case 638: return Item::GoldenHelmet; + case 617: return Item::GoldenHoe; + case 861: return Item::GoldenHorseArmor; + case 640: return Item::GoldenLeggings; + case 604: return Item::GoldenPickaxe; + case 603: return Item::GoldenShovel; + case 602: return Item::GoldenSword; + case 2: return Item::Granite; + case 551: return Item::GraniteSlab; + case 538: return Item::GraniteStairs; + case 293: return Item::GraniteWall; + case 89: return Item::Grass; + case 8: return Item::GrassBlock; + case 372: return Item::GrassPath; + case 32: return Item::Gravel; + case 876: return Item::GrayBanner; + case 723: return Item::GrayBed; + case 357: return Item::GrayCarpet; + case 471: return Item::GrayConcrete; + case 487: return Item::GrayConcretePowder; + case 701: return Item::GrayDye; + case 455: return Item::GrayGlazedTerracotta; + case 439: return Item::GrayShulkerBox; + case 386: return Item::GrayStainedGlass; + case 402: return Item::GrayStainedGlassPane; + case 338: return Item::GrayTerracotta; + case 102: return Item::GrayWool; + case 882: return Item::GreenBanner; + case 729: return Item::GreenBed; + case 363: return Item::GreenCarpet; + case 477: return Item::GreenConcrete; + case 493: return Item::GreenConcretePowder; + case 695: return Item::GreenDye; + case 461: return Item::GreenGlazedTerracotta; + case 445: return Item::GreenShulkerBox; + case 392: return Item::GreenStainedGlass; + case 408: return Item::GreenStainedGlassPane; + case 344: return Item::GreenTerracotta; + case 108: return Item::GreenWool; + case 940: return Item::Grindstone; + case 777: return Item::GuardianSpawnEgg; + case 612: return Item::Gunpowder; + case 349: return Item::HayBale; + case 924: return Item::HeartOfTheSea; + case 319: return Item::HeavyWeightedPressurePlate; + case 778: return Item::HoglinSpawnEgg; + case 955: return Item::HoneyBlock; + case 954: return Item::HoneyBottle; + case 951: return Item::Honeycomb; + case 956: return Item::HoneycombBlock; + case 323: return Item::Hopper; + case 851: return Item::HopperMinecart; + case 511: return Item::HornCoral; + case 506: return Item::HornCoralBlock; + case 521: return Item::HornCoralFan; + case 779: return Item::HorseSpawnEgg; + case 780: return Item::HuskSpawnEgg; + case 203: return Item::Ice; + case 239: return Item::InfestedChiseledStoneBricks; + case 235: return Item::InfestedCobblestone; + case 238: return Item::InfestedCrackedStoneBricks; + case 237: return Item::InfestedMossyStoneBricks; + case 234: return Item::InfestedStone; + case 236: return Item::InfestedStoneBricks; + case 693: return Item::InkSac; + case 574: return Item::IronAxe; + case 247: return Item::IronBars; + case 137: return Item::IronBlock; + case 633: return Item::IronBoots; + case 631: return Item::IronChestplate; + case 557: return Item::IronDoor; + case 630: return Item::IronHelmet; + case 615: return Item::IronHoe; + case 860: return Item::IronHorseArmor; + case 582: return Item::IronIngot; + case 632: return Item::IronLeggings; + case 905: return Item::IronNugget; + case 34: return Item::IronOre; + case 573: return Item::IronPickaxe; + case 572: return Item::IronShovel; + case 586: return Item::IronSword; + case 348: return Item::IronTrapdoor; + case 827: return Item::ItemFrame; + case 225: return Item::JackOLantern; + case 569: return Item::Jigsaw; + case 207: return Item::Jukebox; + case 900: return Item::JungleBoat; + case 308: return Item::JungleButton; + case 561: return Item::JungleDoor; + case 211: return Item::JungleFence; + case 255: return Item::JungleFenceGate; + case 72: return Item::JungleLeaves; + case 40: return Item::JungleLog; + case 18: return Item::JunglePlanks; + case 194: return Item::JunglePressurePlate; + case 26: return Item::JungleSapling; + case 655: return Item::JungleSign; + case 141: return Item::JungleSlab; + case 282: return Item::JungleStairs; + case 229: return Item::JungleTrapdoor; + case 64: return Item::JungleWood; + case 134: return Item::Kelp; + case 906: return Item::KnowledgeBook; + case 186: return Item::Ladder; + case 945: return Item::Lantern; + case 79: return Item::LapisBlock; + case 697: return Item::LapisLazuli; + case 78: return Item::LapisOre; + case 378: return Item::LargeFern; + case 662: return Item::LavaBucket; + case 864: return Item::Lead; + case 668: return Item::Leather; + case 625: return Item::LeatherBoots; + case 623: return Item::LeatherChestplate; + case 622: return Item::LeatherHelmet; + case 863: return Item::LeatherHorseArmor; + case 624: return Item::LeatherLeggings; + case 941: return Item::Lectern; + case 189: return Item::Lever; + case 872: return Item::LightBlueBanner; + case 719: return Item::LightBlueBed; + case 353: return Item::LightBlueCarpet; + case 467: return Item::LightBlueConcrete; + case 483: return Item::LightBlueConcretePowder; + case 705: return Item::LightBlueDye; + case 451: return Item::LightBlueGlazedTerracotta; + case 435: return Item::LightBlueShulkerBox; + case 382: return Item::LightBlueStainedGlass; + case 398: return Item::LightBlueStainedGlassPane; + case 334: return Item::LightBlueTerracotta; + case 98: return Item::LightBlueWool; + case 877: return Item::LightGrayBanner; + case 724: return Item::LightGrayBed; + case 358: return Item::LightGrayCarpet; + case 472: return Item::LightGrayConcrete; + case 488: return Item::LightGrayConcretePowder; + case 700: return Item::LightGrayDye; + case 456: return Item::LightGrayGlazedTerracotta; + case 440: return Item::LightGrayShulkerBox; + case 387: return Item::LightGrayStainedGlass; + case 403: return Item::LightGrayStainedGlassPane; + case 339: return Item::LightGrayTerracotta; + case 103: return Item::LightGrayWool; + case 318: return Item::LightWeightedPressurePlate; + case 374: return Item::Lilac; + case 122: return Item::LilyOfTheValley; + case 263: return Item::LilyPad; + case 874: return Item::LimeBanner; + case 721: return Item::LimeBed; + case 355: return Item::LimeCarpet; + case 469: return Item::LimeConcrete; + case 485: return Item::LimeConcretePowder; + case 703: return Item::LimeDye; + case 453: return Item::LimeGlazedTerracotta; + case 437: return Item::LimeShulkerBox; + case 384: return Item::LimeStainedGlass; + case 400: return Item::LimeStainedGlassPane; + case 336: return Item::LimeTerracotta; + case 100: return Item::LimeWool; + case 895: return Item::LingeringPotion; + case 781: return Item::LlamaSpawnEgg; + case 957: return Item::Lodestone; + case 927: return Item::Loom; + case 871: return Item::MagentaBanner; + case 718: return Item::MagentaBed; + case 352: return Item::MagentaCarpet; + case 466: return Item::MagentaConcrete; + case 482: return Item::MagentaConcretePowder; + case 706: return Item::MagentaDye; + case 450: return Item::MagentaGlazedTerracotta; + case 434: return Item::MagentaShulkerBox; + case 381: return Item::MagentaStainedGlass; + case 397: return Item::MagentaStainedGlassPane; + case 333: return Item::MagentaTerracotta; + case 97: return Item::MagentaWool; + case 424: return Item::MagmaBlock; + case 754: return Item::MagmaCream; + case 782: return Item::MagmaCubeSpawnEgg; + case 833: return Item::Map; + case 250: return Item::Melon; + case 738: return Item::MelonSeeds; + case 735: return Item::MelonSlice; + case 669: return Item::MilkBucket; + case 663: return Item::Minecart; + case 931: return Item::MojangBannerPattern; + case 783: return Item::MooshroomSpawnEgg; + case 169: return Item::MossyCobblestone; + case 547: return Item::MossyCobblestoneSlab; + case 533: return Item::MossyCobblestoneStairs; + case 288: return Item::MossyCobblestoneWall; + case 545: return Item::MossyStoneBrickSlab; + case 531: return Item::MossyStoneBrickStairs; + case 292: return Item::MossyStoneBrickWall; + case 241: return Item::MossyStoneBricks; + case 784: return Item::MuleSpawnEgg; + case 246: return Item::MushroomStem; + case 601: return Item::MushroomStew; + case 910: return Item::MusicDiscBlocks; + case 909: return Item::MusicDiscCat; + case 911: return Item::MusicDiscChirp; + case 912: return Item::MusicDiscFar; + case 913: return Item::MusicDiscMall; + case 914: return Item::MusicDiscMellohi; + case 920: return Item::MusicDiscPigstep; + case 915: return Item::MusicDiscStal; + case 916: return Item::MusicDiscStrad; + case 919: return Item::MusicDiscWait; + case 917: return Item::MusicDiscWard; + case 918: return Item::MusicDisc11; + case 908: return Item::MusicDisc13; + case 867: return Item::Mutton; + case 262: return Item::Mycelium; + case 865: return Item::NameTag; + case 923: return Item::NautilusShell; + case 848: return Item::NetherBrick; + case 267: return Item::NetherBrickFence; + case 154: return Item::NetherBrickSlab; + case 268: return Item::NetherBrickStairs; + case 295: return Item::NetherBrickWall; + case 264: return Item::NetherBricks; + case 36: return Item::NetherGoldOre; + case 322: return Item::NetherQuartzOre; + case 130: return Item::NetherSprouts; + case 843: return Item::NetherStar; + case 748: return Item::NetherWart; + case 425: return Item::NetherWartBlock; + case 609: return Item::NetheriteAxe; + case 958: return Item::NetheriteBlock; + case 645: return Item::NetheriteBoots; + case 643: return Item::NetheriteChestplate; + case 642: return Item::NetheriteHelmet; + case 618: return Item::NetheriteHoe; + case 584: return Item::NetheriteIngot; + case 644: return Item::NetheriteLeggings; + case 608: return Item::NetheritePickaxe; + case 585: return Item::NetheriteScrap; + case 607: return Item::NetheriteShovel; + case 606: return Item::NetheriteSword; + case 218: return Item::Netherrack; + case 84: return Item::NoteBlock; + case 667: return Item::OakBoat; + case 305: return Item::OakButton; + case 558: return Item::OakDoor; + case 208: return Item::OakFence; + case 252: return Item::OakFenceGate; + case 69: return Item::OakLeaves; + case 37: return Item::OakLog; + case 15: return Item::OakPlanks; + case 191: return Item::OakPressurePlate; + case 23: return Item::OakSapling; + case 652: return Item::OakSign; + case 138: return Item::OakSlab; + case 179: return Item::OakStairs; + case 226: return Item::OakTrapdoor; + case 61: return Item::OakWood; + case 430: return Item::Observer; + case 170: return Item::Obsidian; + case 785: return Item::OcelotSpawnEgg; + case 870: return Item::OrangeBanner; + case 717: return Item::OrangeBed; + case 351: return Item::OrangeCarpet; + case 465: return Item::OrangeConcrete; + case 481: return Item::OrangeConcretePowder; + case 707: return Item::OrangeDye; + case 449: return Item::OrangeGlazedTerracotta; + case 433: return Item::OrangeShulkerBox; + case 380: return Item::OrangeStainedGlass; + case 396: return Item::OrangeStainedGlassPane; + case 332: return Item::OrangeTerracotta; + case 117: return Item::OrangeTulip; + case 96: return Item::OrangeWool; + case 120: return Item::OxeyeDaisy; + case 368: return Item::PackedIce; + case 649: return Item::Painting; + case 786: return Item::PandaSpawnEgg; + case 677: return Item::Paper; + case 787: return Item::ParrotSpawnEgg; + case 376: return Item::Peony; + case 150: return Item::PetrifiedOakSlab; + case 922: return Item::PhantomMembrane; + case 788: return Item::PhantomSpawnEgg; + case 789: return Item::PigSpawnEgg; + case 933: return Item::PiglinBannerPattern; + case 790: return Item::PiglinSpawnEgg; + case 791: return Item::PillagerSpawnEgg; + case 875: return Item::PinkBanner; + case 722: return Item::PinkBed; + case 356: return Item::PinkCarpet; + case 470: return Item::PinkConcrete; + case 486: return Item::PinkConcretePowder; + case 702: return Item::PinkDye; + case 454: return Item::PinkGlazedTerracotta; + case 438: return Item::PinkShulkerBox; + case 385: return Item::PinkStainedGlass; + case 401: return Item::PinkStainedGlassPane; + case 337: return Item::PinkTerracotta; + case 119: return Item::PinkTulip; + case 101: return Item::PinkWool; + case 94: return Item::Piston; + case 837: return Item::PlayerHead; + case 11: return Item::Podzol; + case 832: return Item::PoisonousPotato; + case 792: return Item::PolarBearSpawnEgg; + case 7: return Item::PolishedAndesite; + case 554: return Item::PolishedAndesiteSlab; + case 541: return Item::PolishedAndesiteStairs; + case 222: return Item::PolishedBasalt; + case 966: return Item::PolishedBlackstone; + case 971: return Item::PolishedBlackstoneBrickSlab; + case 972: return Item::PolishedBlackstoneBrickStairs; + case 303: return Item::PolishedBlackstoneBrickWall; + case 970: return Item::PolishedBlackstoneBricks; + case 313: return Item::PolishedBlackstoneButton; + case 199: return Item::PolishedBlackstonePressurePlate; + case 967: return Item::PolishedBlackstoneSlab; + case 968: return Item::PolishedBlackstoneStairs; + case 302: return Item::PolishedBlackstoneWall; + case 5: return Item::PolishedDiorite; + case 546: return Item::PolishedDioriteSlab; + case 532: return Item::PolishedDioriteStairs; + case 3: return Item::PolishedGranite; + case 543: return Item::PolishedGraniteSlab; + case 529: return Item::PolishedGraniteStairs; + case 887: return Item::PoppedChorusFruit; + case 112: return Item::Poppy; + case 647: return Item::Porkchop; + case 830: return Item::Potato; + case 749: return Item::Potion; + case 85: return Item::PoweredRail; + case 411: return Item::Prismarine; + case 160: return Item::PrismarineBrickSlab; + case 415: return Item::PrismarineBrickStairs; + case 412: return Item::PrismarineBricks; + case 853: return Item::PrismarineCrystals; + case 852: return Item::PrismarineShard; + case 159: return Item::PrismarineSlab; + case 414: return Item::PrismarineStairs; + case 290: return Item::PrismarineWall; + case 690: return Item::Pufferfish; + case 670: return Item::PufferfishBucket; + case 793: return Item::PufferfishSpawnEgg; + case 216: return Item::Pumpkin; + case 844: return Item::PumpkinPie; + case 737: return Item::PumpkinSeeds; + case 879: return Item::PurpleBanner; + case 726: return Item::PurpleBed; + case 360: return Item::PurpleCarpet; + case 474: return Item::PurpleConcrete; + case 490: return Item::PurpleConcretePowder; + case 698: return Item::PurpleDye; + case 458: return Item::PurpleGlazedTerracotta; + case 442: return Item::PurpleShulkerBox; + case 389: return Item::PurpleStainedGlass; + case 405: return Item::PurpleStainedGlassPane; + case 341: return Item::PurpleTerracotta; + case 105: return Item::PurpleWool; + case 175: return Item::PurpurBlock; + case 176: return Item::PurpurPillar; + case 158: return Item::PurpurSlab; + case 177: return Item::PurpurStairs; + case 849: return Item::Quartz; + case 325: return Item::QuartzBlock; + case 326: return Item::QuartzBricks; + case 327: return Item::QuartzPillar; + case 155: return Item::QuartzSlab; + case 328: return Item::QuartzStairs; + case 854: return Item::Rabbit; + case 857: return Item::RabbitFoot; + case 858: return Item::RabbitHide; + case 794: return Item::RabbitSpawnEgg; + case 856: return Item::RabbitStew; + case 187: return Item::Rail; + case 795: return Item::RavagerSpawnEgg; + case 883: return Item::RedBanner; + case 730: return Item::RedBed; + case 364: return Item::RedCarpet; + case 478: return Item::RedConcrete; + case 494: return Item::RedConcretePowder; + case 694: return Item::RedDye; + case 462: return Item::RedGlazedTerracotta; + case 125: return Item::RedMushroom; + case 245: return Item::RedMushroomBlock; + case 553: return Item::RedNetherBrickSlab; + case 540: return Item::RedNetherBrickStairs; + case 297: return Item::RedNetherBrickWall; + case 427: return Item::RedNetherBricks; + case 31: return Item::RedSand; + case 418: return Item::RedSandstone; + case 156: return Item::RedSandstoneSlab; + case 421: return Item::RedSandstoneStairs; + case 291: return Item::RedSandstoneWall; + case 446: return Item::RedShulkerBox; + case 393: return Item::RedStainedGlass; + case 409: return Item::RedStainedGlassPane; + case 345: return Item::RedTerracotta; + case 116: return Item::RedTulip; + case 109: return Item::RedWool; + case 665: return Item::Redstone; + case 321: return Item::RedstoneBlock; + case 274: return Item::RedstoneLamp; + case 200: return Item::RedstoneOre; + case 201: return Item::RedstoneTorch; + case 566: return Item::Repeater; + case 422: return Item::RepeatingCommandBlock; + case 974: return Item::RespawnAnchor; + case 375: return Item::RoseBush; + case 743: return Item::RottenFlesh; + case 664: return Item::Saddle; + case 688: return Item::Salmon; + case 671: return Item::SalmonBucket; + case 796: return Item::SalmonSpawnEgg; + case 30: return Item::Sand; + case 81: return Item::Sandstone; + case 148: return Item::SandstoneSlab; + case 275: return Item::SandstoneStairs; + case 298: return Item::SandstoneWall; + case 556: return Item::Scaffolding; + case 571: return Item::Scute; + case 417: return Item::SeaLantern; + case 93: return Item::SeaPickle; + case 92: return Item::Seagrass; + case 734: return Item::Shears; + case 797: return Item::SheepSpawnEgg; + case 896: return Item::Shield; + case 950: return Item::Shroomlight; + case 431: return Item::ShulkerBox; + case 904: return Item::ShulkerShell; + case 798: return Item::ShulkerSpawnEgg; + case 799: return Item::SilverfishSpawnEgg; + case 801: return Item::SkeletonHorseSpawnEgg; + case 835: return Item::SkeletonSkull; + case 800: return Item::SkeletonSpawnEgg; + case 930: return Item::SkullBannerPattern; + case 679: return Item::SlimeBall; + case 371: return Item::SlimeBlock; + case 802: return Item::SlimeSpawnEgg; + case 942: return Item::SmithingTable; + case 936: return Item::Smoker; + case 162: return Item::SmoothQuartz; + case 550: return Item::SmoothQuartzSlab; + case 537: return Item::SmoothQuartzStairs; + case 163: return Item::SmoothRedSandstone; + case 544: return Item::SmoothRedSandstoneSlab; + case 530: return Item::SmoothRedSandstoneStairs; + case 164: return Item::SmoothSandstone; + case 549: return Item::SmoothSandstoneSlab; + case 536: return Item::SmoothSandstoneStairs; + case 165: return Item::SmoothStone; + case 147: return Item::SmoothStoneSlab; + case 202: return Item::Snow; + case 204: return Item::SnowBlock; + case 666: return Item::Snowball; + case 949: return Item::SoulCampfire; + case 946: return Item::SoulLantern; + case 219: return Item::SoulSand; + case 220: return Item::SoulSoil; + case 223: return Item::SoulTorch; + case 178: return Item::Spawner; + case 893: return Item::SpectralArrow; + case 751: return Item::SpiderEye; + case 803: return Item::SpiderSpawnEgg; + case 892: return Item::SplashPotion; + case 75: return Item::Sponge; + case 898: return Item::SpruceBoat; + case 306: return Item::SpruceButton; + case 559: return Item::SpruceDoor; + case 209: return Item::SpruceFence; + case 253: return Item::SpruceFenceGate; + case 70: return Item::SpruceLeaves; + case 38: return Item::SpruceLog; + case 16: return Item::SprucePlanks; + case 192: return Item::SprucePressurePlate; + case 24: return Item::SpruceSapling; + case 653: return Item::SpruceSign; + case 139: return Item::SpruceSlab; + case 280: return Item::SpruceStairs; + case 227: return Item::SpruceTrapdoor; + case 62: return Item::SpruceWood; + case 804: return Item::SquidSpawnEgg; + case 599: return Item::Stick; + case 87: return Item::StickyPiston; + case 1: return Item::Stone; + case 594: return Item::StoneAxe; + case 153: return Item::StoneBrickSlab; + case 261: return Item::StoneBrickStairs; + case 294: return Item::StoneBrickWall; + case 240: return Item::StoneBricks; + case 304: return Item::StoneButton; + case 614: return Item::StoneHoe; + case 593: return Item::StonePickaxe; + case 190: return Item::StonePressurePlate; + case 592: return Item::StoneShovel; + case 146: return Item::StoneSlab; + case 535: return Item::StoneStairs; + case 591: return Item::StoneSword; + case 943: return Item::Stonecutter; + case 805: return Item::StraySpawnEgg; + case 806: return Item::StriderSpawnEgg; + case 610: return Item::String; + case 49: return Item::StrippedAcaciaLog; + case 57: return Item::StrippedAcaciaWood; + case 47: return Item::StrippedBirchLog; + case 55: return Item::StrippedBirchWood; + case 59: return Item::StrippedCrimsonHyphae; + case 51: return Item::StrippedCrimsonStem; + case 50: return Item::StrippedDarkOakLog; + case 58: return Item::StrippedDarkOakWood; + case 48: return Item::StrippedJungleLog; + case 56: return Item::StrippedJungleWood; + case 45: return Item::StrippedOakLog; + case 53: return Item::StrippedOakWood; + case 46: return Item::StrippedSpruceLog; + case 54: return Item::StrippedSpruceWood; + case 60: return Item::StrippedWarpedHyphae; + case 52: return Item::StrippedWarpedStem; + case 568: return Item::StructureBlock; + case 429: return Item::StructureVoid; + case 714: return Item::Sugar; + case 133: return Item::SugarCane; + case 373: return Item::Sunflower; + case 926: return Item::SuspiciousStew; + case 947: return Item::SweetBerries; + case 377: return Item::TallGrass; + case 960: return Item::Target; + case 366: return Item::Terracotta; + case 894: return Item::TippedArrow; + case 167: return Item::TNT; + case 850: return Item::TNTMinecart; + case 171: return Item::Torch; + case 903: return Item::TotemOfUndying; + case 807: return Item::TraderLlamaSpawnEgg; + case 317: return Item::TrappedChest; + case 921: return Item::Trident; + case 278: return Item::TripwireHook; + case 689: return Item::TropicalFish; + case 673: return Item::TropicalFishBucket; + case 808: return Item::TropicalFishSpawnEgg; + case 507: return Item::TubeCoral; + case 502: return Item::TubeCoralBlock; + case 517: return Item::TubeCoralFan; + case 496: return Item::TurtleEgg; + case 570: return Item::TurtleHelmet; + case 809: return Item::TurtleSpawnEgg; + case 132: return Item::TwistingVines; + case 810: return Item::VexSpawnEgg; + case 811: return Item::VillagerSpawnEgg; + case 812: return Item::VindicatorSpawnEgg; + case 251: return Item::Vine; + case 813: return Item::WanderingTraderSpawnEgg; + case 312: return Item::WarpedButton; + case 565: return Item::WarpedDoor; + case 215: return Item::WarpedFence; + case 259: return Item::WarpedFenceGate; + case 127: return Item::WarpedFungus; + case 842: return Item::WarpedFungusOnA_stick; + case 68: return Item::WarpedHyphae; + case 13: return Item::WarpedNylium; + case 22: return Item::WarpedPlanks; + case 198: return Item::WarpedPressurePlate; + case 129: return Item::WarpedRoots; + case 659: return Item::WarpedSign; + case 145: return Item::WarpedSlab; + case 284: return Item::WarpedStairs; + case 44: return Item::WarpedStem; + case 233: return Item::WarpedTrapdoor; + case 426: return Item::WarpedWartBlock; + case 661: return Item::WaterBucket; + case 131: return Item::WeepingVines; + case 76: return Item::WetSponge; + case 620: return Item::Wheat; + case 619: return Item::WheatSeeds; + case 869: return Item::WhiteBanner; + case 716: return Item::WhiteBed; + case 350: return Item::WhiteCarpet; + case 464: return Item::WhiteConcrete; + case 480: return Item::WhiteConcretePowder; + case 712: return Item::WhiteDye; + case 448: return Item::WhiteGlazedTerracotta; + case 432: return Item::WhiteShulkerBox; + case 379: return Item::WhiteStainedGlass; + case 395: return Item::WhiteStainedGlassPane; + case 331: return Item::WhiteTerracotta; + case 118: return Item::WhiteTulip; + case 95: return Item::WhiteWool; + case 814: return Item::WitchSpawnEgg; + case 123: return Item::WitherRose; + case 836: return Item::WitherSkeletonSkull; + case 815: return Item::WitherSkeletonSpawnEgg; + case 816: return Item::WolfSpawnEgg; + case 590: return Item::WoodenAxe; + case 613: return Item::WoodenHoe; + case 589: return Item::WoodenPickaxe; + case 588: return Item::WoodenShovel; + case 587: return Item::WoodenSword; + case 824: return Item::WritableBook; + case 825: return Item::WrittenBook; + case 873: return Item::YellowBanner; + case 720: return Item::YellowBed; + case 354: return Item::YellowCarpet; + case 468: return Item::YellowConcrete; + case 484: return Item::YellowConcretePowder; + case 704: return Item::YellowDye; + case 452: return Item::YellowGlazedTerracotta; + case 436: return Item::YellowShulkerBox; + case 383: return Item::YellowStainedGlass; + case 399: return Item::YellowStainedGlassPane; + case 335: return Item::YellowTerracotta; + case 99: return Item::YellowWool; + case 817: return Item::ZoglinSpawnEgg; + case 838: return Item::ZombieHead; + case 819: return Item::ZombieHorseSpawnEgg; + case 818: return Item::ZombieSpawnEgg; + case 820: return Item::ZombieVillagerSpawnEgg; + case 821: return Item::ZombiePigmanSpawnEgg; + default: return Item::Air; + } + } +} diff --git a/src/Protocol/Palettes/Palette_1_16.h b/src/Protocol/Palettes/Palette_1_16.h new file mode 100644 index 000000000..7bfde7b02 --- /dev/null +++ b/src/Protocol/Palettes/Palette_1_16.h @@ -0,0 +1,10 @@ +#pragma once + +#include "../../Registries/Items.h" + +namespace Palette_1_16 +{ + Int32 FromBlock(short ID); + Int32 FromItem(Item ID); + Item ToItem(Int32 ID); +} diff --git a/src/Protocol/Palettes/Upgrade.cpp b/src/Protocol/Palettes/Upgrade.cpp new file mode 100644 index 000000000..23e7681a3 --- /dev/null +++ b/src/Protocol/Palettes/Upgrade.cpp @@ -0,0 +1,3207 @@ +#include "Globals.h" + +#include "Upgrade.h" +#include "../../Registries/Blocks.h" + +namespace PaletteUpgrade +{ + short FromBlock(BLOCKTYPE Block, NIBBLETYPE Meta) + { + using namespace Block; + + switch ((Block << 4) | Meta) + { + case (0 << 4) | 0: return Air::Air(); + case (1 << 4) | 0: return Stone::Stone(); + case (1 << 4) | 1: return Granite::Granite(); + case (1 << 4) | 2: return PolishedGranite::PolishedGranite(); + case (1 << 4) | 3: return Diorite::Diorite(); + case (1 << 4) | 4: return PolishedDiorite::PolishedDiorite(); + case (1 << 4) | 5: return Andesite::Andesite(); + case (1 << 4) | 6: return PolishedAndesite::PolishedAndesite(); + case (2 << 4) | 0: return GrassBlock::GrassBlock(false); + case (3 << 4) | 0: return Dirt::Dirt(); + case (3 << 4) | 1: return CoarseDirt::CoarseDirt(); + case (3 << 4) | 2: return Podzol::Podzol(false); + case (4 << 4) | 0: return Cobblestone::Cobblestone(); + case (5 << 4) | 0: return OakPlanks::OakPlanks(); + case (5 << 4) | 1: return SprucePlanks::SprucePlanks(); + case (5 << 4) | 2: return BirchPlanks::BirchPlanks(); + case (5 << 4) | 3: return JunglePlanks::JunglePlanks(); + case (5 << 4) | 4: return AcaciaPlanks::AcaciaPlanks(); + case (5 << 4) | 5: return DarkOakPlanks::DarkOakPlanks(); + case (6 << 4) | 0: return OakSapling::OakSapling(0); + case (6 << 4) | 1: return SpruceSapling::SpruceSapling(0); + case (6 << 4) | 2: return BirchSapling::BirchSapling(0); + case (6 << 4) | 3: return JungleSapling::JungleSapling(0); + case (6 << 4) | 4: return AcaciaSapling::AcaciaSapling(0); + case (6 << 4) | 5: return DarkOakSapling::DarkOakSapling(0); + case (6 << 4) | 8: return OakSapling::OakSapling(1); + case (6 << 4) | 9: return SpruceSapling::SpruceSapling(1); + case (6 << 4) | 10: return BirchSapling::BirchSapling(1); + case (6 << 4) | 11: return JungleSapling::JungleSapling(1); + case (6 << 4) | 12: return AcaciaSapling::AcaciaSapling(1); + case (6 << 4) | 13: return DarkOakSapling::DarkOakSapling(1); + case (7 << 4) | 0: return Bedrock::Bedrock(); + case (8 << 4) | 0: return Water::Water(0); + case (8 << 4) | 1: return Water::Water(1); + case (8 << 4) | 2: return Water::Water(2); + case (8 << 4) | 3: return Water::Water(3); + case (8 << 4) | 4: return Water::Water(4); + case (8 << 4) | 5: return Water::Water(5); + case (8 << 4) | 6: return Water::Water(6); + case (8 << 4) | 7: return Water::Water(7); + case (8 << 4) | 8: return Water::Water(8); + case (8 << 4) | 9: return Water::Water(9); + case (8 << 4) | 10: return Water::Water(10); + case (8 << 4) | 11: return Water::Water(11); + case (8 << 4) | 12: return Water::Water(12); + case (8 << 4) | 13: return Water::Water(13); + case (8 << 4) | 14: return Water::Water(14); + case (8 << 4) | 15: return Water::Water(15); + case (9 << 4) | 0: return Water::Water(0); + case (9 << 4) | 1: return Water::Water(1); + case (9 << 4) | 2: return Water::Water(2); + case (9 << 4) | 3: return Water::Water(3); + case (9 << 4) | 4: return Water::Water(4); + case (9 << 4) | 5: return Water::Water(5); + case (9 << 4) | 6: return Water::Water(6); + case (9 << 4) | 7: return Water::Water(7); + case (9 << 4) | 8: return Water::Water(8); + case (9 << 4) | 9: return Water::Water(9); + case (9 << 4) | 10: return Water::Water(10); + case (9 << 4) | 11: return Water::Water(11); + case (9 << 4) | 12: return Water::Water(12); + case (9 << 4) | 13: return Water::Water(13); + case (9 << 4) | 14: return Water::Water(14); + case (9 << 4) | 15: return Water::Water(15); + case (10 << 4) | 0: return Lava::Lava(0); + case (10 << 4) | 1: return Lava::Lava(1); + case (10 << 4) | 2: return Lava::Lava(2); + case (10 << 4) | 3: return Lava::Lava(3); + case (10 << 4) | 4: return Lava::Lava(4); + case (10 << 4) | 5: return Lava::Lava(5); + case (10 << 4) | 6: return Lava::Lava(6); + case (10 << 4) | 7: return Lava::Lava(7); + case (10 << 4) | 8: return Lava::Lava(8); + case (10 << 4) | 9: return Lava::Lava(9); + case (10 << 4) | 10: return Lava::Lava(10); + case (10 << 4) | 11: return Lava::Lava(11); + case (10 << 4) | 12: return Lava::Lava(12); + case (10 << 4) | 13: return Lava::Lava(13); + case (10 << 4) | 14: return Lava::Lava(14); + case (10 << 4) | 15: return Lava::Lava(15); + case (11 << 4) | 0: return Lava::Lava(0); + case (11 << 4) | 1: return Lava::Lava(1); + case (11 << 4) | 2: return Lava::Lava(2); + case (11 << 4) | 3: return Lava::Lava(3); + case (11 << 4) | 4: return Lava::Lava(4); + case (11 << 4) | 5: return Lava::Lava(5); + case (11 << 4) | 6: return Lava::Lava(6); + case (11 << 4) | 7: return Lava::Lava(7); + case (11 << 4) | 8: return Lava::Lava(8); + case (11 << 4) | 9: return Lava::Lava(9); + case (11 << 4) | 10: return Lava::Lava(10); + case (11 << 4) | 11: return Lava::Lava(11); + case (11 << 4) | 12: return Lava::Lava(12); + case (11 << 4) | 13: return Lava::Lava(13); + case (11 << 4) | 14: return Lava::Lava(14); + case (11 << 4) | 15: return Lava::Lava(15); + case (12 << 4) | 0: return Sand::Sand(); + case (12 << 4) | 1: return RedSand::RedSand(); + case (13 << 4) | 0: return Gravel::Gravel(); + case (14 << 4) | 0: return GoldOre::GoldOre(); + case (15 << 4) | 0: return IronOre::IronOre(); + case (16 << 4) | 0: return CoalOre::CoalOre(); + case (17 << 4) | 0: return OakLog::OakLog(OakLog::Axis::Y); + case (17 << 4) | 1: return SpruceLog::SpruceLog(SpruceLog::Axis::Y); + case (17 << 4) | 2: return BirchLog::BirchLog(BirchLog::Axis::Y); + case (17 << 4) | 3: return JungleLog::JungleLog(JungleLog::Axis::Y); + case (17 << 4) | 4: return OakLog::OakLog(OakLog::Axis::X); + case (17 << 4) | 5: return SpruceLog::SpruceLog(SpruceLog::Axis::X); + case (17 << 4) | 6: return BirchLog::BirchLog(BirchLog::Axis::X); + case (17 << 4) | 7: return JungleLog::JungleLog(JungleLog::Axis::X); + case (17 << 4) | 8: return OakLog::OakLog(OakLog::Axis::Z); + case (17 << 4) | 9: return SpruceLog::SpruceLog(SpruceLog::Axis::Z); + case (17 << 4) | 10: return BirchLog::BirchLog(BirchLog::Axis::Z); + case (17 << 4) | 11: return JungleLog::JungleLog(JungleLog::Axis::Z); + case (17 << 4) | 12: return OakWood::OakWood(); + case (17 << 4) | 13: return SpruceWood::SpruceWood(); + case (17 << 4) | 14: return BirchWood::BirchWood(); + case (17 << 4) | 15: return JungleWood::JungleWood(); + case (18 << 4) | 0: return OakLeaves::OakLeaves(false, true); + case (18 << 4) | 1: return SpruceLeaves::SpruceLeaves(false, true); + case (18 << 4) | 2: return BirchLeaves::BirchLeaves(false, true); + case (18 << 4) | 3: return JungleLeaves::JungleLeaves(false, true); + case (18 << 4) | 4: return OakLeaves::OakLeaves(false, false); + case (18 << 4) | 5: return SpruceLeaves::SpruceLeaves(false, false); + case (18 << 4) | 6: return BirchLeaves::BirchLeaves(false, false); + case (18 << 4) | 7: return JungleLeaves::JungleLeaves(false, false); + case (18 << 4) | 8: return OakLeaves::OakLeaves(true, true); + case (18 << 4) | 9: return SpruceLeaves::SpruceLeaves(true, true); + case (18 << 4) | 10: return BirchLeaves::BirchLeaves(true, true); + case (18 << 4) | 11: return JungleLeaves::JungleLeaves(true, true); + case (18 << 4) | 12: return OakLeaves::OakLeaves(true, false); + case (18 << 4) | 13: return SpruceLeaves::SpruceLeaves(true, false); + case (18 << 4) | 14: return BirchLeaves::BirchLeaves(true, false); + case (18 << 4) | 15: return JungleLeaves::JungleLeaves(true, false); + case (19 << 4) | 0: return Sponge::Sponge(); + case (19 << 4) | 1: return WetSponge::WetSponge(); + case (20 << 4) | 0: return Glass::Glass(); + case (21 << 4) | 0: return LapisOre::LapisOre(); + case (22 << 4) | 0: return LapisBlock::LapisBlock(); + case (23 << 4) | 0: return Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, false); + case (23 << 4) | 1: return Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, false); + case (23 << 4) | 2: return Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, false); + case (23 << 4) | 3: return Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, false); + case (23 << 4) | 4: return Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, false); + case (23 << 4) | 5: return Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, false); + case (23 << 4) | 8: return Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, true); + case (23 << 4) | 9: return Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, true); + case (23 << 4) | 10: return Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, true); + case (23 << 4) | 11: return Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, true); + case (23 << 4) | 12: return Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, true); + case (23 << 4) | 13: return Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, true); + case (24 << 4) | 0: return Sandstone::Sandstone(); + case (24 << 4) | 1: return ChiseledSandstone::ChiseledSandstone(); + case (24 << 4) | 2: return CutSandstone::CutSandstone(); + case (25 << 4) | 0: return NoteBlock::NoteBlock(); + case (26 << 4) | 0: return RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Foot); + case (26 << 4) | 1: return RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Foot); + case (26 << 4) | 2: return RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Foot); + case (26 << 4) | 3: return RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Foot); + case (26 << 4) | 8: return RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Head); + case (26 << 4) | 9: return RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Head); + case (26 << 4) | 10: return RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Head); + case (26 << 4) | 11: return RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Head); + case (26 << 4) | 12: return RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Head); + case (26 << 4) | 13: return RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Head); + case (26 << 4) | 14: return RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Head); + case (26 << 4) | 15: return RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Head); + case (27 << 4) | 0: return PoweredRail::PoweredRail(false, PoweredRail::Shape::NorthSouth); + case (27 << 4) | 1: return PoweredRail::PoweredRail(false, PoweredRail::Shape::EastWest); + case (27 << 4) | 2: return PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingEast); + case (27 << 4) | 3: return PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingWest); + case (27 << 4) | 4: return PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingNorth); + case (27 << 4) | 5: return PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingSouth); + case (27 << 4) | 8: return PoweredRail::PoweredRail(true, PoweredRail::Shape::NorthSouth); + case (27 << 4) | 9: return PoweredRail::PoweredRail(true, PoweredRail::Shape::EastWest); + case (27 << 4) | 10: return PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingEast); + case (27 << 4) | 11: return PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingWest); + case (27 << 4) | 12: return PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingNorth); + case (27 << 4) | 13: return PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingSouth); + case (28 << 4) | 0: return DetectorRail::DetectorRail(false, DetectorRail::Shape::NorthSouth); + case (28 << 4) | 1: return DetectorRail::DetectorRail(false, DetectorRail::Shape::EastWest); + case (28 << 4) | 2: return DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingEast); + case (28 << 4) | 3: return DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingWest); + case (28 << 4) | 4: return DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingNorth); + case (28 << 4) | 5: return DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingSouth); + case (28 << 4) | 8: return DetectorRail::DetectorRail(true, DetectorRail::Shape::NorthSouth); + case (28 << 4) | 9: return DetectorRail::DetectorRail(true, DetectorRail::Shape::EastWest); + case (28 << 4) | 10: return DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingEast); + case (28 << 4) | 11: return DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingWest); + case (28 << 4) | 12: return DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingNorth); + case (28 << 4) | 13: return DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingSouth); + case (29 << 4) | 0: return StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YM); + case (29 << 4) | 1: return StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YP); + case (29 << 4) | 2: return StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZM); + case (29 << 4) | 3: return StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZP); + case (29 << 4) | 4: return StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XM); + case (29 << 4) | 5: return StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XP); + case (29 << 4) | 8: return StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YM); + case (29 << 4) | 9: return StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YP); + case (29 << 4) | 10: return StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZM); + case (29 << 4) | 11: return StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZP); + case (29 << 4) | 12: return StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XM); + case (29 << 4) | 13: return StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XP); + case (30 << 4) | 0: return Cobweb::Cobweb(); + case (31 << 4) | 0: return DeadBush::DeadBush(); + case (31 << 4) | 1: return Grass::Grass(); + case (31 << 4) | 2: return Fern::Fern(); + case (32 << 4) | 0: return DeadBush::DeadBush(); + case (33 << 4) | 0: return Piston::Piston(false, eBlockFace::BLOCK_FACE_YM); + case (33 << 4) | 1: return Piston::Piston(false, eBlockFace::BLOCK_FACE_YP); + case (33 << 4) | 2: return Piston::Piston(false, eBlockFace::BLOCK_FACE_ZM); + case (33 << 4) | 3: return Piston::Piston(false, eBlockFace::BLOCK_FACE_ZP); + case (33 << 4) | 4: return Piston::Piston(false, eBlockFace::BLOCK_FACE_XM); + case (33 << 4) | 5: return Piston::Piston(false, eBlockFace::BLOCK_FACE_XP); + case (33 << 4) | 8: return Piston::Piston(true, eBlockFace::BLOCK_FACE_YM); + case (33 << 4) | 9: return Piston::Piston(true, eBlockFace::BLOCK_FACE_YP); + case (33 << 4) | 10: return Piston::Piston(true, eBlockFace::BLOCK_FACE_ZM); + case (33 << 4) | 11: return Piston::Piston(true, eBlockFace::BLOCK_FACE_ZP); + case (33 << 4) | 12: return Piston::Piston(true, eBlockFace::BLOCK_FACE_XM); + case (33 << 4) | 13: return Piston::Piston(true, eBlockFace::BLOCK_FACE_XP); + case (34 << 4) | 0: return PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Normal); + case (34 << 4) | 1: return PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Normal); + case (34 << 4) | 2: return PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Normal); + case (34 << 4) | 3: return PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Normal); + case (34 << 4) | 4: return PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Normal); + case (34 << 4) | 5: return PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Normal); + case (34 << 4) | 8: return PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Sticky); + case (34 << 4) | 9: return PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Sticky); + case (34 << 4) | 10: return PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Sticky); + case (34 << 4) | 11: return PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Sticky); + case (34 << 4) | 12: return PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Sticky); + case (34 << 4) | 13: return PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Sticky); + case (35 << 4) | 0: return WhiteWool::WhiteWool(); + case (35 << 4) | 1: return OrangeWool::OrangeWool(); + case (35 << 4) | 2: return MagentaWool::MagentaWool(); + case (35 << 4) | 3: return LightBlueWool::LightBlueWool(); + case (35 << 4) | 4: return YellowWool::YellowWool(); + case (35 << 4) | 5: return LimeWool::LimeWool(); + case (35 << 4) | 6: return PinkWool::PinkWool(); + case (35 << 4) | 7: return GrayWool::GrayWool(); + case (35 << 4) | 8: return LightGrayWool::LightGrayWool(); + case (35 << 4) | 9: return CyanWool::CyanWool(); + case (35 << 4) | 10: return PurpleWool::PurpleWool(); + case (35 << 4) | 11: return BlueWool::BlueWool(); + case (35 << 4) | 12: return BrownWool::BrownWool(); + case (35 << 4) | 13: return GreenWool::GreenWool(); + case (35 << 4) | 14: return RedWool::RedWool(); + case (35 << 4) | 15: return BlackWool::BlackWool(); + case (36 << 4) | 0: return MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Normal); + case (36 << 4) | 1: return MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Normal); + case (36 << 4) | 2: return MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Normal); + case (36 << 4) | 3: return MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Normal); + case (36 << 4) | 4: return MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Normal); + case (36 << 4) | 5: return MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Normal); + case (36 << 4) | 8: return MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Sticky); + case (36 << 4) | 9: return MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Sticky); + case (36 << 4) | 10: return MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Sticky); + case (36 << 4) | 11: return MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Sticky); + case (36 << 4) | 12: return MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Sticky); + case (36 << 4) | 13: return MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Sticky); + case (37 << 4) | 0: return Dandelion::Dandelion(); + case (38 << 4) | 0: return Poppy::Poppy(); + case (38 << 4) | 1: return BlueOrchid::BlueOrchid(); + case (38 << 4) | 2: return Allium::Allium(); + case (38 << 4) | 3: return AzureBluet::AzureBluet(); + case (38 << 4) | 4: return RedTulip::RedTulip(); + case (38 << 4) | 5: return OrangeTulip::OrangeTulip(); + case (38 << 4) | 6: return WhiteTulip::WhiteTulip(); + case (38 << 4) | 7: return PinkTulip::PinkTulip(); + case (38 << 4) | 8: return OxeyeDaisy::OxeyeDaisy(); + case (39 << 4) | 0: return BrownMushroom::BrownMushroom(); + case (40 << 4) | 0: return RedMushroom::RedMushroom(); + case (41 << 4) | 0: return GoldBlock::GoldBlock(); + case (42 << 4) | 0: return IronBlock::IronBlock(); + case (43 << 4) | 0: return StoneSlab::StoneSlab(StoneSlab::Type::Double); + case (43 << 4) | 1: return SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Double); + case (43 << 4) | 2: return PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Double); + case (43 << 4) | 3: return CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Double); + case (43 << 4) | 4: return BrickSlab::BrickSlab(BrickSlab::Type::Double); + case (43 << 4) | 5: return StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Double); + case (43 << 4) | 6: return NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Double); + case (43 << 4) | 7: return QuartzSlab::QuartzSlab(QuartzSlab::Type::Double); + case (43 << 4) | 8: return SmoothStone::SmoothStone(); + case (43 << 4) | 9: return SmoothSandstone::SmoothSandstone(); + case (43 << 4) | 10: return PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Double); + case (43 << 4) | 11: return CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Double); + case (43 << 4) | 12: return BrickSlab::BrickSlab(BrickSlab::Type::Double); + case (43 << 4) | 13: return StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Double); + case (43 << 4) | 14: return NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Double); + case (43 << 4) | 15: return SmoothQuartz::SmoothQuartz(); + case (44 << 4) | 0: return StoneSlab::StoneSlab(StoneSlab::Type::Bottom); + case (44 << 4) | 1: return SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Bottom); + case (44 << 4) | 2: return PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Bottom); + case (44 << 4) | 3: return CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Bottom); + case (44 << 4) | 4: return BrickSlab::BrickSlab(BrickSlab::Type::Bottom); + case (44 << 4) | 5: return StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Bottom); + case (44 << 4) | 6: return NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Bottom); + case (44 << 4) | 7: return QuartzSlab::QuartzSlab(QuartzSlab::Type::Bottom); + case (44 << 4) | 8: return StoneSlab::StoneSlab(StoneSlab::Type::Top); + case (44 << 4) | 9: return SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Top); + case (44 << 4) | 10: return PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Top); + case (44 << 4) | 11: return CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Top); + case (44 << 4) | 12: return BrickSlab::BrickSlab(BrickSlab::Type::Top); + case (44 << 4) | 13: return StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Top); + case (44 << 4) | 14: return NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Top); + case (44 << 4) | 15: return QuartzSlab::QuartzSlab(QuartzSlab::Type::Top); + case (45 << 4) | 0: return Bricks::Bricks(); + case (46 << 4) | 0: return TNT::TNT(false); + case (46 << 4) | 1: return TNT::TNT(true); + case (47 << 4) | 0: return Bookshelf::Bookshelf(); + case (48 << 4) | 0: return MossyCobblestone::MossyCobblestone(); + case (49 << 4) | 0: return Obsidian::Obsidian(); + case (50 << 4) | 1: return WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XP); + case (50 << 4) | 2: return WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XM); + case (50 << 4) | 3: return WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZP); + case (50 << 4) | 4: return WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZM); + case (50 << 4) | 5: return Torch::Torch(); + case (51 << 4) | 0: return Fire::Fire(0, false, false, false, false, false); + case (51 << 4) | 1: return Fire::Fire(1, false, false, false, false, false); + case (51 << 4) | 2: return Fire::Fire(2, false, false, false, false, false); + case (51 << 4) | 3: return Fire::Fire(3, false, false, false, false, false); + case (51 << 4) | 4: return Fire::Fire(4, false, false, false, false, false); + case (51 << 4) | 5: return Fire::Fire(5, false, false, false, false, false); + case (51 << 4) | 6: return Fire::Fire(6, false, false, false, false, false); + case (51 << 4) | 7: return Fire::Fire(7, false, false, false, false, false); + case (51 << 4) | 8: return Fire::Fire(8, false, false, false, false, false); + case (51 << 4) | 9: return Fire::Fire(9, false, false, false, false, false); + case (51 << 4) | 10: return Fire::Fire(10, false, false, false, false, false); + case (51 << 4) | 11: return Fire::Fire(11, false, false, false, false, false); + case (51 << 4) | 12: return Fire::Fire(12, false, false, false, false, false); + case (51 << 4) | 13: return Fire::Fire(13, false, false, false, false, false); + case (51 << 4) | 14: return Fire::Fire(14, false, false, false, false, false); + case (51 << 4) | 15: return Fire::Fire(15, false, false, false, false, false); + case (52 << 4) | 0: return Spawner::Spawner(); + case (53 << 4) | 0: return OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::Straight); + case (53 << 4) | 1: return OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::Straight); + case (53 << 4) | 2: return OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::Straight); + case (53 << 4) | 3: return OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::Straight); + case (53 << 4) | 4: return OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::Straight); + case (53 << 4) | 5: return OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::Straight); + case (53 << 4) | 6: return OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::Straight); + case (53 << 4) | 7: return OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::Straight); + case (54 << 4) | 2: return Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Single); + case (54 << 4) | 3: return Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Single); + case (54 << 4) | 4: return Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Single); + case (54 << 4) | 5: return Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Single); + case (55 << 4) | 0: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None); + case (55 << 4) | 1: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None); + case (55 << 4) | 2: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None); + case (55 << 4) | 3: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None); + case (55 << 4) | 4: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None); + case (55 << 4) | 5: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None); + case (55 << 4) | 6: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None); + case (55 << 4) | 7: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None); + case (55 << 4) | 8: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None); + case (55 << 4) | 9: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None); + case (55 << 4) | 10: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None); + case (55 << 4) | 11: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None); + case (55 << 4) | 12: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None); + case (55 << 4) | 13: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None); + case (55 << 4) | 14: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None); + case (55 << 4) | 15: return RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None); + case (56 << 4) | 0: return DiamondOre::DiamondOre(); + case (57 << 4) | 0: return DiamondBlock::DiamondBlock(); + case (58 << 4) | 0: return CraftingTable::CraftingTable(); + case (59 << 4) | 0: return Wheat::Wheat(0); + case (59 << 4) | 1: return Wheat::Wheat(1); + case (59 << 4) | 2: return Wheat::Wheat(2); + case (59 << 4) | 3: return Wheat::Wheat(3); + case (59 << 4) | 4: return Wheat::Wheat(4); + case (59 << 4) | 5: return Wheat::Wheat(5); + case (59 << 4) | 6: return Wheat::Wheat(6); + case (59 << 4) | 7: return Wheat::Wheat(7); + case (60 << 4) | 0: return Farmland::Farmland(0); + case (60 << 4) | 1: return Farmland::Farmland(1); + case (60 << 4) | 2: return Farmland::Farmland(2); + case (60 << 4) | 3: return Farmland::Farmland(3); + case (60 << 4) | 4: return Farmland::Farmland(4); + case (60 << 4) | 5: return Farmland::Farmland(5); + case (60 << 4) | 6: return Farmland::Farmland(6); + case (60 << 4) | 7: return Farmland::Farmland(7); + case (61 << 4) | 2: return Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, false); + case (61 << 4) | 3: return Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, false); + case (61 << 4) | 4: return Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, false); + case (61 << 4) | 5: return Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, false); + case (62 << 4) | 2: return Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, true); + case (62 << 4) | 3: return Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, true); + case (62 << 4) | 4: return Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, true); + case (62 << 4) | 5: return Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, true); + case (63 << 4) | 0: return OakSign::OakSign(0); + case (63 << 4) | 1: return OakSign::OakSign(1); + case (63 << 4) | 2: return OakSign::OakSign(2); + case (63 << 4) | 3: return OakSign::OakSign(3); + case (63 << 4) | 4: return OakSign::OakSign(4); + case (63 << 4) | 5: return OakSign::OakSign(5); + case (63 << 4) | 6: return OakSign::OakSign(6); + case (63 << 4) | 7: return OakSign::OakSign(7); + case (63 << 4) | 8: return OakSign::OakSign(8); + case (63 << 4) | 9: return OakSign::OakSign(9); + case (63 << 4) | 10: return OakSign::OakSign(10); + case (63 << 4) | 11: return OakSign::OakSign(11); + case (63 << 4) | 12: return OakSign::OakSign(12); + case (63 << 4) | 13: return OakSign::OakSign(13); + case (63 << 4) | 14: return OakSign::OakSign(14); + case (63 << 4) | 15: return OakSign::OakSign(15); + case (64 << 4) | 0: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false); + case (64 << 4) | 1: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false); + case (64 << 4) | 2: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false); + case (64 << 4) | 3: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false); + case (64 << 4) | 4: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false); + case (64 << 4) | 5: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false); + case (64 << 4) | 6: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false); + case (64 << 4) | 7: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false); + case (64 << 4) | 8: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false); + case (64 << 4) | 9: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false); + case (64 << 4) | 10: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true); + case (64 << 4) | 11: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true); + case (64 << 4) | 12: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false); + case (64 << 4) | 13: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false); + case (64 << 4) | 14: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false); + case (64 << 4) | 15: return OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false); + case (65 << 4) | 2: return Ladder::Ladder(eBlockFace::BLOCK_FACE_ZM); + case (65 << 4) | 3: return Ladder::Ladder(eBlockFace::BLOCK_FACE_ZP); + case (65 << 4) | 4: return Ladder::Ladder(eBlockFace::BLOCK_FACE_XM); + case (65 << 4) | 5: return Ladder::Ladder(eBlockFace::BLOCK_FACE_XP); + case (66 << 4) | 0: return Rail::Rail(Rail::Shape::NorthSouth); + case (66 << 4) | 1: return Rail::Rail(Rail::Shape::EastWest); + case (66 << 4) | 2: return Rail::Rail(Rail::Shape::AscendingEast); + case (66 << 4) | 3: return Rail::Rail(Rail::Shape::AscendingWest); + case (66 << 4) | 4: return Rail::Rail(Rail::Shape::AscendingNorth); + case (66 << 4) | 5: return Rail::Rail(Rail::Shape::AscendingSouth); + case (66 << 4) | 6: return Rail::Rail(Rail::Shape::SouthEast); + case (66 << 4) | 7: return Rail::Rail(Rail::Shape::SouthWest); + case (66 << 4) | 8: return Rail::Rail(Rail::Shape::NorthWest); + case (66 << 4) | 9: return Rail::Rail(Rail::Shape::NorthEast); + case (67 << 4) | 0: return CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight); + case (67 << 4) | 1: return CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight); + case (67 << 4) | 2: return CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight); + case (67 << 4) | 3: return CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight); + case (67 << 4) | 4: return CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight); + case (67 << 4) | 5: return CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight); + case (67 << 4) | 6: return CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight); + case (67 << 4) | 7: return CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight); + case (68 << 4) | 2: return OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZM); + case (68 << 4) | 3: return OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZP); + case (68 << 4) | 4: return OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XM); + case (68 << 4) | 5: return OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XP); + case (69 << 4) | 0: return Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false); + case (69 << 4) | 1: return Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, false); + case (69 << 4) | 2: return Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, false); + case (69 << 4) | 3: return Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false); + case (69 << 4) | 4: return Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false); + case (69 << 4) | 5: return Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false); + case (69 << 4) | 6: return Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, false); + case (69 << 4) | 7: return Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false); + case (69 << 4) | 8: return Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true); + case (69 << 4) | 9: return Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, true); + case (69 << 4) | 10: return Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, true); + case (69 << 4) | 11: return Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true); + case (69 << 4) | 12: return Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true); + case (69 << 4) | 13: return Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true); + case (69 << 4) | 14: return Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, true); + case (69 << 4) | 15: return Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true); + case (70 << 4) | 0: return StonePressurePlate::StonePressurePlate(false); + case (70 << 4) | 1: return StonePressurePlate::StonePressurePlate(true); + case (71 << 4) | 0: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false); + case (71 << 4) | 1: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false); + case (71 << 4) | 2: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false); + case (71 << 4) | 3: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false); + case (71 << 4) | 4: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false); + case (71 << 4) | 5: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false); + case (71 << 4) | 6: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false); + case (71 << 4) | 7: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false); + case (71 << 4) | 8: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false); + case (71 << 4) | 9: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false); + case (71 << 4) | 10: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true); + case (71 << 4) | 11: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true); + case (71 << 4) | 12: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false); + case (71 << 4) | 13: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false); + case (71 << 4) | 14: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false); + case (71 << 4) | 15: return IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false); + case (72 << 4) | 0: return OakPressurePlate::OakPressurePlate(false); + case (72 << 4) | 1: return OakPressurePlate::OakPressurePlate(true); + case (73 << 4) | 0: return RedstoneOre::RedstoneOre(false); + case (74 << 4) | 0: return RedstoneOre::RedstoneOre(true); + case (75 << 4) | 1: return RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, false); + case (75 << 4) | 2: return RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, false); + case (75 << 4) | 3: return RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, false); + case (75 << 4) | 4: return RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, false); + case (75 << 4) | 5: return RedstoneTorch::RedstoneTorch(false); + case (76 << 4) | 1: return RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, true); + case (76 << 4) | 2: return RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, true); + case (76 << 4) | 3: return RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, true); + case (76 << 4) | 4: return RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, true); + case (76 << 4) | 5: return RedstoneTorch::RedstoneTorch(true); + case (77 << 4) | 0: return StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false); + case (77 << 4) | 1: return StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false); + case (77 << 4) | 2: return StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false); + case (77 << 4) | 3: return StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false); + case (77 << 4) | 4: return StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false); + case (77 << 4) | 5: return StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false); + case (77 << 4) | 8: return StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true); + case (77 << 4) | 9: return StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true); + case (77 << 4) | 10: return StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true); + case (77 << 4) | 11: return StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true); + case (77 << 4) | 12: return StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true); + case (77 << 4) | 13: return StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true); + case (78 << 4) | 0: return Snow::Snow(1); + case (78 << 4) | 1: return Snow::Snow(2); + case (78 << 4) | 2: return Snow::Snow(3); + case (78 << 4) | 3: return Snow::Snow(4); + case (78 << 4) | 4: return Snow::Snow(5); + case (78 << 4) | 5: return Snow::Snow(6); + case (78 << 4) | 6: return Snow::Snow(7); + case (78 << 4) | 7: return Snow::Snow(8); + case (79 << 4) | 0: return Ice::Ice(); + case (80 << 4) | 0: return SnowBlock::SnowBlock(); + case (81 << 4) | 0: return Cactus::Cactus(0); + case (81 << 4) | 1: return Cactus::Cactus(1); + case (81 << 4) | 2: return Cactus::Cactus(2); + case (81 << 4) | 3: return Cactus::Cactus(3); + case (81 << 4) | 4: return Cactus::Cactus(4); + case (81 << 4) | 5: return Cactus::Cactus(5); + case (81 << 4) | 6: return Cactus::Cactus(6); + case (81 << 4) | 7: return Cactus::Cactus(7); + case (81 << 4) | 8: return Cactus::Cactus(8); + case (81 << 4) | 9: return Cactus::Cactus(9); + case (81 << 4) | 10: return Cactus::Cactus(10); + case (81 << 4) | 11: return Cactus::Cactus(11); + case (81 << 4) | 12: return Cactus::Cactus(12); + case (81 << 4) | 13: return Cactus::Cactus(13); + case (81 << 4) | 14: return Cactus::Cactus(14); + case (81 << 4) | 15: return Cactus::Cactus(15); + case (82 << 4) | 0: return Clay::Clay(); + case (83 << 4) | 0: return SugarCane::SugarCane(0); + case (83 << 4) | 1: return SugarCane::SugarCane(1); + case (83 << 4) | 2: return SugarCane::SugarCane(2); + case (83 << 4) | 3: return SugarCane::SugarCane(3); + case (83 << 4) | 4: return SugarCane::SugarCane(4); + case (83 << 4) | 5: return SugarCane::SugarCane(5); + case (83 << 4) | 6: return SugarCane::SugarCane(6); + case (83 << 4) | 7: return SugarCane::SugarCane(7); + case (83 << 4) | 8: return SugarCane::SugarCane(8); + case (83 << 4) | 9: return SugarCane::SugarCane(9); + case (83 << 4) | 10: return SugarCane::SugarCane(10); + case (83 << 4) | 11: return SugarCane::SugarCane(11); + case (83 << 4) | 12: return SugarCane::SugarCane(12); + case (83 << 4) | 13: return SugarCane::SugarCane(13); + case (83 << 4) | 14: return SugarCane::SugarCane(14); + case (83 << 4) | 15: return SugarCane::SugarCane(15); + case (84 << 4) | 0: return Jukebox::Jukebox(false); + case (84 << 4) | 1: return Jukebox::Jukebox(true); + case (85 << 4) | 0: return OakFence::OakFence(false, false, false, false); + case (86 << 4) | 0: return CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZP); + case (86 << 4) | 1: return CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XM); + case (86 << 4) | 2: return CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZM); + case (86 << 4) | 3: return CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XP); + case (87 << 4) | 0: return Netherrack::Netherrack(); + case (88 << 4) | 0: return SoulSand::SoulSand(); + case (89 << 4) | 0: return Glowstone::Glowstone(); + case (90 << 4) | 1: return NetherPortal::NetherPortal(NetherPortal::Axis::X); + case (90 << 4) | 2: return NetherPortal::NetherPortal(NetherPortal::Axis::Z); + case (91 << 4) | 0: return JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZP); + case (91 << 4) | 1: return JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XM); + case (91 << 4) | 2: return JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZM); + case (91 << 4) | 3: return JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XP); + case (92 << 4) | 0: return Cake::Cake(0); + case (92 << 4) | 1: return Cake::Cake(1); + case (92 << 4) | 2: return Cake::Cake(2); + case (92 << 4) | 3: return Cake::Cake(3); + case (92 << 4) | 4: return Cake::Cake(4); + case (92 << 4) | 5: return Cake::Cake(5); + case (92 << 4) | 6: return Cake::Cake(6); + case (93 << 4) | 0: return Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, false); + case (93 << 4) | 1: return Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, false); + case (93 << 4) | 2: return Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, false); + case (93 << 4) | 3: return Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, false); + case (93 << 4) | 4: return Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, false); + case (93 << 4) | 5: return Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, false); + case (93 << 4) | 6: return Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, false); + case (93 << 4) | 7: return Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, false); + case (93 << 4) | 8: return Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, false); + case (93 << 4) | 9: return Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, false); + case (93 << 4) | 10: return Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, false); + case (93 << 4) | 11: return Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, false); + case (93 << 4) | 12: return Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, false); + case (93 << 4) | 13: return Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, false); + case (93 << 4) | 14: return Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, false); + case (93 << 4) | 15: return Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, false); + case (94 << 4) | 0: return Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, true); + case (94 << 4) | 1: return Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, true); + case (94 << 4) | 2: return Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, true); + case (94 << 4) | 3: return Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, true); + case (94 << 4) | 4: return Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, true); + case (94 << 4) | 5: return Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, true); + case (94 << 4) | 6: return Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, true); + case (94 << 4) | 7: return Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, true); + case (94 << 4) | 8: return Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, true); + case (94 << 4) | 9: return Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, true); + case (94 << 4) | 10: return Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, true); + case (94 << 4) | 11: return Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, true); + case (94 << 4) | 12: return Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, true); + case (94 << 4) | 13: return Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, true); + case (94 << 4) | 14: return Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, true); + case (94 << 4) | 15: return Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, true); + case (95 << 4) | 0: return WhiteStainedGlass::WhiteStainedGlass(); + case (95 << 4) | 1: return OrangeStainedGlass::OrangeStainedGlass(); + case (95 << 4) | 2: return MagentaStainedGlass::MagentaStainedGlass(); + case (95 << 4) | 3: return LightBlueStainedGlass::LightBlueStainedGlass(); + case (95 << 4) | 4: return YellowStainedGlass::YellowStainedGlass(); + case (95 << 4) | 5: return LimeStainedGlass::LimeStainedGlass(); + case (95 << 4) | 6: return PinkStainedGlass::PinkStainedGlass(); + case (95 << 4) | 7: return GrayStainedGlass::GrayStainedGlass(); + case (95 << 4) | 8: return LightGrayStainedGlass::LightGrayStainedGlass(); + case (95 << 4) | 9: return CyanStainedGlass::CyanStainedGlass(); + case (95 << 4) | 10: return PurpleStainedGlass::PurpleStainedGlass(); + case (95 << 4) | 11: return BlueStainedGlass::BlueStainedGlass(); + case (95 << 4) | 12: return BrownStainedGlass::BrownStainedGlass(); + case (95 << 4) | 13: return GreenStainedGlass::GreenStainedGlass(); + case (95 << 4) | 14: return RedStainedGlass::RedStainedGlass(); + case (95 << 4) | 15: return BlackStainedGlass::BlackStainedGlass(); + case (96 << 4) | 0: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, false); + case (96 << 4) | 1: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, false); + case (96 << 4) | 2: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, false); + case (96 << 4) | 3: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, false); + case (96 << 4) | 4: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, false); + case (96 << 4) | 5: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, false); + case (96 << 4) | 6: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, false); + case (96 << 4) | 7: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, false); + case (96 << 4) | 8: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, false); + case (96 << 4) | 9: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, false); + case (96 << 4) | 10: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, false); + case (96 << 4) | 11: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, false); + case (96 << 4) | 12: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, false); + case (96 << 4) | 13: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, false); + case (96 << 4) | 14: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, false); + case (96 << 4) | 15: return OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, false); + case (97 << 4) | 0: return InfestedStone::InfestedStone(); + case (97 << 4) | 1: return InfestedCobblestone::InfestedCobblestone(); + case (97 << 4) | 2: return InfestedStoneBricks::InfestedStoneBricks(); + case (97 << 4) | 3: return InfestedMossyStoneBricks::InfestedMossyStoneBricks(); + case (97 << 4) | 4: return InfestedCrackedStoneBricks::InfestedCrackedStoneBricks(); + case (97 << 4) | 5: return InfestedChiseledStoneBricks::InfestedChiseledStoneBricks(); + case (98 << 4) | 0: return StoneBricks::StoneBricks(); + case (98 << 4) | 1: return MossyStoneBricks::MossyStoneBricks(); + case (98 << 4) | 2: return CrackedStoneBricks::CrackedStoneBricks(); + case (98 << 4) | 3: return ChiseledStoneBricks::ChiseledStoneBricks(); + case (99 << 4) | 0: return BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false); + case (99 << 4) | 1: return BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, true); + case (99 << 4) | 2: return BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, false); + case (99 << 4) | 3: return BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, false); + case (99 << 4) | 4: return BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, true); + case (99 << 4) | 5: return BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, false); + case (99 << 4) | 6: return BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, false); + case (99 << 4) | 7: return BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, true); + case (99 << 4) | 8: return BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, false); + case (99 << 4) | 9: return BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, false); + case (99 << 4) | 10: return MushroomStem::MushroomStem(false, true, true, true, false, true); + case (99 << 4) | 11: return BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false); + case (99 << 4) | 12: return BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false); + case (99 << 4) | 13: return BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false); + case (99 << 4) | 14: return BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, true); + case (99 << 4) | 15: return MushroomStem::MushroomStem(true, true, true, true, true, true); + case (100 << 4) | 0: return RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false); + case (100 << 4) | 1: return RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, true); + case (100 << 4) | 2: return RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, false); + case (100 << 4) | 3: return RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, false); + case (100 << 4) | 4: return RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, true); + case (100 << 4) | 5: return RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, false); + case (100 << 4) | 6: return RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, false); + case (100 << 4) | 7: return RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, true); + case (100 << 4) | 8: return RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, false); + case (100 << 4) | 9: return RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, false); + case (100 << 4) | 10: return MushroomStem::MushroomStem(false, true, true, true, false, true); + case (100 << 4) | 11: return RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false); + case (100 << 4) | 12: return RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false); + case (100 << 4) | 13: return RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false); + case (100 << 4) | 14: return RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, true); + case (100 << 4) | 15: return MushroomStem::MushroomStem(true, true, true, true, true, true); + case (101 << 4) | 0: return IronBars::IronBars(false, false, false, false); + case (102 << 4) | 0: return GlassPane::GlassPane(false, false, false, false); + case (103 << 4) | 0: return Melon::Melon(); + case (104 << 4) | 0: return PumpkinStem::PumpkinStem(0); + case (104 << 4) | 1: return PumpkinStem::PumpkinStem(1); + case (104 << 4) | 2: return PumpkinStem::PumpkinStem(2); + case (104 << 4) | 3: return PumpkinStem::PumpkinStem(3); + case (104 << 4) | 4: return PumpkinStem::PumpkinStem(4); + case (104 << 4) | 5: return PumpkinStem::PumpkinStem(5); + case (104 << 4) | 6: return PumpkinStem::PumpkinStem(6); + case (104 << 4) | 7: return PumpkinStem::PumpkinStem(7); + case (105 << 4) | 0: return MelonStem::MelonStem(0); + case (105 << 4) | 1: return MelonStem::MelonStem(1); + case (105 << 4) | 2: return MelonStem::MelonStem(2); + case (105 << 4) | 3: return MelonStem::MelonStem(3); + case (105 << 4) | 4: return MelonStem::MelonStem(4); + case (105 << 4) | 5: return MelonStem::MelonStem(5); + case (105 << 4) | 6: return MelonStem::MelonStem(6); + case (105 << 4) | 7: return MelonStem::MelonStem(7); + case (106 << 4) | 0: return Vine::Vine(false, false, false, true, false); + case (106 << 4) | 1: return Vine::Vine(false, false, true, true, false); + case (106 << 4) | 2: return Vine::Vine(false, false, false, true, true); + case (106 << 4) | 3: return Vine::Vine(false, false, true, true, true); + case (106 << 4) | 4: return Vine::Vine(false, true, false, true, false); + case (106 << 4) | 5: return Vine::Vine(false, true, true, true, false); + case (106 << 4) | 6: return Vine::Vine(false, true, false, true, true); + case (106 << 4) | 7: return Vine::Vine(false, true, true, true, true); + case (106 << 4) | 8: return Vine::Vine(true, false, false, true, false); + case (106 << 4) | 9: return Vine::Vine(true, false, true, true, false); + case (106 << 4) | 10: return Vine::Vine(true, false, false, true, true); + case (106 << 4) | 11: return Vine::Vine(true, false, true, true, true); + case (106 << 4) | 12: return Vine::Vine(true, true, false, true, false); + case (106 << 4) | 13: return Vine::Vine(true, true, true, true, false); + case (106 << 4) | 14: return Vine::Vine(true, true, false, true, true); + case (106 << 4) | 15: return Vine::Vine(true, true, true, true, true); + case (107 << 4) | 0: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false); + case (107 << 4) | 1: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false); + case (107 << 4) | 2: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false); + case (107 << 4) | 3: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false); + case (107 << 4) | 4: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false); + case (107 << 4) | 5: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false); + case (107 << 4) | 6: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false); + case (107 << 4) | 7: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false); + case (107 << 4) | 8: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true); + case (107 << 4) | 9: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true); + case (107 << 4) | 10: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true); + case (107 << 4) | 11: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true); + case (107 << 4) | 12: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true); + case (107 << 4) | 13: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true); + case (107 << 4) | 14: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true); + case (107 << 4) | 15: return OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true); + case (108 << 4) | 0: return BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight); + case (108 << 4) | 1: return BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight); + case (108 << 4) | 2: return BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight); + case (108 << 4) | 3: return BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight); + case (108 << 4) | 4: return BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::Straight); + case (108 << 4) | 5: return BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::Straight); + case (108 << 4) | 6: return BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::Straight); + case (108 << 4) | 7: return BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::Straight); + case (109 << 4) | 0: return StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight); + case (109 << 4) | 1: return StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight); + case (109 << 4) | 2: return StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight); + case (109 << 4) | 3: return StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight); + case (109 << 4) | 4: return StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight); + case (109 << 4) | 5: return StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight); + case (109 << 4) | 6: return StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight); + case (109 << 4) | 7: return StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight); + case (110 << 4) | 0: return Mycelium::Mycelium(false); + case (111 << 4) | 0: return LilyPad::LilyPad(); + case (112 << 4) | 0: return NetherBricks::NetherBricks(); + case (113 << 4) | 0: return NetherBrickFence::NetherBrickFence(false, false, false, false); + case (114 << 4) | 0: return NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight); + case (114 << 4) | 1: return NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight); + case (114 << 4) | 2: return NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight); + case (114 << 4) | 3: return NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight); + case (114 << 4) | 4: return NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight); + case (114 << 4) | 5: return NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight); + case (114 << 4) | 6: return NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight); + case (114 << 4) | 7: return NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight); + case (115 << 4) | 0: return NetherWart::NetherWart(0); + case (115 << 4) | 1: return NetherWart::NetherWart(1); + case (115 << 4) | 2: return NetherWart::NetherWart(2); + case (115 << 4) | 3: return NetherWart::NetherWart(3); + case (116 << 4) | 0: return EnchantingTable::EnchantingTable(); + case (117 << 4) | 0: return BrewingStand::BrewingStand(false, false, false); + case (117 << 4) | 1: return BrewingStand::BrewingStand(true, false, false); + case (117 << 4) | 2: return BrewingStand::BrewingStand(false, true, false); + case (117 << 4) | 3: return BrewingStand::BrewingStand(true, true, false); + case (117 << 4) | 4: return BrewingStand::BrewingStand(false, false, true); + case (117 << 4) | 5: return BrewingStand::BrewingStand(true, false, true); + case (117 << 4) | 6: return BrewingStand::BrewingStand(false, true, true); + case (117 << 4) | 7: return BrewingStand::BrewingStand(true, true, true); + case (118 << 4) | 0: return Cauldron::Cauldron(0); + case (118 << 4) | 1: return Cauldron::Cauldron(1); + case (118 << 4) | 2: return Cauldron::Cauldron(2); + case (118 << 4) | 3: return Cauldron::Cauldron(3); + case (119 << 4) | 0: return EndPortal::EndPortal(); + case (120 << 4) | 0: return EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZP); + case (120 << 4) | 1: return EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XM); + case (120 << 4) | 2: return EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZM); + case (120 << 4) | 3: return EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XP); + case (120 << 4) | 4: return EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZP); + case (120 << 4) | 5: return EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XM); + case (120 << 4) | 6: return EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZM); + case (120 << 4) | 7: return EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XP); + case (121 << 4) | 0: return EndStone::EndStone(); + case (122 << 4) | 0: return DragonEgg::DragonEgg(); + case (123 << 4) | 0: return RedstoneLamp::RedstoneLamp(false); + case (124 << 4) | 0: return RedstoneLamp::RedstoneLamp(true); + case (125 << 4) | 0: return OakSlab::OakSlab(OakSlab::Type::Double); + case (125 << 4) | 1: return SpruceSlab::SpruceSlab(SpruceSlab::Type::Double); + case (125 << 4) | 2: return BirchSlab::BirchSlab(BirchSlab::Type::Double); + case (125 << 4) | 3: return JungleSlab::JungleSlab(JungleSlab::Type::Double); + case (125 << 4) | 4: return AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Double); + case (125 << 4) | 5: return DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Double); + case (126 << 4) | 0: return OakSlab::OakSlab(OakSlab::Type::Bottom); + case (126 << 4) | 1: return SpruceSlab::SpruceSlab(SpruceSlab::Type::Bottom); + case (126 << 4) | 2: return BirchSlab::BirchSlab(BirchSlab::Type::Bottom); + case (126 << 4) | 3: return JungleSlab::JungleSlab(JungleSlab::Type::Bottom); + case (126 << 4) | 4: return AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Bottom); + case (126 << 4) | 5: return DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Bottom); + case (126 << 4) | 8: return OakSlab::OakSlab(OakSlab::Type::Top); + case (126 << 4) | 9: return SpruceSlab::SpruceSlab(SpruceSlab::Type::Top); + case (126 << 4) | 10: return BirchSlab::BirchSlab(BirchSlab::Type::Top); + case (126 << 4) | 11: return JungleSlab::JungleSlab(JungleSlab::Type::Top); + case (126 << 4) | 12: return AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Top); + case (126 << 4) | 13: return DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Top); + case (127 << 4) | 0: return Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZP); + case (127 << 4) | 1: return Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XM); + case (127 << 4) | 2: return Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZM); + case (127 << 4) | 3: return Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XP); + case (127 << 4) | 4: return Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZP); + case (127 << 4) | 5: return Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XM); + case (127 << 4) | 6: return Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZM); + case (127 << 4) | 7: return Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XP); + case (127 << 4) | 8: return Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZP); + case (127 << 4) | 9: return Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XM); + case (127 << 4) | 10: return Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZM); + case (127 << 4) | 11: return Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XP); + case (128 << 4) | 0: return SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight); + case (128 << 4) | 1: return SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight); + case (128 << 4) | 2: return SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight); + case (128 << 4) | 3: return SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight); + case (128 << 4) | 4: return SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight); + case (128 << 4) | 5: return SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight); + case (128 << 4) | 6: return SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight); + case (128 << 4) | 7: return SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight); + case (129 << 4) | 0: return EmeraldOre::EmeraldOre(); + case (130 << 4) | 2: return EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZM); + case (130 << 4) | 3: return EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZP); + case (130 << 4) | 4: return EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XM); + case (130 << 4) | 5: return EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XP); + case (131 << 4) | 0: return TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, false); + case (131 << 4) | 1: return TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, false); + case (131 << 4) | 2: return TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, false); + case (131 << 4) | 3: return TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, false); + case (131 << 4) | 4: return TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, false); + case (131 << 4) | 5: return TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, false); + case (131 << 4) | 6: return TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, false); + case (131 << 4) | 7: return TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, false); + case (131 << 4) | 8: return TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, true); + case (131 << 4) | 9: return TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, true); + case (131 << 4) | 10: return TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, true); + case (131 << 4) | 11: return TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, true); + case (131 << 4) | 12: return TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, true); + case (131 << 4) | 13: return TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, true); + case (131 << 4) | 14: return TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, true); + case (131 << 4) | 15: return TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, true); + case (132 << 4) | 0: return Tripwire::Tripwire(false, false, false, false, false, false, false); + case (132 << 4) | 1: return Tripwire::Tripwire(false, false, false, false, true, false, false); + case (132 << 4) | 2: return Tripwire::Tripwire(false, false, false, false, false, false, false); + case (132 << 4) | 3: return Tripwire::Tripwire(false, false, false, false, true, false, false); + case (132 << 4) | 4: return Tripwire::Tripwire(true, false, false, false, false, false, false); + case (132 << 4) | 5: return Tripwire::Tripwire(true, false, false, false, true, false, false); + case (132 << 4) | 6: return Tripwire::Tripwire(true, false, false, false, false, false, false); + case (132 << 4) | 7: return Tripwire::Tripwire(true, false, false, false, true, false, false); + case (132 << 4) | 8: return Tripwire::Tripwire(false, true, false, false, false, false, false); + case (132 << 4) | 9: return Tripwire::Tripwire(false, true, false, false, true, false, false); + case (132 << 4) | 10: return Tripwire::Tripwire(false, true, false, false, false, false, false); + case (132 << 4) | 11: return Tripwire::Tripwire(false, true, false, false, true, false, false); + case (132 << 4) | 12: return Tripwire::Tripwire(true, true, false, false, false, false, false); + case (132 << 4) | 13: return Tripwire::Tripwire(true, true, false, false, true, false, false); + case (132 << 4) | 14: return Tripwire::Tripwire(true, true, false, false, false, false, false); + case (133 << 4) | 0: return EmeraldBlock::EmeraldBlock(); + case (134 << 4) | 0: return SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight); + case (134 << 4) | 1: return SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight); + case (134 << 4) | 2: return SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight); + case (134 << 4) | 3: return SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight); + case (134 << 4) | 4: return SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight); + case (134 << 4) | 5: return SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight); + case (134 << 4) | 6: return SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight); + case (134 << 4) | 7: return SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight); + case (135 << 4) | 0: return BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight); + case (135 << 4) | 1: return BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight); + case (135 << 4) | 2: return BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight); + case (135 << 4) | 3: return BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight); + case (135 << 4) | 4: return BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::Straight); + case (135 << 4) | 5: return BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::Straight); + case (135 << 4) | 6: return BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::Straight); + case (135 << 4) | 7: return BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::Straight); + case (136 << 4) | 0: return JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight); + case (136 << 4) | 1: return JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight); + case (136 << 4) | 2: return JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight); + case (136 << 4) | 3: return JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight); + case (136 << 4) | 4: return JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::Straight); + case (136 << 4) | 5: return JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::Straight); + case (136 << 4) | 6: return JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::Straight); + case (136 << 4) | 7: return JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::Straight); + case (137 << 4) | 0: return CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YM); + case (137 << 4) | 1: return CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YP); + case (137 << 4) | 2: return CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZM); + case (137 << 4) | 3: return CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZP); + case (137 << 4) | 4: return CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XM); + case (137 << 4) | 5: return CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XP); + case (137 << 4) | 8: return CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YM); + case (137 << 4) | 9: return CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YP); + case (137 << 4) | 10: return CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZM); + case (137 << 4) | 11: return CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZP); + case (137 << 4) | 12: return CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XM); + case (137 << 4) | 13: return CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XP); + case (138 << 4) | 0: return Beacon::Beacon(); + case (139 << 4) | 0: return CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None); + case (139 << 4) | 1: return MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None); + case (140 << 4) | 0: return PottedCactus::PottedCactus(); + case (140 << 4) | 1: return PottedCactus::PottedCactus(); + case (140 << 4) | 2: return PottedCactus::PottedCactus(); + case (140 << 4) | 3: return PottedCactus::PottedCactus(); + case (140 << 4) | 4: return PottedCactus::PottedCactus(); + case (140 << 4) | 5: return PottedCactus::PottedCactus(); + case (140 << 4) | 6: return PottedCactus::PottedCactus(); + case (140 << 4) | 7: return PottedCactus::PottedCactus(); + case (140 << 4) | 8: return PottedCactus::PottedCactus(); + case (140 << 4) | 9: return PottedCactus::PottedCactus(); + case (140 << 4) | 10: return PottedCactus::PottedCactus(); + case (140 << 4) | 11: return PottedCactus::PottedCactus(); + case (140 << 4) | 12: return PottedCactus::PottedCactus(); + case (140 << 4) | 13: return PottedCactus::PottedCactus(); + case (140 << 4) | 14: return PottedCactus::PottedCactus(); + case (140 << 4) | 15: return PottedCactus::PottedCactus(); + case (141 << 4) | 0: return Carrots::Carrots(0); + case (141 << 4) | 1: return Carrots::Carrots(1); + case (141 << 4) | 2: return Carrots::Carrots(2); + case (141 << 4) | 3: return Carrots::Carrots(3); + case (141 << 4) | 4: return Carrots::Carrots(4); + case (141 << 4) | 5: return Carrots::Carrots(5); + case (141 << 4) | 6: return Carrots::Carrots(6); + case (141 << 4) | 7: return Carrots::Carrots(7); + case (142 << 4) | 0: return Potatoes::Potatoes(0); + case (142 << 4) | 1: return Potatoes::Potatoes(1); + case (142 << 4) | 2: return Potatoes::Potatoes(2); + case (142 << 4) | 3: return Potatoes::Potatoes(3); + case (142 << 4) | 4: return Potatoes::Potatoes(4); + case (142 << 4) | 5: return Potatoes::Potatoes(5); + case (142 << 4) | 6: return Potatoes::Potatoes(6); + case (142 << 4) | 7: return Potatoes::Potatoes(7); + case (143 << 4) | 0: return OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false); + case (143 << 4) | 1: return OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false); + case (143 << 4) | 2: return OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false); + case (143 << 4) | 3: return OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false); + case (143 << 4) | 4: return OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false); + case (143 << 4) | 5: return OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false); + case (143 << 4) | 8: return OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true); + case (143 << 4) | 9: return OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true); + case (143 << 4) | 10: return OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true); + case (143 << 4) | 11: return OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true); + case (143 << 4) | 12: return OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true); + case (143 << 4) | 13: return OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true); + case (144 << 4) | 1: return SkeletonSkull::SkeletonSkull(eBlockFace::BLOCK_FACE_YP); + case (144 << 4) | 2: return SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM); + case (144 << 4) | 3: return SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP); + case (144 << 4) | 4: return SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XM); + case (144 << 4) | 5: return SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XP); + case (145 << 4) | 0: return Anvil::Anvil(eBlockFace::BLOCK_FACE_ZP); + case (145 << 4) | 1: return Anvil::Anvil(eBlockFace::BLOCK_FACE_XM); + case (145 << 4) | 2: return Anvil::Anvil(eBlockFace::BLOCK_FACE_ZM); + case (145 << 4) | 3: return Anvil::Anvil(eBlockFace::BLOCK_FACE_XP); + case (145 << 4) | 4: return ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZP); + case (145 << 4) | 5: return ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XM); + case (145 << 4) | 6: return ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZM); + case (145 << 4) | 7: return ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XP); + case (145 << 4) | 8: return DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZP); + case (145 << 4) | 9: return DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XM); + case (145 << 4) | 10: return DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZM); + case (145 << 4) | 11: return DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XP); + case (146 << 4) | 2: return TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Single); + case (146 << 4) | 3: return TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Single); + case (146 << 4) | 4: return TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Single); + case (146 << 4) | 5: return TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Single); + case (147 << 4) | 0: return LightWeightedPressurePlate::LightWeightedPressurePlate(0); + case (147 << 4) | 1: return LightWeightedPressurePlate::LightWeightedPressurePlate(1); + case (147 << 4) | 2: return LightWeightedPressurePlate::LightWeightedPressurePlate(2); + case (147 << 4) | 3: return LightWeightedPressurePlate::LightWeightedPressurePlate(3); + case (147 << 4) | 4: return LightWeightedPressurePlate::LightWeightedPressurePlate(4); + case (147 << 4) | 5: return LightWeightedPressurePlate::LightWeightedPressurePlate(5); + case (147 << 4) | 6: return LightWeightedPressurePlate::LightWeightedPressurePlate(6); + case (147 << 4) | 7: return LightWeightedPressurePlate::LightWeightedPressurePlate(7); + case (147 << 4) | 8: return LightWeightedPressurePlate::LightWeightedPressurePlate(8); + case (147 << 4) | 9: return LightWeightedPressurePlate::LightWeightedPressurePlate(9); + case (147 << 4) | 10: return LightWeightedPressurePlate::LightWeightedPressurePlate(10); + case (147 << 4) | 11: return LightWeightedPressurePlate::LightWeightedPressurePlate(11); + case (147 << 4) | 12: return LightWeightedPressurePlate::LightWeightedPressurePlate(12); + case (147 << 4) | 13: return LightWeightedPressurePlate::LightWeightedPressurePlate(13); + case (147 << 4) | 14: return LightWeightedPressurePlate::LightWeightedPressurePlate(14); + case (147 << 4) | 15: return LightWeightedPressurePlate::LightWeightedPressurePlate(15); + case (148 << 4) | 0: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(0); + case (148 << 4) | 1: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(1); + case (148 << 4) | 2: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(2); + case (148 << 4) | 3: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(3); + case (148 << 4) | 4: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(4); + case (148 << 4) | 5: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(5); + case (148 << 4) | 6: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(6); + case (148 << 4) | 7: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(7); + case (148 << 4) | 8: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(8); + case (148 << 4) | 9: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(9); + case (148 << 4) | 10: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(10); + case (148 << 4) | 11: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(11); + case (148 << 4) | 12: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(12); + case (148 << 4) | 13: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(13); + case (148 << 4) | 14: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(14); + case (148 << 4) | 15: return HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(15); + case (149 << 4) | 0: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, false); + case (149 << 4) | 1: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, false); + case (149 << 4) | 2: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, false); + case (149 << 4) | 3: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, false); + case (149 << 4) | 4: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, false); + case (149 << 4) | 5: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, false); + case (149 << 4) | 6: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, false); + case (149 << 4) | 7: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, false); + case (149 << 4) | 8: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, true); + case (149 << 4) | 9: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, true); + case (149 << 4) | 10: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, true); + case (149 << 4) | 11: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, true); + case (149 << 4) | 12: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, true); + case (149 << 4) | 13: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, true); + case (149 << 4) | 14: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, true); + case (149 << 4) | 15: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, true); + case (150 << 4) | 0: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, false); + case (150 << 4) | 1: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, false); + case (150 << 4) | 2: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, false); + case (150 << 4) | 3: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, false); + case (150 << 4) | 4: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, false); + case (150 << 4) | 5: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, false); + case (150 << 4) | 6: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, false); + case (150 << 4) | 7: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, false); + case (150 << 4) | 8: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, true); + case (150 << 4) | 9: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, true); + case (150 << 4) | 10: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, true); + case (150 << 4) | 11: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, true); + case (150 << 4) | 12: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, true); + case (150 << 4) | 13: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, true); + case (150 << 4) | 14: return Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, true); + case (150 << 4) | 15: return Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, true); + case (151 << 4) | 0: return DaylightDetector::DaylightDetector(false, 0); + case (151 << 4) | 1: return DaylightDetector::DaylightDetector(false, 1); + case (151 << 4) | 2: return DaylightDetector::DaylightDetector(false, 2); + case (151 << 4) | 3: return DaylightDetector::DaylightDetector(false, 3); + case (151 << 4) | 4: return DaylightDetector::DaylightDetector(false, 4); + case (151 << 4) | 5: return DaylightDetector::DaylightDetector(false, 5); + case (151 << 4) | 6: return DaylightDetector::DaylightDetector(false, 6); + case (151 << 4) | 7: return DaylightDetector::DaylightDetector(false, 7); + case (151 << 4) | 8: return DaylightDetector::DaylightDetector(false, 8); + case (151 << 4) | 9: return DaylightDetector::DaylightDetector(false, 9); + case (151 << 4) | 10: return DaylightDetector::DaylightDetector(false, 10); + case (151 << 4) | 11: return DaylightDetector::DaylightDetector(false, 11); + case (151 << 4) | 12: return DaylightDetector::DaylightDetector(false, 12); + case (151 << 4) | 13: return DaylightDetector::DaylightDetector(false, 13); + case (151 << 4) | 14: return DaylightDetector::DaylightDetector(false, 14); + case (151 << 4) | 15: return DaylightDetector::DaylightDetector(false, 15); + case (152 << 4) | 0: return RedstoneBlock::RedstoneBlock(); + case (153 << 4) | 0: return NetherQuartzOre::NetherQuartzOre(); + case (154 << 4) | 0: return Hopper::Hopper(true, eBlockFace::BLOCK_FACE_YM); + case (154 << 4) | 2: return Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZM); + case (154 << 4) | 3: return Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZP); + case (154 << 4) | 4: return Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XM); + case (154 << 4) | 5: return Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XP); + case (154 << 4) | 8: return Hopper::Hopper(false, eBlockFace::BLOCK_FACE_YM); + case (154 << 4) | 10: return Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZM); + case (154 << 4) | 11: return Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZP); + case (154 << 4) | 12: return Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XM); + case (154 << 4) | 13: return Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XP); + case (155 << 4) | 0: return QuartzBlock::QuartzBlock(); + case (155 << 4) | 1: return ChiseledQuartzBlock::ChiseledQuartzBlock(); + case (155 << 4) | 2: return QuartzPillar::QuartzPillar(QuartzPillar::Axis::Y); + case (155 << 4) | 3: return QuartzPillar::QuartzPillar(QuartzPillar::Axis::X); + case (155 << 4) | 4: return QuartzPillar::QuartzPillar(QuartzPillar::Axis::Z); + case (156 << 4) | 0: return QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight); + case (156 << 4) | 1: return QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight); + case (156 << 4) | 2: return QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight); + case (156 << 4) | 3: return QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight); + case (156 << 4) | 4: return QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight); + case (156 << 4) | 5: return QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight); + case (156 << 4) | 6: return QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight); + case (156 << 4) | 7: return QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight); + case (157 << 4) | 0: return ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::NorthSouth); + case (157 << 4) | 1: return ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::EastWest); + case (157 << 4) | 2: return ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingEast); + case (157 << 4) | 3: return ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingWest); + case (157 << 4) | 4: return ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingNorth); + case (157 << 4) | 5: return ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingSouth); + case (157 << 4) | 8: return ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::NorthSouth); + case (157 << 4) | 9: return ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::EastWest); + case (157 << 4) | 10: return ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingEast); + case (157 << 4) | 11: return ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingWest); + case (157 << 4) | 12: return ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingNorth); + case (157 << 4) | 13: return ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingSouth); + case (158 << 4) | 0: return Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, false); + case (158 << 4) | 1: return Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, false); + case (158 << 4) | 2: return Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, false); + case (158 << 4) | 3: return Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, false); + case (158 << 4) | 4: return Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, false); + case (158 << 4) | 5: return Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, false); + case (158 << 4) | 8: return Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, true); + case (158 << 4) | 9: return Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, true); + case (158 << 4) | 10: return Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, true); + case (158 << 4) | 11: return Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, true); + case (158 << 4) | 12: return Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, true); + case (158 << 4) | 13: return Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, true); + case (159 << 4) | 0: return WhiteTerracotta::WhiteTerracotta(); + case (159 << 4) | 1: return OrangeTerracotta::OrangeTerracotta(); + case (159 << 4) | 2: return MagentaTerracotta::MagentaTerracotta(); + case (159 << 4) | 3: return LightBlueTerracotta::LightBlueTerracotta(); + case (159 << 4) | 4: return YellowTerracotta::YellowTerracotta(); + case (159 << 4) | 5: return LimeTerracotta::LimeTerracotta(); + case (159 << 4) | 6: return PinkTerracotta::PinkTerracotta(); + case (159 << 4) | 7: return GrayTerracotta::GrayTerracotta(); + case (159 << 4) | 8: return LightGrayTerracotta::LightGrayTerracotta(); + case (159 << 4) | 9: return CyanTerracotta::CyanTerracotta(); + case (159 << 4) | 10: return PurpleTerracotta::PurpleTerracotta(); + case (159 << 4) | 11: return BlueTerracotta::BlueTerracotta(); + case (159 << 4) | 12: return BrownTerracotta::BrownTerracotta(); + case (159 << 4) | 13: return GreenTerracotta::GreenTerracotta(); + case (159 << 4) | 14: return RedTerracotta::RedTerracotta(); + case (159 << 4) | 15: return BlackTerracotta::BlackTerracotta(); + case (160 << 4) | 0: return WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, false); + case (160 << 4) | 1: return OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, false); + case (160 << 4) | 2: return MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, false); + case (160 << 4) | 3: return LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, false); + case (160 << 4) | 4: return YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, false); + case (160 << 4) | 5: return LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, false); + case (160 << 4) | 6: return PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, false); + case (160 << 4) | 7: return GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, false); + case (160 << 4) | 8: return LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, false); + case (160 << 4) | 9: return CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, false); + case (160 << 4) | 10: return PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, false); + case (160 << 4) | 11: return BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, false); + case (160 << 4) | 12: return BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, false); + case (160 << 4) | 13: return GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, false); + case (160 << 4) | 14: return RedStainedGlassPane::RedStainedGlassPane(false, false, false, false); + case (160 << 4) | 15: return BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, false); + case (161 << 4) | 0: return AcaciaLeaves::AcaciaLeaves(false, true); + case (161 << 4) | 1: return DarkOakLeaves::DarkOakLeaves(false, true); + case (161 << 4) | 4: return AcaciaLeaves::AcaciaLeaves(false, false); + case (161 << 4) | 5: return DarkOakLeaves::DarkOakLeaves(false, false); + case (161 << 4) | 8: return AcaciaLeaves::AcaciaLeaves(true, true); + case (161 << 4) | 9: return DarkOakLeaves::DarkOakLeaves(true, true); + case (161 << 4) | 12: return AcaciaLeaves::AcaciaLeaves(true, false); + case (161 << 4) | 13: return DarkOakLeaves::DarkOakLeaves(true, false); + case (162 << 4) | 0: return AcaciaLog::AcaciaLog(AcaciaLog::Axis::Y); + case (162 << 4) | 1: return DarkOakLog::DarkOakLog(DarkOakLog::Axis::Y); + case (162 << 4) | 4: return AcaciaLog::AcaciaLog(AcaciaLog::Axis::X); + case (162 << 4) | 5: return DarkOakLog::DarkOakLog(DarkOakLog::Axis::X); + case (162 << 4) | 8: return AcaciaLog::AcaciaLog(AcaciaLog::Axis::Z); + case (162 << 4) | 9: return DarkOakLog::DarkOakLog(DarkOakLog::Axis::Z); + case (162 << 4) | 12: return AcaciaWood::AcaciaWood(); + case (162 << 4) | 13: return DarkOakWood::DarkOakWood(); + case (163 << 4) | 0: return AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight); + case (163 << 4) | 1: return AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight); + case (163 << 4) | 2: return AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight); + case (163 << 4) | 3: return AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight); + case (163 << 4) | 4: return AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight); + case (163 << 4) | 5: return AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight); + case (163 << 4) | 6: return AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight); + case (163 << 4) | 7: return AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight); + case (164 << 4) | 0: return DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight); + case (164 << 4) | 1: return DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight); + case (164 << 4) | 2: return DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight); + case (164 << 4) | 3: return DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight); + case (164 << 4) | 4: return DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight); + case (164 << 4) | 5: return DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight); + case (164 << 4) | 6: return DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight); + case (164 << 4) | 7: return DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight); + case (165 << 4) | 0: return SlimeBlock::SlimeBlock(); + case (166 << 4) | 0: return Barrier::Barrier(); + case (167 << 4) | 0: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, false); + case (167 << 4) | 1: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, false); + case (167 << 4) | 2: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, false); + case (167 << 4) | 3: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, false); + case (167 << 4) | 4: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, false); + case (167 << 4) | 5: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, false); + case (167 << 4) | 6: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, false); + case (167 << 4) | 7: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, false); + case (167 << 4) | 8: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, false); + case (167 << 4) | 9: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, false); + case (167 << 4) | 10: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, false); + case (167 << 4) | 11: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, false); + case (167 << 4) | 12: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, false); + case (167 << 4) | 13: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, false); + case (167 << 4) | 14: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, false); + case (167 << 4) | 15: return IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, false); + case (168 << 4) | 0: return Prismarine::Prismarine(); + case (168 << 4) | 1: return PrismarineBricks::PrismarineBricks(); + case (168 << 4) | 2: return DarkPrismarine::DarkPrismarine(); + case (169 << 4) | 0: return SeaLantern::SeaLantern(); + case (170 << 4) | 0: return HayBale::HayBale(HayBale::Axis::Y); + case (170 << 4) | 4: return HayBale::HayBale(HayBale::Axis::X); + case (170 << 4) | 8: return HayBale::HayBale(HayBale::Axis::Z); + case (171 << 4) | 0: return WhiteCarpet::WhiteCarpet(); + case (171 << 4) | 1: return OrangeCarpet::OrangeCarpet(); + case (171 << 4) | 2: return MagentaCarpet::MagentaCarpet(); + case (171 << 4) | 3: return LightBlueCarpet::LightBlueCarpet(); + case (171 << 4) | 4: return YellowCarpet::YellowCarpet(); + case (171 << 4) | 5: return LimeCarpet::LimeCarpet(); + case (171 << 4) | 6: return PinkCarpet::PinkCarpet(); + case (171 << 4) | 7: return GrayCarpet::GrayCarpet(); + case (171 << 4) | 8: return LightGrayCarpet::LightGrayCarpet(); + case (171 << 4) | 9: return CyanCarpet::CyanCarpet(); + case (171 << 4) | 10: return PurpleCarpet::PurpleCarpet(); + case (171 << 4) | 11: return BlueCarpet::BlueCarpet(); + case (171 << 4) | 12: return BrownCarpet::BrownCarpet(); + case (171 << 4) | 13: return GreenCarpet::GreenCarpet(); + case (171 << 4) | 14: return RedCarpet::RedCarpet(); + case (171 << 4) | 15: return BlackCarpet::BlackCarpet(); + case (172 << 4) | 0: return Terracotta::Terracotta(); + case (173 << 4) | 0: return CoalBlock::CoalBlock(); + case (174 << 4) | 0: return PackedIce::PackedIce(); + case (175 << 4) | 0: return Sunflower::Sunflower(Sunflower::Half::Lower); + case (175 << 4) | 1: return Lilac::Lilac(Lilac::Half::Lower); + case (175 << 4) | 2: return TallGrass::TallGrass(TallGrass::Half::Lower); + case (175 << 4) | 3: return LargeFern::LargeFern(LargeFern::Half::Lower); + case (175 << 4) | 4: return RoseBush::RoseBush(RoseBush::Half::Lower); + case (175 << 4) | 5: return Peony::Peony(Peony::Half::Lower); + case (175 << 4) | 8: return Peony::Peony(Peony::Half::Upper); + case (175 << 4) | 9: return Peony::Peony(Peony::Half::Upper); + case (175 << 4) | 10: return Peony::Peony(Peony::Half::Upper); + case (175 << 4) | 11: return Peony::Peony(Peony::Half::Upper); + case (176 << 4) | 0: return WhiteBanner::WhiteBanner(0); + case (176 << 4) | 1: return WhiteBanner::WhiteBanner(1); + case (176 << 4) | 2: return WhiteBanner::WhiteBanner(2); + case (176 << 4) | 3: return WhiteBanner::WhiteBanner(3); + case (176 << 4) | 4: return WhiteBanner::WhiteBanner(4); + case (176 << 4) | 5: return WhiteBanner::WhiteBanner(5); + case (176 << 4) | 6: return WhiteBanner::WhiteBanner(6); + case (176 << 4) | 7: return WhiteBanner::WhiteBanner(7); + case (176 << 4) | 8: return WhiteBanner::WhiteBanner(8); + case (176 << 4) | 9: return WhiteBanner::WhiteBanner(9); + case (176 << 4) | 10: return WhiteBanner::WhiteBanner(10); + case (176 << 4) | 11: return WhiteBanner::WhiteBanner(11); + case (176 << 4) | 12: return WhiteBanner::WhiteBanner(12); + case (176 << 4) | 13: return WhiteBanner::WhiteBanner(13); + case (176 << 4) | 14: return WhiteBanner::WhiteBanner(14); + case (176 << 4) | 15: return WhiteBanner::WhiteBanner(15); + case (177 << 4) | 2: return WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZM); + case (177 << 4) | 3: return WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZP); + case (177 << 4) | 4: return WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XM); + case (177 << 4) | 5: return WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XP); + case (178 << 4) | 0: return DaylightDetector::DaylightDetector(true, 0); + case (178 << 4) | 1: return DaylightDetector::DaylightDetector(true, 1); + case (178 << 4) | 2: return DaylightDetector::DaylightDetector(true, 2); + case (178 << 4) | 3: return DaylightDetector::DaylightDetector(true, 3); + case (178 << 4) | 4: return DaylightDetector::DaylightDetector(true, 4); + case (178 << 4) | 5: return DaylightDetector::DaylightDetector(true, 5); + case (178 << 4) | 6: return DaylightDetector::DaylightDetector(true, 6); + case (178 << 4) | 7: return DaylightDetector::DaylightDetector(true, 7); + case (178 << 4) | 8: return DaylightDetector::DaylightDetector(true, 8); + case (178 << 4) | 9: return DaylightDetector::DaylightDetector(true, 9); + case (178 << 4) | 10: return DaylightDetector::DaylightDetector(true, 10); + case (178 << 4) | 11: return DaylightDetector::DaylightDetector(true, 11); + case (178 << 4) | 12: return DaylightDetector::DaylightDetector(true, 12); + case (178 << 4) | 13: return DaylightDetector::DaylightDetector(true, 13); + case (178 << 4) | 14: return DaylightDetector::DaylightDetector(true, 14); + case (178 << 4) | 15: return DaylightDetector::DaylightDetector(true, 15); + case (179 << 4) | 0: return RedSandstone::RedSandstone(); + case (179 << 4) | 1: return ChiseledRedSandstone::ChiseledRedSandstone(); + case (179 << 4) | 2: return CutRedSandstone::CutRedSandstone(); + case (180 << 4) | 0: return RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight); + case (180 << 4) | 1: return RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight); + case (180 << 4) | 2: return RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight); + case (180 << 4) | 3: return RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight); + case (180 << 4) | 4: return RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight); + case (180 << 4) | 5: return RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight); + case (180 << 4) | 6: return RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight); + case (180 << 4) | 7: return RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight); + case (181 << 4) | 0: return RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Double); + case (181 << 4) | 8: return SmoothRedSandstone::SmoothRedSandstone(); + case (182 << 4) | 0: return RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Bottom); + case (182 << 4) | 8: return RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Top); + case (183 << 4) | 0: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false); + case (183 << 4) | 1: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false); + case (183 << 4) | 2: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false); + case (183 << 4) | 3: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false); + case (183 << 4) | 4: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false); + case (183 << 4) | 5: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false); + case (183 << 4) | 6: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false); + case (183 << 4) | 7: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false); + case (183 << 4) | 8: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true); + case (183 << 4) | 9: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true); + case (183 << 4) | 10: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true); + case (183 << 4) | 11: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true); + case (183 << 4) | 12: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true); + case (183 << 4) | 13: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true); + case (183 << 4) | 14: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true); + case (183 << 4) | 15: return SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true); + case (184 << 4) | 0: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false); + case (184 << 4) | 1: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false); + case (184 << 4) | 2: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false); + case (184 << 4) | 3: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false); + case (184 << 4) | 4: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false); + case (184 << 4) | 5: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false); + case (184 << 4) | 6: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false); + case (184 << 4) | 7: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false); + case (184 << 4) | 8: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true); + case (184 << 4) | 9: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true); + case (184 << 4) | 10: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true); + case (184 << 4) | 11: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true); + case (184 << 4) | 12: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true); + case (184 << 4) | 13: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true); + case (184 << 4) | 14: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true); + case (184 << 4) | 15: return BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true); + case (185 << 4) | 0: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false); + case (185 << 4) | 1: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false); + case (185 << 4) | 2: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false); + case (185 << 4) | 3: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false); + case (185 << 4) | 4: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false); + case (185 << 4) | 5: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false); + case (185 << 4) | 6: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false); + case (185 << 4) | 7: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false); + case (185 << 4) | 8: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true); + case (185 << 4) | 9: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true); + case (185 << 4) | 10: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true); + case (185 << 4) | 11: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true); + case (185 << 4) | 12: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true); + case (185 << 4) | 13: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true); + case (185 << 4) | 14: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true); + case (185 << 4) | 15: return JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true); + case (186 << 4) | 0: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false); + case (186 << 4) | 1: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false); + case (186 << 4) | 2: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false); + case (186 << 4) | 3: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false); + case (186 << 4) | 4: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false); + case (186 << 4) | 5: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false); + case (186 << 4) | 6: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false); + case (186 << 4) | 7: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false); + case (186 << 4) | 8: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true); + case (186 << 4) | 9: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true); + case (186 << 4) | 10: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true); + case (186 << 4) | 11: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true); + case (186 << 4) | 12: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true); + case (186 << 4) | 13: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true); + case (186 << 4) | 14: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true); + case (186 << 4) | 15: return DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true); + case (187 << 4) | 0: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false); + case (187 << 4) | 1: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false); + case (187 << 4) | 2: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false); + case (187 << 4) | 3: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false); + case (187 << 4) | 4: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false); + case (187 << 4) | 5: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false); + case (187 << 4) | 6: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false); + case (187 << 4) | 7: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false); + case (187 << 4) | 8: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true); + case (187 << 4) | 9: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true); + case (187 << 4) | 10: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true); + case (187 << 4) | 11: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true); + case (187 << 4) | 12: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true); + case (187 << 4) | 13: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true); + case (187 << 4) | 14: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true); + case (187 << 4) | 15: return AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true); + case (188 << 4) | 0: return SpruceFence::SpruceFence(false, false, false, false); + case (189 << 4) | 0: return BirchFence::BirchFence(false, false, false, false); + case (190 << 4) | 0: return JungleFence::JungleFence(false, false, false, false); + case (191 << 4) | 0: return DarkOakFence::DarkOakFence(false, false, false, false); + case (192 << 4) | 0: return AcaciaFence::AcaciaFence(false, false, false, false); + case (193 << 4) | 0: return SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false); + case (193 << 4) | 1: return SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false); + case (193 << 4) | 2: return SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false); + case (193 << 4) | 3: return SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false); + case (193 << 4) | 4: return SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false); + case (193 << 4) | 5: return SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false); + case (193 << 4) | 6: return SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false); + case (193 << 4) | 7: return SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false); + case (193 << 4) | 8: return SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false); + case (193 << 4) | 9: return SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false); + case (193 << 4) | 10: return SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true); + case (193 << 4) | 11: return SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true); + case (194 << 4) | 0: return BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false); + case (194 << 4) | 1: return BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false); + case (194 << 4) | 2: return BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false); + case (194 << 4) | 3: return BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false); + case (194 << 4) | 4: return BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false); + case (194 << 4) | 5: return BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false); + case (194 << 4) | 6: return BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false); + case (194 << 4) | 7: return BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false); + case (194 << 4) | 8: return BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false); + case (194 << 4) | 9: return BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false); + case (194 << 4) | 10: return BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true); + case (194 << 4) | 11: return BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true); + case (195 << 4) | 0: return JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false); + case (195 << 4) | 1: return JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false); + case (195 << 4) | 2: return JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false); + case (195 << 4) | 3: return JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false); + case (195 << 4) | 4: return JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false); + case (195 << 4) | 5: return JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false); + case (195 << 4) | 6: return JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false); + case (195 << 4) | 7: return JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false); + case (195 << 4) | 8: return JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false); + case (195 << 4) | 9: return JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false); + case (195 << 4) | 10: return JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true); + case (195 << 4) | 11: return JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true); + case (196 << 4) | 0: return AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false); + case (196 << 4) | 1: return AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false); + case (196 << 4) | 2: return AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false); + case (196 << 4) | 3: return AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false); + case (196 << 4) | 4: return AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false); + case (196 << 4) | 5: return AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false); + case (196 << 4) | 6: return AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false); + case (196 << 4) | 7: return AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false); + case (196 << 4) | 8: return AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false); + case (196 << 4) | 9: return AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false); + case (196 << 4) | 10: return AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true); + case (196 << 4) | 11: return AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true); + case (197 << 4) | 0: return DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false); + case (197 << 4) | 1: return DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false); + case (197 << 4) | 2: return DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false); + case (197 << 4) | 3: return DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false); + case (197 << 4) | 4: return DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false); + case (197 << 4) | 5: return DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false); + case (197 << 4) | 6: return DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false); + case (197 << 4) | 7: return DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false); + case (197 << 4) | 8: return DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false); + case (197 << 4) | 9: return DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false); + case (197 << 4) | 10: return DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true); + case (197 << 4) | 11: return DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true); + case (198 << 4) | 0: return EndRod::EndRod(eBlockFace::BLOCK_FACE_YM); + case (198 << 4) | 1: return EndRod::EndRod(eBlockFace::BLOCK_FACE_YP); + case (198 << 4) | 2: return EndRod::EndRod(eBlockFace::BLOCK_FACE_ZM); + case (198 << 4) | 3: return EndRod::EndRod(eBlockFace::BLOCK_FACE_ZP); + case (198 << 4) | 4: return EndRod::EndRod(eBlockFace::BLOCK_FACE_XM); + case (198 << 4) | 5: return EndRod::EndRod(eBlockFace::BLOCK_FACE_XP); + case (199 << 4) | 0: return ChorusPlant::ChorusPlant(false, false, false, false, false, false); + case (200 << 4) | 0: return ChorusFlower::ChorusFlower(0); + case (200 << 4) | 1: return ChorusFlower::ChorusFlower(1); + case (200 << 4) | 2: return ChorusFlower::ChorusFlower(2); + case (200 << 4) | 3: return ChorusFlower::ChorusFlower(3); + case (200 << 4) | 4: return ChorusFlower::ChorusFlower(4); + case (200 << 4) | 5: return ChorusFlower::ChorusFlower(5); + case (201 << 4) | 0: return PurpurBlock::PurpurBlock(); + case (202 << 4) | 0: return PurpurPillar::PurpurPillar(PurpurPillar::Axis::Y); + case (202 << 4) | 4: return PurpurPillar::PurpurPillar(PurpurPillar::Axis::X); + case (202 << 4) | 8: return PurpurPillar::PurpurPillar(PurpurPillar::Axis::Z); + case (203 << 4) | 0: return PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight); + case (203 << 4) | 1: return PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight); + case (203 << 4) | 2: return PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight); + case (203 << 4) | 3: return PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight); + case (203 << 4) | 4: return PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight); + case (203 << 4) | 5: return PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight); + case (203 << 4) | 6: return PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight); + case (203 << 4) | 7: return PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight); + case (204 << 4) | 0: return PurpurSlab::PurpurSlab(PurpurSlab::Type::Double); + case (205 << 4) | 0: return PurpurSlab::PurpurSlab(PurpurSlab::Type::Bottom); + case (205 << 4) | 8: return PurpurSlab::PurpurSlab(PurpurSlab::Type::Top); + case (206 << 4) | 0: return EndStoneBricks::EndStoneBricks(); + case (207 << 4) | 0: return Beetroots::Beetroots(0); + case (207 << 4) | 1: return Beetroots::Beetroots(1); + case (207 << 4) | 2: return Beetroots::Beetroots(2); + case (207 << 4) | 3: return Beetroots::Beetroots(3); + case (208 << 4) | 0: return GrassPath::GrassPath(); + case (209 << 4) | 0: return EndGateway::EndGateway(); + case (210 << 4) | 0: return RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YM); + case (210 << 4) | 1: return RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YP); + case (210 << 4) | 2: return RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZM); + case (210 << 4) | 3: return RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZP); + case (210 << 4) | 4: return RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XM); + case (210 << 4) | 5: return RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XP); + case (210 << 4) | 8: return RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YM); + case (210 << 4) | 9: return RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YP); + case (210 << 4) | 10: return RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZM); + case (210 << 4) | 11: return RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZP); + case (210 << 4) | 12: return RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XM); + case (210 << 4) | 13: return RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XP); + case (211 << 4) | 0: return ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YM); + case (211 << 4) | 1: return ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YP); + case (211 << 4) | 2: return ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZM); + case (211 << 4) | 3: return ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZP); + case (211 << 4) | 4: return ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XM); + case (211 << 4) | 5: return ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XP); + case (211 << 4) | 8: return ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YM); + case (211 << 4) | 9: return ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YP); + case (211 << 4) | 10: return ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZM); + case (211 << 4) | 11: return ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZP); + case (211 << 4) | 12: return ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XM); + case (211 << 4) | 13: return ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XP); + case (212 << 4) | 0: return FrostedIce::FrostedIce(0); + case (212 << 4) | 1: return FrostedIce::FrostedIce(1); + case (212 << 4) | 2: return FrostedIce::FrostedIce(2); + case (212 << 4) | 3: return FrostedIce::FrostedIce(3); + case (213 << 4) | 0: return MagmaBlock::MagmaBlock(); + case (214 << 4) | 0: return NetherWartBlock::NetherWartBlock(); + case (215 << 4) | 0: return RedNetherBricks::RedNetherBricks(); + case (216 << 4) | 0: return BoneBlock::BoneBlock(BoneBlock::Axis::Y); + case (216 << 4) | 4: return BoneBlock::BoneBlock(BoneBlock::Axis::X); + case (216 << 4) | 8: return BoneBlock::BoneBlock(BoneBlock::Axis::Z); + case (217 << 4) | 0: return StructureVoid::StructureVoid(); + case (218 << 4) | 0: return Observer::Observer(eBlockFace::BLOCK_FACE_YM, false); + case (218 << 4) | 1: return Observer::Observer(eBlockFace::BLOCK_FACE_YP, false); + case (218 << 4) | 2: return Observer::Observer(eBlockFace::BLOCK_FACE_ZM, false); + case (218 << 4) | 3: return Observer::Observer(eBlockFace::BLOCK_FACE_ZP, false); + case (218 << 4) | 4: return Observer::Observer(eBlockFace::BLOCK_FACE_XM, false); + case (218 << 4) | 5: return Observer::Observer(eBlockFace::BLOCK_FACE_XP, false); + case (218 << 4) | 8: return Observer::Observer(eBlockFace::BLOCK_FACE_YM, true); + case (218 << 4) | 9: return Observer::Observer(eBlockFace::BLOCK_FACE_YP, true); + case (218 << 4) | 10: return Observer::Observer(eBlockFace::BLOCK_FACE_ZM, true); + case (218 << 4) | 11: return Observer::Observer(eBlockFace::BLOCK_FACE_ZP, true); + case (218 << 4) | 12: return Observer::Observer(eBlockFace::BLOCK_FACE_XM, true); + case (218 << 4) | 13: return Observer::Observer(eBlockFace::BLOCK_FACE_XP, true); + case (219 << 4) | 0: return WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (219 << 4) | 1: return WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (219 << 4) | 2: return WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (219 << 4) | 3: return WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (219 << 4) | 4: return WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (219 << 4) | 5: return WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (220 << 4) | 0: return OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (220 << 4) | 1: return OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (220 << 4) | 2: return OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (220 << 4) | 3: return OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (220 << 4) | 4: return OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (220 << 4) | 5: return OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (221 << 4) | 0: return MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (221 << 4) | 1: return MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (221 << 4) | 2: return MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (221 << 4) | 3: return MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (221 << 4) | 4: return MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (221 << 4) | 5: return MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (222 << 4) | 0: return LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (222 << 4) | 1: return LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (222 << 4) | 2: return LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (222 << 4) | 3: return LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (222 << 4) | 4: return LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (222 << 4) | 5: return LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (223 << 4) | 0: return YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (223 << 4) | 1: return YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (223 << 4) | 2: return YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (223 << 4) | 3: return YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (223 << 4) | 4: return YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (223 << 4) | 5: return YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (224 << 4) | 0: return LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (224 << 4) | 1: return LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (224 << 4) | 2: return LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (224 << 4) | 3: return LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (224 << 4) | 4: return LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (224 << 4) | 5: return LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (225 << 4) | 0: return PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (225 << 4) | 1: return PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (225 << 4) | 2: return PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (225 << 4) | 3: return PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (225 << 4) | 4: return PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (225 << 4) | 5: return PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (226 << 4) | 0: return GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (226 << 4) | 1: return GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (226 << 4) | 2: return GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (226 << 4) | 3: return GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (226 << 4) | 4: return GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (226 << 4) | 5: return GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (227 << 4) | 0: return LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (227 << 4) | 1: return LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (227 << 4) | 2: return LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (227 << 4) | 3: return LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (227 << 4) | 4: return LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (227 << 4) | 5: return LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (228 << 4) | 0: return CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (228 << 4) | 1: return CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (228 << 4) | 2: return CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (228 << 4) | 3: return CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (228 << 4) | 4: return CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (228 << 4) | 5: return CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (229 << 4) | 0: return PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (229 << 4) | 1: return PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (229 << 4) | 2: return PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (229 << 4) | 3: return PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (229 << 4) | 4: return PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (229 << 4) | 5: return PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (230 << 4) | 0: return BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (230 << 4) | 1: return BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (230 << 4) | 2: return BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (230 << 4) | 3: return BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (230 << 4) | 4: return BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (230 << 4) | 5: return BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (231 << 4) | 0: return BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (231 << 4) | 1: return BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (231 << 4) | 2: return BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (231 << 4) | 3: return BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (231 << 4) | 4: return BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (231 << 4) | 5: return BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (232 << 4) | 0: return GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (232 << 4) | 1: return GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (232 << 4) | 2: return GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (232 << 4) | 3: return GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (232 << 4) | 4: return GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (232 << 4) | 5: return GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (233 << 4) | 0: return RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (233 << 4) | 1: return RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (233 << 4) | 2: return RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (233 << 4) | 3: return RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (233 << 4) | 4: return RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (233 << 4) | 5: return RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (234 << 4) | 0: return BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YM); + case (234 << 4) | 1: return BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YP); + case (234 << 4) | 2: return BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZM); + case (234 << 4) | 3: return BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZP); + case (234 << 4) | 4: return BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XM); + case (234 << 4) | 5: return BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XP); + case (235 << 4) | 0: return WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (235 << 4) | 1: return WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (235 << 4) | 2: return WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (235 << 4) | 3: return WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (236 << 4) | 0: return OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (236 << 4) | 1: return OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (236 << 4) | 2: return OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (236 << 4) | 3: return OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (237 << 4) | 0: return MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (237 << 4) | 1: return MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (237 << 4) | 2: return MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (237 << 4) | 3: return MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (238 << 4) | 0: return LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (238 << 4) | 1: return LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (238 << 4) | 2: return LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (238 << 4) | 3: return LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (239 << 4) | 0: return YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (239 << 4) | 1: return YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (239 << 4) | 2: return YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (239 << 4) | 3: return YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (240 << 4) | 0: return LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (240 << 4) | 1: return LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (240 << 4) | 2: return LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (240 << 4) | 3: return LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (241 << 4) | 0: return PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (241 << 4) | 1: return PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (241 << 4) | 2: return PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (241 << 4) | 3: return PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (242 << 4) | 0: return GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (242 << 4) | 1: return GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (242 << 4) | 2: return GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (242 << 4) | 3: return GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (243 << 4) | 0: return LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (243 << 4) | 1: return LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (243 << 4) | 2: return LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (243 << 4) | 3: return LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (244 << 4) | 0: return CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (244 << 4) | 1: return CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (244 << 4) | 2: return CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (244 << 4) | 3: return CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (245 << 4) | 0: return PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (245 << 4) | 1: return PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (245 << 4) | 2: return PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (245 << 4) | 3: return PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (246 << 4) | 0: return BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (246 << 4) | 1: return BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (246 << 4) | 2: return BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (246 << 4) | 3: return BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (247 << 4) | 0: return BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (247 << 4) | 1: return BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (247 << 4) | 2: return BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (247 << 4) | 3: return BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (248 << 4) | 0: return GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (248 << 4) | 1: return GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (248 << 4) | 2: return GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (248 << 4) | 3: return GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (249 << 4) | 0: return RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (249 << 4) | 1: return RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (249 << 4) | 2: return RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (249 << 4) | 3: return RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (250 << 4) | 0: return BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP); + case (250 << 4) | 1: return BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XM); + case (250 << 4) | 2: return BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM); + case (250 << 4) | 3: return BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XP); + case (251 << 4) | 0: return WhiteConcrete::WhiteConcrete(); + case (251 << 4) | 1: return OrangeConcrete::OrangeConcrete(); + case (251 << 4) | 2: return MagentaConcrete::MagentaConcrete(); + case (251 << 4) | 3: return LightBlueConcrete::LightBlueConcrete(); + case (251 << 4) | 4: return YellowConcrete::YellowConcrete(); + case (251 << 4) | 5: return LimeConcrete::LimeConcrete(); + case (251 << 4) | 6: return PinkConcrete::PinkConcrete(); + case (251 << 4) | 7: return GrayConcrete::GrayConcrete(); + case (251 << 4) | 8: return LightGrayConcrete::LightGrayConcrete(); + case (251 << 4) | 9: return CyanConcrete::CyanConcrete(); + case (251 << 4) | 10: return PurpleConcrete::PurpleConcrete(); + case (251 << 4) | 11: return BlueConcrete::BlueConcrete(); + case (251 << 4) | 12: return BrownConcrete::BrownConcrete(); + case (251 << 4) | 13: return GreenConcrete::GreenConcrete(); + case (251 << 4) | 14: return RedConcrete::RedConcrete(); + case (251 << 4) | 15: return BlackConcrete::BlackConcrete(); + case (252 << 4) | 0: return WhiteConcretePowder::WhiteConcretePowder(); + case (252 << 4) | 1: return OrangeConcretePowder::OrangeConcretePowder(); + case (252 << 4) | 2: return MagentaConcretePowder::MagentaConcretePowder(); + case (252 << 4) | 3: return LightBlueConcretePowder::LightBlueConcretePowder(); + case (252 << 4) | 4: return YellowConcretePowder::YellowConcretePowder(); + case (252 << 4) | 5: return LimeConcretePowder::LimeConcretePowder(); + case (252 << 4) | 6: return PinkConcretePowder::PinkConcretePowder(); + case (252 << 4) | 7: return GrayConcretePowder::GrayConcretePowder(); + case (252 << 4) | 8: return LightGrayConcretePowder::LightGrayConcretePowder(); + case (252 << 4) | 9: return CyanConcretePowder::CyanConcretePowder(); + case (252 << 4) | 10: return PurpleConcretePowder::PurpleConcretePowder(); + case (252 << 4) | 11: return BlueConcretePowder::BlueConcretePowder(); + case (252 << 4) | 12: return BrownConcretePowder::BrownConcretePowder(); + case (252 << 4) | 13: return GreenConcretePowder::GreenConcretePowder(); + case (252 << 4) | 14: return RedConcretePowder::RedConcretePowder(); + case (252 << 4) | 15: return BlackConcretePowder::BlackConcretePowder(); + case (255 << 4) | 0: return StructureBlock::StructureBlock(StructureBlock::Mode::Save); + case (255 << 4) | 1: return StructureBlock::StructureBlock(StructureBlock::Mode::Load); + case (255 << 4) | 2: return StructureBlock::StructureBlock(StructureBlock::Mode::Corner); + case (255 << 4) | 3: return StructureBlock::StructureBlock(StructureBlock::Mode::Data); + default: return Air::Air(); + } + } + + Item FromItem(short Item, short Meta) + { + switch ((Item << 16) | Meta) + { + case (1 << 16) | 0: return Item::Stone; + case (1 << 16) | 1: return Item::Granite; + case (1 << 16) | 2: return Item::PolishedGranite; + case (1 << 16) | 3: return Item::Diorite; + case (1 << 16) | 4: return Item::PolishedDiorite; + case (1 << 16) | 5: return Item::Andesite; + case (1 << 16) | 6: return Item::PolishedAndesite; + case (2 << 16) | 0: return Item::GrassBlock; + case (3 << 16) | 0: return Item::Dirt; + case (3 << 16) | 1: return Item::CoarseDirt; + case (3 << 16) | 2: return Item::Podzol; + case (4 << 16) | 0: return Item::Cobblestone; + case (5 << 16) | 0: return Item::OakPlanks; + case (5 << 16) | 1: return Item::SprucePlanks; + case (5 << 16) | 2: return Item::BirchPlanks; + case (5 << 16) | 3: return Item::JunglePlanks; + case (5 << 16) | 4: return Item::AcaciaPlanks; + case (5 << 16) | 5: return Item::DarkOakPlanks; + case (6 << 16) | 0: return Item::OakSapling; + case (6 << 16) | 1: return Item::SpruceSapling; + case (6 << 16) | 2: return Item::BirchSapling; + case (6 << 16) | 3: return Item::JungleSapling; + case (6 << 16) | 4: return Item::AcaciaSapling; + case (6 << 16) | 5: return Item::DarkOakSapling; + case (7 << 16) | 0: return Item::Bedrock; + case (12 << 16) | 0: return Item::Sand; + case (12 << 16) | 1: return Item::RedSand; + case (13 << 16) | 0: return Item::Gravel; + case (14 << 16) | 0: return Item::GoldOre; + case (15 << 16) | 0: return Item::IronOre; + case (16 << 16) | 0: return Item::CoalOre; + case (17 << 16) | 0: return Item::OakLog; + case (17 << 16) | 1: return Item::SpruceLog; + case (17 << 16) | 2: return Item::BirchLog; + case (17 << 16) | 3: return Item::JungleLog; + case (162 << 16) | 0: return Item::AcaciaLog; + case (162 << 16) | 1: return Item::DarkOakLog; + case (18 << 16) | 0: return Item::OakLeaves; + case (18 << 16) | 1: return Item::SpruceLeaves; + case (18 << 16) | 2: return Item::BirchLeaves; + case (18 << 16) | 3: return Item::JungleLeaves; + case (161 << 16) | 0: return Item::AcaciaLeaves; + case (161 << 16) | 1: return Item::DarkOakLeaves; + case (19 << 16) | 0: return Item::Sponge; + case (19 << 16) | 1: return Item::WetSponge; + case (20 << 16) | 0: return Item::Glass; + case (21 << 16) | 0: return Item::LapisOre; + case (22 << 16) | 0: return Item::LapisBlock; + case (23 << 16) | 0: return Item::Dispenser; + case (24 << 16) | 0: return Item::Sandstone; + case (24 << 16) | 1: return Item::ChiseledSandstone; + case (24 << 16) | 2: return Item::CutSandstone; + case (25 << 16) | 0: return Item::NoteBlock; + case (27 << 16) | 0: return Item::PoweredRail; + case (28 << 16) | 0: return Item::DetectorRail; + case (29 << 16) | 0: return Item::StickyPiston; + case (30 << 16) | 0: return Item::Cobweb; + case (31 << 16) | 2: return Item::Fern; + case (32 << 16) | 0: return Item::DeadBush; + case (33 << 16) | 0: return Item::Piston; + case (35 << 16) | 0: return Item::WhiteWool; + case (35 << 16) | 1: return Item::OrangeWool; + case (35 << 16) | 2: return Item::MagentaWool; + case (35 << 16) | 3: return Item::LightBlueWool; + case (35 << 16) | 4: return Item::YellowWool; + case (35 << 16) | 5: return Item::LimeWool; + case (35 << 16) | 6: return Item::PinkWool; + case (35 << 16) | 7: return Item::GrayWool; + case (35 << 16) | 8: return Item::LightGrayWool; + case (35 << 16) | 9: return Item::CyanWool; + case (35 << 16) | 10: return Item::PurpleWool; + case (35 << 16) | 11: return Item::BlueWool; + case (35 << 16) | 12: return Item::BrownWool; + case (35 << 16) | 13: return Item::GreenWool; + case (35 << 16) | 14: return Item::RedWool; + case (35 << 16) | 15: return Item::BlackWool; + case (37 << 16) | 0: return Item::Dandelion; + case (38 << 16) | 0: return Item::Poppy; + case (38 << 16) | 1: return Item::BlueOrchid; + case (38 << 16) | 2: return Item::Allium; + case (38 << 16) | 3: return Item::AzureBluet; + case (38 << 16) | 4: return Item::RedTulip; + case (38 << 16) | 5: return Item::OrangeTulip; + case (38 << 16) | 6: return Item::WhiteTulip; + case (38 << 16) | 7: return Item::PinkTulip; + case (38 << 16) | 8: return Item::OxeyeDaisy; + case (39 << 16) | 0: return Item::BrownMushroom; + case (40 << 16) | 0: return Item::RedMushroom; + case (41 << 16) | 0: return Item::GoldBlock; + case (42 << 16) | 0: return Item::IronBlock; + case (126 << 16) | 0: return Item::OakSlab; + case (126 << 16) | 1: return Item::SpruceSlab; + case (126 << 16) | 2: return Item::BirchSlab; + case (126 << 16) | 3: return Item::JungleSlab; + case (126 << 16) | 4: return Item::AcaciaSlab; + case (126 << 16) | 5: return Item::DarkOakSlab; + case (44 << 16) | 2: return Item::StoneSlab; + case (44 << 16) | 1: return Item::SandstoneSlab; + case (44 << 16) | 3: return Item::CobblestoneSlab; + case (44 << 16) | 4: return Item::BrickSlab; + case (44 << 16) | 5: return Item::StoneBrickSlab; + case (44 << 16) | 6: return Item::NetherBrickSlab; + case (44 << 16) | 7: return Item::QuartzSlab; + case (182 << 16) | 0: return Item::RedSandstoneSlab; + case (205 << 16) | 0: return Item::PurpurSlab; + case (43 << 16) | 7: return Item::SmoothQuartz; + case (43 << 16) | 8: return Item::SmoothStone; + case (45 << 16) | 0: return Item::Bricks; + case (46 << 16) | 0: return Item::TNT; + case (47 << 16) | 0: return Item::Bookshelf; + case (48 << 16) | 0: return Item::MossyCobblestone; + case (49 << 16) | 0: return Item::Obsidian; + case (50 << 16) | 0: return Item::Torch; + case (198 << 16) | 0: return Item::EndRod; + case (199 << 16) | 0: return Item::ChorusPlant; + case (200 << 16) | 0: return Item::ChorusFlower; + case (201 << 16) | 0: return Item::PurpurBlock; + case (202 << 16) | 0: return Item::PurpurPillar; + case (203 << 16) | 0: return Item::PurpurStairs; + case (52 << 16) | 0: return Item::Spawner; + case (53 << 16) | 0: return Item::OakStairs; + case (54 << 16) | 0: return Item::Chest; + case (56 << 16) | 0: return Item::DiamondOre; + case (57 << 16) | 0: return Item::DiamondBlock; + case (58 << 16) | 0: return Item::CraftingTable; + case (60 << 16) | 0: return Item::Farmland; + case (61 << 16) | 0: return Item::Furnace; + case (65 << 16) | 0: return Item::Ladder; + case (66 << 16) | 0: return Item::Rail; + case (67 << 16) | 0: return Item::CobblestoneStairs; + case (69 << 16) | 0: return Item::Lever; + case (70 << 16) | 0: return Item::StonePressurePlate; + case (72 << 16) | 0: return Item::OakPressurePlate; + case (73 << 16) | 0: return Item::RedstoneOre; + case (76 << 16) | 0: return Item::RedstoneTorch; + case (77 << 16) | 0: return Item::StoneButton; + case (78 << 16) | 0: return Item::Snow; + case (79 << 16) | 0: return Item::Ice; + case (80 << 16) | 0: return Item::SnowBlock; + case (81 << 16) | 0: return Item::Cactus; + case (82 << 16) | 0: return Item::Clay; + case (84 << 16) | 0: return Item::Jukebox; + case (85 << 16) | 0: return Item::OakFence; + case (188 << 16) | 0: return Item::SpruceFence; + case (189 << 16) | 0: return Item::BirchFence; + case (190 << 16) | 0: return Item::JungleFence; + case (192 << 16) | 0: return Item::AcaciaFence; + case (191 << 16) | 0: return Item::DarkOakFence; + case (86 << 16) | 0: return Item::Pumpkin; + case (87 << 16) | 0: return Item::Netherrack; + case (88 << 16) | 0: return Item::SoulSand; + case (89 << 16) | 0: return Item::Glowstone; + case (91 << 16) | 0: return Item::JackOLantern; + case (96 << 16) | 0: return Item::OakTrapdoor; + case (97 << 16) | 0: return Item::InfestedStone; + case (97 << 16) | 1: return Item::InfestedCobblestone; + case (97 << 16) | 2: return Item::InfestedStoneBricks; + case (97 << 16) | 3: return Item::InfestedMossyStoneBricks; + case (97 << 16) | 4: return Item::InfestedCrackedStoneBricks; + case (97 << 16) | 5: return Item::InfestedChiseledStoneBricks; + case (98 << 16) | 0: return Item::StoneBricks; + case (98 << 16) | 1: return Item::MossyStoneBricks; + case (98 << 16) | 2: return Item::CrackedStoneBricks; + case (98 << 16) | 3: return Item::ChiseledStoneBricks; + case (99 << 16) | 0: return Item::BrownMushroomBlock; + case (100 << 16) | 0: return Item::RedMushroomBlock; + case (101 << 16) | 0: return Item::IronBars; + case (102 << 16) | 0: return Item::GlassPane; + case (103 << 16) | 0: return Item::Melon; + case (106 << 16) | 0: return Item::Vine; + case (107 << 16) | 0: return Item::OakFenceGate; + case (183 << 16) | 0: return Item::SpruceFenceGate; + case (184 << 16) | 0: return Item::BirchFenceGate; + case (185 << 16) | 0: return Item::JungleFenceGate; + case (187 << 16) | 0: return Item::AcaciaFenceGate; + case (186 << 16) | 0: return Item::DarkOakFenceGate; + case (108 << 16) | 0: return Item::BrickStairs; + case (109 << 16) | 0: return Item::StoneBrickStairs; + case (110 << 16) | 0: return Item::Mycelium; + case (111 << 16) | 0: return Item::LilyPad; + case (112 << 16) | 0: return Item::NetherBricks; + case (113 << 16) | 0: return Item::NetherBrickFence; + case (114 << 16) | 0: return Item::NetherBrickStairs; + case (116 << 16) | 0: return Item::EnchantingTable; + case (120 << 16) | 0: return Item::EndPortalFrame; + case (121 << 16) | 0: return Item::EndStone; + case (206 << 16) | 0: return Item::EndStoneBricks; + case (122 << 16) | 0: return Item::DragonEgg; + case (123 << 16) | 0: return Item::RedstoneLamp; + case (128 << 16) | 0: return Item::SandstoneStairs; + case (129 << 16) | 0: return Item::EmeraldOre; + case (130 << 16) | 0: return Item::EnderChest; + case (131 << 16) | 0: return Item::TripwireHook; + case (133 << 16) | 0: return Item::EmeraldBlock; + case (134 << 16) | 0: return Item::SpruceStairs; + case (135 << 16) | 0: return Item::BirchStairs; + case (136 << 16) | 0: return Item::JungleStairs; + case (137 << 16) | 0: return Item::CommandBlock; + case (138 << 16) | 0: return Item::Beacon; + case (139 << 16) | 0: return Item::CobblestoneWall; + case (139 << 16) | 1: return Item::MossyCobblestoneWall; + case (143 << 16) | 0: return Item::OakButton; + case (145 << 16) | 0: return Item::Anvil; + case (145 << 16) | 1: return Item::ChippedAnvil; + case (145 << 16) | 2: return Item::DamagedAnvil; + case (146 << 16) | 0: return Item::TrappedChest; + case (147 << 16) | 0: return Item::LightWeightedPressurePlate; + case (148 << 16) | 0: return Item::HeavyWeightedPressurePlate; + case (151 << 16) | 0: return Item::DaylightDetector; + case (152 << 16) | 0: return Item::RedstoneBlock; + case (153 << 16) | 0: return Item::NetherQuartzOre; + case (154 << 16) | 0: return Item::Hopper; + case (155 << 16) | 1: return Item::ChiseledQuartzBlock; + case (155 << 16) | 0: return Item::QuartzBlock; + case (155 << 16) | 2: return Item::QuartzPillar; + case (156 << 16) | 0: return Item::QuartzStairs; + case (157 << 16) | 0: return Item::ActivatorRail; + case (158 << 16) | 0: return Item::Dropper; + case (159 << 16) | 0: return Item::WhiteTerracotta; + case (159 << 16) | 1: return Item::OrangeTerracotta; + case (159 << 16) | 2: return Item::MagentaTerracotta; + case (159 << 16) | 3: return Item::LightBlueTerracotta; + case (159 << 16) | 4: return Item::YellowTerracotta; + case (159 << 16) | 5: return Item::LimeTerracotta; + case (159 << 16) | 6: return Item::PinkTerracotta; + case (159 << 16) | 7: return Item::GrayTerracotta; + case (159 << 16) | 8: return Item::LightGrayTerracotta; + case (159 << 16) | 9: return Item::CyanTerracotta; + case (159 << 16) | 10: return Item::PurpleTerracotta; + case (159 << 16) | 11: return Item::BlueTerracotta; + case (159 << 16) | 12: return Item::BrownTerracotta; + case (159 << 16) | 13: return Item::GreenTerracotta; + case (159 << 16) | 14: return Item::RedTerracotta; + case (159 << 16) | 15: return Item::BlackTerracotta; + case (166 << 16) | 0: return Item::Barrier; + case (167 << 16) | 0: return Item::IronTrapdoor; + case (170 << 16) | 0: return Item::HayBale; + case (171 << 16) | 0: return Item::WhiteCarpet; + case (171 << 16) | 1: return Item::OrangeCarpet; + case (171 << 16) | 2: return Item::MagentaCarpet; + case (171 << 16) | 3: return Item::LightBlueCarpet; + case (171 << 16) | 4: return Item::YellowCarpet; + case (171 << 16) | 5: return Item::LimeCarpet; + case (171 << 16) | 6: return Item::PinkCarpet; + case (171 << 16) | 7: return Item::GrayCarpet; + case (171 << 16) | 8: return Item::LightGrayCarpet; + case (171 << 16) | 9: return Item::CyanCarpet; + case (171 << 16) | 10: return Item::PurpleCarpet; + case (171 << 16) | 11: return Item::BlueCarpet; + case (171 << 16) | 12: return Item::BrownCarpet; + case (171 << 16) | 13: return Item::GreenCarpet; + case (171 << 16) | 14: return Item::RedCarpet; + case (171 << 16) | 15: return Item::BlackCarpet; + case (172 << 16) | 0: return Item::Terracotta; + case (173 << 16) | 0: return Item::CoalBlock; + case (174 << 16) | 0: return Item::PackedIce; + case (163 << 16) | 0: return Item::AcaciaStairs; + case (164 << 16) | 0: return Item::DarkOakStairs; + case (165 << 16) | 0: return Item::SlimeBlock; + case (208 << 16) | 0: return Item::GrassPath; + case (175 << 16) | 0: return Item::Sunflower; + case (175 << 16) | 1: return Item::Lilac; + case (175 << 16) | 4: return Item::RoseBush; + case (175 << 16) | 5: return Item::Peony; + case (175 << 16) | 2: return Item::TallGrass; + case (175 << 16) | 3: return Item::LargeFern; + case (95 << 16) | 0: return Item::WhiteStainedGlass; + case (95 << 16) | 1: return Item::OrangeStainedGlass; + case (95 << 16) | 2: return Item::MagentaStainedGlass; + case (95 << 16) | 3: return Item::LightBlueStainedGlass; + case (95 << 16) | 4: return Item::YellowStainedGlass; + case (95 << 16) | 5: return Item::LimeStainedGlass; + case (95 << 16) | 6: return Item::PinkStainedGlass; + case (95 << 16) | 7: return Item::GrayStainedGlass; + case (95 << 16) | 8: return Item::LightGrayStainedGlass; + case (95 << 16) | 9: return Item::CyanStainedGlass; + case (95 << 16) | 10: return Item::PurpleStainedGlass; + case (95 << 16) | 11: return Item::BlueStainedGlass; + case (95 << 16) | 12: return Item::BrownStainedGlass; + case (95 << 16) | 13: return Item::GreenStainedGlass; + case (95 << 16) | 14: return Item::RedStainedGlass; + case (95 << 16) | 15: return Item::BlackStainedGlass; + case (160 << 16) | 0: return Item::WhiteStainedGlassPane; + case (160 << 16) | 1: return Item::OrangeStainedGlassPane; + case (160 << 16) | 2: return Item::MagentaStainedGlassPane; + case (160 << 16) | 3: return Item::LightBlueStainedGlassPane; + case (160 << 16) | 4: return Item::YellowStainedGlassPane; + case (160 << 16) | 5: return Item::LimeStainedGlassPane; + case (160 << 16) | 6: return Item::PinkStainedGlassPane; + case (160 << 16) | 7: return Item::GrayStainedGlassPane; + case (160 << 16) | 8: return Item::LightGrayStainedGlassPane; + case (160 << 16) | 9: return Item::CyanStainedGlassPane; + case (160 << 16) | 10: return Item::PurpleStainedGlassPane; + case (160 << 16) | 11: return Item::BlueStainedGlassPane; + case (160 << 16) | 12: return Item::BrownStainedGlassPane; + case (160 << 16) | 13: return Item::GreenStainedGlassPane; + case (160 << 16) | 14: return Item::RedStainedGlassPane; + case (160 << 16) | 15: return Item::BlackStainedGlassPane; + case (168 << 16) | 0: return Item::Prismarine; + case (168 << 16) | 1: return Item::PrismarineBricks; + case (168 << 16) | 2: return Item::DarkPrismarine; + case (169 << 16) | 0: return Item::SeaLantern; + case (179 << 16) | 0: return Item::RedSandstone; + case (179 << 16) | 1: return Item::ChiseledRedSandstone; + case (179 << 16) | 2: return Item::CutRedSandstone; + case (180 << 16) | 0: return Item::RedSandstoneStairs; + case (210 << 16) | 0: return Item::RepeatingCommandBlock; + case (211 << 16) | 0: return Item::ChainCommandBlock; + case (213 << 16) | 0: return Item::MagmaBlock; + case (214 << 16) | 0: return Item::NetherWartBlock; + case (215 << 16) | 0: return Item::RedNetherBricks; + case (216 << 16) | 0: return Item::BoneBlock; + case (217 << 16) | 0: return Item::StructureVoid; + case (218 << 16) | 0: return Item::Observer; + case (219 << 16) | 0: return Item::WhiteShulkerBox; + case (220 << 16) | 0: return Item::OrangeShulkerBox; + case (221 << 16) | 0: return Item::MagentaShulkerBox; + case (222 << 16) | 0: return Item::LightBlueShulkerBox; + case (223 << 16) | 0: return Item::YellowShulkerBox; + case (224 << 16) | 0: return Item::LimeShulkerBox; + case (225 << 16) | 0: return Item::PinkShulkerBox; + case (226 << 16) | 0: return Item::GrayShulkerBox; + case (227 << 16) | 0: return Item::LightGrayShulkerBox; + case (228 << 16) | 0: return Item::CyanShulkerBox; + case (229 << 16) | 0: return Item::PurpleShulkerBox; + case (230 << 16) | 0: return Item::BlueShulkerBox; + case (231 << 16) | 0: return Item::BrownShulkerBox; + case (232 << 16) | 0: return Item::GreenShulkerBox; + case (233 << 16) | 0: return Item::RedShulkerBox; + case (234 << 16) | 0: return Item::BlackShulkerBox; + case (235 << 16) | 0: return Item::WhiteGlazedTerracotta; + case (236 << 16) | 0: return Item::OrangeGlazedTerracotta; + case (237 << 16) | 0: return Item::MagentaGlazedTerracotta; + case (238 << 16) | 0: return Item::LightBlueGlazedTerracotta; + case (239 << 16) | 0: return Item::YellowGlazedTerracotta; + case (240 << 16) | 0: return Item::LimeGlazedTerracotta; + case (241 << 16) | 0: return Item::PinkGlazedTerracotta; + case (242 << 16) | 0: return Item::GrayGlazedTerracotta; + case (243 << 16) | 0: return Item::LightGrayGlazedTerracotta; + case (244 << 16) | 0: return Item::CyanGlazedTerracotta; + case (245 << 16) | 0: return Item::PurpleGlazedTerracotta; + case (246 << 16) | 0: return Item::BlueGlazedTerracotta; + case (247 << 16) | 0: return Item::BrownGlazedTerracotta; + case (248 << 16) | 0: return Item::GreenGlazedTerracotta; + case (249 << 16) | 0: return Item::RedGlazedTerracotta; + case (250 << 16) | 0: return Item::BlackGlazedTerracotta; + case (251 << 16) | 0: return Item::WhiteConcrete; + case (251 << 16) | 1: return Item::OrangeConcrete; + case (251 << 16) | 2: return Item::MagentaConcrete; + case (251 << 16) | 3: return Item::LightBlueConcrete; + case (251 << 16) | 4: return Item::YellowConcrete; + case (251 << 16) | 5: return Item::LimeConcrete; + case (251 << 16) | 6: return Item::PinkConcrete; + case (251 << 16) | 7: return Item::GrayConcrete; + case (251 << 16) | 8: return Item::LightGrayConcrete; + case (251 << 16) | 9: return Item::CyanConcrete; + case (251 << 16) | 10: return Item::PurpleConcrete; + case (251 << 16) | 11: return Item::BlueConcrete; + case (251 << 16) | 12: return Item::BrownConcrete; + case (251 << 16) | 13: return Item::GreenConcrete; + case (251 << 16) | 14: return Item::RedConcrete; + case (251 << 16) | 15: return Item::BlackConcrete; + case (252 << 16) | 0: return Item::WhiteConcretePowder; + case (252 << 16) | 1: return Item::OrangeConcretePowder; + case (252 << 16) | 2: return Item::MagentaConcretePowder; + case (252 << 16) | 3: return Item::LightBlueConcretePowder; + case (252 << 16) | 4: return Item::YellowConcretePowder; + case (252 << 16) | 5: return Item::LimeConcretePowder; + case (252 << 16) | 6: return Item::PinkConcretePowder; + case (252 << 16) | 7: return Item::GrayConcretePowder; + case (252 << 16) | 8: return Item::LightGrayConcretePowder; + case (252 << 16) | 9: return Item::CyanConcretePowder; + case (252 << 16) | 10: return Item::PurpleConcretePowder; + case (252 << 16) | 11: return Item::BlueConcretePowder; + case (252 << 16) | 12: return Item::BrownConcretePowder; + case (252 << 16) | 13: return Item::GreenConcretePowder; + case (252 << 16) | 14: return Item::RedConcretePowder; + case (252 << 16) | 15: return Item::BlackConcretePowder; + case (330 << 16) | 0: return Item::IronDoor; + case (324 << 16) | 0: return Item::OakDoor; + case (427 << 16) | 0: return Item::SpruceDoor; + case (428 << 16) | 0: return Item::BirchDoor; + case (429 << 16) | 0: return Item::JungleDoor; + case (430 << 16) | 0: return Item::AcaciaDoor; + case (431 << 16) | 0: return Item::DarkOakDoor; + case (356 << 16) | 0: return Item::Repeater; + case (404 << 16) | 0: return Item::Comparator; + case (255 << 16) | 0: return Item::StructureBlock; + case (256 << 16) | 0: return Item::IronShovel; + case (257 << 16) | 0: return Item::IronPickaxe; + case (258 << 16) | 0: return Item::IronAxe; + case (259 << 16) | 0: return Item::FlintAndSteel; + case (260 << 16) | 0: return Item::Apple; + case (261 << 16) | 0: return Item::Bow; + case (262 << 16) | 0: return Item::Arrow; + case (263 << 16) | 0: return Item::Coal; + case (263 << 16) | 1: return Item::Charcoal; + case (264 << 16) | 0: return Item::Diamond; + case (265 << 16) | 0: return Item::IronIngot; + case (266 << 16) | 0: return Item::GoldIngot; + case (267 << 16) | 0: return Item::IronSword; + case (268 << 16) | 0: return Item::WoodenSword; + case (269 << 16) | 0: return Item::WoodenShovel; + case (270 << 16) | 0: return Item::WoodenPickaxe; + case (271 << 16) | 0: return Item::WoodenAxe; + case (272 << 16) | 0: return Item::StoneSword; + case (273 << 16) | 0: return Item::StoneShovel; + case (274 << 16) | 0: return Item::StonePickaxe; + case (275 << 16) | 0: return Item::StoneAxe; + case (276 << 16) | 0: return Item::DiamondSword; + case (277 << 16) | 0: return Item::DiamondShovel; + case (278 << 16) | 0: return Item::DiamondPickaxe; + case (279 << 16) | 0: return Item::DiamondAxe; + case (280 << 16) | 0: return Item::Stick; + case (281 << 16) | 0: return Item::Bowl; + case (282 << 16) | 0: return Item::MushroomStew; + case (283 << 16) | 0: return Item::GoldenSword; + case (284 << 16) | 0: return Item::GoldenShovel; + case (285 << 16) | 0: return Item::GoldenPickaxe; + case (286 << 16) | 0: return Item::GoldenAxe; + case (287 << 16) | 0: return Item::String; + case (288 << 16) | 0: return Item::Feather; + case (289 << 16) | 0: return Item::Gunpowder; + case (290 << 16) | 0: return Item::WoodenHoe; + case (291 << 16) | 0: return Item::StoneHoe; + case (292 << 16) | 0: return Item::IronHoe; + case (293 << 16) | 0: return Item::DiamondHoe; + case (294 << 16) | 0: return Item::GoldenHoe; + case (295 << 16) | 0: return Item::WheatSeeds; + case (296 << 16) | 0: return Item::Wheat; + case (297 << 16) | 0: return Item::Bread; + case (298 << 16) | 0: return Item::LeatherHelmet; + case (299 << 16) | 0: return Item::LeatherChestplate; + case (300 << 16) | 0: return Item::LeatherLeggings; + case (301 << 16) | 0: return Item::LeatherBoots; + case (302 << 16) | 0: return Item::ChainmailHelmet; + case (303 << 16) | 0: return Item::ChainmailChestplate; + case (304 << 16) | 0: return Item::ChainmailLeggings; + case (305 << 16) | 0: return Item::ChainmailBoots; + case (306 << 16) | 0: return Item::IronHelmet; + case (307 << 16) | 0: return Item::IronChestplate; + case (308 << 16) | 0: return Item::IronLeggings; + case (309 << 16) | 0: return Item::IronBoots; + case (310 << 16) | 0: return Item::DiamondHelmet; + case (311 << 16) | 0: return Item::DiamondChestplate; + case (312 << 16) | 0: return Item::DiamondLeggings; + case (313 << 16) | 0: return Item::DiamondBoots; + case (314 << 16) | 0: return Item::GoldenHelmet; + case (315 << 16) | 0: return Item::GoldenChestplate; + case (316 << 16) | 0: return Item::GoldenLeggings; + case (317 << 16) | 0: return Item::GoldenBoots; + case (318 << 16) | 0: return Item::Flint; + case (319 << 16) | 0: return Item::Porkchop; + case (320 << 16) | 0: return Item::CookedPorkchop; + case (321 << 16) | 0: return Item::Painting; + case (322 << 16) | 0: return Item::GoldenApple; + case (322 << 16) | 1: return Item::EnchantedGoldenApple; + case (323 << 16) | 0: return Item::OakSign; + case (325 << 16) | 0: return Item::Bucket; + case (326 << 16) | 0: return Item::WaterBucket; + case (327 << 16) | 0: return Item::LavaBucket; + case (328 << 16) | 0: return Item::Minecart; + case (329 << 16) | 0: return Item::Saddle; + case (331 << 16) | 0: return Item::Redstone; + case (332 << 16) | 0: return Item::Snowball; + case (333 << 16) | 0: return Item::OakBoat; + case (334 << 16) | 0: return Item::Leather; + case (335 << 16) | 0: return Item::MilkBucket; + case (336 << 16) | 0: return Item::Brick; + case (337 << 16) | 0: return Item::ClayBall; + case (338 << 16) | 0: return Item::SugarCane; + case (339 << 16) | 0: return Item::Paper; + case (340 << 16) | 0: return Item::Book; + case (341 << 16) | 0: return Item::SlimeBall; + case (342 << 16) | 0: return Item::ChestMinecart; + case (343 << 16) | 0: return Item::FurnaceMinecart; + case (344 << 16) | 0: return Item::Egg; + case (345 << 16) | 0: return Item::Compass; + case (346 << 16) | 0: return Item::FishingRod; + case (347 << 16) | 0: return Item::Clock; + case (348 << 16) | 0: return Item::GlowstoneDust; + case (349 << 16) | 0: return Item::Cod; + case (349 << 16) | 1: return Item::Salmon; + case (349 << 16) | 2: return Item::TropicalFish; + case (349 << 16) | 3: return Item::Pufferfish; + case (350 << 16) | 0: return Item::CookedCod; + case (350 << 16) | 1: return Item::CookedSalmon; + case (351 << 16) | 0: return Item::InkSac; + case (351 << 16) | 1: return Item::RedDye; + case (351 << 16) | 2: return Item::GreenDye; + case (351 << 16) | 3: return Item::CocoaBeans; + case (351 << 16) | 4: return Item::LapisLazuli; + case (351 << 16) | 5: return Item::PurpleDye; + case (351 << 16) | 6: return Item::CyanDye; + case (351 << 16) | 7: return Item::LightGrayDye; + case (351 << 16) | 8: return Item::GrayDye; + case (351 << 16) | 9: return Item::PinkDye; + case (351 << 16) | 10: return Item::LimeDye; + case (351 << 16) | 11: return Item::YellowDye; + case (351 << 16) | 12: return Item::LightBlueDye; + case (351 << 16) | 13: return Item::MagentaDye; + case (351 << 16) | 14: return Item::OrangeDye; + case (351 << 16) | 15: return Item::BoneMeal; + case (352 << 16) | 0: return Item::Bone; + case (353 << 16) | 0: return Item::Sugar; + case (354 << 16) | 0: return Item::Cake; + case (355 << 16) | 0: return Item::WhiteBed; + case (355 << 16) | 1: return Item::OrangeBed; + case (355 << 16) | 2: return Item::MagentaBed; + case (355 << 16) | 3: return Item::LightBlueBed; + case (355 << 16) | 4: return Item::YellowBed; + case (355 << 16) | 5: return Item::LimeBed; + case (355 << 16) | 6: return Item::PinkBed; + case (355 << 16) | 7: return Item::GrayBed; + case (355 << 16) | 8: return Item::LightGrayBed; + case (355 << 16) | 9: return Item::CyanBed; + case (355 << 16) | 10: return Item::PurpleBed; + case (355 << 16) | 11: return Item::BlueBed; + case (355 << 16) | 12: return Item::BrownBed; + case (355 << 16) | 13: return Item::GreenBed; + case (355 << 16) | 14: return Item::RedBed; + case (355 << 16) | 15: return Item::BlackBed; + case (357 << 16) | 0: return Item::Cookie; + case (358 << 16) | 0: return Item::FilledMap; + case (359 << 16) | 0: return Item::Shears; + case (360 << 16) | 0: return Item::MelonSlice; + case (361 << 16) | 0: return Item::PumpkinSeeds; + case (362 << 16) | 0: return Item::MelonSeeds; + case (363 << 16) | 0: return Item::Beef; + case (364 << 16) | 0: return Item::CookedBeef; + case (365 << 16) | 0: return Item::Chicken; + case (366 << 16) | 0: return Item::CookedChicken; + case (367 << 16) | 0: return Item::RottenFlesh; + case (368 << 16) | 0: return Item::EnderPearl; + case (369 << 16) | 0: return Item::BlazeRod; + case (370 << 16) | 0: return Item::GhastTear; + case (371 << 16) | 0: return Item::GoldNugget; + case (372 << 16) | 0: return Item::NetherWart; + case (373 << 16) | 0: return Item::Potion; + case (438 << 16) | 0: return Item::SplashPotion; + case (441 << 16) | 0: return Item::LingeringPotion; + + // Potion type encoded in Item NBT: + case (373 << 16) | 16: + case (373 << 16) | 32: + case (373 << 16) | 64: + case (373 << 16) | 8193: + case (373 << 16) | 8194: + case (373 << 16) | 8195: + case (373 << 16) | 8196: + case (373 << 16) | 8197: + case (373 << 16) | 8198: + case (373 << 16) | 8200: + case (373 << 16) | 8201: + case (373 << 16) | 8202: + case (373 << 16) | 8204: + case (373 << 16) | 8205: + case (373 << 16) | 8206: + case (373 << 16) | 8225: + case (373 << 16) | 8226: + case (373 << 16) | 8228: + case (373 << 16) | 8229: + case (373 << 16) | 8233: + case (373 << 16) | 8235: + case (373 << 16) | 8236: + case (373 << 16) | 8257: + case (373 << 16) | 8258: + case (373 << 16) | 8259: + case (373 << 16) | 8260: + case (373 << 16) | 8262: + case (373 << 16) | 8264: + case (373 << 16) | 8265: + case (373 << 16) | 8266: + case (373 << 16) | 8267: + case (373 << 16) | 8269: + case (373 << 16) | 8270: + case (373 << 16) | 8289: + case (373 << 16) | 8290: + case (373 << 16) | 8292: + case (373 << 16) | 8297: return Item::Potion; + + // Potion type encoded in Item NBT: + case (373 << 16) | 16385: + case (373 << 16) | 16386: + case (373 << 16) | 16387: + case (373 << 16) | 16388: + case (373 << 16) | 16389: + case (373 << 16) | 16390: + case (373 << 16) | 16392: + case (373 << 16) | 16393: + case (373 << 16) | 16394: + case (373 << 16) | 16396: + case (373 << 16) | 16397: + case (373 << 16) | 16398: + case (373 << 16) | 16417: + case (373 << 16) | 16418: + case (373 << 16) | 16420: + case (373 << 16) | 16421: + case (373 << 16) | 16425: + case (373 << 16) | 16427: + case (373 << 16) | 16428: + case (373 << 16) | 16449: + case (373 << 16) | 16450: + case (373 << 16) | 16451: + case (373 << 16) | 16452: + case (373 << 16) | 16454: + case (373 << 16) | 16456: + case (373 << 16) | 16457: + case (373 << 16) | 16458: + case (373 << 16) | 16459: + case (373 << 16) | 16461: + case (373 << 16) | 16462: + case (373 << 16) | 16481: + case (373 << 16) | 16482: + case (373 << 16) | 16484: + case (373 << 16) | 16489: return Item::SplashPotion; + + case (374 << 16) | 0: return Item::GlassBottle; + case (375 << 16) | 0: return Item::SpiderEye; + case (376 << 16) | 0: return Item::FermentedSpiderEye; + case (377 << 16) | 0: return Item::BlazePowder; + case (378 << 16) | 0: return Item::MagmaCream; + case (379 << 16) | 0: return Item::BrewingStand; + case (380 << 16) | 0: return Item::Cauldron; + case (381 << 16) | 0: return Item::EnderEye; + case (382 << 16) | 0: return Item::GlisteringMelonSlice; + case (383 << 16) | 65: return Item::BatSpawnEgg; + case (383 << 16) | 61: return Item::BlazeSpawnEgg; + case (383 << 16) | 59: return Item::CaveSpiderSpawnEgg; + case (383 << 16) | 93: return Item::ChickenSpawnEgg; + case (383 << 16) | 92: return Item::CowSpawnEgg; + case (383 << 16) | 50: return Item::CreeperSpawnEgg; + case (383 << 16) | 31: return Item::DonkeySpawnEgg; + case (383 << 16) | 4: return Item::ElderGuardianSpawnEgg; + case (383 << 16) | 58: return Item::EndermanSpawnEgg; + case (383 << 16) | 67: return Item::EndermiteSpawnEgg; + case (383 << 16) | 34: return Item::EvokerSpawnEgg; + case (383 << 16) | 56: return Item::GhastSpawnEgg; + case (383 << 16) | 68: return Item::GuardianSpawnEgg; + case (383 << 16) | 100: return Item::HorseSpawnEgg; + case (383 << 16) | 23: return Item::HuskSpawnEgg; + case (383 << 16) | 103: return Item::LlamaSpawnEgg; + case (383 << 16) | 62: return Item::MagmaCubeSpawnEgg; + case (383 << 16) | 96: return Item::MooshroomSpawnEgg; + case (383 << 16) | 32: return Item::MuleSpawnEgg; + case (383 << 16) | 98: return Item::OcelotSpawnEgg; + case (383 << 16) | 90: return Item::PigSpawnEgg; + case (383 << 16) | 102: return Item::PolarBearSpawnEgg; + case (383 << 16) | 101: return Item::RabbitSpawnEgg; + case (383 << 16) | 91: return Item::SheepSpawnEgg; + case (383 << 16) | 69: return Item::ShulkerSpawnEgg; + case (383 << 16) | 51: return Item::SkeletonSpawnEgg; + case (383 << 16) | 28: return Item::SkeletonHorseSpawnEgg; + case (383 << 16) | 55: return Item::SlimeSpawnEgg; + case (383 << 16) | 52: return Item::SpiderSpawnEgg; + case (383 << 16) | 94: return Item::SquidSpawnEgg; + case (383 << 16) | 6: return Item::StraySpawnEgg; + case (383 << 16) | 35: return Item::VexSpawnEgg; + case (383 << 16) | 120: return Item::VillagerSpawnEgg; + case (383 << 16) | 36: return Item::VindicatorSpawnEgg; + case (383 << 16) | 66: return Item::WitchSpawnEgg; + case (383 << 16) | 5: return Item::WitherSkeletonSpawnEgg; + case (383 << 16) | 95: return Item::WolfSpawnEgg; + case (383 << 16) | 54: return Item::ZombieSpawnEgg; + case (383 << 16) | 29: return Item::ZombieHorseSpawnEgg; + case (383 << 16) | 57: return Item::ZombiePigmanSpawnEgg; + case (383 << 16) | 27: return Item::ZombieVillagerSpawnEgg; + case (384 << 16) | 0: return Item::ExperienceBottle; + case (385 << 16) | 0: return Item::FireCharge; + case (386 << 16) | 0: return Item::WritableBook; + case (387 << 16) | 0: return Item::WrittenBook; + case (388 << 16) | 0: return Item::Emerald; + case (389 << 16) | 0: return Item::ItemFrame; + case (390 << 16) | 0: return Item::FlowerPot; + case (391 << 16) | 0: return Item::Carrot; + case (392 << 16) | 0: return Item::Potato; + case (393 << 16) | 0: return Item::BakedPotato; + case (394 << 16) | 0: return Item::PoisonousPotato; + case (395 << 16) | 0: return Item::Map; + case (396 << 16) | 0: return Item::GoldenCarrot; + case (397 << 16) | 0: return Item::SkeletonSkull; + case (397 << 16) | 1: return Item::WitherSkeletonSkull; + case (397 << 16) | 3: return Item::PlayerHead; + case (397 << 16) | 2: return Item::ZombieHead; + case (397 << 16) | 4: return Item::CreeperHead; + case (397 << 16) | 5: return Item::DragonHead; + case (398 << 16) | 0: return Item::CarrotOnAStick; + case (399 << 16) | 0: return Item::NetherStar; + case (400 << 16) | 0: return Item::PumpkinPie; + case (401 << 16) | 0: return Item::FireworkRocket; + case (402 << 16) | 0: return Item::FireworkStar; + case (403 << 16) | 0: return Item::EnchantedBook; + case (405 << 16) | 0: return Item::NetherBrick; + case (406 << 16) | 0: return Item::Quartz; + case (407 << 16) | 0: return Item::TNTMinecart; + case (408 << 16) | 0: return Item::HopperMinecart; + case (409 << 16) | 0: return Item::PrismarineShard; + case (410 << 16) | 0: return Item::PrismarineCrystals; + case (411 << 16) | 0: return Item::Rabbit; + case (412 << 16) | 0: return Item::CookedRabbit; + case (413 << 16) | 0: return Item::RabbitStew; + case (414 << 16) | 0: return Item::RabbitFoot; + case (415 << 16) | 0: return Item::RabbitHide; + case (416 << 16) | 0: return Item::ArmorStand; + case (417 << 16) | 0: return Item::IronHorseArmor; + case (418 << 16) | 0: return Item::GoldenHorseArmor; + case (419 << 16) | 0: return Item::DiamondHorseArmor; + case (420 << 16) | 0: return Item::Lead; + case (421 << 16) | 0: return Item::NameTag; + case (422 << 16) | 0: return Item::CommandBlockMinecart; + case (423 << 16) | 0: return Item::Mutton; + case (424 << 16) | 0: return Item::CookedMutton; + case (425 << 16) | 15: return Item::WhiteBanner; + case (425 << 16) | 14: return Item::OrangeBanner; + case (425 << 16) | 13: return Item::MagentaBanner; + case (425 << 16) | 12: return Item::LightBlueBanner; + case (425 << 16) | 11: return Item::YellowBanner; + case (425 << 16) | 10: return Item::LimeBanner; + case (425 << 16) | 9: return Item::PinkBanner; + case (425 << 16) | 8: return Item::GrayBanner; + case (425 << 16) | 7: return Item::LightGrayBanner; + case (425 << 16) | 6: return Item::CyanBanner; + case (425 << 16) | 5: return Item::PurpleBanner; + case (425 << 16) | 4: return Item::BlueBanner; + case (425 << 16) | 3: return Item::BrownBanner; + case (425 << 16) | 2: return Item::GreenBanner; + case (425 << 16) | 1: return Item::RedBanner; + case (425 << 16) | 0: return Item::BlackBanner; + case (426 << 16) | 0: return Item::EndCrystal; + case (432 << 16) | 0: return Item::ChorusFruit; + case (433 << 16) | 0: return Item::PoppedChorusFruit; + case (434 << 16) | 0: return Item::Beetroot; + case (435 << 16) | 0: return Item::BeetrootSeeds; + case (436 << 16) | 0: return Item::BeetrootSoup; + case (437 << 16) | 0: return Item::DragonBreath; + case (439 << 16) | 0: return Item::SpectralArrow; + case (440 << 16) | 0: return Item::TippedArrow; + case (442 << 16) | 0: return Item::Shield; + case (443 << 16) | 0: return Item::Elytra; + case (444 << 16) | 0: return Item::SpruceBoat; + case (445 << 16) | 0: return Item::BirchBoat; + case (446 << 16) | 0: return Item::JungleBoat; + case (447 << 16) | 0: return Item::AcaciaBoat; + case (448 << 16) | 0: return Item::DarkOakBoat; + case (449 << 16) | 0: return Item::TotemOfUndying; + case (450 << 16) | 0: return Item::ShulkerShell; + case (452 << 16) | 0: return Item::IronNugget; + case (2256 << 16) | 0: return Item::MusicDisc13; + case (2257 << 16) | 0: return Item::MusicDiscCat; + case (2258 << 16) | 0: return Item::MusicDiscBlocks; + case (2259 << 16) | 0: return Item::MusicDiscChirp; + case (2260 << 16) | 0: return Item::MusicDiscFar; + case (2261 << 16) | 0: return Item::MusicDiscMall; + case (2262 << 16) | 0: return Item::MusicDiscMellohi; + case (2263 << 16) | 0: return Item::MusicDiscStal; + case (2264 << 16) | 0: return Item::MusicDiscStrad; + case (2265 << 16) | 0: return Item::MusicDiscWard; + case (2266 << 16) | 0: return Item::MusicDisc11; + case (2267 << 16) | 0: return Item::MusicDiscWait; + + // Technical blocks that used to be able to appear + // in the inventory. e.g. Water, Lava, Piston Head, Fire + // Redstone Wire, Wall Sign, Stem, Portal, Cocoa, Tripwire, etc. + // Some technical blocks have been manually mapped to item analogues. + case (55 << 16) | 0: return Item::Redstone; + case (68 << 16) | 0: return Item::OakSign; + case (83 << 16) | 0: return Item::SugarCane; + case (127 << 16) | 0: return Item::CocoaBeans; + case (132 << 16) | 0: return Item::String; + case (141 << 16) | 0: return Item::Carrot; + case (142 << 16) | 0: return Item::Potato; + case (207 << 16) | 0: return Item::Beetroot; + + // Monster Spawner type encoded in Item NBT + case (52 << 16) | 50: + case (52 << 16) | 51: + case (52 << 16) | 52: + case (52 << 16) | 53: + case (52 << 16) | 54: + case (52 << 16) | 55: + case (52 << 16) | 56: + case (52 << 16) | 57: + case (52 << 16) | 58: + case (52 << 16) | 59: + case (52 << 16) | 60: + case (52 << 16) | 61: + case (52 << 16) | 62: + case (52 << 16) | 63: + case (52 << 16) | 64: + case (52 << 16) | 65: + case (52 << 16) | 66: + case (52 << 16) | 90: + case (52 << 16) | 91: + case (52 << 16) | 92: + case (52 << 16) | 93: + case (52 << 16) | 94: + case (52 << 16) | 95: + case (52 << 16) | 96: + case (52 << 16) | 97: + case (52 << 16) | 98: + case (52 << 16) | 99: + case (52 << 16) | 100: return Item::Spawner; + + default: return Item::Air; + } + } + + std::pair ToItem(Item ID) + { + switch (ID) + { + case Item::Stone: return { 1, 0 }; + case Item::Granite: return { 1, 1 }; + case Item::PolishedGranite: return { 1, 2 }; + case Item::Diorite: return { 1, 3 }; + case Item::PolishedDiorite: return { 1, 4 }; + case Item::Andesite: return { 1, 5 }; + case Item::PolishedAndesite: return { 1, 6 }; + case Item::GrassBlock: return { 2, 0 }; + case Item::Dirt: return { 3, 0 }; + case Item::CoarseDirt: return { 3, 1 }; + case Item::Podzol: return { 3, 2 }; + case Item::Cobblestone: return { 4, 0 }; + case Item::OakPlanks: return { 5, 0 }; + case Item::SprucePlanks: return { 5, 1 }; + case Item::BirchPlanks: return { 5, 2 }; + case Item::JunglePlanks: return { 5, 3 }; + case Item::AcaciaPlanks: return { 5, 4 }; + case Item::DarkOakPlanks: return { 5, 5 }; + case Item::OakSapling: return { 6, 0 }; + case Item::SpruceSapling: return { 6, 1 }; + case Item::BirchSapling: return { 6, 2 }; + case Item::JungleSapling: return { 6, 3 }; + case Item::AcaciaSapling: return { 6, 4 }; + case Item::DarkOakSapling: return { 6, 5 }; + case Item::Bedrock: return { 7, 0 }; + case Item::Sand: return { 12, 0 }; + case Item::RedSand: return { 12, 1 }; + case Item::Gravel: return { 13, 0 }; + case Item::GoldOre: return { 14, 0 }; + case Item::IronOre: return { 15, 0 }; + case Item::CoalOre: return { 16, 0 }; + case Item::OakLog: return { 17, 0 }; + case Item::SpruceLog: return { 17, 1 }; + case Item::BirchLog: return { 17, 2 }; + case Item::JungleLog: return { 17, 3 }; + case Item::AcaciaLog: return { 162, 0 }; + case Item::DarkOakLog: return { 162, 1 }; + case Item::OakLeaves: return { 18, 0 }; + case Item::SpruceLeaves: return { 18, 1 }; + case Item::BirchLeaves: return { 18, 2 }; + case Item::JungleLeaves: return { 18, 3 }; + case Item::AcaciaLeaves: return { 161, 0 }; + case Item::DarkOakLeaves: return { 161, 1 }; + case Item::Sponge: return { 19, 0 }; + case Item::WetSponge: return { 19, 1 }; + case Item::Glass: return { 20, 0 }; + case Item::LapisOre: return { 21, 0 }; + case Item::LapisBlock: return { 22, 0 }; + case Item::Dispenser: return { 23, 0 }; + case Item::Sandstone: return { 24, 0 }; + case Item::ChiseledSandstone: return { 24, 1 }; + case Item::CutSandstone: return { 24, 2 }; + case Item::NoteBlock: return { 25, 0 }; + case Item::PoweredRail: return { 27, 0 }; + case Item::DetectorRail: return { 28, 0 }; + case Item::StickyPiston: return { 29, 0 }; + case Item::Cobweb: return { 30, 0 }; + case Item::Fern: return { 31, 2 }; + case Item::DeadBush: return { 32, 0 }; + case Item::Piston: return { 33, 0 }; + case Item::WhiteWool: return { 35, 0 }; + case Item::OrangeWool: return { 35, 1 }; + case Item::MagentaWool: return { 35, 2 }; + case Item::LightBlueWool: return { 35, 3 }; + case Item::YellowWool: return { 35, 4 }; + case Item::LimeWool: return { 35, 5 }; + case Item::PinkWool: return { 35, 6 }; + case Item::GrayWool: return { 35, 7 }; + case Item::LightGrayWool: return { 35, 8 }; + case Item::CyanWool: return { 35, 9 }; + case Item::PurpleWool: return { 35, 10 }; + case Item::BlueWool: return { 35, 11 }; + case Item::BrownWool: return { 35, 12 }; + case Item::GreenWool: return { 35, 13 }; + case Item::RedWool: return { 35, 14 }; + case Item::BlackWool: return { 35, 15 }; + case Item::Dandelion: return { 37, 0 }; + case Item::Poppy: return { 38, 0 }; + case Item::BlueOrchid: return { 38, 1 }; + case Item::Allium: return { 38, 2 }; + case Item::AzureBluet: return { 38, 3 }; + case Item::RedTulip: return { 38, 4 }; + case Item::OrangeTulip: return { 38, 5 }; + case Item::WhiteTulip: return { 38, 6 }; + case Item::PinkTulip: return { 38, 7 }; + case Item::OxeyeDaisy: return { 38, 8 }; + case Item::BrownMushroom: return { 39, 0 }; + case Item::RedMushroom: return { 40, 0 }; + case Item::GoldBlock: return { 41, 0 }; + case Item::IronBlock: return { 42, 0 }; + case Item::OakSlab: return { 126, 0 }; + case Item::SpruceSlab: return { 126, 1 }; + case Item::BirchSlab: return { 126, 2 }; + case Item::JungleSlab: return { 126, 3 }; + case Item::AcaciaSlab: return { 126, 4 }; + case Item::DarkOakSlab: return { 126, 5 }; + case Item::StoneSlab: return { 44, 2 }; + case Item::SandstoneSlab: return { 44, 1 }; + case Item::CobblestoneSlab: return { 44, 3 }; + case Item::BrickSlab: return { 44, 4 }; + case Item::StoneBrickSlab: return { 44, 5 }; + case Item::NetherBrickSlab: return { 44, 6 }; + case Item::QuartzSlab: return { 44, 7 }; + case Item::RedSandstoneSlab: return { 182, 0 }; + case Item::PurpurSlab: return { 205, 0 }; + case Item::SmoothQuartz: return { 43, 7 }; + case Item::SmoothStone: return { 43, 8 }; + case Item::Bricks: return { 45, 0 }; + case Item::TNT: return { 46, 0 }; + case Item::Bookshelf: return { 47, 0 }; + case Item::MossyCobblestone: return { 48, 0 }; + case Item::Obsidian: return { 49, 0 }; + case Item::Torch: return { 50, 0 }; + case Item::EndRod: return { 198, 0 }; + case Item::ChorusPlant: return { 199, 0 }; + case Item::ChorusFlower: return { 200, 0 }; + case Item::PurpurBlock: return { 201, 0 }; + case Item::PurpurPillar: return { 202, 0 }; + case Item::PurpurStairs: return { 203, 0 }; + case Item::Spawner: return { 52, 0 }; + case Item::OakStairs: return { 53, 0 }; + case Item::Chest: return { 54, 0 }; + case Item::DiamondOre: return { 56, 0 }; + case Item::DiamondBlock: return { 57, 0 }; + case Item::CraftingTable: return { 58, 0 }; + case Item::Farmland: return { 60, 0 }; + case Item::Furnace: return { 61, 0 }; + case Item::Ladder: return { 65, 0 }; + case Item::Rail: return { 66, 0 }; + case Item::CobblestoneStairs: return { 67, 0 }; + case Item::Lever: return { 69, 0 }; + case Item::StonePressurePlate: return { 70, 0 }; + case Item::OakPressurePlate: return { 72, 0 }; + case Item::RedstoneOre: return { 73, 0 }; + case Item::RedstoneTorch: return { 76, 0 }; + case Item::StoneButton: return { 77, 0 }; + case Item::Snow: return { 78, 0 }; + case Item::Ice: return { 79, 0 }; + case Item::SnowBlock: return { 80, 0 }; + case Item::Cactus: return { 81, 0 }; + case Item::Clay: return { 82, 0 }; + case Item::Jukebox: return { 84, 0 }; + case Item::OakFence: return { 85, 0 }; + case Item::SpruceFence: return { 188, 0 }; + case Item::BirchFence: return { 189, 0 }; + case Item::JungleFence: return { 190, 0 }; + case Item::AcaciaFence: return { 192, 0 }; + case Item::DarkOakFence: return { 191, 0 }; + case Item::Pumpkin: return { 86, 0 }; + case Item::Netherrack: return { 87, 0 }; + case Item::SoulSand: return { 88, 0 }; + case Item::Glowstone: return { 89, 0 }; + case Item::JackOLantern: return { 91, 0 }; + case Item::OakTrapdoor: return { 96, 0 }; + case Item::InfestedStone: return { 97, 0 }; + case Item::InfestedCobblestone: return { 97, 1 }; + case Item::InfestedStoneBricks: return { 97, 2 }; + case Item::InfestedMossyStoneBricks: return { 97, 3 }; + case Item::InfestedCrackedStoneBricks: return { 97, 4 }; + case Item::InfestedChiseledStoneBricks: return { 97, 5 }; + case Item::StoneBricks: return { 98, 0 }; + case Item::MossyStoneBricks: return { 98, 1 }; + case Item::CrackedStoneBricks: return { 98, 2 }; + case Item::ChiseledStoneBricks: return { 98, 3 }; + case Item::BrownMushroomBlock: return { 99, 0 }; + case Item::RedMushroomBlock: return { 100, 0 }; + case Item::IronBars: return { 101, 0 }; + case Item::GlassPane: return { 102, 0 }; + case Item::Melon: return { 103, 0 }; + case Item::Vine: return { 106, 0 }; + case Item::OakFenceGate: return { 107, 0 }; + case Item::SpruceFenceGate: return { 183, 0 }; + case Item::BirchFenceGate: return { 184, 0 }; + case Item::JungleFenceGate: return { 185, 0 }; + case Item::AcaciaFenceGate: return { 187, 0 }; + case Item::DarkOakFenceGate: return { 186, 0 }; + case Item::BrickStairs: return { 108, 0 }; + case Item::StoneBrickStairs: return { 109, 0 }; + case Item::Mycelium: return { 110, 0 }; + case Item::LilyPad: return { 111, 0 }; + case Item::NetherBricks: return { 112, 0 }; + case Item::NetherBrickFence: return { 113, 0 }; + case Item::NetherBrickStairs: return { 114, 0 }; + case Item::EnchantingTable: return { 116, 0 }; + case Item::EndPortalFrame: return { 120, 0 }; + case Item::EndStone: return { 121, 0 }; + case Item::EndStoneBricks: return { 206, 0 }; + case Item::DragonEgg: return { 122, 0 }; + case Item::RedstoneLamp: return { 123, 0 }; + case Item::SandstoneStairs: return { 128, 0 }; + case Item::EmeraldOre: return { 129, 0 }; + case Item::EnderChest: return { 130, 0 }; + case Item::TripwireHook: return { 131, 0 }; + case Item::EmeraldBlock: return { 133, 0 }; + case Item::SpruceStairs: return { 134, 0 }; + case Item::BirchStairs: return { 135, 0 }; + case Item::JungleStairs: return { 136, 0 }; + case Item::CommandBlock: return { 137, 0 }; + case Item::Beacon: return { 138, 0 }; + case Item::CobblestoneWall: return { 139, 0 }; + case Item::MossyCobblestoneWall: return { 139, 1 }; + case Item::OakButton: return { 143, 0 }; + case Item::Anvil: return { 145, 0 }; + case Item::ChippedAnvil: return { 145, 1 }; + case Item::DamagedAnvil: return { 145, 2 }; + case Item::TrappedChest: return { 146, 0 }; + case Item::LightWeightedPressurePlate: return { 147, 0 }; + case Item::HeavyWeightedPressurePlate: return { 148, 0 }; + case Item::DaylightDetector: return { 151, 0 }; + case Item::RedstoneBlock: return { 152, 0 }; + case Item::NetherQuartzOre: return { 153, 0 }; + case Item::Hopper: return { 154, 0 }; + case Item::ChiseledQuartzBlock: return { 155, 1 }; + case Item::QuartzBlock: return { 155, 0 }; + case Item::QuartzPillar: return { 155, 2 }; + case Item::QuartzStairs: return { 156, 0 }; + case Item::ActivatorRail: return { 157, 0 }; + case Item::Dropper: return { 158, 0 }; + case Item::WhiteTerracotta: return { 159, 0 }; + case Item::OrangeTerracotta: return { 159, 1 }; + case Item::MagentaTerracotta: return { 159, 2 }; + case Item::LightBlueTerracotta: return { 159, 3 }; + case Item::YellowTerracotta: return { 159, 4 }; + case Item::LimeTerracotta: return { 159, 5 }; + case Item::PinkTerracotta: return { 159, 6 }; + case Item::GrayTerracotta: return { 159, 7 }; + case Item::LightGrayTerracotta: return { 159, 8 }; + case Item::CyanTerracotta: return { 159, 9 }; + case Item::PurpleTerracotta: return { 159, 10 }; + case Item::BlueTerracotta: return { 159, 11 }; + case Item::BrownTerracotta: return { 159, 12 }; + case Item::GreenTerracotta: return { 159, 13 }; + case Item::RedTerracotta: return { 159, 14 }; + case Item::BlackTerracotta: return { 159, 15 }; + case Item::Barrier: return { 166, 0 }; + case Item::IronTrapdoor: return { 167, 0 }; + case Item::HayBale: return { 170, 0 }; + case Item::WhiteCarpet: return { 171, 0 }; + case Item::OrangeCarpet: return { 171, 1 }; + case Item::MagentaCarpet: return { 171, 2 }; + case Item::LightBlueCarpet: return { 171, 3 }; + case Item::YellowCarpet: return { 171, 4 }; + case Item::LimeCarpet: return { 171, 5 }; + case Item::PinkCarpet: return { 171, 6 }; + case Item::GrayCarpet: return { 171, 7 }; + case Item::LightGrayCarpet: return { 171, 8 }; + case Item::CyanCarpet: return { 171, 9 }; + case Item::PurpleCarpet: return { 171, 10 }; + case Item::BlueCarpet: return { 171, 11 }; + case Item::BrownCarpet: return { 171, 12 }; + case Item::GreenCarpet: return { 171, 13 }; + case Item::RedCarpet: return { 171, 14 }; + case Item::BlackCarpet: return { 171, 15 }; + case Item::Terracotta: return { 172, 0 }; + case Item::CoalBlock: return { 173, 0 }; + case Item::PackedIce: return { 174, 0 }; + case Item::AcaciaStairs: return { 163, 0 }; + case Item::DarkOakStairs: return { 164, 0 }; + case Item::SlimeBlock: return { 165, 0 }; + case Item::GrassPath: return { 208, 0 }; + case Item::Sunflower: return { 175, 0 }; + case Item::Lilac: return { 175, 1 }; + case Item::RoseBush: return { 175, 4 }; + case Item::Peony: return { 175, 5 }; + case Item::TallGrass: return { 175, 2 }; + case Item::LargeFern: return { 175, 3 }; + case Item::WhiteStainedGlass: return { 95, 0 }; + case Item::OrangeStainedGlass: return { 95, 1 }; + case Item::MagentaStainedGlass: return { 95, 2 }; + case Item::LightBlueStainedGlass: return { 95, 3 }; + case Item::YellowStainedGlass: return { 95, 4 }; + case Item::LimeStainedGlass: return { 95, 5 }; + case Item::PinkStainedGlass: return { 95, 6 }; + case Item::GrayStainedGlass: return { 95, 7 }; + case Item::LightGrayStainedGlass: return { 95, 8 }; + case Item::CyanStainedGlass: return { 95, 9 }; + case Item::PurpleStainedGlass: return { 95, 10 }; + case Item::BlueStainedGlass: return { 95, 11 }; + case Item::BrownStainedGlass: return { 95, 12 }; + case Item::GreenStainedGlass: return { 95, 13 }; + case Item::RedStainedGlass: return { 95, 14 }; + case Item::BlackStainedGlass: return { 95, 15 }; + case Item::WhiteStainedGlassPane: return { 160, 0 }; + case Item::OrangeStainedGlassPane: return { 160, 1 }; + case Item::MagentaStainedGlassPane: return { 160, 2 }; + case Item::LightBlueStainedGlassPane: return { 160, 3 }; + case Item::YellowStainedGlassPane: return { 160, 4 }; + case Item::LimeStainedGlassPane: return { 160, 5 }; + case Item::PinkStainedGlassPane: return { 160, 6 }; + case Item::GrayStainedGlassPane: return { 160, 7 }; + case Item::LightGrayStainedGlassPane: return { 160, 8 }; + case Item::CyanStainedGlassPane: return { 160, 9 }; + case Item::PurpleStainedGlassPane: return { 160, 10 }; + case Item::BlueStainedGlassPane: return { 160, 11 }; + case Item::BrownStainedGlassPane: return { 160, 12 }; + case Item::GreenStainedGlassPane: return { 160, 13 }; + case Item::RedStainedGlassPane: return { 160, 14 }; + case Item::BlackStainedGlassPane: return { 160, 15 }; + case Item::Prismarine: return { 168, 0 }; + case Item::PrismarineBricks: return { 168, 1 }; + case Item::DarkPrismarine: return { 168, 2 }; + case Item::SeaLantern: return { 169, 0 }; + case Item::RedSandstone: return { 179, 0 }; + case Item::ChiseledRedSandstone: return { 179, 1 }; + case Item::CutRedSandstone: return { 179, 2 }; + case Item::RedSandstoneStairs: return { 180, 0 }; + case Item::RepeatingCommandBlock: return { 210, 0 }; + case Item::ChainCommandBlock: return { 211, 0 }; + case Item::MagmaBlock: return { 213, 0 }; + case Item::NetherWartBlock: return { 214, 0 }; + case Item::RedNetherBricks: return { 215, 0 }; + case Item::BoneBlock: return { 216, 0 }; + case Item::StructureVoid: return { 217, 0 }; + case Item::Observer: return { 218, 0 }; + case Item::WhiteShulkerBox: return { 219, 0 }; + case Item::OrangeShulkerBox: return { 220, 0 }; + case Item::MagentaShulkerBox: return { 221, 0 }; + case Item::LightBlueShulkerBox: return { 222, 0 }; + case Item::YellowShulkerBox: return { 223, 0 }; + case Item::LimeShulkerBox: return { 224, 0 }; + case Item::PinkShulkerBox: return { 225, 0 }; + case Item::GrayShulkerBox: return { 226, 0 }; + case Item::LightGrayShulkerBox: return { 227, 0 }; + case Item::CyanShulkerBox: return { 228, 0 }; + case Item::PurpleShulkerBox: return { 229, 0 }; + case Item::BlueShulkerBox: return { 230, 0 }; + case Item::BrownShulkerBox: return { 231, 0 }; + case Item::GreenShulkerBox: return { 232, 0 }; + case Item::RedShulkerBox: return { 233, 0 }; + case Item::BlackShulkerBox: return { 234, 0 }; + case Item::WhiteGlazedTerracotta: return { 235, 0 }; + case Item::OrangeGlazedTerracotta: return { 236, 0 }; + case Item::MagentaGlazedTerracotta: return { 237, 0 }; + case Item::LightBlueGlazedTerracotta: return { 238, 0 }; + case Item::YellowGlazedTerracotta: return { 239, 0 }; + case Item::LimeGlazedTerracotta: return { 240, 0 }; + case Item::PinkGlazedTerracotta: return { 241, 0 }; + case Item::GrayGlazedTerracotta: return { 242, 0 }; + case Item::LightGrayGlazedTerracotta: return { 243, 0 }; + case Item::CyanGlazedTerracotta: return { 244, 0 }; + case Item::PurpleGlazedTerracotta: return { 245, 0 }; + case Item::BlueGlazedTerracotta: return { 246, 0 }; + case Item::BrownGlazedTerracotta: return { 247, 0 }; + case Item::GreenGlazedTerracotta: return { 248, 0 }; + case Item::RedGlazedTerracotta: return { 249, 0 }; + case Item::BlackGlazedTerracotta: return { 250, 0 }; + case Item::WhiteConcrete: return { 251, 0 }; + case Item::OrangeConcrete: return { 251, 1 }; + case Item::MagentaConcrete: return { 251, 2 }; + case Item::LightBlueConcrete: return { 251, 3 }; + case Item::YellowConcrete: return { 251, 4 }; + case Item::LimeConcrete: return { 251, 5 }; + case Item::PinkConcrete: return { 251, 6 }; + case Item::GrayConcrete: return { 251, 7 }; + case Item::LightGrayConcrete: return { 251, 8 }; + case Item::CyanConcrete: return { 251, 9 }; + case Item::PurpleConcrete: return { 251, 10 }; + case Item::BlueConcrete: return { 251, 11 }; + case Item::BrownConcrete: return { 251, 12 }; + case Item::GreenConcrete: return { 251, 13 }; + case Item::RedConcrete: return { 251, 14 }; + case Item::BlackConcrete: return { 251, 15 }; + case Item::WhiteConcretePowder: return { 252, 0 }; + case Item::OrangeConcretePowder: return { 252, 1 }; + case Item::MagentaConcretePowder: return { 252, 2 }; + case Item::LightBlueConcretePowder: return { 252, 3 }; + case Item::YellowConcretePowder: return { 252, 4 }; + case Item::LimeConcretePowder: return { 252, 5 }; + case Item::PinkConcretePowder: return { 252, 6 }; + case Item::GrayConcretePowder: return { 252, 7 }; + case Item::LightGrayConcretePowder: return { 252, 8 }; + case Item::CyanConcretePowder: return { 252, 9 }; + case Item::PurpleConcretePowder: return { 252, 10 }; + case Item::BlueConcretePowder: return { 252, 11 }; + case Item::BrownConcretePowder: return { 252, 12 }; + case Item::GreenConcretePowder: return { 252, 13 }; + case Item::RedConcretePowder: return { 252, 14 }; + case Item::BlackConcretePowder: return { 252, 15 }; + case Item::IronDoor: return { 330, 0 }; + case Item::OakDoor: return { 324, 0 }; + case Item::SpruceDoor: return { 427, 0 }; + case Item::BirchDoor: return { 428, 0 }; + case Item::JungleDoor: return { 429, 0 }; + case Item::AcaciaDoor: return { 430, 0 }; + case Item::DarkOakDoor: return { 431, 0 }; + case Item::Repeater: return { 356, 0 }; + case Item::Comparator: return { 404, 0 }; + case Item::StructureBlock: return { 255, 0 }; + case Item::IronShovel: return { 256, 0 }; + case Item::IronPickaxe: return { 257, 0 }; + case Item::IronAxe: return { 258, 0 }; + case Item::FlintAndSteel: return { 259, 0 }; + case Item::Apple: return { 260, 0 }; + case Item::Bow: return { 261, 0 }; + case Item::Arrow: return { 262, 0 }; + case Item::Coal: return { 263, 0 }; + case Item::Charcoal: return { 263, 1 }; + case Item::Diamond: return { 264, 0 }; + case Item::IronIngot: return { 265, 0 }; + case Item::GoldIngot: return { 266, 0 }; + case Item::IronSword: return { 267, 0 }; + case Item::WoodenSword: return { 268, 0 }; + case Item::WoodenShovel: return { 269, 0 }; + case Item::WoodenPickaxe: return { 270, 0 }; + case Item::WoodenAxe: return { 271, 0 }; + case Item::StoneSword: return { 272, 0 }; + case Item::StoneShovel: return { 273, 0 }; + case Item::StonePickaxe: return { 274, 0 }; + case Item::StoneAxe: return { 275, 0 }; + case Item::DiamondSword: return { 276, 0 }; + case Item::DiamondShovel: return { 277, 0 }; + case Item::DiamondPickaxe: return { 278, 0 }; + case Item::DiamondAxe: return { 279, 0 }; + case Item::Stick: return { 280, 0 }; + case Item::Bowl: return { 281, 0 }; + case Item::MushroomStew: return { 282, 0 }; + case Item::GoldenSword: return { 283, 0 }; + case Item::GoldenShovel: return { 284, 0 }; + case Item::GoldenPickaxe: return { 285, 0 }; + case Item::GoldenAxe: return { 286, 0 }; + case Item::String: return { 287, 0 }; + case Item::Feather: return { 288, 0 }; + case Item::Gunpowder: return { 289, 0 }; + case Item::WoodenHoe: return { 290, 0 }; + case Item::StoneHoe: return { 291, 0 }; + case Item::IronHoe: return { 292, 0 }; + case Item::DiamondHoe: return { 293, 0 }; + case Item::GoldenHoe: return { 294, 0 }; + case Item::WheatSeeds: return { 295, 0 }; + case Item::Wheat: return { 296, 0 }; + case Item::Bread: return { 297, 0 }; + case Item::LeatherHelmet: return { 298, 0 }; + case Item::LeatherChestplate: return { 299, 0 }; + case Item::LeatherLeggings: return { 300, 0 }; + case Item::LeatherBoots: return { 301, 0 }; + case Item::ChainmailHelmet: return { 302, 0 }; + case Item::ChainmailChestplate: return { 303, 0 }; + case Item::ChainmailLeggings: return { 304, 0 }; + case Item::ChainmailBoots: return { 305, 0 }; + case Item::IronHelmet: return { 306, 0 }; + case Item::IronChestplate: return { 307, 0 }; + case Item::IronLeggings: return { 308, 0 }; + case Item::IronBoots: return { 309, 0 }; + case Item::DiamondHelmet: return { 310, 0 }; + case Item::DiamondChestplate: return { 311, 0 }; + case Item::DiamondLeggings: return { 312, 0 }; + case Item::DiamondBoots: return { 313, 0 }; + case Item::GoldenHelmet: return { 314, 0 }; + case Item::GoldenChestplate: return { 315, 0 }; + case Item::GoldenLeggings: return { 316, 0 }; + case Item::GoldenBoots: return { 317, 0 }; + case Item::Flint: return { 318, 0 }; + case Item::Porkchop: return { 319, 0 }; + case Item::CookedPorkchop: return { 320, 0 }; + case Item::Painting: return { 321, 0 }; + case Item::GoldenApple: return { 322, 0 }; + case Item::EnchantedGoldenApple: return { 322, 1 }; + case Item::OakSign: return { 323, 0 }; + case Item::Bucket: return { 325, 0 }; + case Item::WaterBucket: return { 326, 0 }; + case Item::LavaBucket: return { 327, 0 }; + case Item::Minecart: return { 328, 0 }; + case Item::Saddle: return { 329, 0 }; + case Item::Redstone: return { 331, 0 }; + case Item::Snowball: return { 332, 0 }; + case Item::OakBoat: return { 333, 0 }; + case Item::Leather: return { 334, 0 }; + case Item::MilkBucket: return { 335, 0 }; + case Item::Brick: return { 336, 0 }; + case Item::ClayBall: return { 337, 0 }; + case Item::SugarCane: return { 338, 0 }; + case Item::Paper: return { 339, 0 }; + case Item::Book: return { 340, 0 }; + case Item::SlimeBall: return { 341, 0 }; + case Item::ChestMinecart: return { 342, 0 }; + case Item::FurnaceMinecart: return { 343, 0 }; + case Item::Egg: return { 344, 0 }; + case Item::Compass: return { 345, 0 }; + case Item::FishingRod: return { 346, 0 }; + case Item::Clock: return { 347, 0 }; + case Item::GlowstoneDust: return { 348, 0 }; + case Item::Cod: return { 349, 0 }; + case Item::Salmon: return { 349, 1 }; + case Item::TropicalFish: return { 349, 2 }; + case Item::Pufferfish: return { 349, 3 }; + case Item::CookedCod: return { 350, 0 }; + case Item::CookedSalmon: return { 350, 1 }; + case Item::InkSac: return { 351, 0 }; + case Item::RedDye: return { 351, 1 }; + case Item::GreenDye: return { 351, 2 }; + case Item::CocoaBeans: return { 351, 3 }; + case Item::LapisLazuli: return { 351, 4 }; + case Item::PurpleDye: return { 351, 5 }; + case Item::CyanDye: return { 351, 6 }; + case Item::LightGrayDye: return { 351, 7 }; + case Item::GrayDye: return { 351, 8 }; + case Item::PinkDye: return { 351, 9 }; + case Item::LimeDye: return { 351, 10 }; + case Item::YellowDye: return { 351, 11 }; + case Item::LightBlueDye: return { 351, 12 }; + case Item::MagentaDye: return { 351, 13 }; + case Item::OrangeDye: return { 351, 14 }; + case Item::BoneMeal: return { 351, 15 }; + case Item::Bone: return { 352, 0 }; + case Item::Sugar: return { 353, 0 }; + case Item::Cake: return { 354, 0 }; + case Item::WhiteBed: return { 355, 0 }; + case Item::OrangeBed: return { 355, 1 }; + case Item::MagentaBed: return { 355, 2 }; + case Item::LightBlueBed: return { 355, 3 }; + case Item::YellowBed: return { 355, 4 }; + case Item::LimeBed: return { 355, 5 }; + case Item::PinkBed: return { 355, 6 }; + case Item::GrayBed: return { 355, 7 }; + case Item::LightGrayBed: return { 355, 8 }; + case Item::CyanBed: return { 355, 9 }; + case Item::PurpleBed: return { 355, 10 }; + case Item::BlueBed: return { 355, 11 }; + case Item::BrownBed: return { 355, 12 }; + case Item::GreenBed: return { 355, 13 }; + case Item::RedBed: return { 355, 14 }; + case Item::BlackBed: return { 355, 15 }; + case Item::Cookie: return { 357, 0 }; + case Item::FilledMap: return { 358, 0 }; + case Item::Shears: return { 359, 0 }; + case Item::MelonSlice: return { 360, 0 }; + case Item::PumpkinSeeds: return { 361, 0 }; + case Item::MelonSeeds: return { 362, 0 }; + case Item::Beef: return { 363, 0 }; + case Item::CookedBeef: return { 364, 0 }; + case Item::Chicken: return { 365, 0 }; + case Item::CookedChicken: return { 366, 0 }; + case Item::RottenFlesh: return { 367, 0 }; + case Item::EnderPearl: return { 368, 0 }; + case Item::BlazeRod: return { 369, 0 }; + case Item::GhastTear: return { 370, 0 }; + case Item::GoldNugget: return { 371, 0 }; + case Item::NetherWart: return { 372, 0 }; + case Item::Potion: return { 373, 0 }; + case Item::SplashPotion: return { 438, 0 }; + case Item::LingeringPotion: return { 441, 0 }; + case Item::GlassBottle: return { 374, 0 }; + case Item::SpiderEye: return { 375, 0 }; + case Item::FermentedSpiderEye: return { 376, 0 }; + case Item::BlazePowder: return { 377, 0 }; + case Item::MagmaCream: return { 378, 0 }; + case Item::BrewingStand: return { 379, 0 }; + case Item::Cauldron: return { 380, 0 }; + case Item::EnderEye: return { 381, 0 }; + case Item::GlisteringMelonSlice: return { 382, 0 }; + case Item::BatSpawnEgg: return { 383, 65 }; + case Item::BlazeSpawnEgg: return { 383, 61 }; + case Item::CaveSpiderSpawnEgg: return { 383, 59 }; + case Item::ChickenSpawnEgg: return { 383, 93 }; + case Item::CowSpawnEgg: return { 383, 92 }; + case Item::CreeperSpawnEgg: return { 383, 50 }; + case Item::DonkeySpawnEgg: return { 383, 31 }; + case Item::ElderGuardianSpawnEgg: return { 383, 4 }; + case Item::EndermanSpawnEgg: return { 383, 58 }; + case Item::EndermiteSpawnEgg: return { 383, 67 }; + case Item::EvokerSpawnEgg: return { 383, 34 }; + case Item::GhastSpawnEgg: return { 383, 56 }; + case Item::GuardianSpawnEgg: return { 383, 68 }; + case Item::HorseSpawnEgg: return { 383, 100 }; + case Item::HuskSpawnEgg: return { 383, 23 }; + case Item::LlamaSpawnEgg: return { 383, 103 }; + case Item::MagmaCubeSpawnEgg: return { 383, 62 }; + case Item::MooshroomSpawnEgg: return { 383, 96 }; + case Item::MuleSpawnEgg: return { 383, 32 }; + case Item::OcelotSpawnEgg: return { 383, 98 }; + case Item::PigSpawnEgg: return { 383, 90 }; + case Item::PolarBearSpawnEgg: return { 383, 102 }; + case Item::RabbitSpawnEgg: return { 383, 101 }; + case Item::SheepSpawnEgg: return { 383, 91 }; + case Item::ShulkerSpawnEgg: return { 383, 69 }; + case Item::SkeletonSpawnEgg: return { 383, 51 }; + case Item::SkeletonHorseSpawnEgg: return { 383, 28 }; + case Item::SlimeSpawnEgg: return { 383, 55 }; + case Item::SpiderSpawnEgg: return { 383, 52 }; + case Item::SquidSpawnEgg: return { 383, 94 }; + case Item::StraySpawnEgg: return { 383, 6 }; + case Item::VexSpawnEgg: return { 383, 35 }; + case Item::VillagerSpawnEgg: return { 383, 120 }; + case Item::VindicatorSpawnEgg: return { 383, 36 }; + case Item::WitchSpawnEgg: return { 383, 66 }; + case Item::WitherSkeletonSpawnEgg: return { 383, 5 }; + case Item::WolfSpawnEgg: return { 383, 95 }; + case Item::ZombieSpawnEgg: return { 383, 54 }; + case Item::ZombieHorseSpawnEgg: return { 383, 29 }; + case Item::ZombiePigmanSpawnEgg: return { 383, 57 }; + case Item::ZombieVillagerSpawnEgg: return { 383, 27 }; + case Item::ExperienceBottle: return { 384, 0 }; + case Item::FireCharge: return { 385, 0 }; + case Item::WritableBook: return { 386, 0 }; + case Item::WrittenBook: return { 387, 0 }; + case Item::Emerald: return { 388, 0 }; + case Item::ItemFrame: return { 389, 0 }; + case Item::FlowerPot: return { 390, 0 }; + case Item::Carrot: return { 391, 0 }; + case Item::Potato: return { 392, 0 }; + case Item::BakedPotato: return { 393, 0 }; + case Item::PoisonousPotato: return { 394, 0 }; + case Item::Map: return { 395, 0 }; + case Item::GoldenCarrot: return { 396, 0 }; + case Item::SkeletonSkull: return { 397, 0 }; + case Item::WitherSkeletonSkull: return { 397, 1 }; + case Item::PlayerHead: return { 397, 3 }; + case Item::ZombieHead: return { 397, 2 }; + case Item::CreeperHead: return { 397, 4 }; + case Item::DragonHead: return { 397, 5 }; + case Item::CarrotOnAStick: return { 398, 0 }; + case Item::NetherStar: return { 399, 0 }; + case Item::PumpkinPie: return { 400, 0 }; + case Item::FireworkRocket: return { 401, 0 }; + case Item::FireworkStar: return { 402, 0 }; + case Item::EnchantedBook: return { 403, 0 }; + case Item::NetherBrick: return { 405, 0 }; + case Item::Quartz: return { 406, 0 }; + case Item::TNTMinecart: return { 407, 0 }; + case Item::HopperMinecart: return { 408, 0 }; + case Item::PrismarineShard: return { 409, 0 }; + case Item::PrismarineCrystals: return { 410, 0 }; + case Item::Rabbit: return { 411, 0 }; + case Item::CookedRabbit: return { 412, 0 }; + case Item::RabbitStew: return { 413, 0 }; + case Item::RabbitFoot: return { 414, 0 }; + case Item::RabbitHide: return { 415, 0 }; + case Item::ArmorStand: return { 416, 0 }; + case Item::IronHorseArmor: return { 417, 0 }; + case Item::GoldenHorseArmor: return { 418, 0 }; + case Item::DiamondHorseArmor: return { 419, 0 }; + case Item::Lead: return { 420, 0 }; + case Item::NameTag: return { 421, 0 }; + case Item::CommandBlockMinecart: return { 422, 0 }; + case Item::Mutton: return { 423, 0 }; + case Item::CookedMutton: return { 424, 0 }; + case Item::WhiteBanner: return { 425, 15 }; + case Item::OrangeBanner: return { 425, 14 }; + case Item::MagentaBanner: return { 425, 13 }; + case Item::LightBlueBanner: return { 425, 12 }; + case Item::YellowBanner: return { 425, 11 }; + case Item::LimeBanner: return { 425, 10 }; + case Item::PinkBanner: return { 425, 9 }; + case Item::GrayBanner: return { 425, 8 }; + case Item::LightGrayBanner: return { 425, 7 }; + case Item::CyanBanner: return { 425, 6 }; + case Item::PurpleBanner: return { 425, 5 }; + case Item::BlueBanner: return { 425, 4 }; + case Item::BrownBanner: return { 425, 3 }; + case Item::GreenBanner: return { 425, 2 }; + case Item::RedBanner: return { 425, 1 }; + case Item::BlackBanner: return { 425, 0 }; + case Item::EndCrystal: return { 426, 0 }; + case Item::ChorusFruit: return { 432, 0 }; + case Item::PoppedChorusFruit: return { 433, 0 }; + case Item::Beetroot: return { 434, 0 }; + case Item::BeetrootSeeds: return { 435, 0 }; + case Item::BeetrootSoup: return { 436, 0 }; + case Item::DragonBreath: return { 437, 0 }; + case Item::SpectralArrow: return { 439, 0 }; + case Item::TippedArrow: return { 440, 0 }; + case Item::Shield: return { 442, 0 }; + case Item::Elytra: return { 443, 0 }; + case Item::SpruceBoat: return { 444, 0 }; + case Item::BirchBoat: return { 445, 0 }; + case Item::JungleBoat: return { 446, 0 }; + case Item::AcaciaBoat: return { 447, 0 }; + case Item::DarkOakBoat: return { 448, 0 }; + case Item::TotemOfUndying: return { 449, 0 }; + case Item::ShulkerShell: return { 450, 0 }; + case Item::IronNugget: return { 452, 0 }; + case Item::MusicDisc13: return { 2256, 0 }; + case Item::MusicDiscCat: return { 2257, 0 }; + case Item::MusicDiscBlocks: return { 2258, 0 }; + case Item::MusicDiscChirp: return { 2259, 0 }; + case Item::MusicDiscFar: return { 2260, 0 }; + case Item::MusicDiscMall: return { 2261, 0 }; + case Item::MusicDiscMellohi: return { 2262, 0 }; + case Item::MusicDiscStal: return { 2263, 0 }; + case Item::MusicDiscStrad: return { 2264, 0 }; + case Item::MusicDiscWard: return { 2265, 0 }; + case Item::MusicDisc11: return { 2266, 0 }; + case Item::MusicDiscWait: return { 2267, 0 }; + default: return { 0, 0 }; + } + } +} diff --git a/src/Protocol/Palettes/Upgrade.h b/src/Protocol/Palettes/Upgrade.h new file mode 100644 index 000000000..4408fa755 --- /dev/null +++ b/src/Protocol/Palettes/Upgrade.h @@ -0,0 +1,11 @@ +#pragma once + +#include "../../BlockType.h" +#include "../../Registries/Items.h" + +namespace PaletteUpgrade +{ + short FromBlock(BLOCKTYPE Block, NIBBLETYPE Meta); + Item FromItem(short Item, short Meta); + std::pair ToItem(Item ID); +} diff --git a/src/Protocol/Protocol.h b/src/Protocol/Protocol.h index 2df8103b0..61d098601 100644 --- a/src/Protocol/Protocol.h +++ b/src/Protocol/Protocol.h @@ -57,12 +57,6 @@ public: virtual ~cProtocol() {} - - /** Called after construction so that the protocol class can initialize itself. - Throws a std::exception descendant on failure; the client is kicked - with the exception's message as a result. */ - virtual void Initialize(cClientHandle & a_Client) {} - /** Logical types of outgoing packets. These values get translated to on-wire packet IDs in GetPacketID(), specific for each protocol. This is mainly useful for protocol sub-versions that re-number the packets while using mostly the same packet layout. */ diff --git a/src/Protocol/ProtocolRecognizer.cpp b/src/Protocol/ProtocolRecognizer.cpp index a1066a609..0e93aa98f 100644 --- a/src/Protocol/ProtocolRecognizer.cpp +++ b/src/Protocol/ProtocolRecognizer.cpp @@ -228,9 +228,6 @@ void cMultiVersionProtocol::TryRecognizeProtocol(cClientHandle & a_Client, std:: m_Protocol = TryRecognizeLengthedProtocol(a_Client, a_Data); ASSERT(m_Protocol != nullptr); - - // The protocol has been recognized, initialize it: - m_Protocol->Initialize(a_Client); } diff --git a/src/Protocol/Protocol_1_13.cpp b/src/Protocol/Protocol_1_13.cpp index 886df6649..74e663f3d 100644 --- a/src/Protocol/Protocol_1_13.cpp +++ b/src/Protocol/Protocol_1_13.cpp @@ -11,7 +11,6 @@ Implements the 1.13 protocol classes: #include "ProtocolRecognizer.h" #include "ChunkDataSerializer.h" #include "Packetizer.h" -#include "ProtocolPalettes.h" #include "../Entities/Boat.h" #include "../Entities/Minecart.h" @@ -24,7 +23,6 @@ Implements the 1.13 protocol classes: #include "../Mobs/IncludeAllMonsters.h" -#include "../BlockTypePalette.h" #include "../ClientHandle.h" #include "../Root.h" #include "../Server.h" @@ -33,6 +31,9 @@ Implements the 1.13 protocol classes: #include "../Bindings/PluginManager.h" +#include "Palettes/Upgrade.h" +#include "Palettes/Palette_1_13.h" + @@ -76,41 +77,13 @@ cProtocol_1_13::cProtocol_1_13(cClientHandle * a_Client, const AString & a_Serve -void cProtocol_1_13::Initialize(cClientHandle & a_Client) -{ - // Get the palettes; fail if not available: - auto paletteVersion = this->GetPaletteVersion(); - m_BlockTypePalette = cRoot::Get()->GetProtocolPalettes().blockTypePalette(paletteVersion); - if (m_BlockTypePalette == nullptr) - { - throw std::runtime_error(Printf("This server doesn't support protocol %s.", paletteVersion)); - } - - // Process the palette into the temporary BLOCKTYPE -> NetBlockID map: - auto upg = cRoot::Get()->GetUpgradeBlockTypePalette(); - m_BlockTypeMap = m_BlockTypePalette->createTransformMapWithFallback(upg, 0); -} - - - - - -AString cProtocol_1_13::GetPaletteVersion() const -{ - return "1.13"; -} - - - - - void cProtocol_1_13::SendBlockChange(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta) { ASSERT(m_State == 3); // In game mode? cPacketizer Pkt(*this, pktBlockChange); Pkt.WritePosition64(a_BlockX, a_BlockY, a_BlockZ); - Pkt.WriteVarInt32(static_cast(a_BlockType)); // TODO: Palette + Pkt.WriteVarInt32(static_cast(Palette_1_13::FromBlock(PaletteUpgrade::FromBlock(a_BlockType, a_BlockMeta)))); // TODO: Palette } @@ -129,7 +102,7 @@ void cProtocol_1_13::SendBlockChanges(int a_ChunkX, int a_ChunkZ, const sSetBloc { Int16 Coords = static_cast(itr->m_RelY | (itr->m_RelZ << 8) | (itr->m_RelX << 12)); Pkt.WriteBEInt16(Coords); - Pkt.WriteVarInt32(static_cast(itr->m_BlockType)); // TODO: Palette + Pkt.WriteVarInt32(static_cast(Palette_1_13::FromBlock(PaletteUpgrade::FromBlock(itr->m_BlockType, itr->m_BlockMeta)))); // TODO: Palette } // for itr - a_Changes[] } @@ -141,7 +114,7 @@ void cProtocol_1_13::SendChunkData(int a_ChunkX, int a_ChunkZ, cChunkDataSeriali { ASSERT(m_State == 3); // In game mode? - const AString & ChunkData = a_Serializer.Serialize(cChunkDataSerializer::RELEASE_1_13, a_ChunkX, a_ChunkZ, m_BlockTypeMap); + const AString & ChunkData = a_Serializer.Serialize(cChunkDataSerializer::RELEASE_1_13, a_ChunkX, a_ChunkZ); cCSLock Lock(m_CSPacket); SendData(ChunkData.data(), ChunkData.size()); } @@ -582,8 +555,10 @@ UInt8 cProtocol_1_13::GetEntityMetadataID(eEntityMetadata a_Metadata) case eEntityMetadata::AreaEffectCloudParticleParameter1: case eEntityMetadata::AreaEffectCloudParticleParameter2: case eEntityMetadata::AbstractSkeletonArmsSwinging: - case eEntityMetadata::ZombieUnusedWasType: UNREACHABLE("Retrieved invalid metadata for protocol"); + case eEntityMetadata::ZombieUnusedWasType: break; } + + UNREACHABLE("Retrieved invalid metadata for protocol"); } @@ -614,6 +589,8 @@ UInt8 cProtocol_1_13::GetEntityMetadataID(eEntityMetadataType a_FieldType) case eEntityMetadataType::OptVarInt: return 17; case eEntityMetadataType::Pose: return 18; } + + UNREACHABLE("Translated invalid metadata type for protocol"); } @@ -622,18 +599,20 @@ UInt8 cProtocol_1_13::GetEntityMetadataID(eEntityMetadataType a_FieldType) bool cProtocol_1_13::ReadItem(cByteBuffer & a_ByteBuffer, cItem & a_Item, size_t a_KeepRemainingBytes) { - HANDLE_PACKET_READ(a_ByteBuffer, ReadBEInt16, Int16, ItemType); - if (ItemType == -1) + HANDLE_PACKET_READ(a_ByteBuffer, ReadBEInt16, Int16, ItemID); + if (ItemID == -1) { // The item is empty, no more data follows a_Item.Empty(); return true; } - a_Item.m_ItemType = ItemType; + + const auto Translated = PaletteUpgrade::ToItem(Palette_1_13::ToItem(ItemID)); + a_Item.m_ItemType = Translated.first; + a_Item.m_ItemDamage = Translated.second; HANDLE_PACKET_READ(a_ByteBuffer, ReadBEInt8, Int8, ItemCount); a_Item.m_ItemCount = ItemCount; - a_Item.m_ItemDamage = 0; // o no, no more damage in 1.13 if (ItemCount <= 0) { a_Item.Empty(); @@ -672,7 +651,7 @@ void cProtocol_1_13::WriteItem(cPacketizer & a_Pkt, const cItem & a_Item) // Normal item // TODO: use new item ids - a_Pkt.WriteBEInt16(ItemType); + a_Pkt.WriteBEInt16(Palette_1_13::FromItem(PaletteUpgrade::FromItem(a_Item.m_ItemType, a_Item.m_ItemDamage))); a_Pkt.WriteBEInt8(a_Item.m_ItemCount); // TODO: NBT @@ -745,11 +724,8 @@ void cProtocol_1_13::WriteEntityMetadata(cPacketizer & a_Pkt, const cEntity & a_ } case cEntity::etPickup: { - /* TODO - a_Pkt.WriteBEUInt8(ITEM_ITEM); - a_Pkt.WriteBEUInt8(METADATA_TYPE_ITEM); + WriteEntityMetadata(a_Pkt, eEntityMetadata::ItemItem, eEntityMetadataType::Item); WriteItem(a_Pkt, static_cast(a_Entity).GetItem()); - */ break; } case cEntity::etMinecart: diff --git a/src/Protocol/Protocol_1_13.h b/src/Protocol/Protocol_1_13.h index 168c279c1..0f9ad721e 100644 --- a/src/Protocol/Protocol_1_13.h +++ b/src/Protocol/Protocol_1_13.h @@ -37,14 +37,8 @@ public: cProtocol_1_13(cClientHandle * a_Client, const AString & a_ServerAddress, UInt16 a_ServerPort, UInt32 a_State); - virtual void Initialize(cClientHandle & a_Client) override; - protected: - /** Returns the string identifying the palettes' version, such as "1.13" or "1.14.4". - The palettes for that version are loaded into m_BlockTypePalette and m_ItemTypePalette. */ - virtual AString GetPaletteVersion() const; - // Packet sending: virtual void SendBlockChange (int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta) override; virtual void SendBlockChanges (int a_ChunkX, int a_ChunkZ, const sSetBlockVector & a_Changes) override; @@ -77,13 +71,4 @@ protected: virtual void WriteEntityMetadata(cPacketizer & a_Pkt, const eEntityMetadata a_Metadata, const eEntityMetadataType a_FieldType); virtual void WriteEntityMetadata(cPacketizer & a_Pkt, const cEntity & a_Entity) override; virtual void WriteMobMetadata(cPacketizer & a_Pkt, const cMonster & a_Mob) override; - -private: - - /** The palette used to transform internal block type palette into the protocol-specific ID. */ - std::shared_ptr m_BlockTypePalette; - - /** Temporary hack for initial 1.13+ support while keeping BLOCKTYPE data: - Map of the BLOCKTYPE#META to the protocol-specific NetBlockID. */ - std::map m_BlockTypeMap; }; diff --git a/src/Protocol/Protocol_1_8.cpp b/src/Protocol/Protocol_1_8.cpp index 469f01c39..a01fb0424 100644 --- a/src/Protocol/Protocol_1_8.cpp +++ b/src/Protocol/Protocol_1_8.cpp @@ -335,7 +335,7 @@ void cProtocol_1_8_0::SendChunkData(int a_ChunkX, int a_ChunkZ, cChunkDataSerial // Serialize first, before creating the Packetizer (the packetizer locks a CS) // This contains the flags and bitmasks, too - const AString & ChunkData = a_Serializer.Serialize(cChunkDataSerializer::RELEASE_1_8_0, a_ChunkX, a_ChunkZ, {}); + const AString & ChunkData = a_Serializer.Serialize(cChunkDataSerializer::RELEASE_1_8_0, a_ChunkX, a_ChunkZ); cCSLock Lock(m_CSPacket); SendData(ChunkData.data(), ChunkData.size()); diff --git a/src/Protocol/Protocol_1_9.cpp b/src/Protocol/Protocol_1_9.cpp index 784c26f34..e17832175 100644 --- a/src/Protocol/Protocol_1_9.cpp +++ b/src/Protocol/Protocol_1_9.cpp @@ -112,7 +112,7 @@ void cProtocol_1_9_0::SendChunkData(int a_ChunkX, int a_ChunkZ, cChunkDataSerial // Serialize first, before creating the Packetizer (the packetizer locks a CS) // This contains the flags and bitmasks, too - const AString & ChunkData = a_Serializer.Serialize(cChunkDataSerializer::RELEASE_1_9_0, a_ChunkX, a_ChunkZ, {}); + const AString & ChunkData = a_Serializer.Serialize(cChunkDataSerializer::RELEASE_1_9_0, a_ChunkX, a_ChunkZ); cCSLock Lock(m_CSPacket); SendData(ChunkData.data(), ChunkData.size()); @@ -2416,7 +2416,7 @@ void cProtocol_1_9_4::SendChunkData(int a_ChunkX, int a_ChunkZ, cChunkDataSerial // Serialize first, before creating the Packetizer (the packetizer locks a CS) // This contains the flags and bitmasks, too - const AString & ChunkData = a_Serializer.Serialize(cChunkDataSerializer::RELEASE_1_9_4, a_ChunkX, a_ChunkZ, {}); + const AString & ChunkData = a_Serializer.Serialize(cChunkDataSerializer::RELEASE_1_9_4, a_ChunkX, a_ChunkZ); cCSLock Lock(m_CSPacket); SendData(ChunkData.data(), ChunkData.size()); diff --git a/src/Registries/Blocks.cpp b/src/Registries/Blocks.cpp new file mode 100644 index 000000000..10731fa7f --- /dev/null +++ b/src/Registries/Blocks.cpp @@ -0,0 +1,15133 @@ +#include "Blocks.h" + +namespace Block +{ + enum Type Type(short ID) + { + switch (ID) + { + case 6443:case 6447:case 6451:case 6455:case 6459:case 6463:case 6444:case 6448:case 6452:case 6456:case 6460:case 6464:case 6445:case 6449:case 6453:case 6457:case 6461:case 6465:case 6442:case 6446:case 6450:case 6454:case 6458:case 6462: return Type::AcaciaButton; + case 8955:case 8987:case 8956:case 8988:case 8957:case 8989:case 8958:case 8990:case 8959:case 8991:case 8960:case 8992:case 8961:case 8930:case 8962:case 8931:case 8963:case 8932:case 8964:case 8933:case 8965:case 8934:case 8966:case 8935:case 8967:case 8936:case 8968:case 8937:case 8969:case 8938:case 8970:case 8939:case 8971:case 8940:case 8972:case 8941:case 8973:case 8942:case 8974:case 8943:case 8975:case 8944:case 8976:case 8945:case 8977:case 8946:case 8978:case 8947:case 8979:case 8948:case 8980:case 8949:case 8981:case 8950:case 8982:case 8951:case 8983:case 8952:case 8984:case 8953:case 8985:case 8954:case 8986:case 8993: return Type::AcaciaDoor; + case 8677:case 8685:case 8693:case 8701:case 8678:case 8686:case 8694:case 8702:case 8679:case 8687:case 8695:case 8703:case 8680:case 8688:case 8696:case 8704:case 8681:case 8689:case 8697:case 8674:case 8682:case 8690:case 8698:case 8675:case 8683:case 8691:case 8699:case 8676:case 8684:case 8692:case 8700:case 8705: return Type::AcaciaFence; + case 8522:case 8530:case 8538:case 8515:case 8523:case 8531:case 8539:case 8516:case 8524:case 8532:case 8540:case 8517:case 8525:case 8533:case 8541:case 8518:case 8526:case 8534:case 8542:case 8519:case 8527:case 8535:case 8543:case 8520:case 8528:case 8536:case 8544:case 8521:case 8529:case 8537:case 8514:case 8545: return Type::AcaciaFenceGate; + case 213:case 206:case 214:case 207:case 208:case 201:case 209:case 202:case 210:case 203:case 211:case 204:case 212:case 205: return Type::AcaciaLeaves; + case 85:case 86:case 87: return Type::AcaciaLog; + case 19: return Type::AcaciaPlanks; + case 3881:case 3882: return Type::AcaciaPressurePlate; + case 29:case 30: return Type::AcaciaSapling; + case 3483:case 3485:case 3487:case 3489:case 3491:case 3493:case 3495:case 3497:case 3499:case 3501:case 3503:case 3505:case 3507:case 3478:case 3480:case 3482:case 3484:case 3486:case 3488:case 3490:case 3492:case 3494:case 3496:case 3498:case 3500:case 3502:case 3504:case 3506:case 3477:case 3479:case 3481:case 3508: return Type::AcaciaSign; + case 8325:case 8329:case 8326:case 8327:case 8324:case 8328: return Type::AcaciaSlab; + case 7425:case 7426:case 7427:case 7428:case 7429:case 7430:case 7431:case 7432:case 7433:case 7434:case 7435:case 7436:case 7437:case 7438:case 7375:case 7439:case 7376:case 7440:case 7377:case 7441:case 7378:case 7442:case 7379:case 7443:case 7380:case 7444:case 7381:case 7445:case 7382:case 7446:case 7383:case 7447:case 7384:case 7448:case 7385:case 7449:case 7386:case 7450:case 7387:case 7451:case 7388:case 7452:case 7389:case 7453:case 7390:case 7454:case 7391:case 7392:case 7393:case 7394:case 7395:case 7396:case 7397:case 7398:case 7399:case 7400:case 7401:case 7402:case 7403:case 7404:case 7405:case 7406:case 7407:case 7408:case 7409:case 7410:case 7411:case 7412:case 7413:case 7414:case 7415:case 7416:case 7417:case 7418:case 7419:case 7420:case 7421:case 7422:case 7423:case 7424: return Type::AcaciaStairs; + case 4384:case 4400:case 4416:case 4369:case 4385:case 4401:case 4417:case 4370:case 4386:case 4402:case 4418:case 4371:case 4387:case 4403:case 4419:case 4372:case 4388:case 4404:case 4420:case 4373:case 4389:case 4405:case 4421:case 4374:case 4390:case 4406:case 4422:case 4375:case 4391:case 4407:case 4423:case 4376:case 4392:case 4408:case 4424:case 4377:case 4393:case 4409:case 4425:case 4378:case 4394:case 4410:case 4426:case 4379:case 4395:case 4411:case 4427:case 4380:case 4396:case 4412:case 4428:case 4381:case 4397:case 4413:case 4429:case 4382:case 4398:case 4414:case 4367:case 4383:case 4399:case 4415:case 4368:case 4430: return Type::AcaciaTrapdoor; + case 3764:case 3765:case 3759:case 3760:case 3761:case 3762:case 3763:case 3766: return Type::AcaciaWallSign; + case 121:case 122:case 123: return Type::AcaciaWood; + case 6826:case 6827:case 6828:case 6829:case 6830:case 6831:case 6832:case 6833:case 6834:case 6823:case 6824:case 6825: return Type::ActivatorRail; + case -0: return Type::Air; + case 1415: return Type::Allium; + case 15827: return Type::AncientDebris; + case 6: return Type::Andesite; + case 10845:case 10846:case 10843:case 10847:case 10844:case 10848: return Type::AndesiteSlab; + case 10469:case 10470:case 10471:case 10472:case 10473:case 10474:case 10475:case 10476:case 10477:case 10478:case 10479:case 10480:case 10481:case 10482:case 10483:case 10484:case 10485:case 10486:case 10487:case 10488:case 10489:case 10490:case 10491:case 10492:case 10493:case 10494:case 10495:case 10496:case 10497:case 10498:case 10499:case 10500:case 10501:case 10502:case 10503:case 10504:case 10505:case 10506:case 10507:case 10508:case 10509:case 10510:case 10511:case 10512:case 10513:case 10514:case 10515:case 10516:case 10517:case 10518:case 10519:case 10520:case 10521:case 10522:case 10523:case 10524:case 10525:case 10526:case 10527:case 10528:case 10529:case 10530:case 10531:case 10532:case 10533:case 10534:case 10535:case 10536:case 10537:case 10538:case 10539:case 10540:case 10541:case 10542:case 10543:case 10544:case 10545:case 10546:case 10547:case 10548: return Type::AndesiteStairs; + case 13138:case 13142:case 13146:case 13150:case 13154:case 13158:case 13162:case 13166:case 13170:case 13174:case 13178:case 13182:case 13186:case 13190:case 13194:case 13198:case 13202:case 13206:case 13210:case 13214:case 13218:case 13222:case 13226:case 13230:case 13234:case 13238:case 13242:case 13246:case 13250:case 13254:case 13258:case 13262:case 13266:case 13270:case 13274:case 13278:case 13282:case 13286:case 13290:case 13294:case 13298:case 13302:case 13306:case 13310:case 13314:case 13318:case 13322:case 13326:case 13330:case 13334:case 13338:case 13342:case 13346:case 13350:case 13354:case 13358:case 13362:case 13366:case 13370:case 13374:case 13378:case 13382:case 13386:case 13390:case 13394:case 13398:case 13402:case 13406:case 13410:case 13414:case 13418:case 13422:case 13426:case 13430:case 13434:case 13438:case 13442:case 13446:case 13450:case 13454:case 13458:case 13135:case 13139:case 13143:case 13147:case 13151:case 13155:case 13159:case 13163:case 13167:case 13171:case 13175:case 13179:case 13183:case 13187:case 13191:case 13195:case 13199:case 13203:case 13207:case 13211:case 13215:case 13219:case 13223:case 13227:case 13231:case 13235:case 13239:case 13243:case 13247:case 13251:case 13255:case 13259:case 13263:case 13267:case 13271:case 13275:case 13279:case 13283:case 13287:case 13291:case 13295:case 13299:case 13303:case 13307:case 13311:case 13315:case 13319:case 13323:case 13327:case 13331:case 13335:case 13339:case 13343:case 13347:case 13351:case 13355:case 13359:case 13363:case 13367:case 13371:case 13375:case 13379:case 13383:case 13387:case 13391:case 13395:case 13399:case 13403:case 13407:case 13411:case 13415:case 13419:case 13423:case 13427:case 13431:case 13435:case 13439:case 13443:case 13447:case 13451:case 13455:case 13136:case 13140:case 13144:case 13148:case 13152:case 13156:case 13160:case 13164:case 13168:case 13172:case 13176:case 13180:case 13184:case 13188:case 13192:case 13196:case 13200:case 13204:case 13208:case 13212:case 13216:case 13220:case 13224:case 13228:case 13232:case 13236:case 13240:case 13244:case 13248:case 13252:case 13256:case 13260:case 13264:case 13268:case 13272:case 13276:case 13280:case 13284:case 13288:case 13292:case 13296:case 13300:case 13304:case 13308:case 13312:case 13316:case 13320:case 13324:case 13328:case 13332:case 13336:case 13340:case 13344:case 13348:case 13352:case 13356:case 13360:case 13364:case 13368:case 13372:case 13376:case 13380:case 13384:case 13388:case 13392:case 13396:case 13400:case 13404:case 13408:case 13412:case 13416:case 13420:case 13424:case 13428:case 13432:case 13436:case 13440:case 13444:case 13448:case 13452:case 13456:case 13137:case 13141:case 13145:case 13149:case 13153:case 13157:case 13161:case 13165:case 13169:case 13173:case 13177:case 13181:case 13185:case 13189:case 13193:case 13197:case 13201:case 13205:case 13209:case 13213:case 13217:case 13221:case 13225:case 13229:case 13233:case 13237:case 13241:case 13245:case 13249:case 13253:case 13257:case 13261:case 13265:case 13269:case 13273:case 13277:case 13281:case 13285:case 13289:case 13293:case 13297:case 13301:case 13305:case 13309:case 13313:case 13317:case 13321:case 13325:case 13329:case 13333:case 13337:case 13341:case 13345:case 13349:case 13353:case 13357:case 13361:case 13365:case 13369:case 13373:case 13377:case 13381:case 13385:case 13389:case 13393:case 13397:case 13401:case 13405:case 13409:case 13413:case 13417:case 13421:case 13425:case 13429:case 13433:case 13437:case 13441:case 13445:case 13449:case 13453:case 13457: return Type::AndesiteWall; + case 6610:case 6611:case 6612:case 6613: return Type::Anvil; + case 4768:case 4769:case 4770:case 4771: return Type::AttachedMelonStem; + case 4765:case 4766:case 4764:case 4767: return Type::AttachedPumpkinStem; + case 1416: return Type::AzureBluet; + case 9660:case 9662:case 9653:case 9655:case 9657:case 9659:case 9661:case 9663:case 9652:case 9654:case 9656:case 9658: return Type::Bamboo; + case 9651: return Type::BambooSapling; + case 14792:case 14794:case 14796:case 14798:case 14800:case 14802:case 14791:case 14793:case 14795:case 14797:case 14799:case 14801: return Type::Barrel; + case 7536: return Type::Barrier; + case 4003:case 4002:case 4004: return Type::Basalt; + case 5656: return Type::Beacon; + case 33: return Type::Bedrock; + case 15776:case 15784:case 15792:case 15777:case 15785:case 15793:case 15778:case 15786:case 15794:case 15779:case 15787:case 15795:case 15780:case 15788:case 15796:case 15781:case 15789:case 15797:case 15782:case 15790:case 15798:case 15783:case 15791:case 15799: return Type::BeeNest; + case 15807:case 15815:case 15823:case 15800:case 15808:case 15816:case 15801:case 15809:case 15817:case 15802:case 15810:case 15818:case 15803:case 15811:case 15819:case 15804:case 15812:case 15820:case 15805:case 15813:case 15821:case 15806:case 15814:case 15822: return Type::Beehive; + case 9219:case 9221:case 9220:case 9222: return Type::Beetroots; + case 14877:case 14854:case 14862:case 14870:case 14878:case 14855:case 14863:case 14871:case 14879:case 14856:case 14864:case 14872:case 14880:case 14857:case 14865:case 14873:case 14881:case 14858:case 14866:case 14874:case 14882:case 14859:case 14867:case 14875:case 14883:case 14860:case 14868:case 14876:case 14884:case 14861:case 14869:case 14885: return Type::Bell; + case 6404:case 6408:case 6412:case 6416:case 6397:case 6401:case 6405:case 6409:case 6413:case 6417:case 6394:case 6398:case 6402:case 6406:case 6410:case 6414:case 6395:case 6399:case 6403:case 6407:case 6411:case 6415:case 6396:case 6400: return Type::BirchButton; + case 8829:case 8861:case 8830:case 8862:case 8831:case 8863:case 8832:case 8864:case 8833:case 8802:case 8834:case 8803:case 8835:case 8804:case 8836:case 8805:case 8837:case 8806:case 8838:case 8807:case 8839:case 8808:case 8840:case 8809:case 8841:case 8810:case 8842:case 8811:case 8843:case 8812:case 8844:case 8813:case 8845:case 8814:case 8846:case 8815:case 8847:case 8816:case 8848:case 8817:case 8849:case 8818:case 8850:case 8819:case 8851:case 8820:case 8852:case 8821:case 8853:case 8822:case 8854:case 8823:case 8855:case 8824:case 8856:case 8825:case 8857:case 8826:case 8858:case 8827:case 8859:case 8828:case 8860:case 8865: return Type::BirchDoor; + case 8615:case 8623:case 8631:case 8639:case 8616:case 8624:case 8632:case 8640:case 8617:case 8625:case 8633:case 8610:case 8618:case 8626:case 8634:case 8611:case 8619:case 8627:case 8635:case 8612:case 8620:case 8628:case 8636:case 8613:case 8621:case 8629:case 8637:case 8614:case 8622:case 8630:case 8638:case 8641: return Type::BirchFence; + case 8460:case 8468:case 8476:case 8453:case 8461:case 8469:case 8477:case 8454:case 8462:case 8470:case 8478:case 8455:case 8463:case 8471:case 8479:case 8456:case 8464:case 8472:case 8480:case 8457:case 8465:case 8473:case 8450:case 8458:case 8466:case 8474:case 8451:case 8459:case 8467:case 8475:case 8452:case 8481: return Type::BirchFenceGate; + case 183:case 176:case 184:case 177:case 185:case 178:case 186:case 179:case 180:case 173:case 181:case 174:case 182:case 175: return Type::BirchLeaves; + case 79:case 80:case 81: return Type::BirchLog; + case 17: return Type::BirchPlanks; + case 3877:case 3878: return Type::BirchPressurePlate; + case 25:case 26: return Type::BirchSapling; + case 3452:case 3454:case 3456:case 3458:case 3460:case 3462:case 3464:case 3466:case 3468:case 3470:case 3472:case 3474:case 3445:case 3447:case 3449:case 3451:case 3453:case 3455:case 3457:case 3459:case 3461:case 3463:case 3465:case 3467:case 3469:case 3471:case 3473:case 3475:case 3446:case 3448:case 3450:case 3476: return Type::BirchSign; + case 8315:case 8312:case 8316:case 8313:case 8317:case 8314: return Type::BirchSlab; + case 5520:case 5521:case 5522:case 5523:case 5524:case 5525:case 5526:case 5527:case 5528:case 5529:case 5530:case 5531:case 5532:case 5533:case 5534:case 5535:case 5536:case 5537:case 5538:case 5539:case 5540:case 5541:case 5542:case 5543:case 5544:case 5545:case 5546:case 5547:case 5484:case 5548:case 5485:case 5549:case 5486:case 5550:case 5487:case 5551:case 5488:case 5552:case 5489:case 5553:case 5490:case 5554:case 5491:case 5555:case 5492:case 5556:case 5493:case 5557:case 5494:case 5558:case 5495:case 5559:case 5496:case 5560:case 5497:case 5561:case 5498:case 5562:case 5499:case 5563:case 5500:case 5501:case 5502:case 5503:case 5504:case 5505:case 5506:case 5507:case 5508:case 5509:case 5510:case 5511:case 5512:case 5513:case 5514:case 5515:case 5516:case 5517:case 5518:case 5519: return Type::BirchStairs; + case 4258:case 4274:case 4290:case 4243:case 4259:case 4275:case 4291:case 4244:case 4260:case 4276:case 4292:case 4245:case 4261:case 4277:case 4293:case 4246:case 4262:case 4278:case 4294:case 4247:case 4263:case 4279:case 4295:case 4248:case 4264:case 4280:case 4296:case 4249:case 4265:case 4281:case 4297:case 4250:case 4266:case 4282:case 4298:case 4251:case 4267:case 4283:case 4299:case 4252:case 4268:case 4284:case 4300:case 4253:case 4269:case 4285:case 4301:case 4254:case 4270:case 4286:case 4239:case 4255:case 4271:case 4287:case 4240:case 4256:case 4272:case 4288:case 4241:case 4257:case 4273:case 4289:case 4242:case 4302: return Type::BirchTrapdoor; + case 3757:case 3751:case 3752:case 3753:case 3754:case 3755:case 3756:case 3758: return Type::BirchWallSign; + case 115:case 116:case 117: return Type::BirchWood; + case 8146:case 8147:case 8148:case 8149:case 8150:case 8151:case 8137:case 8138:case 8139:case 8140:case 8141:case 8142:case 8143:case 8144:case 8145:case 8152: return Type::BlackBanner; + case 1302:case 1291:case 1295:case 1299:case 1303:case 1292:case 1296:case 1300:case 1289:case 1293:case 1297:case 1301:case 1290:case 1294:case 1298:case 1304: return Type::BlackBed; + case 7881: return Type::BlackCarpet; + case 9453: return Type::BlackConcrete; + case 9469: return Type::BlackConcretePowder; + case 9435:case 9434:case 9436:case 9437: return Type::BlackGlazedTerracotta; + case 9368:case 9372:case 9369:case 9373:case 9370:case 9371: return Type::BlackShulkerBox; + case 4110: return Type::BlackStainedGlass; + case 7365:case 7369:case 7373:case 7346:case 7350:case 7354:case 7358:case 7362:case 7366:case 7370:case 7343:case 7347:case 7351:case 7355:case 7359:case 7363:case 7367:case 7371:case 7344:case 7348:case 7352:case 7356:case 7360:case 7364:case 7368:case 7372:case 7345:case 7349:case 7353:case 7357:case 7361:case 7374: return Type::BlackStainedGlassPane; + case 6862: return Type::BlackTerracotta; + case 8214:case 8213:case 8215:case 8216: return Type::BlackWallBanner; + case 1399: return Type::BlackWool; + case 15839: return Type::Blackstone; + case 16249:case 16246:case 16247:case 16244:case 16248:case 16245: return Type::BlackstoneSlab; + case 15840:case 15841:case 15842:case 15843:case 15844:case 15845:case 15846:case 15847:case 15848:case 15849:case 15850:case 15851:case 15852:case 15853:case 15854:case 15855:case 15856:case 15857:case 15858:case 15859:case 15860:case 15861:case 15862:case 15863:case 15864:case 15865:case 15866:case 15867:case 15868:case 15869:case 15870:case 15871:case 15872:case 15873:case 15874:case 15875:case 15876:case 15877:case 15878:case 15879:case 15880:case 15881:case 15882:case 15883:case 15884:case 15885:case 15886:case 15887:case 15888:case 15889:case 15890:case 15891:case 15892:case 15893:case 15894:case 15895:case 15896:case 15897:case 15898:case 15899:case 15900:case 15901:case 15902:case 15903:case 15904:case 15905:case 15906:case 15907:case 15908:case 15909:case 15910:case 15911:case 15912:case 15913:case 15914:case 15915:case 15916:case 15917:case 15918:case 15919: return Type::BlackstoneStairs; + case 16144:case 16148:case 16152:case 16156:case 16160:case 16164:case 16168:case 16172:case 16176:case 16180:case 16184:case 16188:case 16192:case 16196:case 16200:case 16204:case 16208:case 16212:case 16216:case 16220:case 16224:case 16228:case 16232:case 16236:case 16240:case 15921:case 15925:case 15929:case 15933:case 15937:case 15941:case 15945:case 15949:case 15953:case 15957:case 15961:case 15965:case 15969:case 15973:case 15977:case 15981:case 15985:case 15989:case 15993:case 15997:case 16001:case 16005:case 16009:case 16013:case 16017:case 16021:case 16025:case 16029:case 16033:case 16037:case 16041:case 16045:case 16049:case 16053:case 16057:case 16061:case 16065:case 16069:case 16073:case 16077:case 16081:case 16085:case 16089:case 16093:case 16097:case 16101:case 16105:case 16109:case 16113:case 16117:case 16121:case 16125:case 16129:case 16133:case 16137:case 16141:case 16145:case 16149:case 16153:case 16157:case 16161:case 16165:case 16169:case 16173:case 16177:case 16181:case 16185:case 16189:case 16193:case 16197:case 16201:case 16205:case 16209:case 16213:case 16217:case 16221:case 16225:case 16229:case 16233:case 16237:case 16241:case 15922:case 15926:case 15930:case 15934:case 15938:case 15942:case 15946:case 15950:case 15954:case 15958:case 15962:case 15966:case 15970:case 15974:case 15978:case 15982:case 15986:case 15990:case 15994:case 15998:case 16002:case 16006:case 16010:case 16014:case 16018:case 16022:case 16026:case 16030:case 16034:case 16038:case 16042:case 16046:case 16050:case 16054:case 16058:case 16062:case 16066:case 16070:case 16074:case 16078:case 16082:case 16086:case 16090:case 16094:case 16098:case 16102:case 16106:case 16110:case 16114:case 16118:case 16122:case 16126:case 16130:case 16134:case 16138:case 16142:case 16146:case 16150:case 16154:case 16158:case 16162:case 16166:case 16170:case 16174:case 16178:case 16182:case 16186:case 16190:case 16194:case 16198:case 16202:case 16206:case 16210:case 16214:case 16218:case 16222:case 16226:case 16230:case 16234:case 16238:case 16242:case 15923:case 15927:case 15931:case 15935:case 15939:case 15943:case 15947:case 15951:case 15955:case 15959:case 15963:case 15967:case 15971:case 15975:case 15979:case 15983:case 15987:case 15991:case 15995:case 15999:case 16003:case 16007:case 16011:case 16015:case 16019:case 16023:case 16027:case 16031:case 16035:case 16039:case 16043:case 16047:case 16051:case 16055:case 16059:case 16063:case 16067:case 16071:case 16075:case 16079:case 16083:case 16087:case 16091:case 16095:case 16099:case 16103:case 16107:case 16111:case 16115:case 16119:case 16123:case 16127:case 16131:case 16135:case 16139:case 16143:case 16147:case 16151:case 16155:case 16159:case 16163:case 16167:case 16171:case 16175:case 16179:case 16183:case 16187:case 16191:case 16195:case 16199:case 16203:case 16207:case 16211:case 16215:case 16219:case 16223:case 16227:case 16231:case 16235:case 16239:case 16243:case 15920:case 15924:case 15928:case 15932:case 15936:case 15940:case 15944:case 15948:case 15952:case 15956:case 15960:case 15964:case 15968:case 15972:case 15976:case 15980:case 15984:case 15988:case 15992:case 15996:case 16000:case 16004:case 16008:case 16012:case 16016:case 16020:case 16024:case 16028:case 16032:case 16036:case 16040:case 16044:case 16048:case 16052:case 16056:case 16060:case 16064:case 16068:case 16072:case 16076:case 16080:case 16084:case 16088:case 16092:case 16096:case 16100:case 16104:case 16108:case 16112:case 16116:case 16120:case 16124:case 16128:case 16132:case 16136:case 16140: return Type::BlackstoneWall; + case 14814:case 14811:case 14815:case 14812:case 14816:case 14813:case 14817:case 14818: return Type::BlastFurnace; + case 8086:case 8087:case 8073:case 8074:case 8075:case 8076:case 8077:case 8078:case 8079:case 8080:case 8081:case 8082:case 8083:case 8084:case 8085:case 8088: return Type::BlueBanner; + case 1227:case 1231:case 1235:case 1239:case 1228:case 1232:case 1236:case 1225:case 1229:case 1233:case 1237:case 1226:case 1230:case 1234:case 1238:case 1240: return Type::BlueBed; + case 7877: return Type::BlueCarpet; + case 9449: return Type::BlueConcrete; + case 9465: return Type::BlueConcretePowder; + case 9420:case 9419:case 9418:case 9421: return Type::BlueGlazedTerracotta; + case 9648: return Type::BlueIce; + case 1414: return Type::BlueOrchid; + case 9347:case 9344:case 9348:case 9345:case 9349:case 9346: return Type::BlueShulkerBox; + case 4106: return Type::BlueStainedGlass; + case 7241:case 7245:case 7218:case 7222:case 7226:case 7230:case 7234:case 7238:case 7242:case 7215:case 7219:case 7223:case 7227:case 7231:case 7235:case 7239:case 7243:case 7216:case 7220:case 7224:case 7228:case 7232:case 7236:case 7240:case 7244:case 7217:case 7221:case 7225:case 7229:case 7233:case 7237:case 7246: return Type::BlueStainedGlassPane; + case 6858: return Type::BlueTerracotta; + case 8199:case 8198:case 8197:case 8200: return Type::BlueWallBanner; + case 1395: return Type::BlueWool; + case 9258:case 9257:case 9256: return Type::BoneBlock; + case 1432: return Type::Bookshelf; + case 9532:case 9533: return Type::BrainCoral; + case 9516: return Type::BrainCoralBlock; + case 9552:case 9553: return Type::BrainCoralFan; + case 9613:case 9610:case 9614:case 9611:case 9608:case 9612:case 9609:case 9615: return Type::BrainCoralWallFan; + case 5133:case 5135:case 5137:case 5139:case 5134:case 5136:case 5138:case 5140: return Type::BrewingStand; + case 8374:case 8375:case 8372:case 8376:case 8373:case 8377: return Type::BrickSlab; + case 4885:case 4886:case 4887:case 4888:case 4889:case 4890:case 4891:case 4892:case 4893:case 4894:case 4895:case 4896:case 4897:case 4898:case 4899:case 4900:case 4901:case 4902:case 4903:case 4904:case 4905:case 4906:case 4907:case 4908:case 4909:case 4910:case 4911:case 4912:case 4913:case 4914:case 4915:case 4852:case 4916:case 4853:case 4917:case 4854:case 4918:case 4855:case 4919:case 4856:case 4920:case 4857:case 4921:case 4858:case 4922:case 4859:case 4923:case 4860:case 4924:case 4861:case 4925:case 4862:case 4926:case 4863:case 4927:case 4864:case 4928:case 4865:case 4929:case 4866:case 4930:case 4867:case 4931:case 4868:case 4869:case 4870:case 4871:case 4872:case 4873:case 4874:case 4875:case 4876:case 4877:case 4878:case 4879:case 4880:case 4881:case 4882:case 4883:case 4884: return Type::BrickStairs; + case 11034:case 11038:case 11042:case 11046:case 11050:case 11054:case 11058:case 11062:case 11066:case 11070:case 11074:case 11078:case 11082:case 11086:case 11090:case 11094:case 11098:case 11102:case 11106:case 11110:case 11114:case 11118:case 11122:case 11126:case 11130:case 11134:case 11138:case 11142:case 11146:case 11150:case 11154:case 11158:case 11162:case 11166:case 11170:case 11174:case 11178:case 11182:case 11186:case 11190:case 10867:case 10871:case 10875:case 10879:case 10883:case 10887:case 10891:case 10895:case 10899:case 10903:case 10907:case 10911:case 10915:case 10919:case 10923:case 10927:case 10931:case 10935:case 10939:case 10943:case 10947:case 10951:case 10955:case 10959:case 10963:case 10967:case 10971:case 10975:case 10979:case 10983:case 10987:case 10991:case 10995:case 10999:case 11003:case 11007:case 11011:case 11015:case 11019:case 11023:case 11027:case 11031:case 11035:case 11039:case 11043:case 11047:case 11051:case 11055:case 11059:case 11063:case 11067:case 11071:case 11075:case 11079:case 11083:case 11087:case 11091:case 11095:case 11099:case 11103:case 11107:case 11111:case 11115:case 11119:case 11123:case 11127:case 11131:case 11135:case 11139:case 11143:case 11147:case 11151:case 11155:case 11159:case 11163:case 11167:case 11171:case 11175:case 11179:case 11183:case 11187:case 10868:case 10872:case 10876:case 10880:case 10884:case 10888:case 10892:case 10896:case 10900:case 10904:case 10908:case 10912:case 10916:case 10920:case 10924:case 10928:case 10932:case 10936:case 10940:case 10944:case 10948:case 10952:case 10956:case 10960:case 10964:case 10968:case 10972:case 10976:case 10980:case 10984:case 10988:case 10992:case 10996:case 11000:case 11004:case 11008:case 11012:case 11016:case 11020:case 11024:case 11028:case 11032:case 11036:case 11040:case 11044:case 11048:case 11052:case 11056:case 11060:case 11064:case 11068:case 11072:case 11076:case 11080:case 11084:case 11088:case 11092:case 11096:case 11100:case 11104:case 11108:case 11112:case 11116:case 11120:case 11124:case 11128:case 11132:case 11136:case 11140:case 11144:case 11148:case 11152:case 11156:case 11160:case 11164:case 11168:case 11172:case 11176:case 11180:case 11184:case 11188:case 10869:case 10873:case 10877:case 10881:case 10885:case 10889:case 10893:case 10897:case 10901:case 10905:case 10909:case 10913:case 10917:case 10921:case 10925:case 10929:case 10933:case 10937:case 10941:case 10945:case 10949:case 10953:case 10957:case 10961:case 10965:case 10969:case 10973:case 10977:case 10981:case 10985:case 10989:case 10993:case 10997:case 11001:case 11005:case 11009:case 11013:case 11017:case 11021:case 11025:case 11029:case 11033:case 11037:case 11041:case 11045:case 11049:case 11053:case 11057:case 11061:case 11065:case 11069:case 11073:case 11077:case 11081:case 11085:case 11089:case 11093:case 11097:case 11101:case 11105:case 11109:case 11113:case 11117:case 11121:case 11125:case 11129:case 11133:case 11137:case 11141:case 11145:case 11149:case 11153:case 11157:case 11161:case 11165:case 11169:case 11173:case 11177:case 11181:case 11185:case 11189:case 10870:case 10874:case 10878:case 10882:case 10886:case 10890:case 10894:case 10898:case 10902:case 10906:case 10910:case 10914:case 10918:case 10922:case 10926:case 10930:case 10934:case 10938:case 10942:case 10946:case 10950:case 10954:case 10958:case 10962:case 10966:case 10970:case 10974:case 10978:case 10982:case 10986:case 10990:case 10994:case 10998:case 11002:case 11006:case 11010:case 11014:case 11018:case 11022:case 11026:case 11030: return Type::BrickWall; + case 1429: return Type::Bricks; + case 8101:case 8102:case 8103:case 8089:case 8090:case 8091:case 8092:case 8093:case 8094:case 8095:case 8096:case 8097:case 8098:case 8099:case 8100:case 8104: return Type::BrownBanner; + case 1242:case 1246:case 1250:case 1254:case 1243:case 1247:case 1251:case 1255:case 1244:case 1248:case 1252:case 1241:case 1245:case 1249:case 1253:case 1256: return Type::BrownBed; + case 7878: return Type::BrownCarpet; + case 9450: return Type::BrownConcrete; + case 9466: return Type::BrownConcretePowder; + case 9423:case 9422:case 9424:case 9425: return Type::BrownGlazedTerracotta; + case 1425: return Type::BrownMushroom; + case 4510:case 4526:case 4542:case 4558:case 4511:case 4527:case 4543:case 4559:case 4512:case 4528:case 4544:case 4560:case 4513:case 4529:case 4545:case 4561:case 4514:case 4530:case 4546:case 4562:case 4515:case 4531:case 4547:case 4563:case 4516:case 4532:case 4548:case 4564:case 4517:case 4533:case 4549:case 4565:case 4518:case 4534:case 4550:case 4566:case 4519:case 4535:case 4551:case 4567:case 4520:case 4536:case 4552:case 4505:case 4521:case 4537:case 4553:case 4506:case 4522:case 4538:case 4554:case 4507:case 4523:case 4539:case 4555:case 4508:case 4524:case 4540:case 4556:case 4509:case 4525:case 4541:case 4557:case 4568: return Type::BrownMushroomBlock; + case 9354:case 9351:case 9355:case 9352:case 9353:case 9350: return Type::BrownShulkerBox; + case 4107: return Type::BrownStainedGlass; + case 7272:case 7276:case 7249:case 7253:case 7257:case 7261:case 7265:case 7269:case 7273:case 7277:case 7250:case 7254:case 7258:case 7262:case 7266:case 7270:case 7274:case 7247:case 7251:case 7255:case 7259:case 7263:case 7267:case 7271:case 7275:case 7248:case 7252:case 7256:case 7260:case 7264:case 7268:case 7278: return Type::BrownStainedGlassPane; + case 6859: return Type::BrownTerracotta; + case 8202:case 8201:case 8203:case 8204: return Type::BrownWallBanner; + case 1396: return Type::BrownWool; + case 9667:case 9668: return Type::BubbleColumn; + case 9534:case 9535: return Type::BubbleCoral; + case 9517: return Type::BubbleCoralBlock; + case 9554:case 9555: return Type::BubbleCoralFan; + case 9620:case 9617:case 9621:case 9618:case 9622:case 9619:case 9616:case 9623: return Type::BubbleCoralWallFan; + case 3931:case 3939:case 3932:case 3940:case 3933:case 3941:case 3934:case 3942:case 3935:case 3943:case 3936:case 3944:case 3937:case 3945:case 3938:case 3946: return Type::Cactus; + case 4030:case 4024:case 4025:case 4026:case 4027:case 4028:case 4029: return Type::Cake; + case 14908:case 14916:case 14893:case 14901:case 14909:case 14917:case 14894:case 14902:case 14910:case 14918:case 14895:case 14903:case 14911:case 14919:case 14896:case 14904:case 14912:case 14920:case 14897:case 14905:case 14913:case 14890:case 14898:case 14906:case 14914:case 14891:case 14899:case 14907:case 14915:case 14892:case 14900:case 14921: return Type::Campfire; + case 6330:case 6332:case 6334:case 6336:case 6331:case 6333:case 6335:case 6337: return Type::Carrots; + case 14819: return Type::CartographyTable; + case 4018:case 4017:case 4016:case 4019: return Type::CarvedPumpkin; + case 5143:case 5141:case 5142:case 5144: return Type::Cauldron; + case 9666: return Type::CaveAir; + case 4729:case 4730: return Type::Chain; + case 9240:case 9242:case 9244:case 9246:case 9248:case 9237:case 9239:case 9241:case 9243:case 9245:case 9247:case 9238: return Type::ChainCommandBlock; + case 2037:case 2038:case 2039:case 2040:case 2041:case 2042:case 2043:case 2044:case 2045:case 2046:case 2047:case 2048:case 2050:case 2052:case 2054:case 2056:case 2057:case 2055:case 2053:case 2049:case 2034:case 2035:case 2036:case 2051: return Type::Chest; + case 6616:case 6614:case 6615:case 6617: return Type::ChippedAnvil; + case 17101: return Type::ChiseledNetherBricks; + case 16253: return Type::ChiseledPolishedBlackstone; + case 6739: return Type::ChiseledQuartzBlock; + case 8218: return Type::ChiseledRedSandstone; + case 247: return Type::ChiseledSandstone; + case 4498: return Type::ChiseledStoneBricks; + case 9130:case 9131:case 9128:case 9132:case 9129:case 9133: return Type::ChorusFlower; + case 9081:case 9113:case 9082:case 9114:case 9083:case 9115:case 9084:case 9116:case 9085:case 9117:case 9086:case 9118:case 9087:case 9119:case 9088:case 9120:case 9089:case 9121:case 9090:case 9122:case 9091:case 9123:case 9092:case 9124:case 9093:case 9125:case 9094:case 9126:case 9095:case 9064:case 9096:case 9065:case 9097:case 9066:case 9098:case 9067:case 9099:case 9068:case 9100:case 9069:case 9101:case 9070:case 9102:case 9071:case 9103:case 9072:case 9104:case 9073:case 9105:case 9074:case 9106:case 9075:case 9107:case 9076:case 9108:case 9077:case 9109:case 9078:case 9110:case 9079:case 9111:case 9080:case 9112:case 9127: return Type::ChorusPlant; + case 3947: return Type::Clay; + case 7883: return Type::CoalBlock; + case 71: return Type::CoalOre; + case 11: return Type::CoarseDirt; + case 14: return Type::Cobblestone; + case 8367:case 8371:case 8368:case 8369:case 8366:case 8370: return Type::CobblestoneSlab; + case 3665:case 3697:case 3729:case 3666:case 3698:case 3730:case 3667:case 3699:case 3731:case 3668:case 3700:case 3732:case 3669:case 3701:case 3733:case 3670:case 3702:case 3734:case 3671:case 3703:case 3672:case 3704:case 3673:case 3705:case 3674:case 3706:case 3675:case 3707:case 3676:case 3708:case 3677:case 3709:case 3678:case 3710:case 3679:case 3711:case 3680:case 3712:case 3681:case 3713:case 3682:case 3714:case 3683:case 3715:case 3684:case 3716:case 3685:case 3717:case 3686:case 3718:case 3655:case 3687:case 3719:case 3656:case 3688:case 3720:case 3657:case 3689:case 3721:case 3658:case 3690:case 3722:case 3659:case 3691:case 3723:case 3660:case 3692:case 3724:case 3661:case 3693:case 3725:case 3662:case 3694:case 3726:case 3663:case 3695:case 3727:case 3664:case 3696:case 3728: return Type::CobblestoneStairs; + case 5657:case 5659:case 5661:case 5663:case 5665:case 5667:case 5669:case 5671:case 5673:case 5675:case 5677:case 5679:case 5681:case 5683:case 5685:case 5687:case 5689:case 5691:case 5693:case 5695:case 5697:case 5699:case 5701:case 5703:case 5705:case 5707:case 5709:case 5711:case 5713:case 5715:case 5717:case 5719:case 5721:case 5723:case 5725:case 5727:case 5729:case 5731:case 5733:case 5735:case 5737:case 5739:case 5741:case 5743:case 5745:case 5747:case 5749:case 5751:case 5753:case 5755:case 5757:case 5759:case 5761:case 5763:case 5765:case 5767:case 5769:case 5771:case 5773:case 5775:case 5777:case 5779:case 5781:case 5783:case 5785:case 5787:case 5789:case 5791:case 5793:case 5795:case 5797:case 5799:case 5801:case 5803:case 5805:case 5807:case 5809:case 5811:case 5813:case 5815:case 5817:case 5819:case 5821:case 5823:case 5825:case 5827:case 5829:case 5831:case 5833:case 5835:case 5837:case 5839:case 5841:case 5843:case 5845:case 5847:case 5849:case 5851:case 5853:case 5855:case 5857:case 5859:case 5861:case 5863:case 5865:case 5867:case 5869:case 5871:case 5873:case 5875:case 5877:case 5879:case 5881:case 5883:case 5885:case 5887:case 5889:case 5891:case 5893:case 5895:case 5897:case 5899:case 5901:case 5903:case 5905:case 5907:case 5909:case 5911:case 5913:case 5915:case 5917:case 5919:case 5921:case 5923:case 5925:case 5927:case 5929:case 5931:case 5933:case 5935:case 5937:case 5939:case 5941:case 5943:case 5945:case 5947:case 5949:case 5951:case 5953:case 5955:case 5957:case 5959:case 5961:case 5963:case 5965:case 5967:case 5969:case 5971:case 5973:case 5975:case 5977:case 5979:case 5658:case 5660:case 5662:case 5664:case 5666:case 5668:case 5670:case 5672:case 5674:case 5676:case 5678:case 5680:case 5682:case 5684:case 5686:case 5688:case 5690:case 5692:case 5694:case 5696:case 5698:case 5700:case 5702:case 5704:case 5706:case 5708:case 5710:case 5712:case 5714:case 5716:case 5718:case 5720:case 5722:case 5724:case 5726:case 5728:case 5730:case 5732:case 5734:case 5736:case 5738:case 5740:case 5742:case 5744:case 5746:case 5748:case 5750:case 5752:case 5754:case 5756:case 5758:case 5760:case 5762:case 5764:case 5766:case 5768:case 5770:case 5772:case 5774:case 5776:case 5778:case 5780:case 5782:case 5784:case 5786:case 5788:case 5790:case 5792:case 5794:case 5796:case 5798:case 5800:case 5802:case 5804:case 5806:case 5808:case 5810:case 5812:case 5814:case 5816:case 5818:case 5820:case 5822:case 5824:case 5826:case 5828:case 5830:case 5832:case 5834:case 5836:case 5838:case 5840:case 5842:case 5844:case 5846:case 5848:case 5850:case 5852:case 5854:case 5856:case 5858:case 5860:case 5862:case 5864:case 5866:case 5868:case 5870:case 5872:case 5874:case 5876:case 5878:case 5880:case 5882:case 5884:case 5886:case 5888:case 5890:case 5892:case 5894:case 5896:case 5898:case 5900:case 5902:case 5904:case 5906:case 5908:case 5910:case 5912:case 5914:case 5916:case 5918:case 5920:case 5922:case 5924:case 5926:case 5928:case 5930:case 5932:case 5934:case 5936:case 5938:case 5940:case 5942:case 5944:case 5946:case 5948:case 5950:case 5952:case 5954:case 5956:case 5958:case 5960:case 5962:case 5964:case 5966:case 5968:case 5970:case 5972:case 5974:case 5976:case 5978:case 5980: return Type::CobblestoneWall; + case 1341: return Type::Cobweb; + case 5161:case 5162:case 5163:case 5164:case 5165:case 5166:case 5167:case 5168:case 5169:case 5158:case 5159:case 5160: return Type::Cocoa; + case 5644:case 5645:case 5646:case 5647:case 5648:case 5649:case 5650:case 5651:case 5652:case 5653:case 5654:case 5655: return Type::CommandBlock; + case 6691:case 6692:case 6678:case 6679:case 6680:case 6681:case 6682:case 6683:case 6684:case 6685:case 6686:case 6687:case 6688:case 6689:case 6690:case 6693: return Type::Comparator; + case 15752:case 15754:case 15756:case 15758:case 15751:case 15753:case 15755:case 15757:case 15759: return Type::Composter; + case 9649:case 9650: return Type::Conduit; + case 1422: return Type::Cornflower; + case 17102: return Type::CrackedNetherBricks; + case 16252: return Type::CrackedPolishedBlackstoneBricks; + case 4497: return Type::CrackedStoneBricks; + case 3356: return Type::CraftingTable; + case 6571:case 6572:case 6573:case 6574:case 6575:case 6576:case 6577:case 6578:case 6579:case 6580:case 6581:case 6582:case 6583:case 6584:case 6570:case 6585: return Type::CreeperHead; + case 6586:case 6587:case 6588:case 6589: return Type::CreeperWallHead; + case 15497:case 15482:case 15490:case 15498:case 15483:case 15491:case 15499:case 15484:case 15492:case 15500:case 15485:case 15493:case 15501:case 15486:case 15494:case 15502:case 15479:case 15487:case 15495:case 15480:case 15488:case 15496:case 15481:case 15489: return Type::CrimsonButton; + case 15570:case 15539:case 15571:case 15540:case 15572:case 15541:case 15573:case 15542:case 15574:case 15543:case 15575:case 15544:case 15576:case 15545:case 15577:case 15546:case 15578:case 15547:case 15579:case 15548:case 15580:case 15549:case 15581:case 15550:case 15582:case 15551:case 15583:case 15552:case 15584:case 15553:case 15585:case 15554:case 15586:case 15555:case 15587:case 15556:case 15588:case 15557:case 15589:case 15558:case 15527:case 15559:case 15528:case 15560:case 15529:case 15561:case 15530:case 15562:case 15531:case 15563:case 15532:case 15564:case 15533:case 15565:case 15534:case 15566:case 15535:case 15567:case 15536:case 15568:case 15537:case 15569:case 15538:case 15590: return Type::CrimsonDoor; + case 15063:case 15071:case 15079:case 15087:case 15064:case 15072:case 15080:case 15088:case 15065:case 15073:case 15081:case 15089:case 15066:case 15074:case 15082:case 15090:case 15067:case 15075:case 15083:case 15091:case 15068:case 15076:case 15084:case 15092:case 15069:case 15077:case 15085:case 15093:case 15070:case 15078:case 15086:case 15094: return Type::CrimsonFence; + case 15280:case 15257:case 15265:case 15273:case 15281:case 15258:case 15266:case 15274:case 15282:case 15259:case 15267:case 15275:case 15283:case 15260:case 15268:case 15276:case 15284:case 15261:case 15269:case 15277:case 15285:case 15262:case 15270:case 15278:case 15255:case 15263:case 15271:case 15279:case 15256:case 15264:case 15272:case 15286: return Type::CrimsonFenceGate; + case 14988: return Type::CrimsonFungus; + case 14982:case 14981:case 14983: return Type::CrimsonHyphae; + case 14987: return Type::CrimsonNylium; + case 15045: return Type::CrimsonPlanks; + case 15059:case 15060: return Type::CrimsonPressurePlate; + case 15044: return Type::CrimsonRoots; + case 15683:case 15660:case 15668:case 15676:case 15684:case 15661:case 15669:case 15677:case 15685:case 15662:case 15670:case 15678:case 15655:case 15663:case 15671:case 15679:case 15656:case 15664:case 15672:case 15680:case 15657:case 15665:case 15673:case 15681:case 15658:case 15666:case 15674:case 15682:case 15659:case 15667:case 15675:case 15686: return Type::CrimsonSign; + case 15052:case 15049:case 15050:case 15047:case 15051:case 15048: return Type::CrimsonSlab; + case 15319:case 15320:case 15321:case 15322:case 15323:case 15324:case 15325:case 15326:case 15327:case 15328:case 15329:case 15330:case 15331:case 15332:case 15333:case 15334:case 15335:case 15336:case 15337:case 15338:case 15339:case 15340:case 15341:case 15342:case 15343:case 15344:case 15345:case 15346:case 15347:case 15348:case 15349:case 15350:case 15351:case 15352:case 15353:case 15354:case 15355:case 15356:case 15357:case 15358:case 15359:case 15360:case 15361:case 15362:case 15363:case 15364:case 15365:case 15366:case 15367:case 15368:case 15369:case 15370:case 15371:case 15372:case 15373:case 15374:case 15375:case 15376:case 15377:case 15378:case 15379:case 15380:case 15381:case 15382:case 15383:case 15384:case 15385:case 15386:case 15387:case 15388:case 15389:case 15390:case 15391:case 15392:case 15393:case 15394:case 15395:case 15396:case 15397:case 15398: return Type::CrimsonStairs; + case 14976:case 14975:case 14977: return Type::CrimsonStem; + case 15129:case 15161:case 15130:case 15162:case 15131:case 15163:case 15132:case 15164:case 15133:case 15165:case 15134:case 15166:case 15135:case 15167:case 15136:case 15168:case 15137:case 15169:case 15138:case 15170:case 15139:case 15171:case 15140:case 15172:case 15141:case 15173:case 15142:case 15174:case 15143:case 15175:case 15144:case 15176:case 15145:case 15177:case 15146:case 15178:case 15147:case 15179:case 15148:case 15180:case 15149:case 15181:case 15150:case 15182:case 15151:case 15183:case 15152:case 15184:case 15153:case 15185:case 15154:case 15186:case 15155:case 15187:case 15156:case 15188:case 15157:case 15189:case 15158:case 15127:case 15159:case 15128:case 15160:case 15190: return Type::CrimsonTrapdoor; + case 15724:case 15721:case 15725:case 15722:case 15719:case 15723:case 15720:case 15726: return Type::CrimsonWallSign; + case 15828: return Type::CryingObsidian; + case 8219: return Type::CutRedSandstone; + case 8402:case 8406:case 8403:case 8407:case 8404:case 8405: return Type::CutRedSandstoneSlab; + case 248: return Type::CutSandstone; + case 8357:case 8354:case 8358:case 8355:case 8359:case 8356: return Type::CutSandstoneSlab; + case 8041:case 8042:case 8043:case 8044:case 8045:case 8046:case 8047:case 8048:case 8049:case 8050:case 8051:case 8052:case 8053:case 8054:case 8055:case 8056: return Type::CyanBanner; + case 1197:case 1201:case 1205:case 1194:case 1198:case 1202:case 1206:case 1195:case 1199:case 1203:case 1207:case 1196:case 1200:case 1204:case 1193:case 1208: return Type::CyanBed; + case 7875: return Type::CyanCarpet; + case 9447: return Type::CyanConcrete; + case 9463: return Type::CyanConcretePowder; + case 9411:case 9410:case 9412:case 9413: return Type::CyanGlazedTerracotta; + case 9333:case 9337:case 9334:case 9335:case 9332:case 9336: return Type::CyanShulkerBox; + case 4104: return Type::CyanStainedGlass; + case 7179:case 7152:case 7156:case 7160:case 7164:case 7168:case 7172:case 7176:case 7180:case 7153:case 7157:case 7161:case 7165:case 7169:case 7173:case 7177:case 7181:case 7154:case 7158:case 7162:case 7166:case 7170:case 7174:case 7178:case 7151:case 7155:case 7159:case 7163:case 7167:case 7171:case 7175:case 7182: return Type::CyanStainedGlassPane; + case 6856: return Type::CyanTerracotta; + case 8191:case 8189:case 8190:case 8192: return Type::CyanWallBanner; + case 1393: return Type::CyanWool; + case 6619:case 6620:case 6618:case 6621: return Type::DamagedAnvil; + case 1412: return Type::Dandelion; + case 6466:case 6470:case 6474:case 6478:case 6482:case 6486:case 6467:case 6471:case 6475:case 6479:case 6483:case 6487:case 6468:case 6472:case 6476:case 6480:case 6484:case 6488:case 6469:case 6473:case 6477:case 6481:case 6485:case 6489: return Type::DarkOakButton; + case 9018:case 9050:case 9019:case 9051:case 9020:case 9052:case 9021:case 9053:case 9022:case 9054:case 9023:case 9055:case 9024:case 9056:case 9025:case 8994:case 9026:case 8995:case 9027:case 8996:case 9028:case 8997:case 9029:case 8998:case 9030:case 8999:case 9031:case 9000:case 9032:case 9001:case 9033:case 9002:case 9034:case 9003:case 9035:case 9004:case 9036:case 9005:case 9037:case 9006:case 9038:case 9007:case 9039:case 9008:case 9040:case 9009:case 9041:case 9010:case 9042:case 9011:case 9043:case 9012:case 9044:case 9013:case 9045:case 9014:case 9046:case 9015:case 9047:case 9016:case 9048:case 9017:case 9049:case 9057: return Type::DarkOakDoor; + case 8708:case 8716:case 8724:case 8732:case 8709:case 8717:case 8725:case 8733:case 8710:case 8718:case 8726:case 8734:case 8711:case 8719:case 8727:case 8735:case 8712:case 8720:case 8728:case 8736:case 8713:case 8721:case 8729:case 8706:case 8714:case 8722:case 8730:case 8707:case 8715:case 8723:case 8731:case 8737: return Type::DarkOakFence; + case 8553:case 8561:case 8569:case 8546:case 8554:case 8562:case 8570:case 8547:case 8555:case 8563:case 8571:case 8548:case 8556:case 8564:case 8572:case 8549:case 8557:case 8565:case 8573:case 8550:case 8558:case 8566:case 8574:case 8551:case 8559:case 8567:case 8575:case 8552:case 8560:case 8568:case 8576:case 8577: return Type::DarkOakFenceGate; + case 228:case 221:case 222:case 215:case 223:case 216:case 224:case 217:case 225:case 218:case 226:case 219:case 227:case 220: return Type::DarkOakLeaves; + case 88:case 89:case 90: return Type::DarkOakLog; + case 20: return Type::DarkOakPlanks; + case 3883:case 3884: return Type::DarkOakPressurePlate; + case 31:case 32: return Type::DarkOakSapling; + case 3545:case 3547:case 3549:case 3551:case 3553:case 3555:case 3557:case 3559:case 3561:case 3563:case 3565:case 3567:case 3569:case 3571:case 3542:case 3544:case 3546:case 3548:case 3550:case 3552:case 3554:case 3556:case 3558:case 3560:case 3562:case 3564:case 3566:case 3568:case 3570:case 3541:case 3543:case 3572: return Type::DarkOakSign; + case 8332:case 8333:case 8330:case 8334:case 8331:case 8335: return Type::DarkOakSlab; + case 7489:case 7490:case 7491:case 7492:case 7493:case 7494:case 7495:case 7496:case 7497:case 7498:case 7499:case 7500:case 7501:case 7502:case 7503:case 7504:case 7505:case 7506:case 7507:case 7508:case 7509:case 7510:case 7511:case 7512:case 7513:case 7514:case 7515:case 7516:case 7517:case 7518:case 7455:case 7519:case 7456:case 7520:case 7457:case 7521:case 7458:case 7522:case 7459:case 7523:case 7460:case 7524:case 7461:case 7525:case 7462:case 7526:case 7463:case 7527:case 7464:case 7528:case 7465:case 7529:case 7466:case 7530:case 7467:case 7531:case 7468:case 7532:case 7469:case 7533:case 7470:case 7534:case 7471:case 7472:case 7473:case 7474:case 7475:case 7476:case 7477:case 7478:case 7479:case 7480:case 7481:case 7482:case 7483:case 7484:case 7485:case 7486:case 7487:case 7488: return Type::DarkOakStairs; + case 4447:case 4463:case 4479:case 4432:case 4448:case 4464:case 4480:case 4433:case 4449:case 4465:case 4481:case 4434:case 4450:case 4466:case 4482:case 4435:case 4451:case 4467:case 4483:case 4436:case 4452:case 4468:case 4484:case 4437:case 4453:case 4469:case 4485:case 4438:case 4454:case 4470:case 4486:case 4439:case 4455:case 4471:case 4487:case 4440:case 4456:case 4472:case 4488:case 4441:case 4457:case 4473:case 4489:case 4442:case 4458:case 4474:case 4490:case 4443:case 4459:case 4475:case 4491:case 4444:case 4460:case 4476:case 4492:case 4445:case 4461:case 4477:case 4493:case 4446:case 4462:case 4478:case 4431:case 4494: return Type::DarkOakTrapdoor; + case 3778:case 3779:case 3780:case 3781:case 3775:case 3776:case 3777:case 3782: return Type::DarkOakWallSign; + case 124:case 125:case 126: return Type::DarkOakWood; + case 7603: return Type::DarkPrismarine; + case 7856:case 7858:case 7860:case 7857:case 7859:case 7861: return Type::DarkPrismarineSlab; + case 7806:case 7807:case 7808:case 7809:case 7810:case 7811:case 7812:case 7813:case 7814:case 7815:case 7816:case 7817:case 7818:case 7819:case 7820:case 7821:case 7822:case 7823:case 7824:case 7825:case 7826:case 7827:case 7764:case 7828:case 7765:case 7829:case 7766:case 7830:case 7767:case 7831:case 7768:case 7832:case 7769:case 7833:case 7770:case 7834:case 7771:case 7835:case 7772:case 7836:case 7773:case 7837:case 7774:case 7838:case 7775:case 7839:case 7776:case 7840:case 7777:case 7841:case 7778:case 7842:case 7779:case 7843:case 7780:case 7781:case 7782:case 7783:case 7784:case 7785:case 7786:case 7787:case 7788:case 7789:case 7790:case 7791:case 7792:case 7793:case 7794:case 7795:case 7796:case 7797:case 7798:case 7799:case 7800:case 7801:case 7802:case 7803:case 7804:case 7805: return Type::DarkPrismarineStairs; + case 6714:case 6718:case 6722:case 6695:case 6699:case 6703:case 6707:case 6711:case 6715:case 6719:case 6723:case 6696:case 6700:case 6704:case 6708:case 6712:case 6716:case 6720:case 6724:case 6697:case 6701:case 6705:case 6709:case 6713:case 6717:case 6721:case 6694:case 6698:case 6702:case 6706:case 6710:case 6725: return Type::DaylightDetector; + case 9522:case 9523: return Type::DeadBrainCoral; + case 9511: return Type::DeadBrainCoralBlock; + case 9542:case 9543: return Type::DeadBrainCoralFan; + case 9571:case 9568:case 9572:case 9569:case 9573:case 9570:case 9574:case 9575: return Type::DeadBrainCoralWallFan; + case 9524:case 9525: return Type::DeadBubbleCoral; + case 9512: return Type::DeadBubbleCoralBlock; + case 9544:case 9545: return Type::DeadBubbleCoralFan; + case 9578:case 9582:case 9579:case 9576:case 9580:case 9577:case 9581:case 9583: return Type::DeadBubbleCoralWallFan; + case 1344: return Type::DeadBush; + case 9526:case 9527: return Type::DeadFireCoral; + case 9513: return Type::DeadFireCoralBlock; + case 9546:case 9547: return Type::DeadFireCoralFan; + case 9585:case 9589:case 9586:case 9590:case 9587:case 9584:case 9588:case 9591: return Type::DeadFireCoralWallFan; + case 9528:case 9529: return Type::DeadHornCoral; + case 9514: return Type::DeadHornCoralBlock; + case 9548:case 9549: return Type::DeadHornCoralFan; + case 9592:case 9596:case 9593:case 9597:case 9594:case 9598:case 9595:case 9599: return Type::DeadHornCoralWallFan; + case 9520:case 9521: return Type::DeadTubeCoral; + case 9510: return Type::DeadTubeCoralBlock; + case 9540:case 9541: return Type::DeadTubeCoralFan; + case 9564:case 9561:case 9565:case 9562:case 9566:case 9563:case 9560:case 9567: return Type::DeadTubeCoralWallFan; + case 1317:case 1321:case 1325:case 1318:case 1322:case 1326:case 1319:case 1323:case 1327:case 1320:case 1324:case 1328: return Type::DetectorRail; + case 3355: return Type::DiamondBlock; + case 3354: return Type::DiamondOre; + case 4: return Type::Diorite; + case 10866:case 10863:case 10864:case 10861:case 10865:case 10862: return Type::DioriteSlab; + case 10722:case 10723:case 10724:case 10725:case 10726:case 10727:case 10728:case 10729:case 10730:case 10731:case 10732:case 10733:case 10734:case 10735:case 10736:case 10737:case 10738:case 10739:case 10740:case 10741:case 10742:case 10743:case 10744:case 10745:case 10746:case 10747:case 10748:case 10749:case 10750:case 10751:case 10752:case 10753:case 10754:case 10755:case 10756:case 10757:case 10758:case 10759:case 10760:case 10761:case 10762:case 10763:case 10764:case 10765:case 10766:case 10767:case 10768:case 10769:case 10770:case 10771:case 10772:case 10773:case 10774:case 10775:case 10776:case 10777:case 10778:case 10779:case 10780:case 10781:case 10782:case 10783:case 10784:case 10785:case 10786:case 10787:case 10788:case 10709:case 10710:case 10711:case 10712:case 10713:case 10714:case 10715:case 10716:case 10717:case 10718:case 10719:case 10720:case 10721: return Type::DioriteStairs; + case 14611:case 14615:case 14619:case 14623:case 14627:case 14631:case 14635:case 14639:case 14643:case 14647:case 14651:case 14655:case 14659:case 14663:case 14667:case 14671:case 14675:case 14679:case 14683:case 14687:case 14691:case 14695:case 14699:case 14703:case 14707:case 14711:case 14715:case 14719:case 14723:case 14727:case 14731:case 14735:case 14739:case 14743:case 14747:case 14751:case 14432:case 14436:case 14440:case 14444:case 14448:case 14452:case 14456:case 14460:case 14464:case 14468:case 14472:case 14476:case 14480:case 14484:case 14488:case 14492:case 14496:case 14500:case 14504:case 14508:case 14512:case 14516:case 14520:case 14524:case 14528:case 14532:case 14536:case 14540:case 14544:case 14548:case 14552:case 14556:case 14560:case 14564:case 14568:case 14572:case 14576:case 14580:case 14584:case 14588:case 14592:case 14596:case 14600:case 14604:case 14608:case 14612:case 14616:case 14620:case 14624:case 14628:case 14632:case 14636:case 14640:case 14644:case 14648:case 14652:case 14656:case 14660:case 14664:case 14668:case 14672:case 14676:case 14680:case 14684:case 14688:case 14692:case 14696:case 14700:case 14704:case 14708:case 14712:case 14716:case 14720:case 14724:case 14728:case 14732:case 14736:case 14740:case 14744:case 14748:case 14752:case 14433:case 14437:case 14441:case 14445:case 14449:case 14453:case 14457:case 14461:case 14465:case 14469:case 14473:case 14477:case 14481:case 14485:case 14489:case 14493:case 14497:case 14501:case 14505:case 14509:case 14513:case 14517:case 14521:case 14525:case 14529:case 14533:case 14537:case 14541:case 14545:case 14549:case 14553:case 14557:case 14561:case 14565:case 14569:case 14573:case 14577:case 14581:case 14585:case 14589:case 14593:case 14597:case 14601:case 14605:case 14609:case 14613:case 14617:case 14621:case 14625:case 14629:case 14633:case 14637:case 14641:case 14645:case 14649:case 14653:case 14657:case 14661:case 14665:case 14669:case 14673:case 14677:case 14681:case 14685:case 14689:case 14693:case 14697:case 14701:case 14705:case 14709:case 14713:case 14717:case 14721:case 14725:case 14729:case 14733:case 14737:case 14741:case 14745:case 14749:case 14753:case 14434:case 14438:case 14442:case 14446:case 14450:case 14454:case 14458:case 14462:case 14466:case 14470:case 14474:case 14478:case 14482:case 14486:case 14490:case 14494:case 14498:case 14502:case 14506:case 14510:case 14514:case 14518:case 14522:case 14526:case 14530:case 14534:case 14538:case 14542:case 14546:case 14550:case 14554:case 14558:case 14562:case 14566:case 14570:case 14574:case 14578:case 14582:case 14586:case 14590:case 14594:case 14598:case 14602:case 14606:case 14610:case 14614:case 14618:case 14622:case 14626:case 14630:case 14634:case 14638:case 14642:case 14646:case 14650:case 14654:case 14658:case 14662:case 14666:case 14670:case 14674:case 14678:case 14682:case 14686:case 14690:case 14694:case 14698:case 14702:case 14706:case 14710:case 14714:case 14718:case 14722:case 14726:case 14730:case 14734:case 14738:case 14742:case 14746:case 14750:case 14754:case 14431:case 14435:case 14439:case 14443:case 14447:case 14451:case 14455:case 14459:case 14463:case 14467:case 14471:case 14475:case 14479:case 14483:case 14487:case 14491:case 14495:case 14499:case 14503:case 14507:case 14511:case 14515:case 14519:case 14523:case 14527:case 14531:case 14535:case 14539:case 14543:case 14547:case 14551:case 14555:case 14559:case 14563:case 14567:case 14571:case 14575:case 14579:case 14583:case 14587:case 14591:case 14595:case 14599:case 14603:case 14607: return Type::DioriteWall; + case 10: return Type::Dirt; + case 243:case 236:case 244:case 237:case 245:case 238:case 239:case 240:case 241:case 234:case 242:case 235: return Type::Dispenser; + case 5155: return Type::DragonEgg; + case 6601:case 6602:case 6603:case 6604:case 6590:case 6591:case 6592:case 6593:case 6594:case 6595:case 6596:case 6597:case 6598:case 6599:case 6600:case 6605: return Type::DragonHead; + case 6607:case 6608:case 6606:case 6609: return Type::DragonWallHead; + case 9497: return Type::DriedKelpBlock; + case 6841:case 6842:case 6843:case 6844:case 6845:case 6846:case 6835:case 6836:case 6837:case 6838:case 6839:case 6840: return Type::Dropper; + case 5403: return Type::EmeraldBlock; + case 5250: return Type::EmeraldOre; + case 5132: return Type::EnchantingTable; + case 9224: return Type::EndGateway; + case 5145: return Type::EndPortal; + case 5147:case 5149:case 5151:case 5146:case 5148:case 5150:case 5152:case 5153: return Type::EndPortalFrame; + case 9060:case 9061:case 9058:case 9062:case 9059:case 9063: return Type::EndRod; + case 5154: return Type::EndStone; + case 10824:case 10821:case 10822:case 10819:case 10823:case 10820: return Type::EndStoneBrickSlab; + case 10087:case 10088:case 10089:case 10090:case 10091:case 10092:case 10093:case 10094:case 10095:case 10096:case 10097:case 10098:case 10099:case 10100:case 10101:case 10102:case 10103:case 10104:case 10105:case 10106:case 10107:case 10108:case 10109:case 10110:case 10111:case 10112:case 10113:case 10114:case 10115:case 10116:case 10117:case 10118:case 10119:case 10120:case 10121:case 10122:case 10123:case 10124:case 10125:case 10126:case 10127:case 10128:case 10129:case 10130:case 10131:case 10132:case 10133:case 10134:case 10135:case 10136:case 10137:case 10138:case 10139:case 10140:case 10141:case 10142:case 10143:case 10144:case 10145:case 10146:case 10147:case 10148:case 10069:case 10070:case 10071:case 10072:case 10073:case 10074:case 10075:case 10076:case 10077:case 10078:case 10079:case 10080:case 10081:case 10082:case 10083:case 10084:case 10085:case 10086: return Type::EndStoneBrickStairs; + case 14108:case 14112:case 14116:case 14120:case 14124:case 14128:case 14132:case 14136:case 14140:case 14144:case 14148:case 14152:case 14156:case 14160:case 14164:case 14168:case 14172:case 14176:case 14180:case 14184:case 14188:case 14192:case 14196:case 14200:case 14204:case 14208:case 14212:case 14216:case 14220:case 14224:case 14228:case 14232:case 14236:case 14240:case 14244:case 14248:case 14252:case 14256:case 14260:case 14264:case 14268:case 14272:case 14276:case 14280:case 14284:case 14288:case 14292:case 14296:case 14300:case 14304:case 14308:case 14312:case 14316:case 14320:case 14324:case 14328:case 14332:case 14336:case 14340:case 14344:case 14348:case 14352:case 14356:case 14360:case 14364:case 14368:case 14372:case 14376:case 14380:case 14384:case 14388:case 14392:case 14396:case 14400:case 14404:case 14408:case 14412:case 14416:case 14420:case 14424:case 14428:case 14109:case 14113:case 14117:case 14121:case 14125:case 14129:case 14133:case 14137:case 14141:case 14145:case 14149:case 14153:case 14157:case 14161:case 14165:case 14169:case 14173:case 14177:case 14181:case 14185:case 14189:case 14193:case 14197:case 14201:case 14205:case 14209:case 14213:case 14217:case 14221:case 14225:case 14229:case 14233:case 14237:case 14241:case 14245:case 14249:case 14253:case 14257:case 14261:case 14265:case 14269:case 14273:case 14277:case 14281:case 14285:case 14289:case 14293:case 14297:case 14301:case 14305:case 14309:case 14313:case 14317:case 14321:case 14325:case 14329:case 14333:case 14337:case 14341:case 14345:case 14349:case 14353:case 14357:case 14361:case 14365:case 14369:case 14373:case 14377:case 14381:case 14385:case 14389:case 14393:case 14397:case 14401:case 14405:case 14409:case 14413:case 14417:case 14421:case 14425:case 14429:case 14110:case 14114:case 14118:case 14122:case 14126:case 14130:case 14134:case 14138:case 14142:case 14146:case 14150:case 14154:case 14158:case 14162:case 14166:case 14170:case 14174:case 14178:case 14182:case 14186:case 14190:case 14194:case 14198:case 14202:case 14206:case 14210:case 14214:case 14218:case 14222:case 14226:case 14230:case 14234:case 14238:case 14242:case 14246:case 14250:case 14254:case 14258:case 14262:case 14266:case 14270:case 14274:case 14278:case 14282:case 14286:case 14290:case 14294:case 14298:case 14302:case 14306:case 14310:case 14314:case 14318:case 14322:case 14326:case 14330:case 14334:case 14338:case 14342:case 14346:case 14350:case 14354:case 14358:case 14362:case 14366:case 14370:case 14374:case 14378:case 14382:case 14386:case 14390:case 14394:case 14398:case 14402:case 14406:case 14410:case 14414:case 14418:case 14422:case 14426:case 14430:case 14107:case 14111:case 14115:case 14119:case 14123:case 14127:case 14131:case 14135:case 14139:case 14143:case 14147:case 14151:case 14155:case 14159:case 14163:case 14167:case 14171:case 14175:case 14179:case 14183:case 14187:case 14191:case 14195:case 14199:case 14203:case 14207:case 14211:case 14215:case 14219:case 14223:case 14227:case 14231:case 14235:case 14239:case 14243:case 14247:case 14251:case 14255:case 14259:case 14263:case 14267:case 14271:case 14275:case 14279:case 14283:case 14287:case 14291:case 14295:case 14299:case 14303:case 14307:case 14311:case 14315:case 14319:case 14323:case 14327:case 14331:case 14335:case 14339:case 14343:case 14347:case 14351:case 14355:case 14359:case 14363:case 14367:case 14371:case 14375:case 14379:case 14383:case 14387:case 14391:case 14395:case 14399:case 14403:case 14407:case 14411:case 14415:case 14419:case 14423:case 14427: return Type::EndStoneBrickWall; + case 9218: return Type::EndStoneBricks; + case 5252:case 5254:case 5256:case 5251:case 5253:case 5255:case 5257:case 5258: return Type::EnderChest; + case 3365:case 3366:case 3367:case 3368:case 3369:case 3370:case 3371:case 3372: return Type::Farmland; + case 1343: return Type::Fern; + case 1513:case 1769:case 1514:case 1770:case 1515:case 1771:case 1516:case 1772:case 1517:case 1773:case 1518:case 1774:case 1519:case 1775:case 1520:case 1776:case 1521:case 1777:case 1522:case 1778:case 1523:case 1779:case 1524:case 1780:case 1525:case 1781:case 1526:case 1782:case 1527:case 1783:case 1528:case 1784:case 1529:case 1785:case 1530:case 1786:case 1531:case 1787:case 1532:case 1788:case 1533:case 1789:case 1534:case 1790:case 1535:case 1791:case 1536:case 1792:case 1537:case 1793:case 1538:case 1794:case 1539:case 1795:case 1540:case 1796:case 1541:case 1797:case 1542:case 1798:case 1543:case 1799:case 1544:case 1800:case 1545:case 1801:case 1546:case 1802:case 1547:case 1803:case 1548:case 1804:case 1549:case 1805:case 1550:case 1806:case 1551:case 1807:case 1552:case 1808:case 1553:case 1809:case 1554:case 1810:case 1555:case 1811:case 1556:case 1812:case 1557:case 1813:case 1558:case 1814:case 1559:case 1815:case 1560:case 1816:case 1561:case 1817:case 1562:case 1818:case 1563:case 1819:case 1564:case 1820:case 1565:case 1821:case 1566:case 1822:case 1567:case 1823:case 1568:case 1824:case 1569:case 1825:case 1570:case 1826:case 1571:case 1827:case 1572:case 1828:case 1573:case 1829:case 1574:case 1830:case 1575:case 1831:case 1576:case 1832:case 1577:case 1833:case 1578:case 1834:case 1579:case 1835:case 1580:case 1836:case 1581:case 1837:case 1582:case 1838:case 1583:case 1839:case 1584:case 1840:case 1585:case 1841:case 1586:case 1842:case 1587:case 1843:case 1588:case 1844:case 1589:case 1845:case 1590:case 1846:case 1591:case 1847:case 1592:case 1848:case 1593:case 1849:case 1594:case 1850:case 1595:case 1851:case 1596:case 1852:case 1597:case 1853:case 1598:case 1854:case 1599:case 1855:case 1600:case 1856:case 1601:case 1857:case 1602:case 1858:case 1603:case 1859:case 1604:case 1860:case 1605:case 1861:case 1606:case 1862:case 1607:case 1863:case 1608:case 1864:case 1609:case 1865:case 1610:case 1866:case 1611:case 1867:case 1612:case 1868:case 1613:case 1869:case 1614:case 1870:case 1615:case 1871:case 1616:case 1872:case 1617:case 1873:case 1618:case 1874:case 1619:case 1875:case 1620:case 1876:case 1621:case 1877:case 1622:case 1878:case 1623:case 1879:case 1624:case 1880:case 1625:case 1881:case 1626:case 1882:case 1627:case 1883:case 1628:case 1884:case 1629:case 1885:case 1630:case 1886:case 1631:case 1887:case 1632:case 1888:case 1633:case 1889:case 1634:case 1890:case 1635:case 1891:case 1636:case 1892:case 1637:case 1893:case 1638:case 1894:case 1639:case 1895:case 1640:case 1896:case 1641:case 1897:case 1642:case 1898:case 1643:case 1899:case 1644:case 1900:case 1645:case 1901:case 1646:case 1902:case 1647:case 1903:case 1648:case 1904:case 1649:case 1905:case 1650:case 1906:case 1651:case 1907:case 1652:case 1908:case 1653:case 1909:case 1654:case 1910:case 1655:case 1911:case 1656:case 1912:case 1657:case 1913:case 1658:case 1914:case 1659:case 1915:case 1660:case 1916:case 1661:case 1917:case 1662:case 1918:case 1663:case 1919:case 1664:case 1920:case 1665:case 1921:case 1666:case 1922:case 1667:case 1923:case 1668:case 1924:case 1669:case 1925:case 1670:case 1926:case 1671:case 1927:case 1672:case 1928:case 1673:case 1929:case 1674:case 1930:case 1675:case 1931:case 1676:case 1932:case 1677:case 1933:case 1678:case 1934:case 1679:case 1935:case 1680:case 1936:case 1681:case 1937:case 1682:case 1938:case 1683:case 1939:case 1684:case 1940:case 1685:case 1941:case 1686:case 1942:case 1687:case 1943:case 1688:case 1944:case 1689:case 1945:case 1690:case 1946:case 1691:case 1947:case 1692:case 1948:case 1693:case 1949:case 1694:case 1950:case 1695:case 1440:case 1696:case 1441:case 1697:case 1442:case 1698:case 1443:case 1699:case 1444:case 1700:case 1445:case 1701:case 1446:case 1702:case 1447:case 1703:case 1448:case 1704:case 1449:case 1705:case 1450:case 1706:case 1451:case 1707:case 1452:case 1708:case 1453:case 1709:case 1454:case 1710:case 1455:case 1711:case 1456:case 1712:case 1457:case 1713:case 1458:case 1714:case 1459:case 1715:case 1460:case 1716:case 1461:case 1717:case 1462:case 1718:case 1463:case 1719:case 1464:case 1720:case 1465:case 1721:case 1466:case 1722:case 1467:case 1723:case 1468:case 1724:case 1469:case 1725:case 1470:case 1726:case 1471:case 1727:case 1472:case 1728:case 1473:case 1729:case 1474:case 1730:case 1475:case 1731:case 1476:case 1732:case 1477:case 1733:case 1478:case 1734:case 1479:case 1735:case 1480:case 1736:case 1481:case 1737:case 1482:case 1738:case 1483:case 1739:case 1484:case 1740:case 1485:case 1741:case 1486:case 1742:case 1487:case 1743:case 1488:case 1744:case 1489:case 1745:case 1490:case 1746:case 1491:case 1747:case 1492:case 1748:case 1493:case 1749:case 1494:case 1750:case 1495:case 1751:case 1496:case 1752:case 1497:case 1753:case 1498:case 1754:case 1499:case 1755:case 1500:case 1756:case 1501:case 1757:case 1502:case 1758:case 1503:case 1759:case 1504:case 1760:case 1505:case 1761:case 1506:case 1762:case 1507:case 1763:case 1508:case 1764:case 1509:case 1765:case 1510:case 1766:case 1511:case 1767:case 1512:case 1768:case 1951: return Type::Fire; + case 9536:case 9537: return Type::FireCoral; + case 9518: return Type::FireCoralBlock; + case 9556:case 9557: return Type::FireCoralFan; + case 9627:case 9624:case 9628:case 9625:case 9629:case 9626:case 9630:case 9631: return Type::FireCoralWallFan; + case 14820: return Type::FletchingTable; + case 6305: return Type::FlowerPot; + case 9249:case 9251:case 9250:case 9252: return Type::FrostedIce; + case 3379:case 3373:case 3374:case 3375:case 3376:case 3377:case 3378:case 3380: return Type::Furnace; + case 16664: return Type::GildedBlackstone; + case 231: return Type::Glass; + case 4761:case 4734:case 4738:case 4742:case 4746:case 4750:case 4754:case 4758:case 4731:case 4735:case 4739:case 4743:case 4747:case 4751:case 4755:case 4759:case 4732:case 4736:case 4740:case 4744:case 4748:case 4752:case 4756:case 4760:case 4733:case 4737:case 4741:case 4745:case 4749:case 4753:case 4757:case 4762: return Type::GlassPane; + case 4013: return Type::Glowstone; + case 1427: return Type::GoldBlock; + case 69: return Type::GoldOre; + case 2: return Type::Granite; + case 10838:case 10842:case 10839:case 10840:case 10837:case 10841: return Type::GraniteSlab; + case 10468:case 10389:case 10390:case 10391:case 10392:case 10393:case 10394:case 10395:case 10396:case 10397:case 10398:case 10399:case 10400:case 10401:case 10402:case 10403:case 10404:case 10405:case 10406:case 10407:case 10408:case 10409:case 10410:case 10411:case 10412:case 10413:case 10414:case 10415:case 10416:case 10417:case 10418:case 10419:case 10420:case 10421:case 10422:case 10423:case 10424:case 10425:case 10426:case 10427:case 10428:case 10429:case 10430:case 10431:case 10432:case 10433:case 10434:case 10435:case 10436:case 10437:case 10438:case 10439:case 10440:case 10441:case 10442:case 10443:case 10444:case 10445:case 10446:case 10447:case 10448:case 10449:case 10450:case 10451:case 10452:case 10453:case 10454:case 10455:case 10456:case 10457:case 10458:case 10459:case 10460:case 10461:case 10462:case 10463:case 10464:case 10465:case 10466:case 10467: return Type::GraniteStairs; + case 12164:case 12168:case 12172:case 12176:case 12180:case 12184:case 12188:case 12192:case 12196:case 12200:case 12204:case 12208:case 12212:case 12216:case 12220:case 12224:case 12228:case 12232:case 12236:case 12240:case 12244:case 12248:case 12252:case 12256:case 12260:case 12264:case 12268:case 12272:case 12276:case 12280:case 12284:case 12288:case 12292:case 12296:case 12300:case 12304:case 12308:case 12312:case 12316:case 12320:case 12324:case 12328:case 12332:case 12336:case 12340:case 12344:case 12348:case 12352:case 12356:case 12360:case 12364:case 12368:case 12372:case 12376:case 12380:case 12384:case 12388:case 12392:case 12396:case 12400:case 12404:case 12408:case 12412:case 12416:case 12420:case 12424:case 12428:case 12432:case 12436:case 12440:case 12444:case 12448:case 12452:case 12456:case 12460:case 12464:case 12468:case 12472:case 12476:case 12480:case 12484:case 12165:case 12169:case 12173:case 12177:case 12181:case 12185:case 12189:case 12193:case 12197:case 12201:case 12205:case 12209:case 12213:case 12217:case 12221:case 12225:case 12229:case 12233:case 12237:case 12241:case 12245:case 12249:case 12253:case 12257:case 12261:case 12265:case 12269:case 12273:case 12277:case 12281:case 12285:case 12289:case 12293:case 12297:case 12301:case 12305:case 12309:case 12313:case 12317:case 12321:case 12325:case 12329:case 12333:case 12337:case 12341:case 12345:case 12349:case 12353:case 12357:case 12361:case 12365:case 12369:case 12373:case 12377:case 12381:case 12385:case 12389:case 12393:case 12397:case 12401:case 12405:case 12409:case 12413:case 12417:case 12421:case 12425:case 12429:case 12433:case 12437:case 12441:case 12445:case 12449:case 12453:case 12457:case 12461:case 12465:case 12469:case 12473:case 12477:case 12481:case 12485:case 12166:case 12170:case 12174:case 12178:case 12182:case 12186:case 12190:case 12194:case 12198:case 12202:case 12206:case 12210:case 12214:case 12218:case 12222:case 12226:case 12230:case 12234:case 12238:case 12242:case 12246:case 12250:case 12254:case 12258:case 12262:case 12266:case 12270:case 12274:case 12278:case 12282:case 12286:case 12290:case 12294:case 12298:case 12302:case 12306:case 12310:case 12314:case 12318:case 12322:case 12326:case 12330:case 12334:case 12338:case 12342:case 12346:case 12350:case 12354:case 12358:case 12362:case 12366:case 12370:case 12374:case 12378:case 12382:case 12386:case 12390:case 12394:case 12398:case 12402:case 12406:case 12410:case 12414:case 12418:case 12422:case 12426:case 12430:case 12434:case 12438:case 12442:case 12446:case 12450:case 12454:case 12458:case 12462:case 12466:case 12470:case 12474:case 12478:case 12482:case 12486:case 12163:case 12167:case 12171:case 12175:case 12179:case 12183:case 12187:case 12191:case 12195:case 12199:case 12203:case 12207:case 12211:case 12215:case 12219:case 12223:case 12227:case 12231:case 12235:case 12239:case 12243:case 12247:case 12251:case 12255:case 12259:case 12263:case 12267:case 12271:case 12275:case 12279:case 12283:case 12287:case 12291:case 12295:case 12299:case 12303:case 12307:case 12311:case 12315:case 12319:case 12323:case 12327:case 12331:case 12335:case 12339:case 12343:case 12347:case 12351:case 12355:case 12359:case 12363:case 12367:case 12371:case 12375:case 12379:case 12383:case 12387:case 12391:case 12395:case 12399:case 12403:case 12407:case 12411:case 12415:case 12419:case 12423:case 12427:case 12431:case 12435:case 12439:case 12443:case 12447:case 12451:case 12455:case 12459:case 12463:case 12467:case 12471:case 12475:case 12479:case 12483: return Type::GraniteWall; + case 1342: return Type::Grass; + case 8:case 9: return Type::GrassBlock; + case 9223: return Type::GrassPath; + case 68: return Type::Gravel; + case 8011:case 8012:case 8013:case 8014:case 8015:case 8016:case 8017:case 8018:case 8019:case 8020:case 8021:case 8022:case 8023:case 8009:case 8010:case 8024: return Type::GrayBanner; + case 1167:case 1171:case 1175:case 1164:case 1168:case 1172:case 1161:case 1165:case 1169:case 1173:case 1162:case 1166:case 1170:case 1174:case 1163:case 1176: return Type::GrayBed; + case 7873: return Type::GrayCarpet; + case 9445: return Type::GrayConcrete; + case 9461: return Type::GrayConcretePowder; + case 9402:case 9404:case 9403:case 9405: return Type::GrayGlazedTerracotta; + case 9323:case 9320:case 9324:case 9321:case 9325:case 9322: return Type::GrayShulkerBox; + case 4102: return Type::GrayStainedGlass; + case 7117:case 7090:case 7094:case 7098:case 7102:case 7106:case 7110:case 7114:case 7087:case 7091:case 7095:case 7099:case 7103:case 7107:case 7111:case 7115:case 7088:case 7092:case 7096:case 7100:case 7104:case 7108:case 7112:case 7116:case 7089:case 7093:case 7097:case 7101:case 7105:case 7109:case 7113:case 7118: return Type::GrayStainedGlassPane; + case 6854: return Type::GrayTerracotta; + case 8182:case 8183:case 8181:case 8184: return Type::GrayWallBanner; + case 1391: return Type::GrayWool; + case 8116:case 8117:case 8118:case 8119:case 8105:case 8106:case 8107:case 8108:case 8109:case 8110:case 8111:case 8112:case 8113:case 8114:case 8115:case 8120: return Type::GreenBanner; + case 1257:case 1261:case 1265:case 1269:case 1258:case 1262:case 1266:case 1270:case 1259:case 1263:case 1267:case 1271:case 1260:case 1264:case 1268:case 1272: return Type::GreenBed; + case 7879: return Type::GreenCarpet; + case 9451: return Type::GreenConcrete; + case 9467: return Type::GreenConcretePowder; + case 9426:case 9428:case 9427:case 9429: return Type::GreenGlazedTerracotta; + case 9361:case 9358:case 9359:case 9356:case 9360:case 9357: return Type::GreenShulkerBox; + case 4108: return Type::GreenStainedGlass; + case 7303:case 7307:case 7280:case 7284:case 7288:case 7292:case 7296:case 7300:case 7304:case 7308:case 7281:case 7285:case 7289:case 7293:case 7297:case 7301:case 7305:case 7309:case 7282:case 7286:case 7290:case 7294:case 7298:case 7302:case 7306:case 7279:case 7283:case 7287:case 7291:case 7295:case 7299:case 7310: return Type::GreenStainedGlassPane; + case 6860: return Type::GreenTerracotta; + case 8205:case 8207:case 8206:case 8208: return Type::GreenWallBanner; + case 1397: return Type::GreenWool; + case 14822:case 14824:case 14826:case 14828:case 14830:case 14832:case 14821:case 14823:case 14825:case 14827:case 14829:case 14831: return Type::Grindstone; + case 7864:case 7865:case 7863: return Type::HayBale; + case 6676:case 6662:case 6663:case 6664:case 6665:case 6666:case 6667:case 6668:case 6669:case 6670:case 6671:case 6672:case 6673:case 6674:case 6675:case 6677: return Type::HeavyWeightedPressurePlate; + case 15824: return Type::HoneyBlock; + case 15825: return Type::HoneycombBlock; + case 6736:case 6737:case 6728:case 6729:case 6730:case 6731:case 6732:case 6733:case 6734:case 6735: return Type::Hopper; + case 9538:case 9539: return Type::HornCoral; + case 9519: return Type::HornCoralBlock; + case 9558:case 9559: return Type::HornCoralFan; + case 9634:case 9638:case 9635:case 9632:case 9636:case 9633:case 9637:case 9639: return Type::HornCoralWallFan; + case 3929: return Type::Ice; + case 4504: return Type::InfestedChiseledStoneBricks; + case 4500: return Type::InfestedCobblestone; + case 4503: return Type::InfestedCrackedStoneBricks; + case 4502: return Type::InfestedMossyStoneBricks; + case 4499: return Type::InfestedStone; + case 4501: return Type::InfestedStoneBricks; + case 4699:case 4703:case 4707:case 4711:case 4715:case 4719:case 4723:case 4727:case 4700:case 4704:case 4708:case 4712:case 4716:case 4720:case 4724:case 4697:case 4701:case 4705:case 4709:case 4713:case 4717:case 4721:case 4725:case 4698:case 4702:case 4706:case 4710:case 4714:case 4718:case 4722:case 4726:case 4728: return Type::IronBars; + case 1428: return Type::IronBlock; + case 3862:case 3870:case 3815:case 3823:case 3831:case 3839:case 3847:case 3855:case 3863:case 3871:case 3816:case 3824:case 3832:case 3840:case 3848:case 3856:case 3864:case 3809:case 3817:case 3825:case 3833:case 3841:case 3849:case 3857:case 3865:case 3810:case 3818:case 3826:case 3834:case 3842:case 3850:case 3858:case 3866:case 3811:case 3819:case 3827:case 3835:case 3843:case 3851:case 3859:case 3867:case 3812:case 3820:case 3828:case 3836:case 3844:case 3852:case 3860:case 3868:case 3813:case 3821:case 3829:case 3837:case 3845:case 3853:case 3861:case 3869:case 3814:case 3822:case 3830:case 3838:case 3846:case 3854:case 3872: return Type::IronDoor; + case 70: return Type::IronOre; + case 7597:case 7550:case 7566:case 7582:case 7598:case 7551:case 7567:case 7583:case 7599:case 7552:case 7568:case 7584:case 7537:case 7553:case 7569:case 7585:case 7538:case 7554:case 7570:case 7586:case 7539:case 7555:case 7571:case 7587:case 7540:case 7556:case 7572:case 7588:case 7541:case 7557:case 7573:case 7589:case 7542:case 7558:case 7574:case 7590:case 7543:case 7559:case 7575:case 7591:case 7544:case 7560:case 7576:case 7592:case 7545:case 7561:case 7577:case 7593:case 7546:case 7562:case 7578:case 7594:case 7547:case 7563:case 7579:case 7595:case 7548:case 7564:case 7580:case 7596:case 7549:case 7565:case 7581:case 7600: return Type::IronTrapdoor; + case 4021:case 4020:case 4022:case 4023: return Type::JackOLantern; + case 15750:case 15739:case 15741:case 15743:case 15745:case 15747:case 15749:case 15740:case 15742:case 15744:case 15746:case 15748: return Type::Jigsaw; + case 3964:case 3965: return Type::Jukebox; + case 6435:case 6439:case 6420:case 6424:case 6428:case 6432:case 6436:case 6440:case 6421:case 6425:case 6429:case 6433:case 6437:case 6441:case 6418:case 6422:case 6426:case 6430:case 6434:case 6438:case 6419:case 6423:case 6427:case 6431: return Type::JungleButton; + case 8892:case 8924:case 8893:case 8925:case 8894:case 8926:case 8895:case 8927:case 8896:case 8928:case 8897:case 8866:case 8898:case 8867:case 8899:case 8868:case 8900:case 8869:case 8901:case 8870:case 8902:case 8871:case 8903:case 8872:case 8904:case 8873:case 8905:case 8874:case 8906:case 8875:case 8907:case 8876:case 8908:case 8877:case 8909:case 8878:case 8910:case 8879:case 8911:case 8880:case 8912:case 8881:case 8913:case 8882:case 8914:case 8883:case 8915:case 8884:case 8916:case 8885:case 8917:case 8886:case 8918:case 8887:case 8919:case 8888:case 8920:case 8889:case 8921:case 8890:case 8922:case 8891:case 8923:case 8929: return Type::JungleDoor; + case 8646:case 8654:case 8662:case 8670:case 8647:case 8655:case 8663:case 8671:case 8648:case 8656:case 8664:case 8672:case 8649:case 8657:case 8665:case 8642:case 8650:case 8658:case 8666:case 8643:case 8651:case 8659:case 8667:case 8644:case 8652:case 8660:case 8668:case 8645:case 8653:case 8661:case 8669:case 8673: return Type::JungleFence; + case 8491:case 8499:case 8507:case 8484:case 8492:case 8500:case 8508:case 8485:case 8493:case 8501:case 8509:case 8486:case 8494:case 8502:case 8510:case 8487:case 8495:case 8503:case 8511:case 8488:case 8496:case 8504:case 8512:case 8489:case 8497:case 8505:case 8482:case 8490:case 8498:case 8506:case 8483:case 8513: return Type::JungleFenceGate; + case 198:case 191:case 199:case 192:case 200:case 193:case 194:case 187:case 195:case 188:case 196:case 189:case 197:case 190: return Type::JungleLeaves; + case 82:case 83:case 84: return Type::JungleLog; + case 18: return Type::JunglePlanks; + case 3879:case 3880: return Type::JunglePressurePlate; + case 27:case 28: return Type::JungleSapling; + case 3514:case 3516:case 3518:case 3520:case 3522:case 3524:case 3526:case 3528:case 3530:case 3532:case 3534:case 3536:case 3538:case 3509:case 3511:case 3513:case 3515:case 3517:case 3519:case 3521:case 3523:case 3525:case 3527:case 3529:case 3531:case 3533:case 3535:case 3537:case 3539:case 3510:case 3512:case 3540: return Type::JungleSign; + case 8318:case 8322:case 8319:case 8323:case 8320:case 8321: return Type::JungleSlab; + case 5584:case 5585:case 5586:case 5587:case 5588:case 5589:case 5590:case 5591:case 5592:case 5593:case 5594:case 5595:case 5596:case 5597:case 5598:case 5599:case 5600:case 5601:case 5602:case 5603:case 5604:case 5605:case 5606:case 5607:case 5608:case 5609:case 5610:case 5611:case 5612:case 5613:case 5614:case 5615:case 5616:case 5617:case 5618:case 5619:case 5620:case 5621:case 5622:case 5623:case 5624:case 5625:case 5626:case 5627:case 5564:case 5628:case 5565:case 5629:case 5566:case 5630:case 5567:case 5631:case 5568:case 5632:case 5569:case 5633:case 5570:case 5634:case 5571:case 5635:case 5572:case 5636:case 5573:case 5637:case 5574:case 5638:case 5575:case 5639:case 5576:case 5640:case 5577:case 5641:case 5578:case 5642:case 5579:case 5643:case 5580:case 5581:case 5582:case 5583: return Type::JungleStairs; + case 4321:case 4337:case 4353:case 4306:case 4322:case 4338:case 4354:case 4307:case 4323:case 4339:case 4355:case 4308:case 4324:case 4340:case 4356:case 4309:case 4325:case 4341:case 4357:case 4310:case 4326:case 4342:case 4358:case 4311:case 4327:case 4343:case 4359:case 4312:case 4328:case 4344:case 4360:case 4313:case 4329:case 4345:case 4361:case 4314:case 4330:case 4346:case 4362:case 4315:case 4331:case 4347:case 4363:case 4316:case 4332:case 4348:case 4364:case 4317:case 4333:case 4349:case 4365:case 4318:case 4334:case 4350:case 4303:case 4319:case 4335:case 4351:case 4304:case 4320:case 4336:case 4352:case 4305:case 4366: return Type::JungleTrapdoor; + case 3771:case 3772:case 3773:case 3767:case 3768:case 3769:case 3770:case 3774: return Type::JungleWallSign; + case 118:case 119:case 120: return Type::JungleWood; + case 9483:case 9491:case 9476:case 9484:case 9492:case 9477:case 9485:case 9493:case 9470:case 9478:case 9486:case 9494:case 9471:case 9479:case 9487:case 9495:case 9472:case 9480:case 9488:case 9473:case 9481:case 9489:case 9474:case 9482:case 9490:case 9475: return Type::Kelp; + case 9496: return Type::KelpPlant; + case 3638:case 3639:case 3640:case 3641:case 3642:case 3643:case 3637:case 3644: return Type::Ladder; + case 14886:case 14887: return Type::Lantern; + case 233: return Type::LapisBlock; + case 232: return Type::LapisOre; + case 7895:case 7896: return Type::LargeFern; + case 61:case 63:case 50:case 52:case 54:case 56:case 58:case 60:case 62:case 64:case 51:case 53:case 55:case 57:case 59:case 65: return Type::Lava; + case 14835:case 14837:case 14839:case 14841:case 14843:case 14845:case 14847:case 14834:case 14836:case 14838:case 14840:case 14842:case 14844:case 14846:case 14833:case 14848: return Type::Lectern; + case 3793:case 3795:case 3797:case 3799:case 3801:case 3803:case 3805:case 3784:case 3786:case 3788:case 3790:case 3792:case 3794:case 3796:case 3798:case 3800:case 3802:case 3804:case 3806:case 3783:case 3785:case 3787:case 3789:case 3791: return Type::Lever; + case 7951:case 7952:case 7953:case 7954:case 7955:case 7956:case 7957:case 7958:case 7959:case 7945:case 7946:case 7947:case 7948:case 7949:case 7950:case 7960: return Type::LightBlueBanner; + case 1107:case 1111:case 1100:case 1104:case 1108:case 1097:case 1101:case 1105:case 1109:case 1098:case 1102:case 1106:case 1110:case 1099:case 1103:case 1112: return Type::LightBlueBed; + case 7869: return Type::LightBlueCarpet; + case 9441: return Type::LightBlueConcrete; + case 9457: return Type::LightBlueConcretePowder; + case 9387:case 9386:case 9388:case 9389: return Type::LightBlueGlazedTerracotta; + case 9298:case 9299:case 9296:case 9300:case 9297:case 9301: return Type::LightBlueShulkerBox; + case 4098: return Type::LightBlueStainedGlass; + case 6962:case 6966:case 6970:case 6974:case 6978:case 6982:case 6986:case 6959:case 6963:case 6967:case 6971:case 6975:case 6979:case 6983:case 6987:case 6960:case 6964:case 6968:case 6972:case 6976:case 6980:case 6984:case 6988:case 6961:case 6965:case 6969:case 6973:case 6977:case 6981:case 6985:case 6989:case 6990: return Type::LightBlueStainedGlassPane; + case 6850: return Type::LightBlueTerracotta; + case 8167:case 8165:case 8166:case 8168: return Type::LightBlueWallBanner; + case 1387: return Type::LightBlueWool; + case 8026:case 8027:case 8028:case 8029:case 8030:case 8031:case 8032:case 8033:case 8034:case 8035:case 8036:case 8037:case 8038:case 8039:case 8025:case 8040: return Type::LightGrayBanner; + case 1182:case 1186:case 1190:case 1179:case 1183:case 1187:case 1191:case 1180:case 1184:case 1188:case 1177:case 1181:case 1185:case 1189:case 1178:case 1192: return Type::LightGrayBed; + case 7874: return Type::LightGrayCarpet; + case 9446: return Type::LightGrayConcrete; + case 9462: return Type::LightGrayConcretePowder; + case 9408:case 9407:case 9406:case 9409: return Type::LightGrayGlazedTerracotta; + case 9326:case 9330:case 9327:case 9331:case 9328:case 9329: return Type::LightGrayShulkerBox; + case 4103: return Type::LightGrayStainedGlass; + case 7148:case 7121:case 7125:case 7129:case 7133:case 7137:case 7141:case 7145:case 7149:case 7122:case 7126:case 7130:case 7134:case 7138:case 7142:case 7146:case 7119:case 7123:case 7127:case 7131:case 7135:case 7139:case 7143:case 7147:case 7120:case 7124:case 7128:case 7132:case 7136:case 7140:case 7144:case 7150: return Type::LightGrayStainedGlassPane; + case 6855: return Type::LightGrayTerracotta; + case 8185:case 8186:case 8187:case 8188: return Type::LightGrayWallBanner; + case 1392: return Type::LightGrayWool; + case 6646:case 6647:case 6648:case 6649:case 6650:case 6651:case 6652:case 6653:case 6654:case 6655:case 6656:case 6657:case 6658:case 6659:case 6660:case 6661: return Type::LightWeightedPressurePlate; + case 7887:case 7888: return Type::Lilac; + case 1424: return Type::LilyOfTheValley; + case 5014: return Type::LilyPad; + case 7981:case 7982:case 7983:case 7984:case 7985:case 7986:case 7987:case 7988:case 7989:case 7990:case 7991:case 7977:case 7978:case 7979:case 7980:case 7992: return Type::LimeBanner; + case 1137:case 1141:case 1130:case 1134:case 1138:case 1142:case 1131:case 1135:case 1139:case 1143:case 1132:case 1136:case 1140:case 1129:case 1133:case 1144: return Type::LimeBed; + case 7871: return Type::LimeCarpet; + case 9443: return Type::LimeConcrete; + case 9459: return Type::LimeConcretePowder; + case 9396:case 9395:case 9394:case 9397: return Type::LimeGlazedTerracotta; + case 9312:case 9309:case 9313:case 9310:case 9311:case 9308: return Type::LimeShulkerBox; + case 4100: return Type::LimeStainedGlass; + case 7024:case 7028:case 7032:case 7036:case 7040:case 7044:case 7048:case 7052:case 7025:case 7029:case 7033:case 7037:case 7041:case 7045:case 7049:case 7053:case 7026:case 7030:case 7034:case 7038:case 7042:case 7046:case 7050:case 7023:case 7027:case 7031:case 7035:case 7039:case 7043:case 7047:case 7051:case 7054: return Type::LimeStainedGlassPane; + case 6852: return Type::LimeTerracotta; + case 8173:case 8174:case 8175:case 8176: return Type::LimeWallBanner; + case 1389: return Type::LimeWool; + case 15838: return Type::Lodestone; + case 14787:case 14789:case 14788:case 14790: return Type::Loom; + case 7936:case 7937:case 7938:case 7939:case 7940:case 7941:case 7942:case 7943:case 7929:case 7930:case 7931:case 7932:case 7933:case 7934:case 7935:case 7944: return Type::MagentaBanner; + case 1092:case 1081:case 1085:case 1089:case 1093:case 1082:case 1086:case 1090:case 1094:case 1083:case 1087:case 1091:case 1095:case 1084:case 1088:case 1096: return Type::MagentaBed; + case 7868: return Type::MagentaCarpet; + case 9440: return Type::MagentaConcrete; + case 9456: return Type::MagentaConcretePowder; + case 9384:case 9383:case 9382:case 9385: return Type::MagentaGlazedTerracotta; + case 9291:case 9295:case 9292:case 9293:case 9290:case 9294: return Type::MagentaShulkerBox; + case 4097: return Type::MagentaStainedGlass; + case 6931:case 6935:case 6939:case 6943:case 6947:case 6951:case 6955:case 6928:case 6932:case 6936:case 6940:case 6944:case 6948:case 6952:case 6956:case 6929:case 6933:case 6937:case 6941:case 6945:case 6949:case 6953:case 6957:case 6930:case 6934:case 6938:case 6942:case 6946:case 6950:case 6954:case 6927:case 6958: return Type::MagentaStainedGlassPane; + case 6849: return Type::MagentaTerracotta; + case 8161:case 8162:case 8163:case 8164: return Type::MagentaWallBanner; + case 1386: return Type::MagentaWool; + case 9253: return Type::MagmaBlock; + case 4763: return Type::Melon; + case 4783:case 4785:case 4780:case 4782:case 4784:case 4786:case 4781:case 4787: return Type::MelonStem; + case 1433: return Type::MossyCobblestone; + case 10817:case 10814:case 10818:case 10815:case 10816:case 10813: return Type::MossyCobblestoneSlab; + case 9989:case 9990:case 9991:case 9992:case 9993:case 9994:case 9995:case 9996:case 9997:case 9998:case 9999:case 10000:case 10001:case 10002:case 10003:case 10004:case 10005:case 10006:case 10007:case 10008:case 10009:case 10010:case 10011:case 10012:case 10013:case 10014:case 10015:case 10016:case 10017:case 10018:case 10019:case 10020:case 10021:case 10022:case 10023:case 10024:case 10025:case 10026:case 10027:case 10028:case 10029:case 10030:case 10031:case 10032:case 10033:case 10034:case 10035:case 10036:case 10037:case 10038:case 10039:case 10040:case 10041:case 10042:case 10043:case 10044:case 10045:case 10046:case 10047:case 10048:case 10049:case 10050:case 10051:case 10052:case 10053:case 10054:case 10055:case 10056:case 10057:case 10058:case 10059:case 10060:case 10061:case 10062:case 10063:case 10064:case 10065:case 10066:case 10067:case 10068: return Type::MossyCobblestoneStairs; + case 6036:case 6038:case 6040:case 6042:case 6044:case 6046:case 6048:case 6050:case 6052:case 6054:case 6056:case 6058:case 6060:case 6062:case 6064:case 6066:case 6068:case 6070:case 6072:case 6074:case 6076:case 6078:case 6080:case 6082:case 6084:case 6086:case 6088:case 6090:case 6092:case 6094:case 6096:case 6098:case 6100:case 6102:case 6104:case 6106:case 6108:case 6110:case 6112:case 6114:case 6116:case 6118:case 6120:case 6122:case 6124:case 6126:case 6128:case 6130:case 6132:case 6134:case 6136:case 6138:case 6140:case 6142:case 6144:case 6146:case 6148:case 6150:case 6152:case 6154:case 6156:case 6158:case 6160:case 6162:case 6164:case 6166:case 6168:case 6170:case 6172:case 6174:case 6176:case 6178:case 6180:case 6182:case 6184:case 6186:case 6188:case 6190:case 6192:case 6194:case 6196:case 6198:case 6200:case 6202:case 6204:case 6206:case 6208:case 6210:case 6212:case 6214:case 6216:case 6218:case 6220:case 6222:case 6224:case 6226:case 6228:case 6230:case 6232:case 6234:case 6236:case 6238:case 6240:case 6242:case 6244:case 6246:case 6248:case 6250:case 6252:case 6254:case 6256:case 6258:case 6260:case 6262:case 6264:case 6266:case 6268:case 6270:case 6272:case 6274:case 6276:case 6278:case 6280:case 6282:case 6284:case 6286:case 6288:case 6290:case 6292:case 6294:case 6296:case 6298:case 6300:case 6302:case 6304:case 5981:case 5983:case 5985:case 5987:case 5989:case 5991:case 5993:case 5995:case 5997:case 5999:case 6001:case 6003:case 6005:case 6007:case 6009:case 6011:case 6013:case 6015:case 6017:case 6019:case 6021:case 6023:case 6025:case 6027:case 6029:case 6031:case 6033:case 6035:case 6037:case 6039:case 6041:case 6043:case 6045:case 6047:case 6049:case 6051:case 6053:case 6055:case 6057:case 6059:case 6061:case 6063:case 6065:case 6067:case 6069:case 6071:case 6073:case 6075:case 6077:case 6079:case 6081:case 6083:case 6085:case 6087:case 6089:case 6091:case 6093:case 6095:case 6097:case 6099:case 6101:case 6103:case 6105:case 6107:case 6109:case 6111:case 6113:case 6115:case 6117:case 6119:case 6121:case 6123:case 6125:case 6127:case 6129:case 6131:case 6133:case 6135:case 6137:case 6139:case 6141:case 6143:case 6145:case 6147:case 6149:case 6151:case 6153:case 6155:case 6157:case 6159:case 6161:case 6163:case 6165:case 6167:case 6169:case 6171:case 6173:case 6175:case 6177:case 6179:case 6181:case 6183:case 6185:case 6187:case 6189:case 6191:case 6193:case 6195:case 6197:case 6199:case 6201:case 6203:case 6205:case 6207:case 6209:case 6211:case 6213:case 6215:case 6217:case 6219:case 6221:case 6223:case 6225:case 6227:case 6229:case 6231:case 6233:case 6235:case 6237:case 6239:case 6241:case 6243:case 6245:case 6247:case 6249:case 6251:case 6253:case 6255:case 6257:case 6259:case 6261:case 6263:case 6265:case 6267:case 6269:case 6271:case 6273:case 6275:case 6277:case 6279:case 6281:case 6283:case 6285:case 6287:case 6289:case 6291:case 6293:case 6295:case 6297:case 6299:case 6301:case 6303:case 5982:case 5984:case 5986:case 5988:case 5990:case 5992:case 5994:case 5996:case 5998:case 6000:case 6002:case 6004:case 6006:case 6008:case 6010:case 6012:case 6014:case 6016:case 6018:case 6020:case 6022:case 6024:case 6026:case 6028:case 6030:case 6032:case 6034: return Type::MossyCobblestoneWall; + case 10803:case 10804:case 10801:case 10805:case 10802:case 10806: return Type::MossyStoneBrickSlab; + case 9833:case 9834:case 9835:case 9836:case 9837:case 9838:case 9839:case 9840:case 9841:case 9842:case 9843:case 9844:case 9845:case 9846:case 9847:case 9848:case 9849:case 9850:case 9851:case 9852:case 9853:case 9854:case 9855:case 9856:case 9857:case 9858:case 9859:case 9860:case 9861:case 9862:case 9863:case 9864:case 9865:case 9866:case 9867:case 9868:case 9869:case 9870:case 9871:case 9872:case 9873:case 9874:case 9875:case 9876:case 9877:case 9878:case 9879:case 9880:case 9881:case 9882:case 9883:case 9884:case 9885:case 9886:case 9887:case 9888:case 9889:case 9890:case 9891:case 9892:case 9893:case 9894:case 9895:case 9896:case 9897:case 9898:case 9899:case 9900:case 9901:case 9902:case 9903:case 9904:case 9905:case 9906:case 9907:case 9908:case 9829:case 9830:case 9831:case 9832: return Type::MossyStoneBrickStairs; + case 12056:case 12060:case 12064:case 12068:case 12072:case 12076:case 12080:case 12084:case 12088:case 12092:case 12096:case 12100:case 12104:case 12108:case 12112:case 12116:case 12120:case 12124:case 12128:case 12132:case 12136:case 12140:case 12144:case 12148:case 12152:case 12156:case 12160:case 11841:case 11845:case 11849:case 11853:case 11857:case 11861:case 11865:case 11869:case 11873:case 11877:case 11881:case 11885:case 11889:case 11893:case 11897:case 11901:case 11905:case 11909:case 11913:case 11917:case 11921:case 11925:case 11929:case 11933:case 11937:case 11941:case 11945:case 11949:case 11953:case 11957:case 11961:case 11965:case 11969:case 11973:case 11977:case 11981:case 11985:case 11989:case 11993:case 11997:case 12001:case 12005:case 12009:case 12013:case 12017:case 12021:case 12025:case 12029:case 12033:case 12037:case 12041:case 12045:case 12049:case 12053:case 12057:case 12061:case 12065:case 12069:case 12073:case 12077:case 12081:case 12085:case 12089:case 12093:case 12097:case 12101:case 12105:case 12109:case 12113:case 12117:case 12121:case 12125:case 12129:case 12133:case 12137:case 12141:case 12145:case 12149:case 12153:case 12157:case 12161:case 11842:case 11846:case 11850:case 11854:case 11858:case 11862:case 11866:case 11870:case 11874:case 11878:case 11882:case 11886:case 11890:case 11894:case 11898:case 11902:case 11906:case 11910:case 11914:case 11918:case 11922:case 11926:case 11930:case 11934:case 11938:case 11942:case 11946:case 11950:case 11954:case 11958:case 11962:case 11966:case 11970:case 11974:case 11978:case 11982:case 11986:case 11990:case 11994:case 11998:case 12002:case 12006:case 12010:case 12014:case 12018:case 12022:case 12026:case 12030:case 12034:case 12038:case 12042:case 12046:case 12050:case 12054:case 12058:case 12062:case 12066:case 12070:case 12074:case 12078:case 12082:case 12086:case 12090:case 12094:case 12098:case 12102:case 12106:case 12110:case 12114:case 12118:case 12122:case 12126:case 12130:case 12134:case 12138:case 12142:case 12146:case 12150:case 12154:case 12158:case 12162:case 11839:case 11843:case 11847:case 11851:case 11855:case 11859:case 11863:case 11867:case 11871:case 11875:case 11879:case 11883:case 11887:case 11891:case 11895:case 11899:case 11903:case 11907:case 11911:case 11915:case 11919:case 11923:case 11927:case 11931:case 11935:case 11939:case 11943:case 11947:case 11951:case 11955:case 11959:case 11963:case 11967:case 11971:case 11975:case 11979:case 11983:case 11987:case 11991:case 11995:case 11999:case 12003:case 12007:case 12011:case 12015:case 12019:case 12023:case 12027:case 12031:case 12035:case 12039:case 12043:case 12047:case 12051:case 12055:case 12059:case 12063:case 12067:case 12071:case 12075:case 12079:case 12083:case 12087:case 12091:case 12095:case 12099:case 12103:case 12107:case 12111:case 12115:case 12119:case 12123:case 12127:case 12131:case 12135:case 12139:case 12143:case 12147:case 12151:case 12155:case 12159:case 11840:case 11844:case 11848:case 11852:case 11856:case 11860:case 11864:case 11868:case 11872:case 11876:case 11880:case 11884:case 11888:case 11892:case 11896:case 11900:case 11904:case 11908:case 11912:case 11916:case 11920:case 11924:case 11928:case 11932:case 11936:case 11940:case 11944:case 11948:case 11952:case 11956:case 11960:case 11964:case 11968:case 11972:case 11976:case 11980:case 11984:case 11988:case 11992:case 11996:case 12000:case 12004:case 12008:case 12012:case 12016:case 12020:case 12024:case 12028:case 12032:case 12036:case 12040:case 12044:case 12048:case 12052: return Type::MossyStoneBrickWall; + case 4496: return Type::MossyStoneBricks; + case 1407:case 1411:case 1400:case 1404:case 1408:case 1401:case 1405:case 1409:case 1402:case 1406:case 1410:case 1403: return Type::MovingPiston; + case 4636:case 4652:case 4668:case 4684:case 4637:case 4653:case 4669:case 4685:case 4638:case 4654:case 4670:case 4686:case 4639:case 4655:case 4671:case 4687:case 4640:case 4656:case 4672:case 4688:case 4641:case 4657:case 4673:case 4689:case 4642:case 4658:case 4674:case 4690:case 4643:case 4659:case 4675:case 4691:case 4644:case 4660:case 4676:case 4692:case 4645:case 4661:case 4677:case 4693:case 4646:case 4662:case 4678:case 4694:case 4647:case 4663:case 4679:case 4695:case 4648:case 4664:case 4680:case 4633:case 4649:case 4665:case 4681:case 4634:case 4650:case 4666:case 4682:case 4635:case 4651:case 4667:case 4683:case 4696: return Type::MushroomStem; + case 5012:case 5013: return Type::Mycelium; + case 5040:case 5044:case 5017:case 5021:case 5025:case 5029:case 5033:case 5037:case 5041:case 5045:case 5018:case 5022:case 5026:case 5030:case 5034:case 5038:case 5042:case 5046:case 5019:case 5023:case 5027:case 5031:case 5035:case 5039:case 5043:case 5016:case 5020:case 5024:case 5028:case 5032:case 5036:case 5047: return Type::NetherBrickFence; + case 8388:case 8385:case 8389:case 8386:case 8387:case 8384: return Type::NetherBrickSlab; + case 5076:case 5077:case 5078:case 5079:case 5080:case 5081:case 5082:case 5083:case 5084:case 5085:case 5086:case 5087:case 5088:case 5089:case 5090:case 5091:case 5092:case 5093:case 5094:case 5095:case 5096:case 5097:case 5098:case 5099:case 5100:case 5101:case 5102:case 5103:case 5104:case 5105:case 5106:case 5107:case 5108:case 5109:case 5110:case 5111:case 5048:case 5112:case 5049:case 5113:case 5050:case 5114:case 5051:case 5115:case 5052:case 5116:case 5053:case 5117:case 5054:case 5118:case 5055:case 5119:case 5056:case 5120:case 5057:case 5121:case 5058:case 5122:case 5059:case 5123:case 5060:case 5124:case 5061:case 5125:case 5062:case 5126:case 5063:case 5127:case 5064:case 5065:case 5066:case 5067:case 5068:case 5069:case 5070:case 5071:case 5072:case 5073:case 5074:case 5075: return Type::NetherBrickStairs; + case 13078:case 13082:case 13086:case 13090:case 13094:case 13098:case 13102:case 13106:case 13110:case 13114:case 13118:case 13122:case 13126:case 13130:case 13134:case 12811:case 12815:case 12819:case 12823:case 12827:case 12831:case 12835:case 12839:case 12843:case 12847:case 12851:case 12855:case 12859:case 12863:case 12867:case 12871:case 12875:case 12879:case 12883:case 12887:case 12891:case 12895:case 12899:case 12903:case 12907:case 12911:case 12915:case 12919:case 12923:case 12927:case 12931:case 12935:case 12939:case 12943:case 12947:case 12951:case 12955:case 12959:case 12963:case 12967:case 12971:case 12975:case 12979:case 12983:case 12987:case 12991:case 12995:case 12999:case 13003:case 13007:case 13011:case 13015:case 13019:case 13023:case 13027:case 13031:case 13035:case 13039:case 13043:case 13047:case 13051:case 13055:case 13059:case 13063:case 13067:case 13071:case 13075:case 13079:case 13083:case 13087:case 13091:case 13095:case 13099:case 13103:case 13107:case 13111:case 13115:case 13119:case 13123:case 13127:case 13131:case 12812:case 12816:case 12820:case 12824:case 12828:case 12832:case 12836:case 12840:case 12844:case 12848:case 12852:case 12856:case 12860:case 12864:case 12868:case 12872:case 12876:case 12880:case 12884:case 12888:case 12892:case 12896:case 12900:case 12904:case 12908:case 12912:case 12916:case 12920:case 12924:case 12928:case 12932:case 12936:case 12940:case 12944:case 12948:case 12952:case 12956:case 12960:case 12964:case 12968:case 12972:case 12976:case 12980:case 12984:case 12988:case 12992:case 12996:case 13000:case 13004:case 13008:case 13012:case 13016:case 13020:case 13024:case 13028:case 13032:case 13036:case 13040:case 13044:case 13048:case 13052:case 13056:case 13060:case 13064:case 13068:case 13072:case 13076:case 13080:case 13084:case 13088:case 13092:case 13096:case 13100:case 13104:case 13108:case 13112:case 13116:case 13120:case 13124:case 13128:case 13132:case 12813:case 12817:case 12821:case 12825:case 12829:case 12833:case 12837:case 12841:case 12845:case 12849:case 12853:case 12857:case 12861:case 12865:case 12869:case 12873:case 12877:case 12881:case 12885:case 12889:case 12893:case 12897:case 12901:case 12905:case 12909:case 12913:case 12917:case 12921:case 12925:case 12929:case 12933:case 12937:case 12941:case 12945:case 12949:case 12953:case 12957:case 12961:case 12965:case 12969:case 12973:case 12977:case 12981:case 12985:case 12989:case 12993:case 12997:case 13001:case 13005:case 13009:case 13013:case 13017:case 13021:case 13025:case 13029:case 13033:case 13037:case 13041:case 13045:case 13049:case 13053:case 13057:case 13061:case 13065:case 13069:case 13073:case 13077:case 13081:case 13085:case 13089:case 13093:case 13097:case 13101:case 13105:case 13109:case 13113:case 13117:case 13121:case 13125:case 13129:case 13133:case 12814:case 12818:case 12822:case 12826:case 12830:case 12834:case 12838:case 12842:case 12846:case 12850:case 12854:case 12858:case 12862:case 12866:case 12870:case 12874:case 12878:case 12882:case 12886:case 12890:case 12894:case 12898:case 12902:case 12906:case 12910:case 12914:case 12918:case 12922:case 12926:case 12930:case 12934:case 12938:case 12942:case 12946:case 12950:case 12954:case 12958:case 12962:case 12966:case 12970:case 12974:case 12978:case 12982:case 12986:case 12990:case 12994:case 12998:case 13002:case 13006:case 13010:case 13014:case 13018:case 13022:case 13026:case 13030:case 13034:case 13038:case 13042:case 13046:case 13050:case 13054:case 13058:case 13062:case 13066:case 13070:case 13074: return Type::NetherBrickWall; + case 5015: return Type::NetherBricks; + case 72: return Type::NetherGoldOre; + case 4014:case 4015: return Type::NetherPortal; + case 6727: return Type::NetherQuartzOre; + case 14974: return Type::NetherSprouts; + case 5128:case 5129:case 5130:case 5131: return Type::NetherWart; + case 9254: return Type::NetherWartBlock; + case 15826: return Type::NetheriteBlock; + case 3999: return Type::Netherrack; + case 249:case 250:case 251:case 252:case 253:case 254:case 255:case 256:case 257:case 258:case 259:case 260:case 261:case 262:case 263:case 264:case 265:case 266:case 267:case 268:case 269:case 270:case 271:case 272:case 273:case 274:case 275:case 276:case 277:case 278:case 279:case 280:case 281:case 282:case 283:case 284:case 285:case 286:case 287:case 288:case 289:case 290:case 291:case 292:case 293:case 294:case 295:case 296:case 297:case 298:case 299:case 300:case 301:case 302:case 303:case 304:case 305:case 306:case 307:case 308:case 309:case 310:case 311:case 312:case 313:case 314:case 315:case 316:case 317:case 318:case 319:case 320:case 321:case 322:case 323:case 324:case 325:case 326:case 327:case 328:case 329:case 330:case 331:case 332:case 333:case 334:case 335:case 336:case 337:case 338:case 339:case 340:case 341:case 342:case 343:case 344:case 345:case 346:case 347:case 348:case 349:case 350:case 351:case 352:case 353:case 354:case 355:case 356:case 357:case 358:case 359:case 360:case 361:case 362:case 363:case 364:case 365:case 366:case 367:case 368:case 369:case 370:case 371:case 372:case 373:case 374:case 375:case 376:case 377:case 378:case 379:case 380:case 381:case 382:case 383:case 384:case 385:case 386:case 387:case 388:case 389:case 390:case 391:case 392:case 393:case 394:case 395:case 396:case 397:case 398:case 399:case 400:case 401:case 402:case 403:case 404:case 405:case 406:case 407:case 408:case 409:case 410:case 411:case 412:case 413:case 414:case 415:case 416:case 417:case 418:case 419:case 420:case 421:case 422:case 423:case 424:case 425:case 426:case 427:case 428:case 429:case 430:case 431:case 432:case 433:case 434:case 435:case 436:case 437:case 438:case 439:case 440:case 441:case 442:case 443:case 444:case 445:case 446:case 447:case 448:case 449:case 450:case 451:case 452:case 453:case 454:case 455:case 456:case 457:case 458:case 459:case 460:case 461:case 462:case 463:case 464:case 465:case 466:case 467:case 468:case 469:case 470:case 471:case 472:case 473:case 474:case 475:case 476:case 477:case 478:case 479:case 480:case 481:case 482:case 483:case 484:case 485:case 486:case 487:case 488:case 489:case 490:case 491:case 492:case 493:case 494:case 495:case 496:case 497:case 498:case 499:case 500:case 501:case 502:case 503:case 504:case 505:case 506:case 507:case 508:case 509:case 510:case 511:case 512:case 513:case 514:case 515:case 516:case 517:case 518:case 519:case 520:case 521:case 522:case 523:case 524:case 525:case 526:case 527:case 528:case 529:case 530:case 531:case 532:case 533:case 534:case 535:case 536:case 537:case 538:case 539:case 540:case 541:case 542:case 543:case 544:case 545:case 546:case 547:case 548:case 549:case 550:case 551:case 552:case 553:case 554:case 555:case 556:case 557:case 558:case 559:case 560:case 561:case 562:case 563:case 564:case 565:case 566:case 567:case 568:case 569:case 570:case 571:case 572:case 573:case 574:case 575:case 576:case 577:case 578:case 579:case 580:case 581:case 582:case 583:case 584:case 585:case 586:case 587:case 588:case 589:case 590:case 591:case 592:case 593:case 594:case 595:case 596:case 597:case 598:case 599:case 600:case 601:case 602:case 603:case 604:case 605:case 606:case 607:case 608:case 609:case 610:case 611:case 612:case 613:case 614:case 615:case 616:case 617:case 618:case 619:case 620:case 621:case 622:case 623:case 624:case 625:case 626:case 627:case 628:case 629:case 630:case 631:case 632:case 633:case 634:case 635:case 636:case 637:case 638:case 639:case 640:case 641:case 642:case 643:case 644:case 645:case 646:case 647:case 648:case 649:case 650:case 651:case 652:case 653:case 654:case 655:case 656:case 657:case 658:case 659:case 660:case 661:case 662:case 663:case 664:case 665:case 666:case 667:case 668:case 669:case 670:case 671:case 672:case 673:case 674:case 675:case 676:case 677:case 678:case 679:case 680:case 681:case 682:case 683:case 684:case 685:case 686:case 687:case 688:case 689:case 690:case 691:case 692:case 693:case 694:case 695:case 696:case 697:case 698:case 699:case 700:case 701:case 702:case 703:case 704:case 705:case 706:case 707:case 708:case 709:case 710:case 711:case 712:case 713:case 714:case 715:case 716:case 717:case 718:case 719:case 720:case 721:case 722:case 723:case 724:case 725:case 726:case 727:case 728:case 729:case 730:case 731:case 732:case 733:case 734:case 735:case 736:case 737:case 738:case 739:case 740:case 741:case 742:case 743:case 744:case 745:case 746:case 747:case 748:case 749:case 750:case 751:case 752:case 753:case 754:case 755:case 756:case 757:case 758:case 759:case 760:case 761:case 762:case 763:case 764:case 765:case 766:case 767:case 768:case 769:case 770:case 771:case 772:case 773:case 774:case 775:case 776:case 777:case 778:case 779:case 780:case 781:case 782:case 783:case 784:case 785:case 786:case 787:case 788:case 789:case 790:case 791:case 792:case 793:case 794:case 795:case 796:case 797:case 798:case 799:case 800:case 801:case 802:case 803:case 804:case 805:case 806:case 807:case 808:case 809:case 810:case 811:case 812:case 813:case 814:case 815:case 816:case 817:case 818:case 819:case 820:case 821:case 822:case 823:case 824:case 825:case 826:case 827:case 828:case 829:case 830:case 831:case 832:case 833:case 834:case 835:case 836:case 837:case 838:case 839:case 840:case 841:case 842:case 843:case 844:case 845:case 846:case 847:case 848:case 849:case 850:case 851:case 852:case 853:case 854:case 855:case 856:case 857:case 858:case 859:case 860:case 861:case 862:case 863:case 864:case 865:case 866:case 867:case 868:case 869:case 870:case 871:case 872:case 873:case 874:case 875:case 876:case 877:case 878:case 879:case 880:case 881:case 882:case 883:case 884:case 885:case 886:case 887:case 888:case 889:case 890:case 891:case 892:case 893:case 894:case 895:case 896:case 897:case 898:case 899:case 900:case 901:case 902:case 903:case 904:case 905:case 906:case 907:case 908:case 909:case 910:case 911:case 912:case 913:case 914:case 915:case 916:case 917:case 918:case 919:case 920:case 921:case 922:case 923:case 924:case 925:case 926:case 927:case 928:case 929:case 930:case 931:case 932:case 933:case 934:case 935:case 936:case 937:case 938:case 939:case 940:case 941:case 942:case 943:case 944:case 945:case 946:case 947:case 948:case 949:case 950:case 951:case 952:case 953:case 954:case 955:case 956:case 957:case 958:case 959:case 960:case 961:case 962:case 963:case 964:case 965:case 966:case 967:case 968:case 969:case 970:case 971:case 972:case 973:case 974:case 975:case 976:case 977:case 978:case 979:case 980:case 981:case 982:case 983:case 984:case 985:case 986:case 987:case 988:case 989:case 990:case 991:case 992:case 993:case 994:case 995:case 996:case 997:case 998:case 999:case 1000:case 1001:case 1002:case 1003:case 1004:case 1005:case 1006:case 1007:case 1008:case 1009:case 1010:case 1011:case 1012:case 1013:case 1014:case 1015:case 1016:case 1017:case 1018:case 1019:case 1020:case 1021:case 1022:case 1023:case 1024:case 1045:case 1046:case 1047:case 1048:case 1025:case 1026:case 1027:case 1028:case 1029:case 1030:case 1031:case 1032:case 1033:case 1034:case 1035:case 1036:case 1037:case 1038:case 1039:case 1040:case 1041:case 1042:case 1043:case 1044: return Type::NoteBlock; + case 6346:case 6350:case 6354:case 6358:case 6362:case 6366:case 6347:case 6351:case 6355:case 6359:case 6363:case 6367:case 6348:case 6352:case 6356:case 6360:case 6364:case 6368:case 6349:case 6353:case 6357:case 6361:case 6365:case 6369: return Type::OakButton; + case 3610:case 3618:case 3626:case 3634:case 3579:case 3587:case 3595:case 3603:case 3611:case 3619:case 3627:case 3635:case 3580:case 3588:case 3596:case 3604:case 3612:case 3620:case 3628:case 3573:case 3581:case 3589:case 3597:case 3605:case 3613:case 3621:case 3629:case 3574:case 3582:case 3590:case 3598:case 3606:case 3614:case 3622:case 3630:case 3575:case 3583:case 3591:case 3599:case 3607:case 3615:case 3623:case 3631:case 3576:case 3584:case 3592:case 3600:case 3608:case 3616:case 3624:case 3632:case 3577:case 3585:case 3593:case 3601:case 3609:case 3617:case 3625:case 3633:case 3578:case 3586:case 3594:case 3602:case 3636: return Type::OakDoor; + case 3979:case 3981:case 3983:case 3985:case 3987:case 3989:case 3991:case 3993:case 3995:case 3966:case 3968:case 3970:case 3972:case 3974:case 3976:case 3978:case 3980:case 3982:case 3984:case 3986:case 3988:case 3990:case 3992:case 3994:case 3996:case 3967:case 3969:case 3971:case 3973:case 3975:case 3977:case 3997: return Type::OakFence; + case 4823:case 4827:case 4831:case 4835:case 4839:case 4843:case 4847:case 4820:case 4824:case 4828:case 4832:case 4836:case 4840:case 4844:case 4848:case 4821:case 4825:case 4829:case 4833:case 4837:case 4841:case 4845:case 4849:case 4822:case 4826:case 4830:case 4834:case 4838:case 4842:case 4846:case 4850:case 4851: return Type::OakFenceGate; + case 153:case 146:case 154:case 147:case 155:case 148:case 156:case 149:case 157:case 150:case 158:case 151:case 152:case 145: return Type::OakLeaves; + case 73:case 74:case 75: return Type::OakLog; + case 15: return Type::OakPlanks; + case 3873:case 3874: return Type::OakPressurePlate; + case 21:case 22: return Type::OakSapling; + case 3390:case 3392:case 3394:case 3396:case 3398:case 3400:case 3402:case 3404:case 3406:case 3408:case 3410:case 3381:case 3383:case 3385:case 3387:case 3389:case 3391:case 3393:case 3395:case 3397:case 3399:case 3401:case 3403:case 3405:case 3407:case 3409:case 3411:case 3382:case 3384:case 3386:case 3388:case 3412: return Type::OakSign; + case 8304:case 8301:case 8305:case 8302:case 8303:case 8300: return Type::OakSlab; + case 2031:case 1968:case 1984:case 2000:case 2016:case 2032:case 1969:case 1985:case 2001:case 2017:case 2033:case 1954:case 1970:case 1986:case 2002:case 2018:case 1955:case 1971:case 1987:case 2003:case 2019:case 1956:case 1972:case 1988:case 2004:case 2020:case 1957:case 1973:case 1989:case 2005:case 2021:case 1958:case 1974:case 1990:case 2006:case 2022:case 1959:case 1975:case 1991:case 2007:case 2023:case 1960:case 1976:case 1992:case 2008:case 2024:case 1961:case 1977:case 1993:case 2009:case 2025:case 1962:case 1978:case 1994:case 2010:case 2026:case 1963:case 1979:case 1995:case 2011:case 2027:case 1964:case 1980:case 1996:case 2012:case 2028:case 1965:case 1981:case 1997:case 2013:case 2029:case 1966:case 1982:case 1998:case 2014:case 2030:case 1967:case 1983:case 1999:case 2015: return Type::OakStairs; + case 4132:case 4148:case 4164:case 4117:case 4133:case 4149:case 4165:case 4118:case 4134:case 4150:case 4166:case 4119:case 4135:case 4151:case 4167:case 4120:case 4136:case 4152:case 4168:case 4121:case 4137:case 4153:case 4169:case 4122:case 4138:case 4154:case 4170:case 4123:case 4139:case 4155:case 4171:case 4124:case 4140:case 4156:case 4172:case 4125:case 4141:case 4157:case 4173:case 4126:case 4142:case 4158:case 4111:case 4127:case 4143:case 4159:case 4112:case 4128:case 4144:case 4160:case 4113:case 4129:case 4145:case 4161:case 4114:case 4130:case 4146:case 4162:case 4115:case 4131:case 4147:case 4163:case 4116:case 4174: return Type::OakTrapdoor; + case 3736:case 3737:case 3738:case 3739:case 3740:case 3741:case 3735:case 3742: return Type::OakWallSign; + case 109:case 110:case 111: return Type::OakWood; + case 9270:case 9261:case 9263:case 9265:case 9267:case 9269:case 9271:case 9260:case 9262:case 9264:case 9266:case 9268: return Type::Observer; + case 1434: return Type::Obsidian; + case 7921:case 7922:case 7923:case 7924:case 7925:case 7926:case 7927:case 7913:case 7914:case 7915:case 7916:case 7917:case 7918:case 7919:case 7920:case 7928: return Type::OrangeBanner; + case 1077:case 1066:case 1070:case 1074:case 1078:case 1067:case 1071:case 1075:case 1079:case 1068:case 1072:case 1076:case 1065:case 1069:case 1073:case 1080: return Type::OrangeBed; + case 7867: return Type::OrangeCarpet; + case 9439: return Type::OrangeConcrete; + case 9455: return Type::OrangeConcretePowder; + case 9378:case 9380:case 9379:case 9381: return Type::OrangeGlazedTerracotta; + case 9284:case 9288:case 9285:case 9289:case 9286:case 9287: return Type::OrangeShulkerBox; + case 4096: return Type::OrangeStainedGlass; + case 6900:case 6904:case 6908:case 6912:case 6916:case 6920:case 6924:case 6897:case 6901:case 6905:case 6909:case 6913:case 6917:case 6921:case 6925:case 6898:case 6902:case 6906:case 6910:case 6914:case 6918:case 6922:case 6895:case 6899:case 6903:case 6907:case 6911:case 6915:case 6919:case 6923:case 6896:case 6926: return Type::OrangeStainedGlassPane; + case 6848: return Type::OrangeTerracotta; + case 1418: return Type::OrangeTulip; + case 8158:case 8159:case 8157:case 8160: return Type::OrangeWallBanner; + case 1385: return Type::OrangeWool; + case 1421: return Type::OxeyeDaisy; + case 7884: return Type::PackedIce; + case 7891:case 7892: return Type::Peony; + case 8360:case 8364:case 8361:case 8365:case 8362:case 8363: return Type::PetrifiedOakSlab; + case 7996:case 7997:case 7998:case 7999:case 8000:case 8001:case 8002:case 8003:case 8004:case 8005:case 8006:case 8007:case 7993:case 7994:case 7995:case 8008: return Type::PinkBanner; + case 1152:case 1156:case 1145:case 1149:case 1153:case 1157:case 1146:case 1150:case 1154:case 1158:case 1147:case 1151:case 1155:case 1159:case 1148:case 1160: return Type::PinkBed; + case 7872: return Type::PinkCarpet; + case 9444: return Type::PinkConcrete; + case 9460: return Type::PinkConcretePowder; + case 9399:case 9398:case 9400:case 9401: return Type::PinkGlazedTerracotta; + case 9319:case 9316:case 9317:case 9314:case 9318:case 9315: return Type::PinkShulkerBox; + case 4101: return Type::PinkStainedGlass; + case 7055:case 7059:case 7063:case 7067:case 7071:case 7075:case 7079:case 7083:case 7056:case 7060:case 7064:case 7068:case 7072:case 7076:case 7080:case 7084:case 7057:case 7061:case 7065:case 7069:case 7073:case 7077:case 7081:case 7085:case 7058:case 7062:case 7066:case 7070:case 7074:case 7078:case 7082:case 7086: return Type::PinkStainedGlassPane; + case 6853: return Type::PinkTerracotta; + case 1420: return Type::PinkTulip; + case 8179:case 8177:case 8178:case 8180: return Type::PinkWallBanner; + case 1390: return Type::PinkWool; + case 1351:case 1355:case 1359:case 1348:case 1352:case 1356:case 1349:case 1353:case 1357:case 1350:case 1354:case 1358: return Type::Piston; + case 1360:case 1361:case 1362:case 1363:case 1364:case 1365:case 1366:case 1367:case 1368:case 1369:case 1370:case 1371:case 1372:case 1373:case 1374:case 1375:case 1376:case 1377:case 1378:case 1379:case 1380:case 1381:case 1382:case 1383: return Type::PistonHead; + case 6556:case 6557:case 6558:case 6559:case 6560:case 6561:case 6562:case 6563:case 6564:case 6550:case 6551:case 6552:case 6553:case 6554:case 6555:case 6565: return Type::PlayerHead; + case 6568:case 6566:case 6567:case 6569: return Type::PlayerWallHead; + case 12:case 13: return Type::Podzol; + case 7: return Type::PolishedAndesite; + case 10859:case 10856:case 10860:case 10857:case 10858:case 10855: return Type::PolishedAndesiteSlab; + case 10629:case 10630:case 10631:case 10632:case 10633:case 10634:case 10635:case 10636:case 10637:case 10638:case 10639:case 10640:case 10641:case 10642:case 10643:case 10644:case 10645:case 10646:case 10647:case 10648:case 10649:case 10650:case 10651:case 10652:case 10653:case 10654:case 10655:case 10656:case 10657:case 10658:case 10659:case 10660:case 10661:case 10662:case 10663:case 10664:case 10665:case 10666:case 10667:case 10668:case 10669:case 10670:case 10671:case 10672:case 10673:case 10674:case 10675:case 10676:case 10677:case 10678:case 10679:case 10680:case 10681:case 10682:case 10683:case 10684:case 10685:case 10686:case 10687:case 10688:case 10689:case 10690:case 10691:case 10692:case 10693:case 10694:case 10695:case 10696:case 10697:case 10698:case 10699:case 10700:case 10701:case 10702:case 10703:case 10704:case 10705:case 10706:case 10707:case 10708: return Type::PolishedAndesiteStairs; + case 4006:case 4005:case 4007: return Type::PolishedBasalt; + case 16250: return Type::PolishedBlackstone; + case 16256:case 16257:case 16254:case 16258:case 16255:case 16259: return Type::PolishedBlackstoneBrickSlab; + case 16310:case 16311:case 16312:case 16313:case 16314:case 16315:case 16316:case 16317:case 16318:case 16319:case 16320:case 16321:case 16322:case 16323:case 16324:case 16325:case 16326:case 16327:case 16328:case 16329:case 16330:case 16331:case 16332:case 16333:case 16334:case 16335:case 16336:case 16337:case 16338:case 16339:case 16260:case 16261:case 16262:case 16263:case 16264:case 16265:case 16266:case 16267:case 16268:case 16269:case 16270:case 16271:case 16272:case 16273:case 16274:case 16275:case 16276:case 16277:case 16278:case 16279:case 16280:case 16281:case 16282:case 16283:case 16284:case 16285:case 16286:case 16287:case 16288:case 16289:case 16290:case 16291:case 16292:case 16293:case 16294:case 16295:case 16296:case 16297:case 16298:case 16299:case 16300:case 16301:case 16302:case 16303:case 16304:case 16305:case 16306:case 16307:case 16308:case 16309: return Type::PolishedBlackstoneBrickStairs; + case 16415:case 16423:case 16431:case 16439:case 16447:case 16455:case 16463:case 16471:case 16479:case 16487:case 16495:case 16503:case 16511:case 16519:case 16527:case 16535:case 16543:case 16551:case 16559:case 16567:case 16575:case 16583:case 16591:case 16599:case 16607:case 16615:case 16623:case 16631:case 16639:case 16647:case 16655:case 16663:case 16340:case 16344:case 16348:case 16352:case 16356:case 16360:case 16364:case 16368:case 16372:case 16376:case 16380:case 16384:case 16392:case 16400:case 16408:case 16416:case 16424:case 16432:case 16440:case 16448:case 16456:case 16464:case 16472:case 16480:case 16488:case 16496:case 16504:case 16512:case 16520:case 16528:case 16536:case 16544:case 16552:case 16560:case 16568:case 16576:case 16584:case 16592:case 16600:case 16608:case 16616:case 16624:case 16632:case 16640:case 16648:case 16656:case 16385:case 16393:case 16401:case 16409:case 16417:case 16425:case 16433:case 16441:case 16449:case 16457:case 16465:case 16473:case 16481:case 16489:case 16497:case 16505:case 16513:case 16521:case 16529:case 16537:case 16545:case 16553:case 16561:case 16569:case 16577:case 16585:case 16593:case 16601:case 16609:case 16617:case 16625:case 16633:case 16641:case 16649:case 16657:case 16341:case 16345:case 16349:case 16353:case 16357:case 16361:case 16365:case 16369:case 16373:case 16377:case 16381:case 16386:case 16394:case 16402:case 16410:case 16418:case 16426:case 16434:case 16442:case 16450:case 16458:case 16466:case 16474:case 16482:case 16490:case 16498:case 16506:case 16514:case 16522:case 16530:case 16538:case 16546:case 16554:case 16562:case 16570:case 16578:case 16586:case 16594:case 16602:case 16610:case 16618:case 16626:case 16634:case 16642:case 16650:case 16658:case 16387:case 16395:case 16403:case 16411:case 16419:case 16427:case 16435:case 16443:case 16451:case 16459:case 16467:case 16475:case 16483:case 16491:case 16499:case 16507:case 16515:case 16523:case 16531:case 16539:case 16547:case 16555:case 16563:case 16571:case 16579:case 16587:case 16595:case 16603:case 16611:case 16619:case 16627:case 16635:case 16643:case 16651:case 16659:case 16342:case 16346:case 16350:case 16354:case 16358:case 16362:case 16366:case 16370:case 16374:case 16378:case 16382:case 16388:case 16396:case 16404:case 16412:case 16420:case 16428:case 16436:case 16444:case 16452:case 16460:case 16468:case 16476:case 16484:case 16492:case 16500:case 16508:case 16516:case 16524:case 16532:case 16540:case 16548:case 16556:case 16564:case 16572:case 16580:case 16588:case 16596:case 16604:case 16612:case 16620:case 16628:case 16636:case 16644:case 16652:case 16660:case 16389:case 16397:case 16405:case 16413:case 16421:case 16429:case 16437:case 16445:case 16453:case 16461:case 16469:case 16477:case 16485:case 16493:case 16501:case 16509:case 16517:case 16525:case 16533:case 16541:case 16549:case 16557:case 16565:case 16573:case 16581:case 16589:case 16597:case 16605:case 16613:case 16621:case 16629:case 16637:case 16645:case 16653:case 16661:case 16343:case 16347:case 16351:case 16355:case 16359:case 16363:case 16367:case 16371:case 16375:case 16379:case 16383:case 16390:case 16398:case 16406:case 16414:case 16422:case 16430:case 16438:case 16446:case 16454:case 16462:case 16470:case 16478:case 16486:case 16494:case 16502:case 16510:case 16518:case 16526:case 16534:case 16542:case 16550:case 16558:case 16566:case 16574:case 16582:case 16590:case 16598:case 16606:case 16614:case 16622:case 16630:case 16638:case 16646:case 16654:case 16662:case 16391:case 16399:case 16407: return Type::PolishedBlackstoneBrickWall; + case 16251: return Type::PolishedBlackstoneBricks; + case 16765:case 16766:case 16767:case 16768:case 16753:case 16769:case 16754:case 16770:case 16755:case 16771:case 16756:case 16772:case 16757:case 16773:case 16758:case 16774:case 16759:case 16775:case 16760:case 16776:case 16761:case 16762:case 16763:case 16764: return Type::PolishedBlackstoneButton; + case 16751:case 16752: return Type::PolishedBlackstonePressurePlate; + case 16745:case 16746:case 16747:case 16748:case 16749:case 16750: return Type::PolishedBlackstoneSlab; + case 16744:case 16665:case 16667:case 16669:case 16671:case 16673:case 16675:case 16677:case 16679:case 16681:case 16683:case 16685:case 16687:case 16689:case 16691:case 16693:case 16695:case 16697:case 16699:case 16701:case 16703:case 16705:case 16707:case 16709:case 16711:case 16713:case 16715:case 16717:case 16719:case 16721:case 16723:case 16725:case 16727:case 16729:case 16731:case 16733:case 16735:case 16737:case 16739:case 16741:case 16743:case 16666:case 16668:case 16670:case 16672:case 16674:case 16676:case 16678:case 16680:case 16682:case 16684:case 16686:case 16688:case 16690:case 16692:case 16694:case 16696:case 16698:case 16700:case 16702:case 16704:case 16706:case 16708:case 16710:case 16712:case 16714:case 16716:case 16718:case 16720:case 16722:case 16724:case 16726:case 16728:case 16730:case 16732:case 16734:case 16736:case 16738:case 16740:case 16742: return Type::PolishedBlackstoneStairs; + case 16926:case 16934:case 16942:case 16950:case 16958:case 16966:case 16974:case 16982:case 16990:case 16998:case 17006:case 17014:case 17022:case 17030:case 17038:case 17046:case 17054:case 17062:case 17070:case 17078:case 17086:case 17094:case 16783:case 16791:case 16799:case 16807:case 16815:case 16823:case 16831:case 16839:case 16847:case 16855:case 16863:case 16871:case 16879:case 16887:case 16895:case 16903:case 16911:case 16919:case 16927:case 16935:case 16943:case 16951:case 16959:case 16967:case 16975:case 16983:case 16991:case 16999:case 17007:case 17015:case 17023:case 17031:case 17039:case 17047:case 17055:case 17063:case 17071:case 17079:case 17087:case 17095:case 16784:case 16792:case 16800:case 16808:case 16816:case 16824:case 16832:case 16840:case 16848:case 16856:case 16864:case 16872:case 16880:case 16888:case 16896:case 16904:case 16912:case 16920:case 16928:case 16936:case 16944:case 16952:case 16960:case 16968:case 16976:case 16984:case 16992:case 17000:case 17008:case 17016:case 17024:case 17032:case 17040:case 17048:case 17056:case 17064:case 17072:case 17080:case 17088:case 17096:case 16777:case 16785:case 16793:case 16801:case 16809:case 16817:case 16825:case 16833:case 16841:case 16849:case 16857:case 16865:case 16873:case 16881:case 16889:case 16897:case 16905:case 16913:case 16921:case 16929:case 16937:case 16945:case 16953:case 16961:case 16969:case 16977:case 16985:case 16993:case 17001:case 17009:case 17017:case 17025:case 17033:case 17041:case 17049:case 17057:case 17065:case 17073:case 17081:case 17089:case 17097:case 16778:case 16786:case 16794:case 16802:case 16810:case 16818:case 16826:case 16834:case 16842:case 16850:case 16858:case 16866:case 16874:case 16882:case 16890:case 16898:case 16906:case 16914:case 16922:case 16930:case 16938:case 16946:case 16954:case 16962:case 16970:case 16978:case 16986:case 16994:case 17002:case 17010:case 17018:case 17026:case 17034:case 17042:case 17050:case 17058:case 17066:case 17074:case 17082:case 17090:case 17098:case 16779:case 16787:case 16795:case 16803:case 16811:case 16819:case 16827:case 16835:case 16843:case 16851:case 16859:case 16867:case 16875:case 16883:case 16891:case 16899:case 16907:case 16915:case 16923:case 16931:case 16939:case 16947:case 16955:case 16963:case 16971:case 16979:case 16987:case 16995:case 17003:case 17011:case 17019:case 17027:case 17035:case 17043:case 17051:case 17059:case 17067:case 17075:case 17083:case 17091:case 17099:case 16780:case 16788:case 16796:case 16804:case 16812:case 16820:case 16828:case 16836:case 16844:case 16852:case 16860:case 16868:case 16876:case 16884:case 16892:case 16900:case 16908:case 16916:case 16924:case 16932:case 16940:case 16948:case 16956:case 16964:case 16972:case 16980:case 16988:case 16996:case 17004:case 17012:case 17020:case 17028:case 17036:case 17044:case 17052:case 17060:case 17068:case 17076:case 17084:case 17092:case 17100:case 16781:case 16789:case 16797:case 16805:case 16813:case 16821:case 16829:case 16837:case 16845:case 16853:case 16861:case 16869:case 16877:case 16885:case 16893:case 16901:case 16909:case 16917:case 16925:case 16933:case 16941:case 16949:case 16957:case 16965:case 16973:case 16981:case 16989:case 16997:case 17005:case 17013:case 17021:case 17029:case 17037:case 17045:case 17053:case 17061:case 17069:case 17077:case 17085:case 17093:case 16782:case 16790:case 16798:case 16806:case 16814:case 16822:case 16830:case 16838:case 16846:case 16854:case 16862:case 16870:case 16878:case 16886:case 16894:case 16902:case 16910:case 16918: return Type::PolishedBlackstoneWall; + case 5: return Type::PolishedDiorite; + case 10810:case 10807:case 10811:case 10808:case 10812:case 10809: return Type::PolishedDioriteSlab; + case 9960:case 9961:case 9962:case 9963:case 9964:case 9965:case 9966:case 9967:case 9968:case 9969:case 9970:case 9971:case 9972:case 9973:case 9974:case 9975:case 9976:case 9977:case 9978:case 9979:case 9980:case 9981:case 9982:case 9983:case 9984:case 9985:case 9986:case 9987:case 9988:case 9909:case 9910:case 9911:case 9912:case 9913:case 9914:case 9915:case 9916:case 9917:case 9918:case 9919:case 9920:case 9921:case 9922:case 9923:case 9924:case 9925:case 9926:case 9927:case 9928:case 9929:case 9930:case 9931:case 9932:case 9933:case 9934:case 9935:case 9936:case 9937:case 9938:case 9939:case 9940:case 9941:case 9942:case 9943:case 9944:case 9945:case 9946:case 9947:case 9948:case 9949:case 9950:case 9951:case 9952:case 9953:case 9954:case 9955:case 9956:case 9957:case 9958:case 9959: return Type::PolishedDioriteStairs; + case 3: return Type::PolishedGranite; + case 10789:case 10793:case 10790:case 10794:case 10791:case 10792: return Type::PolishedGraniteSlab; + case 9706:case 9707:case 9708:case 9709:case 9710:case 9711:case 9712:case 9713:case 9714:case 9715:case 9716:case 9717:case 9718:case 9719:case 9720:case 9721:case 9722:case 9723:case 9724:case 9725:case 9726:case 9727:case 9728:case 9729:case 9730:case 9731:case 9732:case 9733:case 9734:case 9735:case 9736:case 9737:case 9738:case 9739:case 9740:case 9741:case 9742:case 9743:case 9744:case 9745:case 9746:case 9747:case 9748:case 9669:case 9670:case 9671:case 9672:case 9673:case 9674:case 9675:case 9676:case 9677:case 9678:case 9679:case 9680:case 9681:case 9682:case 9683:case 9684:case 9685:case 9686:case 9687:case 9688:case 9689:case 9690:case 9691:case 9692:case 9693:case 9694:case 9695:case 9696:case 9697:case 9698:case 9699:case 9700:case 9701:case 9702:case 9703:case 9704:case 9705: return Type::PolishedGraniteStairs; + case 1413: return Type::Poppy; + case 6344:case 6339:case 6341:case 6343:case 6338:case 6340:case 6342:case 6345: return Type::Potatoes; + case 6310: return Type::PottedAcaciaSapling; + case 6316: return Type::PottedAllium; + case 6317: return Type::PottedAzureBluet; + case 9664: return Type::PottedBamboo; + case 6308: return Type::PottedBirchSapling; + case 6315: return Type::PottedBlueOrchid; + case 6327: return Type::PottedBrownMushroom; + case 6329: return Type::PottedCactus; + case 6323: return Type::PottedCornflower; + case 15834: return Type::PottedCrimsonFungus; + case 15836: return Type::PottedCrimsonRoots; + case 6313: return Type::PottedDandelion; + case 6311: return Type::PottedDarkOakSapling; + case 6328: return Type::PottedDeadBush; + case 6312: return Type::PottedFern; + case 6309: return Type::PottedJungleSapling; + case 6324: return Type::PottedLilyOfTheValley; + case 6306: return Type::PottedOakSapling; + case 6319: return Type::PottedOrangeTulip; + case 6322: return Type::PottedOxeyeDaisy; + case 6321: return Type::PottedPinkTulip; + case 6314: return Type::PottedPoppy; + case 6326: return Type::PottedRedMushroom; + case 6318: return Type::PottedRedTulip; + case 6307: return Type::PottedSpruceSapling; + case 15835: return Type::PottedWarpedFungus; + case 15837: return Type::PottedWarpedRoots; + case 6320: return Type::PottedWhiteTulip; + case 6325: return Type::PottedWitherRose; + case 1306:case 1310:case 1314:case 1307:case 1311:case 1315:case 1308:case 1312:case 1316:case 1305:case 1309:case 1313: return Type::PoweredRail; + case 7601: return Type::Prismarine; + case 7851:case 7853:case 7855:case 7850:case 7852:case 7854: return Type::PrismarineBrickSlab; + case 7743:case 7744:case 7745:case 7746:case 7747:case 7684:case 7748:case 7685:case 7749:case 7686:case 7750:case 7687:case 7751:case 7688:case 7752:case 7689:case 7753:case 7690:case 7754:case 7691:case 7755:case 7692:case 7756:case 7693:case 7757:case 7694:case 7758:case 7695:case 7759:case 7696:case 7760:case 7697:case 7761:case 7698:case 7762:case 7699:case 7763:case 7700:case 7701:case 7702:case 7703:case 7704:case 7705:case 7706:case 7707:case 7708:case 7709:case 7710:case 7711:case 7712:case 7713:case 7714:case 7715:case 7716:case 7717:case 7718:case 7719:case 7720:case 7721:case 7722:case 7723:case 7724:case 7725:case 7726:case 7727:case 7728:case 7729:case 7730:case 7731:case 7732:case 7733:case 7734:case 7735:case 7736:case 7737:case 7738:case 7739:case 7740:case 7741:case 7742: return Type::PrismarineBrickStairs; + case 7602: return Type::PrismarineBricks; + case 7849:case 7844:case 7846:case 7848:case 7845:case 7847: return Type::PrismarineSlab; + case 7679:case 7616:case 7680:case 7617:case 7681:case 7618:case 7682:case 7619:case 7683:case 7620:case 7621:case 7622:case 7623:case 7624:case 7625:case 7626:case 7627:case 7628:case 7629:case 7630:case 7631:case 7632:case 7633:case 7634:case 7635:case 7636:case 7637:case 7638:case 7639:case 7640:case 7641:case 7642:case 7643:case 7644:case 7645:case 7646:case 7647:case 7648:case 7649:case 7650:case 7651:case 7652:case 7653:case 7654:case 7655:case 7656:case 7657:case 7658:case 7659:case 7660:case 7661:case 7662:case 7663:case 7664:case 7665:case 7666:case 7667:case 7604:case 7668:case 7605:case 7669:case 7606:case 7670:case 7607:case 7671:case 7608:case 7672:case 7609:case 7673:case 7610:case 7674:case 7611:case 7675:case 7612:case 7676:case 7613:case 7677:case 7614:case 7678:case 7615: return Type::PrismarineStairs; + case 11194:case 11198:case 11202:case 11206:case 11210:case 11214:case 11218:case 11222:case 11226:case 11230:case 11234:case 11238:case 11242:case 11246:case 11250:case 11254:case 11258:case 11262:case 11266:case 11270:case 11274:case 11278:case 11282:case 11286:case 11290:case 11294:case 11298:case 11302:case 11306:case 11310:case 11314:case 11318:case 11322:case 11326:case 11330:case 11334:case 11338:case 11342:case 11346:case 11350:case 11354:case 11358:case 11362:case 11366:case 11370:case 11374:case 11378:case 11382:case 11386:case 11390:case 11394:case 11398:case 11402:case 11406:case 11410:case 11414:case 11418:case 11422:case 11426:case 11430:case 11434:case 11438:case 11442:case 11446:case 11450:case 11454:case 11458:case 11462:case 11466:case 11470:case 11474:case 11478:case 11482:case 11486:case 11490:case 11494:case 11498:case 11502:case 11506:case 11510:case 11514:case 11191:case 11195:case 11199:case 11203:case 11207:case 11211:case 11215:case 11219:case 11223:case 11227:case 11231:case 11235:case 11239:case 11243:case 11247:case 11251:case 11255:case 11259:case 11263:case 11267:case 11271:case 11275:case 11279:case 11283:case 11287:case 11291:case 11295:case 11299:case 11303:case 11307:case 11311:case 11315:case 11319:case 11323:case 11327:case 11331:case 11335:case 11339:case 11343:case 11347:case 11351:case 11355:case 11359:case 11363:case 11367:case 11371:case 11375:case 11379:case 11383:case 11387:case 11391:case 11395:case 11399:case 11403:case 11407:case 11411:case 11415:case 11419:case 11423:case 11427:case 11431:case 11435:case 11439:case 11443:case 11447:case 11451:case 11455:case 11459:case 11463:case 11467:case 11471:case 11475:case 11479:case 11483:case 11487:case 11491:case 11495:case 11499:case 11503:case 11507:case 11511:case 11192:case 11196:case 11200:case 11204:case 11208:case 11212:case 11216:case 11220:case 11224:case 11228:case 11232:case 11236:case 11240:case 11244:case 11248:case 11252:case 11256:case 11260:case 11264:case 11268:case 11272:case 11276:case 11280:case 11284:case 11288:case 11292:case 11296:case 11300:case 11304:case 11308:case 11312:case 11316:case 11320:case 11324:case 11328:case 11332:case 11336:case 11340:case 11344:case 11348:case 11352:case 11356:case 11360:case 11364:case 11368:case 11372:case 11376:case 11380:case 11384:case 11388:case 11392:case 11396:case 11400:case 11404:case 11408:case 11412:case 11416:case 11420:case 11424:case 11428:case 11432:case 11436:case 11440:case 11444:case 11448:case 11452:case 11456:case 11460:case 11464:case 11468:case 11472:case 11476:case 11480:case 11484:case 11488:case 11492:case 11496:case 11500:case 11504:case 11508:case 11512:case 11193:case 11197:case 11201:case 11205:case 11209:case 11213:case 11217:case 11221:case 11225:case 11229:case 11233:case 11237:case 11241:case 11245:case 11249:case 11253:case 11257:case 11261:case 11265:case 11269:case 11273:case 11277:case 11281:case 11285:case 11289:case 11293:case 11297:case 11301:case 11305:case 11309:case 11313:case 11317:case 11321:case 11325:case 11329:case 11333:case 11337:case 11341:case 11345:case 11349:case 11353:case 11357:case 11361:case 11365:case 11369:case 11373:case 11377:case 11381:case 11385:case 11389:case 11393:case 11397:case 11401:case 11405:case 11409:case 11413:case 11417:case 11421:case 11425:case 11429:case 11433:case 11437:case 11441:case 11445:case 11449:case 11453:case 11457:case 11461:case 11465:case 11469:case 11473:case 11477:case 11481:case 11485:case 11489:case 11493:case 11497:case 11501:case 11505:case 11509:case 11513: return Type::PrismarineWall; + case 3998: return Type::Pumpkin; + case 4776:case 4778:case 4773:case 4775:case 4777:case 4772:case 4774:case 4779: return Type::PumpkinStem; + case 8071:case 8057:case 8058:case 8059:case 8060:case 8061:case 8062:case 8063:case 8064:case 8065:case 8066:case 8067:case 8068:case 8069:case 8070:case 8072: return Type::PurpleBanner; + case 1212:case 1216:case 1220:case 1209:case 1213:case 1217:case 1221:case 1210:case 1214:case 1218:case 1222:case 1211:case 1215:case 1219:case 1223:case 1224: return Type::PurpleBed; + case 7876: return Type::PurpleCarpet; + case 9448: return Type::PurpleConcrete; + case 9464: return Type::PurpleConcretePowder; + case 9414:case 9416:case 9415:case 9417: return Type::PurpleGlazedTerracotta; + case 9340:case 9341:case 9338:case 9342:case 9339:case 9343: return Type::PurpleShulkerBox; + case 4105: return Type::PurpleStainedGlass; + case 7210:case 7183:case 7187:case 7191:case 7195:case 7199:case 7203:case 7207:case 7211:case 7184:case 7188:case 7192:case 7196:case 7200:case 7204:case 7208:case 7212:case 7185:case 7189:case 7193:case 7197:case 7201:case 7205:case 7209:case 7213:case 7186:case 7190:case 7194:case 7198:case 7202:case 7206:case 7214: return Type::PurpleStainedGlassPane; + case 6857: return Type::PurpleTerracotta; + case 8193:case 8195:case 8194:case 8196: return Type::PurpleWallBanner; + case 1394: return Type::PurpleWool; + case 9134: return Type::PurpurBlock; + case 9135:case 9137:case 9136: return Type::PurpurPillar; + case 8409:case 8413:case 8410:case 8411:case 8408:case 8412: return Type::PurpurSlab; + case 9198:case 9199:case 9200:case 9201:case 9202:case 9203:case 9204:case 9205:case 9206:case 9207:case 9208:case 9209:case 9210:case 9211:case 9212:case 9213:case 9214:case 9215:case 9216:case 9217:case 9138:case 9139:case 9140:case 9141:case 9142:case 9143:case 9144:case 9145:case 9146:case 9147:case 9148:case 9149:case 9150:case 9151:case 9152:case 9153:case 9154:case 9155:case 9156:case 9157:case 9158:case 9159:case 9160:case 9161:case 9162:case 9163:case 9164:case 9165:case 9166:case 9167:case 9168:case 9169:case 9170:case 9171:case 9172:case 9173:case 9174:case 9175:case 9176:case 9177:case 9178:case 9179:case 9180:case 9181:case 9182:case 9183:case 9184:case 9185:case 9186:case 9187:case 9188:case 9189:case 9190:case 9191:case 9192:case 9193:case 9194:case 9195:case 9196:case 9197: return Type::PurpurStairs; + case 6738: return Type::QuartzBlock; + case 17103: return Type::QuartzBricks; + case 6742:case 6740:case 6741: return Type::QuartzPillar; + case 8395:case 8392:case 8393:case 8390:case 8394:case 8391: return Type::QuartzSlab; + case 6790:case 6791:case 6792:case 6793:case 6794:case 6795:case 6796:case 6797:case 6798:case 6799:case 6800:case 6801:case 6802:case 6803:case 6804:case 6805:case 6806:case 6743:case 6807:case 6744:case 6808:case 6745:case 6809:case 6746:case 6810:case 6747:case 6811:case 6748:case 6812:case 6749:case 6813:case 6750:case 6814:case 6751:case 6815:case 6752:case 6816:case 6753:case 6817:case 6754:case 6818:case 6755:case 6819:case 6756:case 6820:case 6757:case 6821:case 6758:case 6822:case 6759:case 6760:case 6761:case 6762:case 6763:case 6764:case 6765:case 6766:case 6767:case 6768:case 6769:case 6770:case 6771:case 6772:case 6773:case 6774:case 6775:case 6776:case 6777:case 6778:case 6779:case 6780:case 6781:case 6782:case 6783:case 6784:case 6785:case 6786:case 6787:case 6788:case 6789: return Type::QuartzStairs; + case 3646:case 3654:case 3647:case 3648:case 3649:case 3650:case 3651:case 3652:case 3645:case 3653: return Type::Rail; + case 8131:case 8132:case 8133:case 8134:case 8135:case 8121:case 8122:case 8123:case 8124:case 8125:case 8126:case 8127:case 8128:case 8129:case 8130:case 8136: return Type::RedBanner; + case 1287:case 1276:case 1280:case 1284:case 1273:case 1277:case 1281:case 1285:case 1274:case 1278:case 1282:case 1286:case 1275:case 1279:case 1283:case 1288: return Type::RedBed; + case 7880: return Type::RedCarpet; + case 9452: return Type::RedConcrete; + case 9468: return Type::RedConcretePowder; + case 9432:case 9431:case 9430:case 9433: return Type::RedGlazedTerracotta; + case 1426: return Type::RedMushroom; + case 4573:case 4589:case 4605:case 4621:case 4574:case 4590:case 4606:case 4622:case 4575:case 4591:case 4607:case 4623:case 4576:case 4592:case 4608:case 4624:case 4577:case 4593:case 4609:case 4625:case 4578:case 4594:case 4610:case 4626:case 4579:case 4595:case 4611:case 4627:case 4580:case 4596:case 4612:case 4628:case 4581:case 4597:case 4613:case 4629:case 4582:case 4598:case 4614:case 4630:case 4583:case 4599:case 4615:case 4631:case 4584:case 4600:case 4616:case 4569:case 4585:case 4601:case 4617:case 4570:case 4586:case 4602:case 4618:case 4571:case 4587:case 4603:case 4619:case 4572:case 4588:case 4604:case 4620:case 4632: return Type::RedMushroomBlock; + case 10852:case 10849:case 10853:case 10850:case 10854:case 10851: return Type::RedNetherBrickSlab; + case 10595:case 10596:case 10597:case 10598:case 10599:case 10600:case 10601:case 10602:case 10603:case 10604:case 10605:case 10606:case 10607:case 10608:case 10609:case 10610:case 10611:case 10612:case 10613:case 10614:case 10615:case 10616:case 10617:case 10618:case 10619:case 10620:case 10621:case 10622:case 10623:case 10624:case 10625:case 10626:case 10627:case 10628:case 10549:case 10550:case 10551:case 10552:case 10553:case 10554:case 10555:case 10556:case 10557:case 10558:case 10559:case 10560:case 10561:case 10562:case 10563:case 10564:case 10565:case 10566:case 10567:case 10568:case 10569:case 10570:case 10571:case 10572:case 10573:case 10574:case 10575:case 10576:case 10577:case 10578:case 10579:case 10580:case 10581:case 10582:case 10583:case 10584:case 10585:case 10586:case 10587:case 10588:case 10589:case 10590:case 10591:case 10592:case 10593:case 10594: return Type::RedNetherBrickStairs; + case 13589:case 13593:case 13597:case 13601:case 13605:case 13609:case 13613:case 13617:case 13621:case 13625:case 13629:case 13633:case 13637:case 13641:case 13645:case 13649:case 13653:case 13657:case 13661:case 13665:case 13669:case 13673:case 13677:case 13681:case 13685:case 13689:case 13693:case 13697:case 13701:case 13705:case 13709:case 13713:case 13717:case 13721:case 13725:case 13729:case 13733:case 13737:case 13741:case 13745:case 13749:case 13753:case 13757:case 13761:case 13765:case 13769:case 13773:case 13777:case 13781:case 13462:case 13466:case 13470:case 13474:case 13478:case 13482:case 13486:case 13490:case 13494:case 13498:case 13502:case 13506:case 13510:case 13514:case 13518:case 13522:case 13526:case 13530:case 13534:case 13538:case 13542:case 13546:case 13550:case 13554:case 13558:case 13562:case 13566:case 13570:case 13574:case 13578:case 13582:case 13586:case 13590:case 13594:case 13598:case 13602:case 13606:case 13610:case 13614:case 13618:case 13622:case 13626:case 13630:case 13634:case 13638:case 13642:case 13646:case 13650:case 13654:case 13658:case 13662:case 13666:case 13670:case 13674:case 13678:case 13682:case 13686:case 13690:case 13694:case 13698:case 13702:case 13706:case 13710:case 13714:case 13718:case 13722:case 13726:case 13730:case 13734:case 13738:case 13742:case 13746:case 13750:case 13754:case 13758:case 13762:case 13766:case 13770:case 13774:case 13778:case 13782:case 13459:case 13463:case 13467:case 13471:case 13475:case 13479:case 13483:case 13487:case 13491:case 13495:case 13499:case 13503:case 13507:case 13511:case 13515:case 13519:case 13523:case 13527:case 13531:case 13535:case 13539:case 13543:case 13547:case 13551:case 13555:case 13559:case 13563:case 13567:case 13571:case 13575:case 13579:case 13583:case 13587:case 13591:case 13595:case 13599:case 13603:case 13607:case 13611:case 13615:case 13619:case 13623:case 13627:case 13631:case 13635:case 13639:case 13643:case 13647:case 13651:case 13655:case 13659:case 13663:case 13667:case 13671:case 13675:case 13679:case 13683:case 13687:case 13691:case 13695:case 13699:case 13703:case 13707:case 13711:case 13715:case 13719:case 13723:case 13727:case 13731:case 13735:case 13739:case 13743:case 13747:case 13751:case 13755:case 13759:case 13763:case 13767:case 13771:case 13775:case 13779:case 13460:case 13464:case 13468:case 13472:case 13476:case 13480:case 13484:case 13488:case 13492:case 13496:case 13500:case 13504:case 13508:case 13512:case 13516:case 13520:case 13524:case 13528:case 13532:case 13536:case 13540:case 13544:case 13548:case 13552:case 13556:case 13560:case 13564:case 13568:case 13572:case 13576:case 13580:case 13584:case 13588:case 13592:case 13596:case 13600:case 13604:case 13608:case 13612:case 13616:case 13620:case 13624:case 13628:case 13632:case 13636:case 13640:case 13644:case 13648:case 13652:case 13656:case 13660:case 13664:case 13668:case 13672:case 13676:case 13680:case 13684:case 13688:case 13692:case 13696:case 13700:case 13704:case 13708:case 13712:case 13716:case 13720:case 13724:case 13728:case 13732:case 13736:case 13740:case 13744:case 13748:case 13752:case 13756:case 13760:case 13764:case 13768:case 13772:case 13776:case 13780:case 13461:case 13465:case 13469:case 13473:case 13477:case 13481:case 13485:case 13489:case 13493:case 13497:case 13501:case 13505:case 13509:case 13513:case 13517:case 13521:case 13525:case 13529:case 13533:case 13537:case 13541:case 13545:case 13549:case 13553:case 13557:case 13561:case 13565:case 13569:case 13573:case 13577:case 13581:case 13585: return Type::RedNetherBrickWall; + case 9255: return Type::RedNetherBricks; + case 67: return Type::RedSand; + case 8217: return Type::RedSandstone; + case 8399:case 8396:case 8400:case 8397:case 8401:case 8398: return Type::RedSandstoneSlab; + case 8220:case 8221:case 8222:case 8223:case 8224:case 8225:case 8226:case 8227:case 8228:case 8229:case 8230:case 8231:case 8232:case 8233:case 8234:case 8235:case 8236:case 8237:case 8238:case 8239:case 8240:case 8241:case 8242:case 8243:case 8244:case 8245:case 8246:case 8247:case 8248:case 8249:case 8250:case 8251:case 8252:case 8253:case 8254:case 8255:case 8256:case 8257:case 8258:case 8259:case 8260:case 8261:case 8262:case 8263:case 8264:case 8265:case 8266:case 8267:case 8268:case 8269:case 8270:case 8271:case 8272:case 8273:case 8274:case 8275:case 8276:case 8277:case 8278:case 8279:case 8280:case 8281:case 8282:case 8283:case 8284:case 8285:case 8286:case 8287:case 8288:case 8289:case 8290:case 8291:case 8292:case 8293:case 8294:case 8295:case 8296:case 8297:case 8298:case 8299: return Type::RedSandstoneStairs; + case 11545:case 11549:case 11553:case 11557:case 11561:case 11565:case 11569:case 11573:case 11577:case 11581:case 11585:case 11589:case 11593:case 11597:case 11601:case 11605:case 11609:case 11613:case 11617:case 11621:case 11625:case 11629:case 11633:case 11637:case 11641:case 11645:case 11649:case 11653:case 11657:case 11661:case 11665:case 11669:case 11673:case 11677:case 11681:case 11685:case 11689:case 11693:case 11697:case 11701:case 11705:case 11709:case 11713:case 11717:case 11721:case 11725:case 11729:case 11733:case 11737:case 11741:case 11745:case 11749:case 11753:case 11757:case 11761:case 11765:case 11769:case 11773:case 11777:case 11781:case 11785:case 11789:case 11793:case 11797:case 11801:case 11805:case 11809:case 11813:case 11817:case 11821:case 11825:case 11829:case 11833:case 11837:case 11518:case 11522:case 11526:case 11530:case 11534:case 11538:case 11542:case 11546:case 11550:case 11554:case 11558:case 11562:case 11566:case 11570:case 11574:case 11578:case 11582:case 11586:case 11590:case 11594:case 11598:case 11602:case 11606:case 11610:case 11614:case 11618:case 11622:case 11626:case 11630:case 11634:case 11638:case 11642:case 11646:case 11650:case 11654:case 11658:case 11662:case 11666:case 11670:case 11674:case 11678:case 11682:case 11686:case 11690:case 11694:case 11698:case 11702:case 11706:case 11710:case 11714:case 11718:case 11722:case 11726:case 11730:case 11734:case 11738:case 11742:case 11746:case 11750:case 11754:case 11758:case 11762:case 11766:case 11770:case 11774:case 11778:case 11782:case 11786:case 11790:case 11794:case 11798:case 11802:case 11806:case 11810:case 11814:case 11818:case 11822:case 11826:case 11830:case 11834:case 11838:case 11515:case 11519:case 11523:case 11527:case 11531:case 11535:case 11539:case 11543:case 11547:case 11551:case 11555:case 11559:case 11563:case 11567:case 11571:case 11575:case 11579:case 11583:case 11587:case 11591:case 11595:case 11599:case 11603:case 11607:case 11611:case 11615:case 11619:case 11623:case 11627:case 11631:case 11635:case 11639:case 11643:case 11647:case 11651:case 11655:case 11659:case 11663:case 11667:case 11671:case 11675:case 11679:case 11683:case 11687:case 11691:case 11695:case 11699:case 11703:case 11707:case 11711:case 11715:case 11719:case 11723:case 11727:case 11731:case 11735:case 11739:case 11743:case 11747:case 11751:case 11755:case 11759:case 11763:case 11767:case 11771:case 11775:case 11779:case 11783:case 11787:case 11791:case 11795:case 11799:case 11803:case 11807:case 11811:case 11815:case 11819:case 11823:case 11827:case 11831:case 11835:case 11516:case 11520:case 11524:case 11528:case 11532:case 11536:case 11540:case 11544:case 11548:case 11552:case 11556:case 11560:case 11564:case 11568:case 11572:case 11576:case 11580:case 11584:case 11588:case 11592:case 11596:case 11600:case 11604:case 11608:case 11612:case 11616:case 11620:case 11624:case 11628:case 11632:case 11636:case 11640:case 11644:case 11648:case 11652:case 11656:case 11660:case 11664:case 11668:case 11672:case 11676:case 11680:case 11684:case 11688:case 11692:case 11696:case 11700:case 11704:case 11708:case 11712:case 11716:case 11720:case 11724:case 11728:case 11732:case 11736:case 11740:case 11744:case 11748:case 11752:case 11756:case 11760:case 11764:case 11768:case 11772:case 11776:case 11780:case 11784:case 11788:case 11792:case 11796:case 11800:case 11804:case 11808:case 11812:case 11816:case 11820:case 11824:case 11828:case 11832:case 11836:case 11517:case 11521:case 11525:case 11529:case 11533:case 11537:case 11541: return Type::RedSandstoneWall; + case 9365:case 9362:case 9366:case 9363:case 9367:case 9364: return Type::RedShulkerBox; + case 4109: return Type::RedStainedGlass; + case 7334:case 7338:case 7311:case 7315:case 7319:case 7323:case 7327:case 7331:case 7335:case 7339:case 7312:case 7316:case 7320:case 7324:case 7328:case 7332:case 7336:case 7340:case 7313:case 7317:case 7321:case 7325:case 7329:case 7333:case 7337:case 7341:case 7314:case 7318:case 7322:case 7326:case 7330:case 7342: return Type::RedStainedGlassPane; + case 6861: return Type::RedTerracotta; + case 1417: return Type::RedTulip; + case 8211:case 8210:case 8209:case 8212: return Type::RedWallBanner; + case 1398: return Type::RedWool; + case 6726: return Type::RedstoneBlock; + case 5156:case 5157: return Type::RedstoneLamp; + case 3885:case 3886: return Type::RedstoneOre; + case 3887:case 3888: return Type::RedstoneTorch; + case 3890:case 3891:case 3892:case 3893:case 3894:case 3895:case 3889:case 3896: return Type::RedstoneWallTorch; + case 3061:case 3065:case 3069:case 3073:case 3077:case 3081:case 3085:case 3089:case 3093:case 3097:case 3101:case 3105:case 3109:case 3113:case 3117:case 3121:case 3125:case 3129:case 3133:case 3137:case 3141:case 3145:case 3149:case 3153:case 3157:case 3161:case 3165:case 3169:case 3173:case 3177:case 3181:case 3185:case 3189:case 3193:case 3197:case 3201:case 3205:case 3209:case 3213:case 3217:case 3221:case 3225:case 3229:case 3233:case 3237:case 3241:case 3245:case 3249:case 3253:case 3257:case 3261:case 3265:case 3269:case 3273:case 3277:case 3281:case 3285:case 3289:case 3293:case 3297:case 3301:case 3305:case 3309:case 3313:case 3317:case 3321:case 3325:case 3329:case 3333:case 3337:case 3341:case 3345:case 3349:case 3353:case 2058:case 2062:case 2066:case 2070:case 2074:case 2078:case 2082:case 2086:case 2090:case 2094:case 2098:case 2102:case 2106:case 2110:case 2114:case 2118:case 2122:case 2126:case 2130:case 2134:case 2138:case 2142:case 2146:case 2150:case 2154:case 2158:case 2162:case 2166:case 2170:case 2174:case 2178:case 2182:case 2186:case 2190:case 2194:case 2198:case 2202:case 2206:case 2210:case 2214:case 2218:case 2222:case 2226:case 2230:case 2234:case 2238:case 2242:case 2246:case 2250:case 2254:case 2258:case 2262:case 2266:case 2270:case 2274:case 2278:case 2282:case 2286:case 2290:case 2294:case 2298:case 2302:case 2306:case 2310:case 2314:case 2318:case 2322:case 2326:case 2330:case 2334:case 2338:case 2342:case 2346:case 2350:case 2354:case 2358:case 2362:case 2366:case 2370:case 2374:case 2378:case 2382:case 2386:case 2390:case 2394:case 2398:case 2402:case 2406:case 2410:case 2414:case 2418:case 2422:case 2426:case 2430:case 2434:case 2438:case 2442:case 2446:case 2450:case 2454:case 2458:case 2462:case 2466:case 2470:case 2474:case 2478:case 2482:case 2486:case 2490:case 2494:case 2498:case 2502:case 2506:case 2510:case 2514:case 2518:case 2522:case 2526:case 2530:case 2534:case 2538:case 2542:case 2546:case 2550:case 2554:case 2558:case 2562:case 2566:case 2570:case 2574:case 2578:case 2582:case 2586:case 2590:case 2594:case 2598:case 2602:case 2606:case 2610:case 2614:case 2618:case 2622:case 2626:case 2630:case 2634:case 2638:case 2642:case 2646:case 2650:case 2654:case 2658:case 2662:case 2666:case 2670:case 2674:case 2678:case 2682:case 2686:case 2690:case 2694:case 2698:case 2702:case 2706:case 2710:case 2714:case 2718:case 2722:case 2726:case 2730:case 2734:case 2738:case 2742:case 2746:case 2750:case 2754:case 2758:case 2762:case 2766:case 2770:case 2774:case 2778:case 2782:case 2786:case 2790:case 2794:case 2798:case 2802:case 2806:case 2810:case 2814:case 2818:case 2822:case 2826:case 2830:case 2834:case 2838:case 2842:case 2846:case 2850:case 2854:case 2858:case 2862:case 2866:case 2870:case 2874:case 2878:case 2882:case 2886:case 2890:case 2894:case 2898:case 2902:case 2906:case 2910:case 2914:case 2918:case 2922:case 2926:case 2930:case 2934:case 2938:case 2942:case 2946:case 2950:case 2954:case 2958:case 2962:case 2966:case 2970:case 2974:case 2978:case 2982:case 2986:case 2990:case 2994:case 2998:case 3002:case 3006:case 3010:case 3014:case 3018:case 3022:case 3026:case 3030:case 3034:case 3038:case 3042:case 3046:case 3050:case 3054:case 3058:case 3062:case 3066:case 3070:case 3074:case 3078:case 3082:case 3086:case 3090:case 3094:case 3098:case 3102:case 3106:case 3110:case 3114:case 3118:case 3122:case 3126:case 3130:case 3134:case 3138:case 3142:case 3146:case 3150:case 3154:case 3158:case 3162:case 3166:case 3170:case 3174:case 3178:case 3182:case 3186:case 3190:case 3194:case 3198:case 3202:case 3206:case 3210:case 3214:case 3218:case 3222:case 3226:case 3230:case 3234:case 3238:case 3242:case 3246:case 3250:case 3254:case 3258:case 3262:case 3266:case 3270:case 3274:case 3278:case 3282:case 3286:case 3290:case 3294:case 3298:case 3302:case 3306:case 3310:case 3314:case 3318:case 3322:case 3326:case 3330:case 3334:case 3338:case 3342:case 3346:case 3350:case 2059:case 2063:case 2067:case 2071:case 2075:case 2079:case 2083:case 2087:case 2091:case 2095:case 2099:case 2103:case 2107:case 2111:case 2115:case 2119:case 2123:case 2127:case 2131:case 2135:case 2139:case 2143:case 2147:case 2151:case 2155:case 2159:case 2163:case 2167:case 2171:case 2175:case 2179:case 2183:case 2187:case 2191:case 2195:case 2199:case 2203:case 2207:case 2211:case 2215:case 2219:case 2223:case 2227:case 2231:case 2235:case 2239:case 2243:case 2247:case 2251:case 2255:case 2259:case 2263:case 2267:case 2271:case 2275:case 2279:case 2283:case 2287:case 2291:case 2295:case 2299:case 2303:case 2307:case 2311:case 2315:case 2319:case 2323:case 2327:case 2331:case 2335:case 2339:case 2343:case 2347:case 2351:case 2355:case 2359:case 2363:case 2367:case 2371:case 2375:case 2379:case 2383:case 2387:case 2391:case 2395:case 2399:case 2403:case 2407:case 2411:case 2415:case 2419:case 2423:case 2427:case 2431:case 2435:case 2439:case 2443:case 2447:case 2451:case 2455:case 2459:case 2463:case 2467:case 2471:case 2475:case 2479:case 2483:case 2487:case 2491:case 2495:case 2499:case 2503:case 2507:case 2511:case 2515:case 2519:case 2523:case 2527:case 2531:case 2535:case 2539:case 2543:case 2547:case 2551:case 2555:case 2559:case 2563:case 2567:case 2571:case 2575:case 2579:case 2583:case 2587:case 2591:case 2595:case 2599:case 2603:case 2607:case 2611:case 2615:case 2619:case 2623:case 2627:case 2631:case 2635:case 2639:case 2643:case 2647:case 2651:case 2655:case 2659:case 2663:case 2667:case 2671:case 2675:case 2679:case 2683:case 2687:case 2691:case 2695:case 2699:case 2703:case 2707:case 2711:case 2715:case 2719:case 2723:case 2727:case 2731:case 2735:case 2739:case 2743:case 2747:case 2751:case 2755:case 2759:case 2763:case 2767:case 2771:case 2775:case 2779:case 2783:case 2787:case 2791:case 2795:case 2799:case 2803:case 2807:case 2811:case 2815:case 2819:case 2823:case 2827:case 2831:case 2835:case 2839:case 2843:case 2847:case 2851:case 2855:case 2859:case 2863:case 2867:case 2871:case 2875:case 2879:case 2883:case 2887:case 2891:case 2895:case 2899:case 2903:case 2907:case 2911:case 2915:case 2919:case 2923:case 2927:case 2931:case 2935:case 2939:case 2943:case 2947:case 2951:case 2955:case 2959:case 2963:case 2967:case 2971:case 2975:case 2979:case 2983:case 2987:case 2991:case 2995:case 2999:case 3003:case 3007:case 3011:case 3015:case 3019:case 3023:case 3027:case 3031:case 3035:case 3039:case 3043:case 3047:case 3051:case 3055:case 3059:case 3063:case 3067:case 3071:case 3075:case 3079:case 3083:case 3087:case 3091:case 3095:case 3099:case 3103:case 3107:case 3111:case 3115:case 3119:case 3123:case 3127:case 3131:case 3135:case 3139:case 3143:case 3147:case 3151:case 3155:case 3159:case 3163:case 3167:case 3171:case 3175:case 3179:case 3183:case 3187:case 3191:case 3195:case 3199:case 3203:case 3207:case 3211:case 3215:case 3219:case 3223:case 3227:case 3231:case 3235:case 3239:case 3243:case 3247:case 3251:case 3255:case 3259:case 3263:case 3267:case 3271:case 3275:case 3279:case 3283:case 3287:case 3291:case 3295:case 3299:case 3303:case 3307:case 3311:case 3315:case 3319:case 3323:case 3327:case 3331:case 3335:case 3339:case 3343:case 3347:case 3351:case 2060:case 2064:case 2068:case 2072:case 2076:case 2080:case 2084:case 2088:case 2092:case 2096:case 2100:case 2104:case 2108:case 2112:case 2116:case 2120:case 2124:case 2128:case 2132:case 2136:case 2140:case 2144:case 2148:case 2152:case 2156:case 2160:case 2164:case 2168:case 2172:case 2176:case 2180:case 2184:case 2188:case 2192:case 2196:case 2200:case 2204:case 2208:case 2212:case 2216:case 2220:case 2224:case 2228:case 2232:case 2236:case 2240:case 2244:case 2248:case 2252:case 2256:case 2260:case 2264:case 2268:case 2272:case 2276:case 2280:case 2284:case 2288:case 2292:case 2296:case 2300:case 2304:case 2308:case 2312:case 2316:case 2320:case 2324:case 2328:case 2332:case 2336:case 2340:case 2344:case 2348:case 2352:case 2356:case 2360:case 2364:case 2368:case 2372:case 2376:case 2380:case 2384:case 2388:case 2392:case 2396:case 2400:case 2404:case 2408:case 2412:case 2416:case 2420:case 2424:case 2428:case 2432:case 2436:case 2440:case 2444:case 2448:case 2452:case 2456:case 2460:case 2464:case 2468:case 2472:case 2476:case 2480:case 2484:case 2488:case 2492:case 2496:case 2500:case 2504:case 2508:case 2512:case 2516:case 2520:case 2524:case 2528:case 2532:case 2536:case 2540:case 2544:case 2548:case 2552:case 2556:case 2560:case 2564:case 2568:case 2572:case 2576:case 2580:case 2584:case 2588:case 2592:case 2596:case 2600:case 2604:case 2608:case 2612:case 2616:case 2620:case 2624:case 2628:case 2632:case 2636:case 2640:case 2644:case 2648:case 2652:case 2656:case 2660:case 2664:case 2668:case 2672:case 2676:case 2680:case 2684:case 2688:case 2692:case 2696:case 2700:case 2704:case 2708:case 2712:case 2716:case 2720:case 2724:case 2728:case 2732:case 2736:case 2740:case 2744:case 2748:case 2752:case 2756:case 2760:case 2764:case 2768:case 2772:case 2776:case 2780:case 2784:case 2788:case 2792:case 2796:case 2800:case 2804:case 2808:case 2812:case 2816:case 2820:case 2824:case 2828:case 2832:case 2836:case 2840:case 2844:case 2848:case 2852:case 2856:case 2860:case 2864:case 2868:case 2872:case 2876:case 2880:case 2884:case 2888:case 2892:case 2896:case 2900:case 2904:case 2908:case 2912:case 2916:case 2920:case 2924:case 2928:case 2932:case 2936:case 2940:case 2944:case 2948:case 2952:case 2956:case 2960:case 2964:case 2968:case 2972:case 2976:case 2980:case 2984:case 2988:case 2992:case 2996:case 3000:case 3004:case 3008:case 3012:case 3016:case 3020:case 3024:case 3028:case 3032:case 3036:case 3040:case 3044:case 3048:case 3052:case 3056:case 3060:case 3064:case 3068:case 3072:case 3076:case 3080:case 3084:case 3088:case 3092:case 3096:case 3100:case 3104:case 3108:case 3112:case 3116:case 3120:case 3124:case 3128:case 3132:case 3136:case 3140:case 3144:case 3148:case 3152:case 3156:case 3160:case 3164:case 3168:case 3172:case 3176:case 3180:case 3184:case 3188:case 3192:case 3196:case 3200:case 3204:case 3208:case 3212:case 3216:case 3220:case 3224:case 3228:case 3232:case 3236:case 3240:case 3244:case 3248:case 3252:case 3256:case 3260:case 3264:case 3268:case 3272:case 3276:case 3280:case 3284:case 3288:case 3292:case 3296:case 3300:case 3304:case 3308:case 3312:case 3316:case 3320:case 3324:case 3328:case 3332:case 3336:case 3340:case 3344:case 3348:case 3352:case 2061:case 2065:case 2069:case 2073:case 2077:case 2081:case 2085:case 2089:case 2093:case 2097:case 2101:case 2105:case 2109:case 2113:case 2117:case 2121:case 2125:case 2129:case 2133:case 2137:case 2141:case 2145:case 2149:case 2153:case 2157:case 2161:case 2165:case 2169:case 2173:case 2177:case 2181:case 2185:case 2189:case 2193:case 2197:case 2201:case 2205:case 2209:case 2213:case 2217:case 2221:case 2225:case 2229:case 2233:case 2237:case 2241:case 2245:case 2249:case 2253:case 2257:case 2261:case 2265:case 2269:case 2273:case 2277:case 2281:case 2285:case 2289:case 2293:case 2297:case 2301:case 2305:case 2309:case 2313:case 2317:case 2321:case 2325:case 2329:case 2333:case 2337:case 2341:case 2345:case 2349:case 2353:case 2357:case 2361:case 2365:case 2369:case 2373:case 2377:case 2381:case 2385:case 2389:case 2393:case 2397:case 2401:case 2405:case 2409:case 2413:case 2417:case 2421:case 2425:case 2429:case 2433:case 2437:case 2441:case 2445:case 2449:case 2453:case 2457:case 2461:case 2465:case 2469:case 2473:case 2477:case 2481:case 2485:case 2489:case 2493:case 2497:case 2501:case 2505:case 2509:case 2513:case 2517:case 2521:case 2525:case 2529:case 2533:case 2537:case 2541:case 2545:case 2549:case 2553:case 2557:case 2561:case 2565:case 2569:case 2573:case 2577:case 2581:case 2585:case 2589:case 2593:case 2597:case 2601:case 2605:case 2609:case 2613:case 2617:case 2621:case 2625:case 2629:case 2633:case 2637:case 2641:case 2645:case 2649:case 2653:case 2657:case 2661:case 2665:case 2669:case 2673:case 2677:case 2681:case 2685:case 2689:case 2693:case 2697:case 2701:case 2705:case 2709:case 2713:case 2717:case 2721:case 2725:case 2729:case 2733:case 2737:case 2741:case 2745:case 2749:case 2753:case 2757:case 2761:case 2765:case 2769:case 2773:case 2777:case 2781:case 2785:case 2789:case 2793:case 2797:case 2801:case 2805:case 2809:case 2813:case 2817:case 2821:case 2825:case 2829:case 2833:case 2837:case 2841:case 2845:case 2849:case 2853:case 2857:case 2861:case 2865:case 2869:case 2873:case 2877:case 2881:case 2885:case 2889:case 2893:case 2897:case 2901:case 2905:case 2909:case 2913:case 2917:case 2921:case 2925:case 2929:case 2933:case 2937:case 2941:case 2945:case 2949:case 2953:case 2957:case 2961:case 2965:case 2969:case 2973:case 2977:case 2981:case 2985:case 2989:case 2993:case 2997:case 3001:case 3005:case 3009:case 3013:case 3017:case 3021:case 3025:case 3029:case 3033:case 3037:case 3041:case 3045:case 3049:case 3053:case 3057: return Type::RedstoneWire; + case 4051:case 4059:case 4067:case 4075:case 4083:case 4091:case 4036:case 4044:case 4052:case 4060:case 4068:case 4076:case 4084:case 4092:case 4037:case 4045:case 4053:case 4061:case 4069:case 4077:case 4085:case 4093:case 4038:case 4046:case 4054:case 4062:case 4070:case 4078:case 4086:case 4031:case 4039:case 4047:case 4055:case 4063:case 4071:case 4079:case 4087:case 4032:case 4040:case 4048:case 4056:case 4064:case 4072:case 4080:case 4088:case 4033:case 4041:case 4049:case 4057:case 4065:case 4073:case 4081:case 4089:case 4034:case 4042:case 4050:case 4058:case 4066:case 4074:case 4082:case 4090:case 4035:case 4043:case 4094: return Type::Repeater; + case 9225:case 9227:case 9229:case 9231:case 9233:case 9235:case 9226:case 9228:case 9230:case 9232:case 9234:case 9236: return Type::RepeatingCommandBlock; + case 15829:case 15833:case 15830:case 15831:case 15832: return Type::RespawnAnchor; + case 7889:case 7890: return Type::RoseBush; + case 66: return Type::Sand; + case 246: return Type::Sandstone; + case 8353:case 8350:case 8351:case 8348:case 8352:case 8349: return Type::SandstoneSlab; + case 5203:case 5204:case 5205:case 5206:case 5207:case 5208:case 5209:case 5210:case 5211:case 5212:case 5213:case 5214:case 5215:case 5216:case 5217:case 5218:case 5219:case 5220:case 5221:case 5222:case 5223:case 5224:case 5225:case 5226:case 5227:case 5228:case 5229:case 5230:case 5231:case 5232:case 5233:case 5170:case 5234:case 5171:case 5235:case 5172:case 5236:case 5173:case 5237:case 5174:case 5238:case 5175:case 5239:case 5176:case 5240:case 5177:case 5241:case 5178:case 5242:case 5179:case 5243:case 5180:case 5244:case 5181:case 5245:case 5182:case 5246:case 5183:case 5247:case 5184:case 5248:case 5185:case 5249:case 5186:case 5187:case 5188:case 5189:case 5190:case 5191:case 5192:case 5193:case 5194:case 5195:case 5196:case 5197:case 5198:case 5199:case 5200:case 5201:case 5202: return Type::SandstoneStairs; + case 14100:case 14104:case 13785:case 13789:case 13793:case 13797:case 13801:case 13805:case 13809:case 13813:case 13817:case 13821:case 13825:case 13829:case 13833:case 13837:case 13841:case 13845:case 13849:case 13853:case 13857:case 13861:case 13865:case 13869:case 13873:case 13877:case 13881:case 13885:case 13889:case 13893:case 13897:case 13901:case 13905:case 13909:case 13913:case 13917:case 13921:case 13925:case 13929:case 13933:case 13937:case 13941:case 13945:case 13949:case 13953:case 13957:case 13961:case 13965:case 13969:case 13973:case 13977:case 13981:case 13985:case 13989:case 13993:case 13997:case 14001:case 14005:case 14009:case 14013:case 14017:case 14021:case 14025:case 14029:case 14033:case 14037:case 14041:case 14045:case 14049:case 14053:case 14057:case 14061:case 14065:case 14069:case 14073:case 14077:case 14081:case 14085:case 14089:case 14093:case 14097:case 14101:case 14105:case 13786:case 13790:case 13794:case 13798:case 13802:case 13806:case 13810:case 13814:case 13818:case 13822:case 13826:case 13830:case 13834:case 13838:case 13842:case 13846:case 13850:case 13854:case 13858:case 13862:case 13866:case 13870:case 13874:case 13878:case 13882:case 13886:case 13890:case 13894:case 13898:case 13902:case 13906:case 13910:case 13914:case 13918:case 13922:case 13926:case 13930:case 13934:case 13938:case 13942:case 13946:case 13950:case 13954:case 13958:case 13962:case 13966:case 13970:case 13974:case 13978:case 13982:case 13986:case 13990:case 13994:case 13998:case 14002:case 14006:case 14010:case 14014:case 14018:case 14022:case 14026:case 14030:case 14034:case 14038:case 14042:case 14046:case 14050:case 14054:case 14058:case 14062:case 14066:case 14070:case 14074:case 14078:case 14082:case 14086:case 14090:case 14094:case 14098:case 14102:case 14106:case 13783:case 13787:case 13791:case 13795:case 13799:case 13803:case 13807:case 13811:case 13815:case 13819:case 13823:case 13827:case 13831:case 13835:case 13839:case 13843:case 13847:case 13851:case 13855:case 13859:case 13863:case 13867:case 13871:case 13875:case 13879:case 13883:case 13887:case 13891:case 13895:case 13899:case 13903:case 13907:case 13911:case 13915:case 13919:case 13923:case 13927:case 13931:case 13935:case 13939:case 13943:case 13947:case 13951:case 13955:case 13959:case 13963:case 13967:case 13971:case 13975:case 13979:case 13983:case 13987:case 13991:case 13995:case 13999:case 14003:case 14007:case 14011:case 14015:case 14019:case 14023:case 14027:case 14031:case 14035:case 14039:case 14043:case 14047:case 14051:case 14055:case 14059:case 14063:case 14067:case 14071:case 14075:case 14079:case 14083:case 14087:case 14091:case 14095:case 14099:case 14103:case 13784:case 13788:case 13792:case 13796:case 13800:case 13804:case 13808:case 13812:case 13816:case 13820:case 13824:case 13828:case 13832:case 13836:case 13840:case 13844:case 13848:case 13852:case 13856:case 13860:case 13864:case 13868:case 13872:case 13876:case 13880:case 13884:case 13888:case 13892:case 13896:case 13900:case 13904:case 13908:case 13912:case 13916:case 13920:case 13924:case 13928:case 13932:case 13936:case 13940:case 13944:case 13948:case 13952:case 13956:case 13960:case 13964:case 13968:case 13972:case 13976:case 13980:case 13984:case 13988:case 13992:case 13996:case 14000:case 14004:case 14008:case 14012:case 14016:case 14020:case 14024:case 14028:case 14032:case 14036:case 14040:case 14044:case 14048:case 14052:case 14056:case 14060:case 14064:case 14068:case 14072:case 14076:case 14080:case 14084:case 14088:case 14092:case 14096: return Type::SandstoneWall; + case 14784:case 14761:case 14769:case 14777:case 14785:case 14762:case 14770:case 14778:case 14755:case 14763:case 14771:case 14779:case 14756:case 14764:case 14772:case 14780:case 14757:case 14765:case 14773:case 14781:case 14758:case 14766:case 14774:case 14782:case 14759:case 14767:case 14775:case 14783:case 14760:case 14768:case 14776:case 14786: return Type::Scaffolding; + case 7862: return Type::SeaLantern; + case 9641:case 9645:case 9642:case 9646:case 9643:case 9640:case 9644:case 9647: return Type::SeaPickle; + case 1345: return Type::Seagrass; + case 14989: return Type::Shroomlight; + case 9277:case 9274:case 9275:case 9272:case 9276:case 9273: return Type::ShulkerBox; + case 6496:case 6497:case 6498:case 6499:case 6500:case 6501:case 6502:case 6503:case 6504:case 6490:case 6491:case 6492:case 6493:case 6494:case 6495:case 6505: return Type::SkeletonSkull; + case 6508:case 6506:case 6507:case 6509: return Type::SkeletonWallSkull; + case 7535: return Type::SlimeBlock; + case 14849: return Type::SmithingTable; + case 14807:case 14804:case 14808:case 14805:case 14809:case 14806:case 14803:case 14810: return Type::Smoker; + case 8416: return Type::SmoothQuartz; + case 10831:case 10835:case 10832:case 10836:case 10833:case 10834: return Type::SmoothQuartzSlab; + case 10341:case 10342:case 10343:case 10344:case 10345:case 10346:case 10347:case 10348:case 10349:case 10350:case 10351:case 10352:case 10353:case 10354:case 10355:case 10356:case 10357:case 10358:case 10359:case 10360:case 10361:case 10362:case 10363:case 10364:case 10365:case 10366:case 10367:case 10368:case 10369:case 10370:case 10371:case 10372:case 10373:case 10374:case 10375:case 10376:case 10377:case 10378:case 10379:case 10380:case 10381:case 10382:case 10383:case 10384:case 10385:case 10386:case 10387:case 10388:case 10309:case 10310:case 10311:case 10312:case 10313:case 10314:case 10315:case 10316:case 10317:case 10318:case 10319:case 10320:case 10321:case 10322:case 10323:case 10324:case 10325:case 10326:case 10327:case 10328:case 10329:case 10330:case 10331:case 10332:case 10333:case 10334:case 10335:case 10336:case 10337:case 10338:case 10339:case 10340: return Type::SmoothQuartzStairs; + case 8417: return Type::SmoothRedSandstone; + case 10796:case 10800:case 10797:case 10798:case 10795:case 10799: return Type::SmoothRedSandstoneSlab; + case 9749:case 9750:case 9751:case 9752:case 9753:case 9754:case 9755:case 9756:case 9757:case 9758:case 9759:case 9760:case 9761:case 9762:case 9763:case 9764:case 9765:case 9766:case 9767:case 9768:case 9769:case 9770:case 9771:case 9772:case 9773:case 9774:case 9775:case 9776:case 9777:case 9778:case 9779:case 9780:case 9781:case 9782:case 9783:case 9784:case 9785:case 9786:case 9787:case 9788:case 9789:case 9790:case 9791:case 9792:case 9793:case 9794:case 9795:case 9796:case 9797:case 9798:case 9799:case 9800:case 9801:case 9802:case 9803:case 9804:case 9805:case 9806:case 9807:case 9808:case 9809:case 9810:case 9811:case 9812:case 9813:case 9814:case 9815:case 9816:case 9817:case 9818:case 9819:case 9820:case 9821:case 9822:case 9823:case 9824:case 9825:case 9826:case 9827:case 9828: return Type::SmoothRedSandstoneStairs; + case 8415: return Type::SmoothSandstone; + case 10828:case 10825:case 10829:case 10826:case 10830:case 10827: return Type::SmoothSandstoneSlab; + case 10229:case 10230:case 10231:case 10232:case 10233:case 10234:case 10235:case 10236:case 10237:case 10238:case 10239:case 10240:case 10241:case 10242:case 10243:case 10244:case 10245:case 10246:case 10247:case 10248:case 10249:case 10250:case 10251:case 10252:case 10253:case 10254:case 10255:case 10256:case 10257:case 10258:case 10259:case 10260:case 10261:case 10262:case 10263:case 10264:case 10265:case 10266:case 10267:case 10268:case 10269:case 10270:case 10271:case 10272:case 10273:case 10274:case 10275:case 10276:case 10277:case 10278:case 10279:case 10280:case 10281:case 10282:case 10283:case 10284:case 10285:case 10286:case 10287:case 10288:case 10289:case 10290:case 10291:case 10292:case 10293:case 10294:case 10295:case 10296:case 10297:case 10298:case 10299:case 10300:case 10301:case 10302:case 10303:case 10304:case 10305:case 10306:case 10307:case 10308: return Type::SmoothSandstoneStairs; + case 8414: return Type::SmoothStone; + case 8346:case 8343:case 8347:case 8344:case 8345:case 8342: return Type::SmoothStoneSlab; + case 3925:case 3926:case 3927:case 3921:case 3922:case 3923:case 3924:case 3928: return Type::Snow; + case 3930: return Type::SnowBlock; + case 14939:case 14947:case 14924:case 14932:case 14940:case 14948:case 14925:case 14933:case 14941:case 14949:case 14926:case 14934:case 14942:case 14950:case 14927:case 14935:case 14943:case 14951:case 14928:case 14936:case 14944:case 14952:case 14929:case 14937:case 14945:case 14922:case 14930:case 14938:case 14946:case 14923:case 14931:case 14953: return Type::SoulCampfire; + case 1952: return Type::SoulFire; + case 14888:case 14889: return Type::SoulLantern; + case 4000: return Type::SoulSand; + case 4001: return Type::SoulSoil; + case 4008: return Type::SoulTorch; + case 4009:case 4011:case 4010:case 4012: return Type::SoulWallTorch; + case 1953: return Type::Spawner; + case 229: return Type::Sponge; + case 6373:case 6377:case 6381:case 6385:case 6389:case 6393:case 6370:case 6374:case 6378:case 6382:case 6386:case 6390:case 6371:case 6375:case 6379:case 6383:case 6387:case 6391:case 6372:case 6376:case 6380:case 6384:case 6388:case 6392: return Type::SpruceButton; + case 8766:case 8798:case 8767:case 8799:case 8768:case 8800:case 8769:case 8738:case 8770:case 8739:case 8771:case 8740:case 8772:case 8741:case 8773:case 8742:case 8774:case 8743:case 8775:case 8744:case 8776:case 8745:case 8777:case 8746:case 8778:case 8747:case 8779:case 8748:case 8780:case 8749:case 8781:case 8750:case 8782:case 8751:case 8783:case 8752:case 8784:case 8753:case 8785:case 8754:case 8786:case 8755:case 8787:case 8756:case 8788:case 8757:case 8789:case 8758:case 8790:case 8759:case 8791:case 8760:case 8792:case 8761:case 8793:case 8762:case 8794:case 8763:case 8795:case 8764:case 8796:case 8765:case 8797:case 8801: return Type::SpruceDoor; + case 8584:case 8592:case 8600:case 8608:case 8585:case 8593:case 8601:case 8578:case 8586:case 8594:case 8602:case 8579:case 8587:case 8595:case 8603:case 8580:case 8588:case 8596:case 8604:case 8581:case 8589:case 8597:case 8605:case 8582:case 8590:case 8598:case 8606:case 8583:case 8591:case 8599:case 8607:case 8609: return Type::SpruceFence; + case 8429:case 8437:case 8445:case 8422:case 8430:case 8438:case 8446:case 8423:case 8431:case 8439:case 8447:case 8424:case 8432:case 8440:case 8448:case 8425:case 8433:case 8441:case 8418:case 8426:case 8434:case 8442:case 8419:case 8427:case 8435:case 8443:case 8420:case 8428:case 8436:case 8444:case 8421:case 8449: return Type::SpruceFenceGate; + case 168:case 161:case 169:case 162:case 170:case 163:case 171:case 164:case 172:case 165:case 166:case 159:case 167:case 160: return Type::SpruceLeaves; + case 76:case 77:case 78: return Type::SpruceLog; + case 16: return Type::SprucePlanks; + case 3875:case 3876: return Type::SprucePressurePlate; + case 23:case 24: return Type::SpruceSapling; + case 3421:case 3423:case 3425:case 3427:case 3429:case 3431:case 3433:case 3435:case 3437:case 3439:case 3441:case 3443:case 3414:case 3416:case 3418:case 3420:case 3422:case 3424:case 3426:case 3428:case 3430:case 3432:case 3434:case 3436:case 3438:case 3440:case 3442:case 3413:case 3415:case 3417:case 3419:case 3444: return Type::SpruceSign; + case 8311:case 8308:case 8309:case 8306:case 8310:case 8307: return Type::SpruceSlab; + case 5457:case 5458:case 5459:case 5460:case 5461:case 5462:case 5463:case 5464:case 5465:case 5466:case 5467:case 5404:case 5468:case 5405:case 5469:case 5406:case 5470:case 5407:case 5471:case 5408:case 5472:case 5409:case 5473:case 5410:case 5474:case 5411:case 5475:case 5412:case 5476:case 5413:case 5477:case 5414:case 5478:case 5415:case 5479:case 5416:case 5480:case 5417:case 5481:case 5418:case 5482:case 5419:case 5483:case 5420:case 5421:case 5422:case 5423:case 5424:case 5425:case 5426:case 5427:case 5428:case 5429:case 5430:case 5431:case 5432:case 5433:case 5434:case 5435:case 5436:case 5437:case 5438:case 5439:case 5440:case 5441:case 5442:case 5443:case 5444:case 5445:case 5446:case 5447:case 5448:case 5449:case 5450:case 5451:case 5452:case 5453:case 5454:case 5455:case 5456: return Type::SpruceStairs; + case 4195:case 4211:case 4227:case 4180:case 4196:case 4212:case 4228:case 4181:case 4197:case 4213:case 4229:case 4182:case 4198:case 4214:case 4230:case 4183:case 4199:case 4215:case 4231:case 4184:case 4200:case 4216:case 4232:case 4185:case 4201:case 4217:case 4233:case 4186:case 4202:case 4218:case 4234:case 4187:case 4203:case 4219:case 4235:case 4188:case 4204:case 4220:case 4236:case 4189:case 4205:case 4221:case 4237:case 4190:case 4206:case 4222:case 4175:case 4191:case 4207:case 4223:case 4176:case 4192:case 4208:case 4224:case 4177:case 4193:case 4209:case 4225:case 4178:case 4194:case 4210:case 4226:case 4179:case 4238: return Type::SpruceTrapdoor; + case 3743:case 3744:case 3745:case 3746:case 3747:case 3748:case 3749:case 3750: return Type::SpruceWallSign; + case 112:case 113:case 114: return Type::SpruceWood; + case 1332:case 1336:case 1340:case 1329:case 1333:case 1337:case 1330:case 1334:case 1338:case 1331:case 1335:case 1339: return Type::StickyPiston; + case 1: return Type::Stone; + case 8381:case 8378:case 8382:case 8379:case 8383:case 8380: return Type::StoneBrickSlab; + case 4949:case 4950:case 4951:case 4952:case 4953:case 4954:case 4955:case 4956:case 4957:case 4958:case 4959:case 4960:case 4961:case 4962:case 4963:case 4964:case 4965:case 4966:case 4967:case 4968:case 4969:case 4970:case 4971:case 4972:case 4973:case 4974:case 4975:case 4976:case 4977:case 4978:case 4979:case 4980:case 4981:case 4982:case 4983:case 4984:case 4985:case 4986:case 4987:case 4988:case 4989:case 4990:case 4991:case 4992:case 4993:case 4994:case 4995:case 4932:case 4996:case 4933:case 4997:case 4934:case 4998:case 4935:case 4999:case 4936:case 5000:case 4937:case 5001:case 4938:case 5002:case 4939:case 5003:case 4940:case 5004:case 4941:case 5005:case 4942:case 5006:case 4943:case 5007:case 4944:case 5008:case 4945:case 5009:case 4946:case 5010:case 4947:case 5011:case 4948: return Type::StoneBrickStairs; + case 12567:case 12571:case 12575:case 12579:case 12583:case 12587:case 12591:case 12595:case 12599:case 12603:case 12607:case 12611:case 12615:case 12619:case 12623:case 12627:case 12631:case 12635:case 12639:case 12643:case 12647:case 12651:case 12655:case 12659:case 12663:case 12667:case 12671:case 12675:case 12679:case 12683:case 12687:case 12691:case 12695:case 12699:case 12703:case 12707:case 12711:case 12715:case 12719:case 12723:case 12727:case 12731:case 12735:case 12739:case 12743:case 12747:case 12751:case 12755:case 12759:case 12763:case 12767:case 12771:case 12775:case 12779:case 12783:case 12787:case 12791:case 12795:case 12799:case 12803:case 12807:case 12488:case 12492:case 12496:case 12500:case 12504:case 12508:case 12512:case 12516:case 12520:case 12524:case 12528:case 12532:case 12536:case 12540:case 12544:case 12548:case 12552:case 12556:case 12560:case 12564:case 12568:case 12572:case 12576:case 12580:case 12584:case 12588:case 12592:case 12596:case 12600:case 12604:case 12608:case 12612:case 12616:case 12620:case 12624:case 12628:case 12632:case 12636:case 12640:case 12644:case 12648:case 12652:case 12656:case 12660:case 12664:case 12668:case 12672:case 12676:case 12680:case 12684:case 12688:case 12692:case 12696:case 12700:case 12704:case 12708:case 12712:case 12716:case 12720:case 12724:case 12728:case 12732:case 12736:case 12740:case 12744:case 12748:case 12752:case 12756:case 12760:case 12764:case 12768:case 12772:case 12776:case 12780:case 12784:case 12788:case 12792:case 12796:case 12800:case 12804:case 12808:case 12489:case 12493:case 12497:case 12501:case 12505:case 12509:case 12513:case 12517:case 12521:case 12525:case 12529:case 12533:case 12537:case 12541:case 12545:case 12549:case 12553:case 12557:case 12561:case 12565:case 12569:case 12573:case 12577:case 12581:case 12585:case 12589:case 12593:case 12597:case 12601:case 12605:case 12609:case 12613:case 12617:case 12621:case 12625:case 12629:case 12633:case 12637:case 12641:case 12645:case 12649:case 12653:case 12657:case 12661:case 12665:case 12669:case 12673:case 12677:case 12681:case 12685:case 12689:case 12693:case 12697:case 12701:case 12705:case 12709:case 12713:case 12717:case 12721:case 12725:case 12729:case 12733:case 12737:case 12741:case 12745:case 12749:case 12753:case 12757:case 12761:case 12765:case 12769:case 12773:case 12777:case 12781:case 12785:case 12789:case 12793:case 12797:case 12801:case 12805:case 12809:case 12490:case 12494:case 12498:case 12502:case 12506:case 12510:case 12514:case 12518:case 12522:case 12526:case 12530:case 12534:case 12538:case 12542:case 12546:case 12550:case 12554:case 12558:case 12562:case 12566:case 12570:case 12574:case 12578:case 12582:case 12586:case 12590:case 12594:case 12598:case 12602:case 12606:case 12610:case 12614:case 12618:case 12622:case 12626:case 12630:case 12634:case 12638:case 12642:case 12646:case 12650:case 12654:case 12658:case 12662:case 12666:case 12670:case 12674:case 12678:case 12682:case 12686:case 12690:case 12694:case 12698:case 12702:case 12706:case 12710:case 12714:case 12718:case 12722:case 12726:case 12730:case 12734:case 12738:case 12742:case 12746:case 12750:case 12754:case 12758:case 12762:case 12766:case 12770:case 12774:case 12778:case 12782:case 12786:case 12790:case 12794:case 12798:case 12802:case 12806:case 12810:case 12487:case 12491:case 12495:case 12499:case 12503:case 12507:case 12511:case 12515:case 12519:case 12523:case 12527:case 12531:case 12535:case 12539:case 12543:case 12547:case 12551:case 12555:case 12559:case 12563: return Type::StoneBrickWall; + case 4495: return Type::StoneBricks; + case 3917:case 3919:case 3898:case 3900:case 3902:case 3904:case 3906:case 3908:case 3910:case 3912:case 3914:case 3916:case 3918:case 3920:case 3897:case 3899:case 3901:case 3903:case 3905:case 3907:case 3909:case 3911:case 3913:case 3915: return Type::StoneButton; + case 3807:case 3808: return Type::StonePressurePlate; + case 8339:case 8336:case 8340:case 8337:case 8341:case 8338: return Type::StoneSlab; + case 10214:case 10215:case 10216:case 10217:case 10218:case 10219:case 10220:case 10221:case 10222:case 10223:case 10224:case 10225:case 10226:case 10227:case 10228:case 10149:case 10150:case 10151:case 10152:case 10153:case 10154:case 10155:case 10156:case 10157:case 10158:case 10159:case 10160:case 10161:case 10162:case 10163:case 10164:case 10165:case 10166:case 10167:case 10168:case 10169:case 10170:case 10171:case 10172:case 10173:case 10174:case 10175:case 10176:case 10177:case 10178:case 10179:case 10180:case 10181:case 10182:case 10183:case 10184:case 10185:case 10186:case 10187:case 10188:case 10189:case 10190:case 10191:case 10192:case 10193:case 10194:case 10195:case 10196:case 10197:case 10198:case 10199:case 10200:case 10201:case 10202:case 10203:case 10204:case 10205:case 10206:case 10207:case 10208:case 10209:case 10210:case 10211:case 10212:case 10213: return Type::StoneStairs; + case 14850:case 14852:case 14851:case 14853: return Type::Stonecutter; + case 100:case 101:case 102: return Type::StrippedAcaciaLog; + case 141:case 140:case 139: return Type::StrippedAcaciaWood; + case 94:case 95:case 96: return Type::StrippedBirchLog; + case 135:case 134:case 133: return Type::StrippedBirchWood; + case 14985:case 14984:case 14986: return Type::StrippedCrimsonHyphae; + case 14979:case 14978:case 14980: return Type::StrippedCrimsonStem; + case 103:case 104:case 105: return Type::StrippedDarkOakLog; + case 144:case 143:case 142: return Type::StrippedDarkOakWood; + case 97:case 98:case 99: return Type::StrippedJungleLog; + case 138:case 137:case 136: return Type::StrippedJungleWood; + case 106:case 107:case 108: return Type::StrippedOakLog; + case 127:case 128:case 129: return Type::StrippedOakWood; + case 91:case 92:case 93: return Type::StrippedSpruceLog; + case 132:case 131:case 130: return Type::StrippedSpruceWood; + case 14967:case 14969:case 14968: return Type::StrippedWarpedHyphae; + case 14961:case 14963:case 14962: return Type::StrippedWarpedStem; + case 15735:case 15737:case 15736:case 15738: return Type::StructureBlock; + case 9259: return Type::StructureVoid; + case 3961:case 3954:case 3962:case 3955:case 3948:case 3956:case 3949:case 3957:case 3950:case 3958:case 3951:case 3959:case 3952:case 3960:case 3953:case 3963: return Type::SugarCane; + case 7885:case 7886: return Type::Sunflower; + case 14955:case 14954:case 14956:case 14957: return Type::SweetBerryBush; + case 7893:case 7894: return Type::TallGrass; + case 1346:case 1347: return Type::TallSeagrass; + case 15765:case 15767:case 15769:case 15771:case 15773:case 15760:case 15762:case 15764:case 15766:case 15768:case 15770:case 15772:case 15774:case 15761:case 15763:case 15775: return Type::Target; + case 7882: return Type::Terracotta; + case 1430:case 1431: return Type::Tnt; + case 1435: return Type::Torch; + case 6625:case 6629:case 6633:case 6637:case 6641:case 6645:case 6622:case 6626:case 6630:case 6634:case 6638:case 6642:case 6623:case 6627:case 6631:case 6635:case 6639:case 6643:case 6624:case 6628:case 6632:case 6636:case 6640:case 6644: return Type::TrappedChest; + case 5393:case 5330:case 5394:case 5331:case 5395:case 5332:case 5396:case 5333:case 5397:case 5334:case 5398:case 5335:case 5399:case 5336:case 5400:case 5337:case 5401:case 5338:case 5275:case 5339:case 5276:case 5340:case 5277:case 5341:case 5278:case 5342:case 5279:case 5343:case 5280:case 5344:case 5281:case 5345:case 5282:case 5346:case 5283:case 5347:case 5284:case 5348:case 5285:case 5349:case 5286:case 5350:case 5287:case 5351:case 5288:case 5352:case 5289:case 5353:case 5290:case 5354:case 5291:case 5355:case 5292:case 5356:case 5293:case 5357:case 5294:case 5358:case 5295:case 5359:case 5296:case 5360:case 5297:case 5361:case 5298:case 5362:case 5299:case 5363:case 5300:case 5364:case 5301:case 5365:case 5302:case 5366:case 5303:case 5367:case 5304:case 5368:case 5305:case 5369:case 5306:case 5370:case 5307:case 5371:case 5308:case 5372:case 5309:case 5373:case 5310:case 5374:case 5311:case 5375:case 5312:case 5376:case 5313:case 5377:case 5314:case 5378:case 5315:case 5379:case 5316:case 5380:case 5317:case 5381:case 5318:case 5382:case 5319:case 5383:case 5320:case 5384:case 5321:case 5385:case 5322:case 5386:case 5323:case 5387:case 5324:case 5388:case 5325:case 5389:case 5326:case 5390:case 5327:case 5391:case 5328:case 5392:case 5329:case 5402: return Type::Tripwire; + case 5266:case 5267:case 5268:case 5269:case 5270:case 5271:case 5272:case 5273:case 5259:case 5260:case 5261:case 5262:case 5263:case 5264:case 5265:case 5274: return Type::TripwireHook; + case 9530:case 9531: return Type::TubeCoral; + case 9515: return Type::TubeCoralBlock; + case 9550:case 9551: return Type::TubeCoralFan; + case 9606:case 9603:case 9600:case 9604:case 9601:case 9605:case 9602:case 9607: return Type::TubeCoralWallFan; + case 9499:case 9501:case 9503:case 9505:case 9507:case 9509:case 9498:case 9500:case 9502:case 9504:case 9506:case 9508: return Type::TurtleEgg; + case 15032:case 15040:case 15017:case 15025:case 15033:case 15041:case 15018:case 15026:case 15034:case 15042:case 15019:case 15027:case 15035:case 15020:case 15028:case 15036:case 15021:case 15029:case 15037:case 15022:case 15030:case 15038:case 15023:case 15031:case 15039:case 15024: return Type::TwistingVines; + case 15043: return Type::TwistingVinesPlant; + case 4792:case 4796:case 4800:case 4804:case 4808:case 4812:case 4816:case 4789:case 4793:case 4797:case 4801:case 4805:case 4809:case 4813:case 4817:case 4790:case 4794:case 4798:case 4802:case 4806:case 4810:case 4814:case 4818:case 4791:case 4795:case 4799:case 4803:case 4807:case 4811:case 4815:case 4788:case 4819: return Type::Vine; + case 9665: return Type::VoidAir; + case 1437:case 1438:case 1436:case 1439: return Type::WallTorch; + case 15505:case 15513:case 15521:case 15506:case 15514:case 15522:case 15507:case 15515:case 15523:case 15508:case 15516:case 15524:case 15509:case 15517:case 15525:case 15510:case 15518:case 15526:case 15503:case 15511:case 15519:case 15504:case 15512:case 15520: return Type::WarpedButton; + case 15633:case 15602:case 15634:case 15603:case 15635:case 15604:case 15636:case 15605:case 15637:case 15606:case 15638:case 15607:case 15639:case 15608:case 15640:case 15609:case 15641:case 15610:case 15642:case 15611:case 15643:case 15612:case 15644:case 15613:case 15645:case 15614:case 15646:case 15615:case 15647:case 15616:case 15648:case 15617:case 15649:case 15618:case 15650:case 15619:case 15651:case 15620:case 15652:case 15621:case 15653:case 15622:case 15591:case 15623:case 15592:case 15624:case 15593:case 15625:case 15594:case 15626:case 15595:case 15627:case 15596:case 15628:case 15597:case 15629:case 15598:case 15630:case 15599:case 15631:case 15600:case 15632:case 15601:case 15654: return Type::WarpedDoor; + case 15125:case 15102:case 15110:case 15118:case 15095:case 15103:case 15111:case 15119:case 15096:case 15104:case 15112:case 15120:case 15097:case 15105:case 15113:case 15121:case 15098:case 15106:case 15114:case 15122:case 15099:case 15107:case 15115:case 15123:case 15100:case 15108:case 15116:case 15124:case 15101:case 15109:case 15117:case 15126: return Type::WarpedFence; + case 15311:case 15288:case 15296:case 15304:case 15312:case 15289:case 15297:case 15305:case 15313:case 15290:case 15298:case 15306:case 15314:case 15291:case 15299:case 15307:case 15315:case 15292:case 15300:case 15308:case 15316:case 15293:case 15301:case 15309:case 15317:case 15294:case 15302:case 15310:case 15287:case 15295:case 15303:case 15318: return Type::WarpedFenceGate; + case 14971: return Type::WarpedFungus; + case 14964:case 14966:case 14965: return Type::WarpedHyphae; + case 14970: return Type::WarpedNylium; + case 15046: return Type::WarpedPlanks; + case 15061:case 15062: return Type::WarpedPressurePlate; + case 14973: return Type::WarpedRoots; + case 15714:case 15691:case 15699:case 15707:case 15715:case 15692:case 15700:case 15708:case 15716:case 15693:case 15701:case 15709:case 15717:case 15694:case 15702:case 15710:case 15687:case 15695:case 15703:case 15711:case 15688:case 15696:case 15704:case 15712:case 15689:case 15697:case 15705:case 15713:case 15690:case 15698:case 15706:case 15718: return Type::WarpedSign; + case 15056:case 15053:case 15057:case 15054:case 15058:case 15055: return Type::WarpedSlab; + case 15421:case 15422:case 15423:case 15424:case 15425:case 15426:case 15427:case 15428:case 15429:case 15430:case 15431:case 15432:case 15433:case 15434:case 15435:case 15436:case 15437:case 15438:case 15439:case 15440:case 15441:case 15442:case 15443:case 15444:case 15445:case 15446:case 15447:case 15448:case 15449:case 15450:case 15451:case 15452:case 15453:case 15454:case 15455:case 15456:case 15457:case 15458:case 15459:case 15460:case 15461:case 15462:case 15463:case 15464:case 15465:case 15466:case 15467:case 15468:case 15469:case 15470:case 15471:case 15472:case 15473:case 15474:case 15475:case 15476:case 15477:case 15478:case 15399:case 15400:case 15401:case 15402:case 15403:case 15404:case 15405:case 15406:case 15407:case 15408:case 15409:case 15410:case 15411:case 15412:case 15413:case 15414:case 15415:case 15416:case 15417:case 15418:case 15419:case 15420: return Type::WarpedStairs; + case 14958:case 14960:case 14959: return Type::WarpedStem; + case 15192:case 15224:case 15193:case 15225:case 15194:case 15226:case 15195:case 15227:case 15196:case 15228:case 15197:case 15229:case 15198:case 15230:case 15199:case 15231:case 15200:case 15232:case 15201:case 15233:case 15202:case 15234:case 15203:case 15235:case 15204:case 15236:case 15205:case 15237:case 15206:case 15238:case 15207:case 15239:case 15208:case 15240:case 15209:case 15241:case 15210:case 15242:case 15211:case 15243:case 15212:case 15244:case 15213:case 15245:case 15214:case 15246:case 15215:case 15247:case 15216:case 15248:case 15217:case 15249:case 15218:case 15250:case 15219:case 15251:case 15220:case 15252:case 15221:case 15253:case 15222:case 15191:case 15223:case 15254: return Type::WarpedTrapdoor; + case 15731:case 15728:case 15732:case 15729:case 15733:case 15730:case 15727:case 15734: return Type::WarpedWallSign; + case 14972: return Type::WarpedWartBlock; + case 46:case 48:case 35:case 37:case 39:case 41:case 43:case 45:case 47:case 34:case 36:case 38:case 40:case 42:case 44:case 49: return Type::Water; + case 15001:case 15009:case 14994:case 15002:case 15010:case 14995:case 15003:case 15011:case 14996:case 15004:case 15012:case 14997:case 15005:case 15013:case 14990:case 14998:case 15006:case 15014:case 14991:case 14999:case 15007:case 15015:case 14992:case 15000:case 15008:case 14993: return Type::WeepingVines; + case 15016: return Type::WeepingVinesPlant; + case 230: return Type::WetSponge; + case 3358:case 3359:case 3360:case 3361:case 3362:case 3363:case 3357:case 3364: return Type::Wheat; + case 7906:case 7907:case 7908:case 7909:case 7910:case 7911:case 7897:case 7898:case 7899:case 7900:case 7901:case 7902:case 7903:case 7904:case 7905:case 7912: return Type::WhiteBanner; + case 1062:case 1051:case 1055:case 1059:case 1063:case 1052:case 1056:case 1060:case 1049:case 1053:case 1057:case 1061:case 1050:case 1054:case 1058:case 1064: return Type::WhiteBed; + case 7866: return Type::WhiteCarpet; + case 9438: return Type::WhiteConcrete; + case 9454: return Type::WhiteConcretePowder; + case 9375:case 9374:case 9376:case 9377: return Type::WhiteGlazedTerracotta; + case 9281:case 9278:case 9282:case 9279:case 9283:case 9280: return Type::WhiteShulkerBox; + case 4095: return Type::WhiteStainedGlass; + case 6869:case 6873:case 6877:case 6881:case 6885:case 6889:case 6893:case 6866:case 6870:case 6874:case 6878:case 6882:case 6886:case 6890:case 6863:case 6867:case 6871:case 6875:case 6879:case 6883:case 6887:case 6891:case 6864:case 6868:case 6872:case 6876:case 6880:case 6884:case 6888:case 6892:case 6865:case 6894: return Type::WhiteStainedGlassPane; + case 6847: return Type::WhiteTerracotta; + case 1419: return Type::WhiteTulip; + case 8155:case 8153:case 8154:case 8156: return Type::WhiteWallBanner; + case 1384: return Type::WhiteWool; + case 1423: return Type::WitherRose; + case 6511:case 6512:case 6513:case 6514:case 6515:case 6516:case 6517:case 6518:case 6519:case 6520:case 6521:case 6522:case 6523:case 6524:case 6510:case 6525: return Type::WitherSkeletonSkull; + case 6526:case 6527:case 6528:case 6529: return Type::WitherSkeletonWallSkull; + case 7966:case 7967:case 7968:case 7969:case 7970:case 7971:case 7972:case 7973:case 7974:case 7975:case 7961:case 7962:case 7963:case 7964:case 7965:case 7976: return Type::YellowBanner; + case 1122:case 1126:case 1115:case 1119:case 1123:case 1127:case 1116:case 1120:case 1124:case 1113:case 1117:case 1121:case 1125:case 1114:case 1118:case 1128: return Type::YellowBed; + case 7870: return Type::YellowCarpet; + case 9442: return Type::YellowConcrete; + case 9458: return Type::YellowConcretePowder; + case 9390:case 9392:case 9391:case 9393: return Type::YellowGlazedTerracotta; + case 9305:case 9302:case 9306:case 9303:case 9307:case 9304: return Type::YellowShulkerBox; + case 4099: return Type::YellowStainedGlass; + case 6993:case 6997:case 7001:case 7005:case 7009:case 7013:case 7017:case 7021:case 6994:case 6998:case 7002:case 7006:case 7010:case 7014:case 7018:case 6991:case 6995:case 6999:case 7003:case 7007:case 7011:case 7015:case 7019:case 6992:case 6996:case 7000:case 7004:case 7008:case 7012:case 7016:case 7020:case 7022: return Type::YellowStainedGlassPane; + case 6851: return Type::YellowTerracotta; + case 8170:case 8171:case 8169:case 8172: return Type::YellowWallBanner; + case 1388: return Type::YellowWool; + case 6541:case 6542:case 6543:case 6544:case 6530:case 6531:case 6532:case 6533:case 6534:case 6535:case 6536:case 6537:case 6538:case 6539:case 6540:case 6545: return Type::ZombieHead; + default: return Type::ZombieWallHead; + } + } + bool Is(short ID, enum Type Type) + { + return Block::Type(ID) == Type; + } + namespace AcaciaButton + { + short AcaciaButton() + { + return 6451; + } + enum Face Face(short ID) + { + switch (ID) + { + case 6459: case 6463: case 6460: case 6464: case 6461: case 6465: case 6458: case 6462: return Face::Ceiling; + case 6443: case 6447: case 6444: case 6448: case 6445: case 6449: case 6442: case 6446: return Face::Floor; + default: return Face::Wall; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6447: case 6455: case 6463: case 6446: case 6454: case 6462: return eBlockFace::BLOCK_FACE_XM; + case 6448: case 6456: case 6464: case 6449: case 6457: case 6465: return eBlockFace::BLOCK_FACE_XP; + case 6443: case 6451: case 6459: case 6442: case 6450: case 6458: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 6443: case 6447: case 6451: case 6455: case 6459: case 6463: case 6445: case 6449: case 6453: case 6457: case 6461: case 6465: return false; + default: return true; + } + } + } + namespace AcaciaDoor + { + short AcaciaDoor() + { + return 8941; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8962: case 8963: case 8964: case 8965: case 8966: case 8967: case 8968: case 8969: case 8970: case 8971: case 8972: case 8973: case 8974: case 8975: case 8976: case 8977: return eBlockFace::BLOCK_FACE_XM; + case 8987: case 8988: case 8989: case 8990: case 8991: case 8992: case 8978: case 8979: case 8980: case 8981: case 8982: case 8983: case 8984: case 8985: case 8986: case 8993: return eBlockFace::BLOCK_FACE_XP; + case 8930: case 8931: case 8932: case 8933: case 8934: case 8935: case 8936: case 8937: case 8938: case 8939: case 8940: case 8941: case 8942: case 8943: case 8944: case 8945: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 8955: case 8987: case 8956: case 8988: case 8957: case 8989: case 8958: case 8990: case 8959: case 8991: case 8960: case 8992: case 8961: case 8938: case 8970: case 8939: case 8971: case 8940: case 8972: case 8941: case 8973: case 8942: case 8974: case 8943: case 8975: case 8944: case 8976: case 8945: case 8977: case 8954: case 8986: case 8993: return Half::Lower; + default: return Half::Upper; + } + } + enum Hinge Hinge(short ID) + { + switch (ID) + { + case 8955: case 8987: case 8956: case 8988: case 8957: case 8989: case 8930: case 8962: case 8931: case 8963: case 8932: case 8964: case 8933: case 8965: case 8938: case 8970: case 8939: case 8971: case 8940: case 8972: case 8941: case 8973: case 8946: case 8978: case 8947: case 8979: case 8948: case 8980: case 8949: case 8981: case 8954: case 8986: return Hinge::Left; + default: return Hinge::Right; + } + } + bool Open(short ID) + { + switch (ID) + { + case 8956: case 8988: case 8957: case 8989: case 8960: case 8992: case 8961: case 8932: case 8964: case 8933: case 8965: case 8936: case 8968: case 8937: case 8969: case 8940: case 8972: case 8941: case 8973: case 8944: case 8976: case 8945: case 8977: case 8948: case 8980: case 8949: case 8981: case 8952: case 8984: case 8953: case 8985: case 8993: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 8955: case 8987: case 8957: case 8989: case 8959: case 8991: case 8961: case 8931: case 8963: case 8933: case 8965: case 8935: case 8967: case 8937: case 8969: case 8939: case 8971: case 8941: case 8973: case 8943: case 8975: case 8945: case 8977: case 8947: case 8979: case 8949: case 8981: case 8951: case 8983: case 8953: case 8985: case 8993: return false; + default: return true; + } + } + } + namespace AcaciaFence + { + short AcaciaFence() + { + return 8705; + } + bool East(short ID) + { + switch (ID) + { + case 8693: case 8701: case 8694: case 8702: case 8695: case 8703: case 8696: case 8704: case 8697: case 8690: case 8698: case 8691: case 8699: case 8692: case 8700: case 8705: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 8685: case 8701: case 8686: case 8702: case 8687: case 8703: case 8688: case 8704: case 8689: case 8682: case 8698: case 8683: case 8699: case 8684: case 8700: case 8705: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 8678: case 8686: case 8694: case 8702: case 8679: case 8687: case 8695: case 8703: case 8680: case 8688: case 8696: case 8704: case 8681: case 8689: case 8697: case 8705: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8677: case 8685: case 8693: case 8701: case 8680: case 8688: case 8696: case 8704: case 8681: case 8689: case 8697: case 8676: case 8684: case 8692: case 8700: case 8705: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 8677: case 8685: case 8693: case 8701: case 8679: case 8687: case 8695: case 8703: case 8681: case 8689: case 8697: case 8675: case 8683: case 8691: case 8699: case 8705: return false; + default: return true; + } + } + } + namespace AcaciaFenceGate + { + short AcaciaFenceGate() + { + return 8521; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8530: case 8531: case 8532: case 8533: case 8534: case 8535: case 8536: case 8537: return eBlockFace::BLOCK_FACE_XM; + case 8538: case 8539: case 8540: case 8541: case 8542: case 8543: case 8544: case 8545: return eBlockFace::BLOCK_FACE_XP; + case 8515: case 8516: case 8517: case 8518: case 8519: case 8520: case 8521: case 8514: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool InWall(short ID) + { + switch (ID) + { + case 8518: case 8526: case 8534: case 8542: case 8519: case 8527: case 8535: case 8543: case 8520: case 8528: case 8536: case 8544: case 8521: case 8529: case 8537: case 8545: return false; + default: return true; + } + } + bool Open(short ID) + { + switch (ID) + { + case 8516: case 8524: case 8532: case 8540: case 8517: case 8525: case 8533: case 8541: case 8520: case 8528: case 8536: case 8544: case 8521: case 8529: case 8537: case 8545: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 8515: case 8523: case 8531: case 8539: case 8517: case 8525: case 8533: case 8541: case 8519: case 8527: case 8535: case 8543: case 8521: case 8529: case 8537: case 8545: return false; + default: return true; + } + } + } + namespace AcaciaLeaves + { + short AcaciaLeaves() + { + return 214; + } + unsigned char Distance(short ID) + { + switch (ID) + { + case 201: case 202: return 1; + case 203: case 204: return 2; + case 206: case 205: return 3; + case 207: case 208: return 4; + case 209: case 210: return 5; + case 211: case 212: return 6; + default: return 7; + } + } + bool Persistent(short ID) + { + switch (ID) + { + case 206: case 214: case 208: case 202: case 210: case 204: case 212: return false; + default: return true; + } + } + } + namespace AcaciaLog + { + short AcaciaLog() + { + return 86; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 85: return Axis::X; + case 86: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace AcaciaPlanks + { + } + namespace AcaciaPressurePlate + { + short AcaciaPressurePlate() + { + return 3882; + } + bool Powered(short ID) + { + switch (ID) + { + case 3882: return false; + default: return true; + } + } + } + namespace AcaciaSapling + { + short AcaciaSapling() + { + return 29; + } + unsigned char Stage(short ID) + { + switch (ID) + { + case 29: return 0; + default: return 1; + } + } + } + namespace AcaciaSign + { + short AcaciaSign() + { + return 3478; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 3478: case 3477: return 0; + case 3480: case 3479: return 1; + case 3497: case 3498: return 10; + case 3499: case 3500: return 11; + case 3501: case 3502: return 12; + case 3503: case 3504: return 13; + case 3505: case 3506: return 14; + case 3507: case 3508: return 15; + case 3482: case 3481: return 2; + case 3483: case 3484: return 3; + case 3485: case 3486: return 4; + case 3487: case 3488: return 5; + case 3489: case 3490: return 6; + case 3491: case 3492: return 7; + case 3493: case 3494: return 8; + default: return 9; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 3478: case 3480: case 3482: case 3484: case 3486: case 3488: case 3490: case 3492: case 3494: case 3496: case 3498: case 3500: case 3502: case 3504: case 3506: case 3508: return false; + default: return true; + } + } + } + namespace AcaciaSlab + { + short AcaciaSlab() + { + return 8327; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8326: case 8327: return Type::Bottom; + case 8329: case 8328: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8325: case 8329: case 8327: return false; + default: return true; + } + } + } + namespace AcaciaStairs + { + short AcaciaStairs() + { + return 7386; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 7425: case 7426: case 7427: case 7428: case 7429: case 7430: case 7431: case 7432: case 7433: case 7434: case 7415: case 7416: case 7417: case 7418: case 7419: case 7420: case 7421: case 7422: case 7423: case 7424: return eBlockFace::BLOCK_FACE_XM; + case 7435: case 7436: case 7437: case 7438: case 7439: case 7440: case 7441: case 7442: case 7443: case 7444: case 7445: case 7446: case 7447: case 7448: case 7449: case 7450: case 7451: case 7452: case 7453: case 7454: return eBlockFace::BLOCK_FACE_XP; + case 7375: case 7376: case 7377: case 7378: case 7379: case 7380: case 7381: case 7382: case 7383: case 7384: case 7385: case 7386: case 7387: case 7388: case 7389: case 7390: case 7391: case 7392: case 7393: case 7394: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 7425: case 7426: case 7427: case 7428: case 7429: case 7430: case 7431: case 7432: case 7433: case 7434: case 7445: case 7446: case 7447: case 7448: case 7385: case 7449: case 7386: case 7450: case 7387: case 7451: case 7388: case 7452: case 7389: case 7453: case 7390: case 7454: case 7391: case 7392: case 7393: case 7394: case 7405: case 7406: case 7407: case 7408: case 7409: case 7410: case 7411: case 7412: case 7413: case 7414: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 7427: case 7428: case 7437: case 7438: case 7377: case 7378: case 7447: case 7448: case 7387: case 7388: case 7397: case 7398: case 7407: case 7408: case 7417: case 7418: return Shape::InnerLeft; + case 7429: case 7430: case 7439: case 7440: case 7379: case 7380: case 7449: case 7450: case 7389: case 7390: case 7399: case 7400: case 7409: case 7410: case 7419: case 7420: return Shape::InnerRight; + case 7431: case 7432: case 7441: case 7442: case 7381: case 7382: case 7451: case 7452: case 7391: case 7392: case 7401: case 7402: case 7411: case 7412: case 7421: case 7422: return Shape::OuterLeft; + case 7433: case 7434: case 7443: case 7444: case 7383: case 7384: case 7453: case 7454: case 7393: case 7394: case 7403: case 7404: case 7413: case 7414: case 7423: case 7424: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7426: case 7428: case 7430: case 7432: case 7434: case 7436: case 7438: case 7376: case 7440: case 7378: case 7442: case 7380: case 7444: case 7382: case 7446: case 7384: case 7448: case 7386: case 7450: case 7388: case 7452: case 7390: case 7454: case 7392: case 7394: case 7396: case 7398: case 7400: case 7402: case 7404: case 7406: case 7408: case 7410: case 7412: case 7414: case 7416: case 7418: case 7420: case 7422: case 7424: return false; + default: return true; + } + } + } + namespace AcaciaTrapdoor + { + short AcaciaTrapdoor() + { + return 4382; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 4400: case 4401: case 4402: case 4403: case 4404: case 4405: case 4406: case 4407: case 4408: case 4409: case 4410: case 4411: case 4412: case 4413: case 4414: case 4399: return eBlockFace::BLOCK_FACE_XM; + case 4416: case 4417: case 4418: case 4419: case 4420: case 4421: case 4422: case 4423: case 4424: case 4425: case 4426: case 4427: case 4428: case 4429: case 4415: case 4430: return eBlockFace::BLOCK_FACE_XP; + case 4369: case 4370: case 4371: case 4372: case 4373: case 4374: case 4375: case 4376: case 4377: case 4378: case 4379: case 4380: case 4381: case 4382: case 4367: case 4368: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 4375: case 4391: case 4407: case 4423: case 4376: case 4392: case 4408: case 4424: case 4377: case 4393: case 4409: case 4425: case 4378: case 4394: case 4410: case 4426: case 4379: case 4395: case 4411: case 4427: case 4380: case 4396: case 4412: case 4428: case 4381: case 4397: case 4413: case 4429: case 4382: case 4398: case 4414: case 4430: return Half::Bottom; + default: return Half::Top; + } + } + bool Open(short ID) + { + switch (ID) + { + case 4371: case 4387: case 4403: case 4419: case 4372: case 4388: case 4404: case 4420: case 4373: case 4389: case 4405: case 4421: case 4374: case 4390: case 4406: case 4422: case 4379: case 4395: case 4411: case 4427: case 4380: case 4396: case 4412: case 4428: case 4381: case 4397: case 4413: case 4429: case 4382: case 4398: case 4414: case 4430: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 4369: case 4385: case 4401: case 4417: case 4370: case 4386: case 4402: case 4418: case 4373: case 4389: case 4405: case 4421: case 4374: case 4390: case 4406: case 4422: case 4377: case 4393: case 4409: case 4425: case 4378: case 4394: case 4410: case 4426: case 4381: case 4397: case 4413: case 4429: case 4382: case 4398: case 4414: case 4430: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 4384: case 4400: case 4416: case 4370: case 4386: case 4402: case 4418: case 4372: case 4388: case 4404: case 4420: case 4374: case 4390: case 4406: case 4422: case 4376: case 4392: case 4408: case 4424: case 4378: case 4394: case 4410: case 4426: case 4380: case 4396: case 4412: case 4428: case 4382: case 4398: case 4414: case 4368: case 4430: return false; + default: return true; + } + } + } + namespace AcaciaWallSign + { + short AcaciaWallSign() + { + return 3760; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 3764: case 3763: return eBlockFace::BLOCK_FACE_XM; + case 3765: case 3766: return eBlockFace::BLOCK_FACE_XP; + case 3759: case 3760: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 3764: case 3760: case 3762: case 3766: return false; + default: return true; + } + } + } + namespace AcaciaWood + { + short AcaciaWood() + { + return 122; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 121: return Axis::X; + case 122: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace ActivatorRail + { + short ActivatorRail() + { + return 6829; + } + bool Powered(short ID) + { + switch (ID) + { + case 6829: case 6830: case 6831: case 6832: case 6833: case 6834: return false; + default: return true; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 6831: case 6825: return Shape::AscendingEast; + case 6827: case 6833: return Shape::AscendingNorth; + case 6828: case 6834: return Shape::AscendingSouth; + case 6826: case 6832: return Shape::AscendingWest; + case 6830: case 6824: return Shape::EastWest; + default: return Shape::NorthSouth; + } + } + } + namespace Air + { + } + namespace Allium + { + } + namespace AncientDebris + { + } + namespace Andesite + { + } + namespace AndesiteSlab + { + short AndesiteSlab() + { + return 10846; + } + enum Type Type(short ID) + { + switch (ID) + { + case 10845: case 10846: return Type::Bottom; + case 10847: case 10848: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10846: case 10844: case 10848: return false; + default: return true; + } + } + } + namespace AndesiteStairs + { + short AndesiteStairs() + { + return 10480; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 10509: case 10510: case 10511: case 10512: case 10513: case 10514: case 10515: case 10516: case 10517: case 10518: case 10519: case 10520: case 10521: case 10522: case 10523: case 10524: case 10525: case 10526: case 10527: case 10528: return eBlockFace::BLOCK_FACE_XM; + case 10529: case 10530: case 10531: case 10532: case 10533: case 10534: case 10535: case 10536: case 10537: case 10538: case 10539: case 10540: case 10541: case 10542: case 10543: case 10544: case 10545: case 10546: case 10547: case 10548: return eBlockFace::BLOCK_FACE_XP; + case 10469: case 10470: case 10471: case 10472: case 10473: case 10474: case 10475: case 10476: case 10477: case 10478: case 10479: case 10480: case 10481: case 10482: case 10483: case 10484: case 10485: case 10486: case 10487: case 10488: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 10479: case 10480: case 10481: case 10482: case 10483: case 10484: case 10485: case 10486: case 10487: case 10488: case 10499: case 10500: case 10501: case 10502: case 10503: case 10504: case 10505: case 10506: case 10507: case 10508: case 10519: case 10520: case 10521: case 10522: case 10523: case 10524: case 10525: case 10526: case 10527: case 10528: case 10539: case 10540: case 10541: case 10542: case 10543: case 10544: case 10545: case 10546: case 10547: case 10548: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 10471: case 10472: case 10481: case 10482: case 10491: case 10492: case 10501: case 10502: case 10511: case 10512: case 10521: case 10522: case 10531: case 10532: case 10541: case 10542: return Shape::InnerLeft; + case 10473: case 10474: case 10483: case 10484: case 10493: case 10494: case 10503: case 10504: case 10513: case 10514: case 10523: case 10524: case 10533: case 10534: case 10543: case 10544: return Shape::InnerRight; + case 10475: case 10476: case 10485: case 10486: case 10495: case 10496: case 10505: case 10506: case 10515: case 10516: case 10525: case 10526: case 10535: case 10536: case 10545: case 10546: return Shape::OuterLeft; + case 10477: case 10478: case 10487: case 10488: case 10497: case 10498: case 10507: case 10508: case 10517: case 10518: case 10527: case 10528: case 10537: case 10538: case 10547: case 10548: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10470: case 10472: case 10474: case 10476: case 10478: case 10480: case 10482: case 10484: case 10486: case 10488: case 10490: case 10492: case 10494: case 10496: case 10498: case 10500: case 10502: case 10504: case 10506: case 10508: case 10510: case 10512: case 10514: case 10516: case 10518: case 10520: case 10522: case 10524: case 10526: case 10528: case 10530: case 10532: case 10534: case 10536: case 10538: case 10540: case 10542: case 10544: case 10546: case 10548: return false; + default: return true; + } + } + } + namespace AndesiteWall + { + short AndesiteWall() + { + return 13138; + } + enum East East(short ID) + { + switch (ID) + { + case 13246: case 13250: case 13254: case 13258: case 13262: case 13266: case 13270: case 13274: case 13278: case 13282: case 13286: case 13290: case 13294: case 13298: case 13302: case 13306: case 13310: case 13314: case 13318: case 13322: case 13326: case 13330: case 13334: case 13338: case 13342: case 13346: case 13350: case 13243: case 13247: case 13251: case 13255: case 13259: case 13263: case 13267: case 13271: case 13275: case 13279: case 13283: case 13287: case 13291: case 13295: case 13299: case 13303: case 13307: case 13311: case 13315: case 13319: case 13323: case 13327: case 13331: case 13335: case 13339: case 13343: case 13347: case 13244: case 13248: case 13252: case 13256: case 13260: case 13264: case 13268: case 13272: case 13276: case 13280: case 13284: case 13288: case 13292: case 13296: case 13300: case 13304: case 13308: case 13312: case 13316: case 13320: case 13324: case 13328: case 13332: case 13336: case 13340: case 13344: case 13348: case 13245: case 13249: case 13253: case 13257: case 13261: case 13265: case 13269: case 13273: case 13277: case 13281: case 13285: case 13289: case 13293: case 13297: case 13301: case 13305: case 13309: case 13313: case 13317: case 13321: case 13325: case 13329: case 13333: case 13337: case 13341: case 13345: case 13349: return East::Low; + case 13138: case 13142: case 13146: case 13150: case 13154: case 13158: case 13162: case 13166: case 13170: case 13174: case 13178: case 13182: case 13186: case 13190: case 13194: case 13198: case 13202: case 13206: case 13210: case 13214: case 13218: case 13222: case 13226: case 13230: case 13234: case 13238: case 13242: case 13135: case 13139: case 13143: case 13147: case 13151: case 13155: case 13159: case 13163: case 13167: case 13171: case 13175: case 13179: case 13183: case 13187: case 13191: case 13195: case 13199: case 13203: case 13207: case 13211: case 13215: case 13219: case 13223: case 13227: case 13231: case 13235: case 13239: case 13136: case 13140: case 13144: case 13148: case 13152: case 13156: case 13160: case 13164: case 13168: case 13172: case 13176: case 13180: case 13184: case 13188: case 13192: case 13196: case 13200: case 13204: case 13208: case 13212: case 13216: case 13220: case 13224: case 13228: case 13232: case 13236: case 13240: case 13137: case 13141: case 13145: case 13149: case 13153: case 13157: case 13161: case 13165: case 13169: case 13173: case 13177: case 13181: case 13185: case 13189: case 13193: case 13197: case 13201: case 13205: case 13209: case 13213: case 13217: case 13221: case 13225: case 13229: case 13233: case 13237: case 13241: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 13174: case 13178: case 13182: case 13186: case 13190: case 13194: case 13198: case 13202: case 13206: case 13282: case 13286: case 13290: case 13294: case 13298: case 13302: case 13306: case 13310: case 13314: case 13390: case 13394: case 13398: case 13402: case 13406: case 13410: case 13414: case 13418: case 13422: case 13171: case 13175: case 13179: case 13183: case 13187: case 13191: case 13195: case 13199: case 13203: case 13279: case 13283: case 13287: case 13291: case 13295: case 13299: case 13303: case 13307: case 13311: case 13387: case 13391: case 13395: case 13399: case 13403: case 13407: case 13411: case 13415: case 13419: case 13172: case 13176: case 13180: case 13184: case 13188: case 13192: case 13196: case 13200: case 13204: case 13280: case 13284: case 13288: case 13292: case 13296: case 13300: case 13304: case 13308: case 13312: case 13388: case 13392: case 13396: case 13400: case 13404: case 13408: case 13412: case 13416: case 13420: case 13173: case 13177: case 13181: case 13185: case 13189: case 13193: case 13197: case 13201: case 13205: case 13281: case 13285: case 13289: case 13293: case 13297: case 13301: case 13305: case 13309: case 13313: case 13389: case 13393: case 13397: case 13401: case 13405: case 13409: case 13413: case 13417: case 13421: return North::Low; + case 13138: case 13142: case 13146: case 13150: case 13154: case 13158: case 13162: case 13166: case 13170: case 13246: case 13250: case 13254: case 13258: case 13262: case 13266: case 13270: case 13274: case 13278: case 13354: case 13358: case 13362: case 13366: case 13370: case 13374: case 13378: case 13382: case 13386: case 13135: case 13139: case 13143: case 13147: case 13151: case 13155: case 13159: case 13163: case 13167: case 13243: case 13247: case 13251: case 13255: case 13259: case 13263: case 13267: case 13271: case 13275: case 13351: case 13355: case 13359: case 13363: case 13367: case 13371: case 13375: case 13379: case 13383: case 13136: case 13140: case 13144: case 13148: case 13152: case 13156: case 13160: case 13164: case 13168: case 13244: case 13248: case 13252: case 13256: case 13260: case 13264: case 13268: case 13272: case 13276: case 13352: case 13356: case 13360: case 13364: case 13368: case 13372: case 13376: case 13380: case 13384: case 13137: case 13141: case 13145: case 13149: case 13153: case 13157: case 13161: case 13165: case 13169: case 13245: case 13249: case 13253: case 13257: case 13261: case 13265: case 13269: case 13273: case 13277: case 13353: case 13357: case 13361: case 13365: case 13369: case 13373: case 13377: case 13381: case 13385: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 13150: case 13154: case 13158: case 13186: case 13190: case 13194: case 13222: case 13226: case 13230: case 13258: case 13262: case 13266: case 13294: case 13298: case 13302: case 13330: case 13334: case 13338: case 13366: case 13370: case 13374: case 13402: case 13406: case 13410: case 13438: case 13442: case 13446: case 13147: case 13151: case 13155: case 13183: case 13187: case 13191: case 13219: case 13223: case 13227: case 13255: case 13259: case 13263: case 13291: case 13295: case 13299: case 13327: case 13331: case 13335: case 13363: case 13367: case 13371: case 13399: case 13403: case 13407: case 13435: case 13439: case 13443: case 13148: case 13152: case 13156: case 13184: case 13188: case 13192: case 13220: case 13224: case 13228: case 13256: case 13260: case 13264: case 13292: case 13296: case 13300: case 13328: case 13332: case 13336: case 13364: case 13368: case 13372: case 13400: case 13404: case 13408: case 13436: case 13440: case 13444: case 13149: case 13153: case 13157: case 13185: case 13189: case 13193: case 13221: case 13225: case 13229: case 13257: case 13261: case 13265: case 13293: case 13297: case 13301: case 13329: case 13333: case 13337: case 13365: case 13369: case 13373: case 13401: case 13405: case 13409: case 13437: case 13441: case 13445: return South::Low; + case 13138: case 13142: case 13146: case 13174: case 13178: case 13182: case 13210: case 13214: case 13218: case 13246: case 13250: case 13254: case 13282: case 13286: case 13290: case 13318: case 13322: case 13326: case 13354: case 13358: case 13362: case 13390: case 13394: case 13398: case 13426: case 13430: case 13434: case 13135: case 13139: case 13143: case 13171: case 13175: case 13179: case 13207: case 13211: case 13215: case 13243: case 13247: case 13251: case 13279: case 13283: case 13287: case 13315: case 13319: case 13323: case 13351: case 13355: case 13359: case 13387: case 13391: case 13395: case 13423: case 13427: case 13431: case 13136: case 13140: case 13144: case 13172: case 13176: case 13180: case 13208: case 13212: case 13216: case 13244: case 13248: case 13252: case 13280: case 13284: case 13288: case 13316: case 13320: case 13324: case 13352: case 13356: case 13360: case 13388: case 13392: case 13396: case 13424: case 13428: case 13432: case 13137: case 13141: case 13145: case 13173: case 13177: case 13181: case 13209: case 13213: case 13217: case 13245: case 13249: case 13253: case 13281: case 13285: case 13289: case 13317: case 13321: case 13325: case 13353: case 13357: case 13361: case 13389: case 13393: case 13397: case 13425: case 13429: case 13433: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 13142: case 13146: case 13154: case 13158: case 13166: case 13170: case 13178: case 13182: case 13190: case 13194: case 13202: case 13206: case 13214: case 13218: case 13226: case 13230: case 13238: case 13242: case 13250: case 13254: case 13262: case 13266: case 13274: case 13278: case 13286: case 13290: case 13298: case 13302: case 13310: case 13314: case 13322: case 13326: case 13334: case 13338: case 13346: case 13350: case 13358: case 13362: case 13370: case 13374: case 13382: case 13386: case 13394: case 13398: case 13406: case 13410: case 13418: case 13422: case 13430: case 13434: case 13442: case 13446: case 13454: case 13458: case 13143: case 13155: case 13167: case 13179: case 13191: case 13203: case 13215: case 13227: case 13239: case 13251: case 13263: case 13275: case 13287: case 13299: case 13311: case 13323: case 13335: case 13347: case 13359: case 13371: case 13383: case 13395: case 13407: case 13419: case 13431: case 13443: case 13455: case 13144: case 13156: case 13168: case 13180: case 13192: case 13204: case 13216: case 13228: case 13240: case 13252: case 13264: case 13276: case 13288: case 13300: case 13312: case 13324: case 13336: case 13348: case 13360: case 13372: case 13384: case 13396: case 13408: case 13420: case 13432: case 13444: case 13456: case 13141: case 13145: case 13153: case 13157: case 13165: case 13169: case 13177: case 13181: case 13189: case 13193: case 13201: case 13205: case 13213: case 13217: case 13225: case 13229: case 13237: case 13241: case 13249: case 13253: case 13261: case 13265: case 13273: case 13277: case 13285: case 13289: case 13297: case 13301: case 13309: case 13313: case 13321: case 13325: case 13333: case 13337: case 13345: case 13349: case 13357: case 13361: case 13369: case 13373: case 13381: case 13385: case 13393: case 13397: case 13405: case 13409: case 13417: case 13421: case 13429: case 13433: case 13441: case 13445: case 13453: case 13457: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 13138: case 13146: case 13150: case 13158: case 13162: case 13170: case 13174: case 13182: case 13186: case 13194: case 13198: case 13206: case 13210: case 13218: case 13222: case 13230: case 13234: case 13242: case 13246: case 13254: case 13258: case 13266: case 13270: case 13278: case 13282: case 13290: case 13294: case 13302: case 13306: case 13314: case 13318: case 13326: case 13330: case 13338: case 13342: case 13350: case 13354: case 13362: case 13366: case 13374: case 13378: case 13386: case 13390: case 13398: case 13402: case 13410: case 13414: case 13422: case 13426: case 13434: case 13438: case 13446: case 13450: case 13458: case 13139: case 13151: case 13163: case 13175: case 13187: case 13199: case 13211: case 13223: case 13235: case 13247: case 13259: case 13271: case 13283: case 13295: case 13307: case 13319: case 13331: case 13343: case 13355: case 13367: case 13379: case 13391: case 13403: case 13415: case 13427: case 13439: case 13451: case 13140: case 13144: case 13152: case 13156: case 13164: case 13168: case 13176: case 13180: case 13188: case 13192: case 13200: case 13204: case 13212: case 13216: case 13224: case 13228: case 13236: case 13240: case 13248: case 13252: case 13260: case 13264: case 13272: case 13276: case 13284: case 13288: case 13296: case 13300: case 13308: case 13312: case 13320: case 13324: case 13332: case 13336: case 13344: case 13348: case 13356: case 13360: case 13368: case 13372: case 13380: case 13384: case 13392: case 13396: case 13404: case 13408: case 13416: case 13420: case 13428: case 13432: case 13440: case 13444: case 13452: case 13456: case 13145: case 13157: case 13169: case 13181: case 13193: case 13205: case 13217: case 13229: case 13241: case 13253: case 13265: case 13277: case 13289: case 13301: case 13313: case 13325: case 13337: case 13349: case 13361: case 13373: case 13385: case 13397: case 13409: case 13421: case 13433: case 13445: case 13457: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 13142: case 13154: case 13166: case 13178: case 13190: case 13202: case 13214: case 13226: case 13238: case 13250: case 13262: case 13274: case 13286: case 13298: case 13310: case 13322: case 13334: case 13346: case 13358: case 13370: case 13382: case 13394: case 13406: case 13418: case 13430: case 13442: case 13454: case 13139: case 13151: case 13163: case 13175: case 13187: case 13199: case 13211: case 13223: case 13235: case 13247: case 13259: case 13271: case 13283: case 13295: case 13307: case 13319: case 13331: case 13343: case 13355: case 13367: case 13379: case 13391: case 13403: case 13415: case 13427: case 13439: case 13451: case 13136: case 13148: case 13160: case 13172: case 13184: case 13196: case 13208: case 13220: case 13232: case 13244: case 13256: case 13268: case 13280: case 13292: case 13304: case 13316: case 13328: case 13340: case 13352: case 13364: case 13376: case 13388: case 13400: case 13412: case 13424: case 13436: case 13448: case 13145: case 13157: case 13169: case 13181: case 13193: case 13205: case 13217: case 13229: case 13241: case 13253: case 13265: case 13277: case 13289: case 13301: case 13313: case 13325: case 13337: case 13349: case 13361: case 13373: case 13385: case 13397: case 13409: case 13421: case 13433: case 13445: case 13457: return West::Low; + case 13138: case 13150: case 13162: case 13174: case 13186: case 13198: case 13210: case 13222: case 13234: case 13246: case 13258: case 13270: case 13282: case 13294: case 13306: case 13318: case 13330: case 13342: case 13354: case 13366: case 13378: case 13390: case 13402: case 13414: case 13426: case 13438: case 13450: case 13135: case 13147: case 13159: case 13171: case 13183: case 13195: case 13207: case 13219: case 13231: case 13243: case 13255: case 13267: case 13279: case 13291: case 13303: case 13315: case 13327: case 13339: case 13351: case 13363: case 13375: case 13387: case 13399: case 13411: case 13423: case 13435: case 13447: case 13144: case 13156: case 13168: case 13180: case 13192: case 13204: case 13216: case 13228: case 13240: case 13252: case 13264: case 13276: case 13288: case 13300: case 13312: case 13324: case 13336: case 13348: case 13360: case 13372: case 13384: case 13396: case 13408: case 13420: case 13432: case 13444: case 13456: case 13141: case 13153: case 13165: case 13177: case 13189: case 13201: case 13213: case 13225: case 13237: case 13249: case 13261: case 13273: case 13285: case 13297: case 13309: case 13321: case 13333: case 13345: case 13357: case 13369: case 13381: case 13393: case 13405: case 13417: case 13429: case 13441: case 13453: return West::None; + default: return West::Tall; + } + } + } + namespace Anvil + { + short Anvil() + { + return 6610; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6612: return eBlockFace::BLOCK_FACE_XM; + case 6613: return eBlockFace::BLOCK_FACE_XP; + case 6610: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace AttachedMelonStem + { + short AttachedMelonStem() + { + return 4768; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 4770: return eBlockFace::BLOCK_FACE_XM; + case 4771: return eBlockFace::BLOCK_FACE_XP; + case 4768: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace AttachedPumpkinStem + { + short AttachedPumpkinStem() + { + return 4764; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 4766: return eBlockFace::BLOCK_FACE_XM; + case 4767: return eBlockFace::BLOCK_FACE_XP; + case 4764: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace AzureBluet + { + } + namespace Bamboo + { + short Bamboo() + { + return 9652; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 9653: case 9655: case 9657: case 9652: case 9654: case 9656: return 0; + default: return 1; + } + } + enum Leaves Leaves(short ID) + { + switch (ID) + { + case 9662: case 9657: case 9663: case 9656: return Leaves::Large; + case 9653: case 9659: case 9652: case 9658: return Leaves::None; + default: return Leaves::Small; + } + } + unsigned char Stage(short ID) + { + switch (ID) + { + case 9660: case 9662: case 9652: case 9654: case 9656: case 9658: return 0; + default: return 1; + } + } + } + namespace BambooSapling + { + } + namespace Barrel + { + short Barrel() + { + return 14792; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 14798: case 14797: return eBlockFace::BLOCK_FACE_XM; + case 14794: case 14793: return eBlockFace::BLOCK_FACE_XP; + case 14802: case 14801: return eBlockFace::BLOCK_FACE_YM; + case 14800: case 14799: return eBlockFace::BLOCK_FACE_YP; + case 14792: case 14791: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Open(short ID) + { + switch (ID) + { + case 14792: case 14794: case 14796: case 14798: case 14800: case 14802: return false; + default: return true; + } + } + } + namespace Barrier + { + } + namespace Basalt + { + short Basalt() + { + return 4003; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 4002: return Axis::X; + case 4003: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace Beacon + { + } + namespace Bedrock + { + } + namespace BeeNest + { + short BeeNest() + { + return 15776; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 15792: case 15793: case 15788: case 15789: case 15790: case 15791: return eBlockFace::BLOCK_FACE_XM; + case 15794: case 15795: case 15796: case 15797: case 15798: case 15799: return eBlockFace::BLOCK_FACE_XP; + case 15776: case 15777: case 15778: case 15779: case 15780: case 15781: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + unsigned char HoneyLevel(short ID) + { + switch (ID) + { + case 15776: case 15794: case 15788: case 15782: return 0; + case 15777: case 15795: case 15789: case 15783: return 1; + case 15784: case 15778: case 15796: case 15790: return 2; + case 15785: case 15779: case 15797: case 15791: return 3; + case 15792: case 15786: case 15780: case 15798: return 4; + default: return 5; + } + } + } + namespace Beehive + { + short Beehive() + { + return 15800; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 15815: case 15816: case 15817: case 15812: case 15813: case 15814: return eBlockFace::BLOCK_FACE_XM; + case 15823: case 15818: case 15819: case 15820: case 15821: case 15822: return eBlockFace::BLOCK_FACE_XP; + case 15800: case 15801: case 15802: case 15803: case 15804: case 15805: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + unsigned char HoneyLevel(short ID) + { + switch (ID) + { + case 15800: case 15818: case 15812: case 15806: return 0; + case 15807: case 15801: case 15819: case 15813: return 1; + case 15808: case 15802: case 15820: case 15814: return 2; + case 15815: case 15809: case 15803: case 15821: return 3; + case 15816: case 15810: case 15804: case 15822: return 4; + default: return 5; + } + } + } + namespace Beetroots + { + short Beetroots() + { + return 9219; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 9219: return 0; + case 9220: return 1; + case 9221: return 2; + default: return 3; + } + } + } + namespace Bell + { + short Bell() + { + return 14855; + } + enum Attachment Attachment(short ID) + { + switch (ID) + { + case 14862: case 14863: case 14864: case 14865: case 14866: case 14867: case 14868: case 14869: return Attachment::Ceiling; + case 14878: case 14879: case 14880: case 14881: case 14882: case 14883: case 14884: case 14885: return Attachment::DoubleWall; + case 14854: case 14855: case 14856: case 14857: case 14858: case 14859: case 14860: case 14861: return Attachment::Floor; + default: return Attachment::SingleWall; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 14858: case 14866: case 14874: case 14882: case 14859: case 14867: case 14875: case 14883: return eBlockFace::BLOCK_FACE_XM; + case 14877: case 14860: case 14868: case 14876: case 14884: case 14861: case 14869: case 14885: return eBlockFace::BLOCK_FACE_XP; + case 14854: case 14862: case 14870: case 14878: case 14855: case 14863: case 14871: case 14879: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 14877: case 14855: case 14863: case 14871: case 14879: case 14857: case 14865: case 14873: case 14881: case 14859: case 14867: case 14875: case 14883: case 14861: case 14869: case 14885: return false; + default: return true; + } + } + } + namespace BirchButton + { + short BirchButton() + { + return 6403; + } + enum Face Face(short ID) + { + switch (ID) + { + case 6412: case 6416: case 6413: case 6417: case 6410: case 6414: case 6411: case 6415: return Face::Ceiling; + case 6397: case 6401: case 6394: case 6398: case 6395: case 6399: case 6396: case 6400: return Face::Floor; + default: return Face::Wall; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6398: case 6406: case 6414: case 6399: case 6407: case 6415: return eBlockFace::BLOCK_FACE_XM; + case 6408: case 6416: case 6401: case 6409: case 6417: case 6400: return eBlockFace::BLOCK_FACE_XP; + case 6394: case 6402: case 6410: case 6395: case 6403: case 6411: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 6397: case 6401: case 6405: case 6409: case 6413: case 6417: case 6395: case 6399: case 6403: case 6407: case 6411: case 6415: return false; + default: return true; + } + } + } + namespace BirchDoor + { + short BirchDoor() + { + return 8813; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8834: case 8835: case 8836: case 8837: case 8838: case 8839: case 8840: case 8841: case 8842: case 8843: case 8844: case 8845: case 8846: case 8847: case 8848: case 8849: return eBlockFace::BLOCK_FACE_XM; + case 8861: case 8862: case 8863: case 8864: case 8850: case 8851: case 8852: case 8853: case 8854: case 8855: case 8856: case 8857: case 8858: case 8859: case 8860: case 8865: return eBlockFace::BLOCK_FACE_XP; + case 8802: case 8803: case 8804: case 8805: case 8806: case 8807: case 8808: case 8809: case 8810: case 8811: case 8812: case 8813: case 8814: case 8815: case 8816: case 8817: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 8829: case 8861: case 8830: case 8862: case 8831: case 8863: case 8832: case 8864: case 8833: case 8810: case 8842: case 8811: case 8843: case 8812: case 8844: case 8813: case 8845: case 8814: case 8846: case 8815: case 8847: case 8816: case 8848: case 8817: case 8849: case 8826: case 8858: case 8827: case 8859: case 8828: case 8860: case 8865: return Half::Lower; + default: return Half::Upper; + } + } + enum Hinge Hinge(short ID) + { + switch (ID) + { + case 8829: case 8861: case 8802: case 8834: case 8803: case 8835: case 8804: case 8836: case 8805: case 8837: case 8810: case 8842: case 8811: case 8843: case 8812: case 8844: case 8813: case 8845: case 8818: case 8850: case 8819: case 8851: case 8820: case 8852: case 8821: case 8853: case 8826: case 8858: case 8827: case 8859: case 8828: case 8860: return Hinge::Left; + default: return Hinge::Right; + } + } + bool Open(short ID) + { + switch (ID) + { + case 8829: case 8861: case 8832: case 8864: case 8833: case 8804: case 8836: case 8805: case 8837: case 8808: case 8840: case 8809: case 8841: case 8812: case 8844: case 8813: case 8845: case 8816: case 8848: case 8817: case 8849: case 8820: case 8852: case 8821: case 8853: case 8824: case 8856: case 8825: case 8857: case 8828: case 8860: case 8865: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 8829: case 8861: case 8831: case 8863: case 8833: case 8803: case 8835: case 8805: case 8837: case 8807: case 8839: case 8809: case 8841: case 8811: case 8843: case 8813: case 8845: case 8815: case 8847: case 8817: case 8849: case 8819: case 8851: case 8821: case 8853: case 8823: case 8855: case 8825: case 8857: case 8827: case 8859: case 8865: return false; + default: return true; + } + } + } + namespace BirchFence + { + short BirchFence() + { + return 8641; + } + bool East(short ID) + { + switch (ID) + { + case 8631: case 8639: case 8632: case 8640: case 8633: case 8626: case 8634: case 8627: case 8635: case 8628: case 8636: case 8629: case 8637: case 8630: case 8638: case 8641: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 8623: case 8639: case 8624: case 8640: case 8625: case 8618: case 8634: case 8619: case 8635: case 8620: case 8636: case 8621: case 8637: case 8622: case 8638: case 8641: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 8615: case 8623: case 8631: case 8639: case 8616: case 8624: case 8632: case 8640: case 8617: case 8625: case 8633: case 8614: case 8622: case 8630: case 8638: case 8641: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8616: case 8624: case 8632: case 8640: case 8617: case 8625: case 8633: case 8612: case 8620: case 8628: case 8636: case 8613: case 8621: case 8629: case 8637: case 8641: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 8615: case 8623: case 8631: case 8639: case 8617: case 8625: case 8633: case 8611: case 8619: case 8627: case 8635: case 8613: case 8621: case 8629: case 8637: case 8641: return false; + default: return true; + } + } + } + namespace BirchFenceGate + { + short BirchFenceGate() + { + return 8457; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8468: case 8469: case 8470: case 8471: case 8472: case 8473: case 8466: case 8467: return eBlockFace::BLOCK_FACE_XM; + case 8476: case 8477: case 8478: case 8479: case 8480: case 8474: case 8475: case 8481: return eBlockFace::BLOCK_FACE_XP; + case 8453: case 8454: case 8455: case 8456: case 8457: case 8450: case 8451: case 8452: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool InWall(short ID) + { + switch (ID) + { + case 8454: case 8462: case 8470: case 8478: case 8455: case 8463: case 8471: case 8479: case 8456: case 8464: case 8472: case 8480: case 8457: case 8465: case 8473: case 8481: return false; + default: return true; + } + } + bool Open(short ID) + { + switch (ID) + { + case 8460: case 8468: case 8476: case 8453: case 8461: case 8469: case 8477: case 8456: case 8464: case 8472: case 8480: case 8457: case 8465: case 8473: case 8452: case 8481: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 8453: case 8461: case 8469: case 8477: case 8455: case 8463: case 8471: case 8479: case 8457: case 8465: case 8473: case 8451: case 8459: case 8467: case 8475: case 8481: return false; + default: return true; + } + } + } + namespace BirchLeaves + { + short BirchLeaves() + { + return 186; + } + unsigned char Distance(short ID) + { + switch (ID) + { + case 173: case 174: return 1; + case 176: case 175: return 2; + case 177: case 178: return 3; + case 179: case 180: return 4; + case 181: case 182: return 5; + case 183: case 184: return 6; + default: return 7; + } + } + bool Persistent(short ID) + { + switch (ID) + { + case 176: case 184: case 178: case 186: case 180: case 174: case 182: return false; + default: return true; + } + } + } + namespace BirchLog + { + short BirchLog() + { + return 80; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 79: return Axis::X; + case 80: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace BirchPlanks + { + } + namespace BirchPressurePlate + { + short BirchPressurePlate() + { + return 3878; + } + bool Powered(short ID) + { + switch (ID) + { + case 3878: return false; + default: return true; + } + } + } + namespace BirchSapling + { + short BirchSapling() + { + return 25; + } + unsigned char Stage(short ID) + { + switch (ID) + { + case 25: return 0; + default: return 1; + } + } + } + namespace BirchSign + { + short BirchSign() + { + return 3446; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 3445: case 3446: return 0; + case 3447: case 3448: return 1; + case 3466: case 3465: return 10; + case 3468: case 3467: return 11; + case 3470: case 3469: return 12; + case 3472: case 3471: return 13; + case 3474: case 3473: return 14; + case 3475: case 3476: return 15; + case 3449: case 3450: return 2; + case 3452: case 3451: return 3; + case 3454: case 3453: return 4; + case 3456: case 3455: return 5; + case 3458: case 3457: return 6; + case 3460: case 3459: return 7; + case 3462: case 3461: return 8; + default: return 9; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 3452: case 3454: case 3456: case 3458: case 3460: case 3462: case 3464: case 3466: case 3468: case 3470: case 3472: case 3474: case 3446: case 3448: case 3450: case 3476: return false; + default: return true; + } + } + } + namespace BirchSlab + { + short BirchSlab() + { + return 8315; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8315: case 8314: return Type::Bottom; + case 8316: case 8317: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8315: case 8313: case 8317: return false; + default: return true; + } + } + } + namespace BirchStairs + { + short BirchStairs() + { + return 5495; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 5524: case 5525: case 5526: case 5527: case 5528: case 5529: case 5530: case 5531: case 5532: case 5533: case 5534: case 5535: case 5536: case 5537: case 5538: case 5539: case 5540: case 5541: case 5542: case 5543: return eBlockFace::BLOCK_FACE_XM; + case 5544: case 5545: case 5546: case 5547: case 5548: case 5549: case 5550: case 5551: case 5552: case 5553: case 5554: case 5555: case 5556: case 5557: case 5558: case 5559: case 5560: case 5561: case 5562: case 5563: return eBlockFace::BLOCK_FACE_XP; + case 5484: case 5485: case 5486: case 5487: case 5488: case 5489: case 5490: case 5491: case 5492: case 5493: case 5494: case 5495: case 5496: case 5497: case 5498: case 5499: case 5500: case 5501: case 5502: case 5503: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 5520: case 5521: case 5522: case 5523: case 5534: case 5535: case 5536: case 5537: case 5538: case 5539: case 5540: case 5541: case 5542: case 5543: case 5554: case 5555: case 5556: case 5557: case 5494: case 5558: case 5495: case 5559: case 5496: case 5560: case 5497: case 5561: case 5498: case 5562: case 5499: case 5563: case 5500: case 5501: case 5502: case 5503: case 5514: case 5515: case 5516: case 5517: case 5518: case 5519: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 5526: case 5527: case 5536: case 5537: case 5546: case 5547: case 5486: case 5487: case 5556: case 5557: case 5496: case 5497: case 5506: case 5507: case 5516: case 5517: return Shape::InnerLeft; + case 5528: case 5529: case 5538: case 5539: case 5548: case 5549: case 5488: case 5489: case 5558: case 5559: case 5498: case 5499: case 5508: case 5509: case 5518: case 5519: return Shape::InnerRight; + case 5520: case 5521: case 5530: case 5531: case 5540: case 5541: case 5550: case 5551: case 5490: case 5491: case 5560: case 5561: case 5500: case 5501: case 5510: case 5511: return Shape::OuterLeft; + case 5522: case 5523: case 5532: case 5533: case 5542: case 5543: case 5552: case 5553: case 5492: case 5493: case 5562: case 5563: case 5502: case 5503: case 5512: case 5513: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 5521: case 5523: case 5525: case 5527: case 5529: case 5531: case 5533: case 5535: case 5537: case 5539: case 5541: case 5543: case 5545: case 5547: case 5485: case 5549: case 5487: case 5551: case 5489: case 5553: case 5491: case 5555: case 5493: case 5557: case 5495: case 5559: case 5497: case 5561: case 5499: case 5563: case 5501: case 5503: case 5505: case 5507: case 5509: case 5511: case 5513: case 5515: case 5517: case 5519: return false; + default: return true; + } + } + } + namespace BirchTrapdoor + { + short BirchTrapdoor() + { + return 4254; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 4274: case 4275: case 4276: case 4277: case 4278: case 4279: case 4280: case 4281: case 4282: case 4283: case 4284: case 4285: case 4286: case 4271: case 4272: case 4273: return eBlockFace::BLOCK_FACE_XM; + case 4290: case 4291: case 4292: case 4293: case 4294: case 4295: case 4296: case 4297: case 4298: case 4299: case 4300: case 4301: case 4287: case 4288: case 4289: case 4302: return eBlockFace::BLOCK_FACE_XP; + case 4243: case 4244: case 4245: case 4246: case 4247: case 4248: case 4249: case 4250: case 4251: case 4252: case 4253: case 4254: case 4239: case 4240: case 4241: case 4242: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 4247: case 4263: case 4279: case 4295: case 4248: case 4264: case 4280: case 4296: case 4249: case 4265: case 4281: case 4297: case 4250: case 4266: case 4282: case 4298: case 4251: case 4267: case 4283: case 4299: case 4252: case 4268: case 4284: case 4300: case 4253: case 4269: case 4285: case 4301: case 4254: case 4270: case 4286: case 4302: return Half::Bottom; + default: return Half::Top; + } + } + bool Open(short ID) + { + switch (ID) + { + case 4243: case 4259: case 4275: case 4291: case 4244: case 4260: case 4276: case 4292: case 4245: case 4261: case 4277: case 4293: case 4246: case 4262: case 4278: case 4294: case 4251: case 4267: case 4283: case 4299: case 4252: case 4268: case 4284: case 4300: case 4253: case 4269: case 4285: case 4301: case 4254: case 4270: case 4286: case 4302: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 4258: case 4274: case 4290: case 4245: case 4261: case 4277: case 4293: case 4246: case 4262: case 4278: case 4294: case 4249: case 4265: case 4281: case 4297: case 4250: case 4266: case 4282: case 4298: case 4253: case 4269: case 4285: case 4301: case 4254: case 4270: case 4286: case 4241: case 4257: case 4273: case 4289: case 4242: case 4302: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 4258: case 4274: case 4290: case 4244: case 4260: case 4276: case 4292: case 4246: case 4262: case 4278: case 4294: case 4248: case 4264: case 4280: case 4296: case 4250: case 4266: case 4282: case 4298: case 4252: case 4268: case 4284: case 4300: case 4254: case 4270: case 4286: case 4240: case 4256: case 4272: case 4288: case 4242: case 4302: return false; + default: return true; + } + } + } + namespace BirchWallSign + { + short BirchWallSign() + { + return 3752; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 3755: case 3756: return eBlockFace::BLOCK_FACE_XM; + case 3757: case 3758: return eBlockFace::BLOCK_FACE_XP; + case 3751: case 3752: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 3752: case 3754: case 3756: case 3758: return false; + default: return true; + } + } + } + namespace BirchWood + { + short BirchWood() + { + return 116; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 115: return Axis::X; + case 116: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace BlackBanner + { + short BlackBanner() + { + return 8137; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 8137: return 0; + case 8138: return 1; + case 8147: return 10; + case 8148: return 11; + case 8149: return 12; + case 8150: return 13; + case 8151: return 14; + case 8152: return 15; + case 8139: return 2; + case 8140: return 3; + case 8141: return 4; + case 8142: return 5; + case 8143: return 6; + case 8144: return 7; + case 8145: return 8; + default: return 9; + } + } + } + namespace BlackBed + { + short BlackBed() + { + return 1292; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1299: case 1300: case 1297: case 1298: return eBlockFace::BLOCK_FACE_XM; + case 1302: case 1303: case 1301: case 1304: return eBlockFace::BLOCK_FACE_XP; + case 1291: case 1292: case 1289: case 1290: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1291: case 1295: case 1299: case 1303: case 1292: case 1296: case 1300: case 1304: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1302: case 1292: case 1296: case 1300: case 1290: case 1294: case 1298: case 1304: return Part::Foot; + default: return Part::Head; + } + } + } + namespace BlackCarpet + { + } + namespace BlackConcrete + { + } + namespace BlackConcretePowder + { + } + namespace BlackGlazedTerracotta + { + short BlackGlazedTerracotta() + { + return 9434; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9436: return eBlockFace::BLOCK_FACE_XM; + case 9437: return eBlockFace::BLOCK_FACE_XP; + case 9434: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace BlackShulkerBox + { + short BlackShulkerBox() + { + return 9372; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9371: return eBlockFace::BLOCK_FACE_XM; + case 9369: return eBlockFace::BLOCK_FACE_XP; + case 9373: return eBlockFace::BLOCK_FACE_YM; + case 9372: return eBlockFace::BLOCK_FACE_YP; + case 9368: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace BlackStainedGlass + { + } + namespace BlackStainedGlassPane + { + short BlackStainedGlassPane() + { + return 7374; + } + bool East(short ID) + { + switch (ID) + { + case 7365: case 7369: case 7373: case 7362: case 7366: case 7370: case 7359: case 7363: case 7367: case 7371: case 7360: case 7364: case 7368: case 7372: case 7361: case 7374: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 7369: case 7373: case 7354: case 7358: case 7370: case 7351: case 7355: case 7367: case 7371: case 7352: case 7356: case 7368: case 7372: case 7353: case 7357: case 7374: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 7365: case 7373: case 7350: case 7358: case 7366: case 7347: case 7355: case 7363: case 7371: case 7348: case 7356: case 7364: case 7372: case 7349: case 7357: case 7374: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7365: case 7369: case 7373: case 7346: case 7350: case 7354: case 7358: case 7362: case 7366: case 7370: case 7345: case 7349: case 7353: case 7357: case 7361: case 7374: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 7346: case 7350: case 7354: case 7358: case 7362: case 7366: case 7370: case 7344: case 7348: case 7352: case 7356: case 7360: case 7364: case 7368: case 7372: case 7374: return false; + default: return true; + } + } + } + namespace BlackTerracotta + { + } + namespace BlackWallBanner + { + short BlackWallBanner() + { + return 8213; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8215: return eBlockFace::BLOCK_FACE_XM; + case 8216: return eBlockFace::BLOCK_FACE_XP; + case 8213: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace BlackWool + { + } + namespace Blackstone + { + } + namespace BlackstoneSlab + { + short BlackstoneSlab() + { + return 16247; + } + enum Type Type(short ID) + { + switch (ID) + { + case 16246: case 16247: return Type::Bottom; + case 16249: case 16248: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 16249: case 16247: case 16245: return false; + default: return true; + } + } + } + namespace BlackstoneStairs + { + short BlackstoneStairs() + { + return 15851; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 15880: case 15881: case 15882: case 15883: case 15884: case 15885: case 15886: case 15887: case 15888: case 15889: case 15890: case 15891: case 15892: case 15893: case 15894: case 15895: case 15896: case 15897: case 15898: case 15899: return eBlockFace::BLOCK_FACE_XM; + case 15900: case 15901: case 15902: case 15903: case 15904: case 15905: case 15906: case 15907: case 15908: case 15909: case 15910: case 15911: case 15912: case 15913: case 15914: case 15915: case 15916: case 15917: case 15918: case 15919: return eBlockFace::BLOCK_FACE_XP; + case 15840: case 15841: case 15842: case 15843: case 15844: case 15845: case 15846: case 15847: case 15848: case 15849: case 15850: case 15851: case 15852: case 15853: case 15854: case 15855: case 15856: case 15857: case 15858: case 15859: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 15850: case 15851: case 15852: case 15853: case 15854: case 15855: case 15856: case 15857: case 15858: case 15859: case 15870: case 15871: case 15872: case 15873: case 15874: case 15875: case 15876: case 15877: case 15878: case 15879: case 15890: case 15891: case 15892: case 15893: case 15894: case 15895: case 15896: case 15897: case 15898: case 15899: case 15910: case 15911: case 15912: case 15913: case 15914: case 15915: case 15916: case 15917: case 15918: case 15919: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 15842: case 15843: case 15852: case 15853: case 15862: case 15863: case 15872: case 15873: case 15882: case 15883: case 15892: case 15893: case 15902: case 15903: case 15912: case 15913: return Shape::InnerLeft; + case 15844: case 15845: case 15854: case 15855: case 15864: case 15865: case 15874: case 15875: case 15884: case 15885: case 15894: case 15895: case 15904: case 15905: case 15914: case 15915: return Shape::InnerRight; + case 15846: case 15847: case 15856: case 15857: case 15866: case 15867: case 15876: case 15877: case 15886: case 15887: case 15896: case 15897: case 15906: case 15907: case 15916: case 15917: return Shape::OuterLeft; + case 15848: case 15849: case 15858: case 15859: case 15868: case 15869: case 15878: case 15879: case 15888: case 15889: case 15898: case 15899: case 15908: case 15909: case 15918: case 15919: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 15841: case 15843: case 15845: case 15847: case 15849: case 15851: case 15853: case 15855: case 15857: case 15859: case 15861: case 15863: case 15865: case 15867: case 15869: case 15871: case 15873: case 15875: case 15877: case 15879: case 15881: case 15883: case 15885: case 15887: case 15889: case 15891: case 15893: case 15895: case 15897: case 15899: case 15901: case 15903: case 15905: case 15907: case 15909: case 15911: case 15913: case 15915: case 15917: case 15919: return false; + default: return true; + } + } + } + namespace BlackstoneWall + { + short BlackstoneWall() + { + return 15923; + } + enum East East(short ID) + { + switch (ID) + { + case 16029: case 16033: case 16037: case 16041: case 16045: case 16049: case 16053: case 16057: case 16061: case 16065: case 16069: case 16073: case 16077: case 16081: case 16085: case 16089: case 16093: case 16097: case 16101: case 16105: case 16109: case 16113: case 16117: case 16121: case 16125: case 16129: case 16133: case 16030: case 16034: case 16038: case 16042: case 16046: case 16050: case 16054: case 16058: case 16062: case 16066: case 16070: case 16074: case 16078: case 16082: case 16086: case 16090: case 16094: case 16098: case 16102: case 16106: case 16110: case 16114: case 16118: case 16122: case 16126: case 16130: case 16134: case 16031: case 16035: case 16039: case 16043: case 16047: case 16051: case 16055: case 16059: case 16063: case 16067: case 16071: case 16075: case 16079: case 16083: case 16087: case 16091: case 16095: case 16099: case 16103: case 16107: case 16111: case 16115: case 16119: case 16123: case 16127: case 16131: case 16135: case 16028: case 16032: case 16036: case 16040: case 16044: case 16048: case 16052: case 16056: case 16060: case 16064: case 16068: case 16072: case 16076: case 16080: case 16084: case 16088: case 16092: case 16096: case 16100: case 16104: case 16108: case 16112: case 16116: case 16120: case 16124: case 16128: case 16132: return East::Low; + case 15921: case 15925: case 15929: case 15933: case 15937: case 15941: case 15945: case 15949: case 15953: case 15957: case 15961: case 15965: case 15969: case 15973: case 15977: case 15981: case 15985: case 15989: case 15993: case 15997: case 16001: case 16005: case 16009: case 16013: case 16017: case 16021: case 16025: case 15922: case 15926: case 15930: case 15934: case 15938: case 15942: case 15946: case 15950: case 15954: case 15958: case 15962: case 15966: case 15970: case 15974: case 15978: case 15982: case 15986: case 15990: case 15994: case 15998: case 16002: case 16006: case 16010: case 16014: case 16018: case 16022: case 16026: case 15923: case 15927: case 15931: case 15935: case 15939: case 15943: case 15947: case 15951: case 15955: case 15959: case 15963: case 15967: case 15971: case 15975: case 15979: case 15983: case 15987: case 15991: case 15995: case 15999: case 16003: case 16007: case 16011: case 16015: case 16019: case 16023: case 16027: case 15920: case 15924: case 15928: case 15932: case 15936: case 15940: case 15944: case 15948: case 15952: case 15956: case 15960: case 15964: case 15968: case 15972: case 15976: case 15980: case 15984: case 15988: case 15992: case 15996: case 16000: case 16004: case 16008: case 16012: case 16016: case 16020: case 16024: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 16172: case 16176: case 16180: case 16184: case 16188: case 16192: case 16196: case 16200: case 16204: case 15957: case 15961: case 15965: case 15969: case 15973: case 15977: case 15981: case 15985: case 15989: case 16065: case 16069: case 16073: case 16077: case 16081: case 16085: case 16089: case 16093: case 16097: case 16173: case 16177: case 16181: case 16185: case 16189: case 16193: case 16197: case 16201: case 16205: case 15958: case 15962: case 15966: case 15970: case 15974: case 15978: case 15982: case 15986: case 15990: case 16066: case 16070: case 16074: case 16078: case 16082: case 16086: case 16090: case 16094: case 16098: case 16174: case 16178: case 16182: case 16186: case 16190: case 16194: case 16198: case 16202: case 16206: case 15959: case 15963: case 15967: case 15971: case 15975: case 15979: case 15983: case 15987: case 15991: case 16067: case 16071: case 16075: case 16079: case 16083: case 16087: case 16091: case 16095: case 16099: case 16175: case 16179: case 16183: case 16187: case 16191: case 16195: case 16199: case 16203: case 16207: case 15956: case 15960: case 15964: case 15968: case 15972: case 15976: case 15980: case 15984: case 15988: case 16064: case 16068: case 16072: case 16076: case 16080: case 16084: case 16088: case 16092: case 16096: return North::Low; + case 16144: case 16148: case 16152: case 16156: case 16160: case 16164: case 16168: case 15921: case 15925: case 15929: case 15933: case 15937: case 15941: case 15945: case 15949: case 15953: case 16029: case 16033: case 16037: case 16041: case 16045: case 16049: case 16053: case 16057: case 16061: case 16137: case 16141: case 16145: case 16149: case 16153: case 16157: case 16161: case 16165: case 16169: case 15922: case 15926: case 15930: case 15934: case 15938: case 15942: case 15946: case 15950: case 15954: case 16030: case 16034: case 16038: case 16042: case 16046: case 16050: case 16054: case 16058: case 16062: case 16138: case 16142: case 16146: case 16150: case 16154: case 16158: case 16162: case 16166: case 16170: case 15923: case 15927: case 15931: case 15935: case 15939: case 15943: case 15947: case 15951: case 15955: case 16031: case 16035: case 16039: case 16043: case 16047: case 16051: case 16055: case 16059: case 16063: case 16139: case 16143: case 16147: case 16151: case 16155: case 16159: case 16163: case 16167: case 16171: case 15920: case 15924: case 15928: case 15932: case 15936: case 15940: case 15944: case 15948: case 15952: case 16028: case 16032: case 16036: case 16040: case 16044: case 16048: case 16052: case 16056: case 16060: case 16136: case 16140: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 16148: case 16152: case 16156: case 16184: case 16188: case 16192: case 16220: case 16224: case 16228: case 15933: case 15937: case 15941: case 15969: case 15973: case 15977: case 16005: case 16009: case 16013: case 16041: case 16045: case 16049: case 16077: case 16081: case 16085: case 16113: case 16117: case 16121: case 16149: case 16153: case 16157: case 16185: case 16189: case 16193: case 16221: case 16225: case 16229: case 15934: case 15938: case 15942: case 15970: case 15974: case 15978: case 16006: case 16010: case 16014: case 16042: case 16046: case 16050: case 16078: case 16082: case 16086: case 16114: case 16118: case 16122: case 16150: case 16154: case 16158: case 16186: case 16190: case 16194: case 16222: case 16226: case 16230: case 15935: case 15939: case 15943: case 15971: case 15975: case 15979: case 16007: case 16011: case 16015: case 16043: case 16047: case 16051: case 16079: case 16083: case 16087: case 16115: case 16119: case 16123: case 16151: case 16155: case 16159: case 16187: case 16191: case 16195: case 16223: case 16227: case 16231: case 15932: case 15936: case 15940: case 15968: case 15972: case 15976: case 16004: case 16008: case 16012: case 16040: case 16044: case 16048: case 16076: case 16080: case 16084: case 16112: case 16116: case 16120: return South::Low; + case 16144: case 16172: case 16176: case 16180: case 16208: case 16212: case 16216: case 15921: case 15925: case 15929: case 15957: case 15961: case 15965: case 15993: case 15997: case 16001: case 16029: case 16033: case 16037: case 16065: case 16069: case 16073: case 16101: case 16105: case 16109: case 16137: case 16141: case 16145: case 16173: case 16177: case 16181: case 16209: case 16213: case 16217: case 15922: case 15926: case 15930: case 15958: case 15962: case 15966: case 15994: case 15998: case 16002: case 16030: case 16034: case 16038: case 16066: case 16070: case 16074: case 16102: case 16106: case 16110: case 16138: case 16142: case 16146: case 16174: case 16178: case 16182: case 16210: case 16214: case 16218: case 15923: case 15927: case 15931: case 15959: case 15963: case 15967: case 15995: case 15999: case 16003: case 16031: case 16035: case 16039: case 16067: case 16071: case 16075: case 16103: case 16107: case 16111: case 16139: case 16143: case 16147: case 16175: case 16179: case 16183: case 16211: case 16215: case 16219: case 15920: case 15924: case 15928: case 15956: case 15960: case 15964: case 15992: case 15996: case 16000: case 16028: case 16032: case 16036: case 16064: case 16068: case 16072: case 16100: case 16104: case 16108: case 16136: case 16140: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 16144: case 16156: case 16168: case 16180: case 16192: case 16204: case 16216: case 16228: case 16240: case 15929: case 15941: case 15953: case 15965: case 15977: case 15989: case 16001: case 16013: case 16025: case 16037: case 16049: case 16061: case 16073: case 16085: case 16097: case 16109: case 16121: case 16133: case 16145: case 16157: case 16169: case 16181: case 16193: case 16205: case 16217: case 16229: case 16241: case 15926: case 15930: case 15938: case 15942: case 15950: case 15954: case 15962: case 15966: case 15974: case 15978: case 15986: case 15990: case 15998: case 16002: case 16010: case 16014: case 16022: case 16026: case 16034: case 16038: case 16046: case 16050: case 16058: case 16062: case 16070: case 16074: case 16082: case 16086: case 16094: case 16098: case 16106: case 16110: case 16118: case 16122: case 16130: case 16134: case 16142: case 16146: case 16154: case 16158: case 16166: case 16170: case 16178: case 16182: case 16190: case 16194: case 16202: case 16206: case 16214: case 16218: case 16226: case 16230: case 16238: case 16242: case 15927: case 15931: case 15939: case 15943: case 15951: case 15955: case 15963: case 15967: case 15975: case 15979: case 15987: case 15991: case 15999: case 16003: case 16011: case 16015: case 16023: case 16027: case 16035: case 16039: case 16047: case 16051: case 16059: case 16063: case 16071: case 16075: case 16083: case 16087: case 16095: case 16099: case 16107: case 16111: case 16119: case 16123: case 16131: case 16135: case 16143: case 16147: case 16155: case 16159: case 16167: case 16171: case 16179: case 16183: case 16191: case 16195: case 16203: case 16207: case 16215: case 16219: case 16227: case 16231: case 16239: case 16243: case 15928: case 15940: case 15952: case 15964: case 15976: case 15988: case 16000: case 16012: case 16024: case 16036: case 16048: case 16060: case 16072: case 16084: case 16096: case 16108: case 16120: case 16132: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 16152: case 16164: case 16176: case 16188: case 16200: case 16212: case 16224: case 16236: case 15925: case 15929: case 15937: case 15941: case 15949: case 15953: case 15961: case 15965: case 15973: case 15977: case 15985: case 15989: case 15997: case 16001: case 16009: case 16013: case 16021: case 16025: case 16033: case 16037: case 16045: case 16049: case 16057: case 16061: case 16069: case 16073: case 16081: case 16085: case 16093: case 16097: case 16105: case 16109: case 16117: case 16121: case 16129: case 16133: case 16141: case 16145: case 16153: case 16157: case 16165: case 16169: case 16177: case 16181: case 16189: case 16193: case 16201: case 16205: case 16213: case 16217: case 16225: case 16229: case 16237: case 16241: case 15930: case 15942: case 15954: case 15966: case 15978: case 15990: case 16002: case 16014: case 16026: case 16038: case 16050: case 16062: case 16074: case 16086: case 16098: case 16110: case 16122: case 16134: case 16146: case 16158: case 16170: case 16182: case 16194: case 16206: case 16218: case 16230: case 16242: case 15923: case 15931: case 15935: case 15943: case 15947: case 15955: case 15959: case 15967: case 15971: case 15979: case 15983: case 15991: case 15995: case 16003: case 16007: case 16015: case 16019: case 16027: case 16031: case 16039: case 16043: case 16051: case 16055: case 16063: case 16067: case 16075: case 16079: case 16087: case 16091: case 16099: case 16103: case 16111: case 16115: case 16123: case 16127: case 16135: case 16139: case 16147: case 16151: case 16159: case 16163: case 16171: case 16175: case 16183: case 16187: case 16195: case 16199: case 16207: case 16211: case 16219: case 16223: case 16231: case 16235: case 16243: case 15924: case 15936: case 15948: case 15960: case 15972: case 15984: case 15996: case 16008: case 16020: case 16032: case 16044: case 16056: case 16068: case 16080: case 16092: case 16104: case 16116: case 16128: case 16140: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 16152: case 16164: case 16176: case 16188: case 16200: case 16212: case 16224: case 16236: case 15921: case 15933: case 15945: case 15957: case 15969: case 15981: case 15993: case 16005: case 16017: case 16029: case 16041: case 16053: case 16065: case 16077: case 16089: case 16101: case 16113: case 16125: case 16137: case 16149: case 16161: case 16173: case 16185: case 16197: case 16209: case 16221: case 16233: case 15930: case 15942: case 15954: case 15966: case 15978: case 15990: case 16002: case 16014: case 16026: case 16038: case 16050: case 16062: case 16074: case 16086: case 16098: case 16110: case 16122: case 16134: case 16146: case 16158: case 16170: case 16182: case 16194: case 16206: case 16218: case 16230: case 16242: case 15927: case 15939: case 15951: case 15963: case 15975: case 15987: case 15999: case 16011: case 16023: case 16035: case 16047: case 16059: case 16071: case 16083: case 16095: case 16107: case 16119: case 16131: case 16143: case 16155: case 16167: case 16179: case 16191: case 16203: case 16215: case 16227: case 16239: case 15924: case 15936: case 15948: case 15960: case 15972: case 15984: case 15996: case 16008: case 16020: case 16032: case 16044: case 16056: case 16068: case 16080: case 16092: case 16104: case 16116: case 16128: case 16140: return West::Low; + case 16148: case 16160: case 16172: case 16184: case 16196: case 16208: case 16220: case 16232: case 15929: case 15941: case 15953: case 15965: case 15977: case 15989: case 16001: case 16013: case 16025: case 16037: case 16049: case 16061: case 16073: case 16085: case 16097: case 16109: case 16121: case 16133: case 16145: case 16157: case 16169: case 16181: case 16193: case 16205: case 16217: case 16229: case 16241: case 15926: case 15938: case 15950: case 15962: case 15974: case 15986: case 15998: case 16010: case 16022: case 16034: case 16046: case 16058: case 16070: case 16082: case 16094: case 16106: case 16118: case 16130: case 16142: case 16154: case 16166: case 16178: case 16190: case 16202: case 16214: case 16226: case 16238: case 15923: case 15935: case 15947: case 15959: case 15971: case 15983: case 15995: case 16007: case 16019: case 16031: case 16043: case 16055: case 16067: case 16079: case 16091: case 16103: case 16115: case 16127: case 16139: case 16151: case 16163: case 16175: case 16187: case 16199: case 16211: case 16223: case 16235: case 15920: case 15932: case 15944: case 15956: case 15968: case 15980: case 15992: case 16004: case 16016: case 16028: case 16040: case 16052: case 16064: case 16076: case 16088: case 16100: case 16112: case 16124: case 16136: return West::None; + default: return West::Tall; + } + } + } + namespace BlastFurnace + { + short BlastFurnace() + { + return 14812; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 14815: case 14816: return eBlockFace::BLOCK_FACE_XM; + case 14817: case 14818: return eBlockFace::BLOCK_FACE_XP; + case 14811: case 14812: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Lit(short ID) + { + switch (ID) + { + case 14814: case 14812: case 14816: case 14818: return false; + default: return true; + } + } + } + namespace BlueBanner + { + short BlueBanner() + { + return 8073; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 8073: return 0; + case 8074: return 1; + case 8083: return 10; + case 8084: return 11; + case 8085: return 12; + case 8086: return 13; + case 8087: return 14; + case 8088: return 15; + case 8075: return 2; + case 8076: return 3; + case 8077: return 4; + case 8078: return 5; + case 8079: return 6; + case 8080: return 7; + case 8081: return 8; + default: return 9; + } + } + } + namespace BlueBed + { + short BlueBed() + { + return 1228; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1235: case 1236: case 1233: case 1234: return eBlockFace::BLOCK_FACE_XM; + case 1239: case 1237: case 1238: case 1240: return eBlockFace::BLOCK_FACE_XP; + case 1227: case 1228: case 1225: case 1226: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1227: case 1231: case 1235: case 1239: case 1228: case 1232: case 1236: case 1240: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1228: case 1232: case 1236: case 1226: case 1230: case 1234: case 1238: case 1240: return Part::Foot; + default: return Part::Head; + } + } + } + namespace BlueCarpet + { + } + namespace BlueConcrete + { + } + namespace BlueConcretePowder + { + } + namespace BlueGlazedTerracotta + { + short BlueGlazedTerracotta() + { + return 9418; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9420: return eBlockFace::BLOCK_FACE_XM; + case 9421: return eBlockFace::BLOCK_FACE_XP; + case 9418: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace BlueIce + { + } + namespace BlueOrchid + { + } + namespace BlueShulkerBox + { + short BlueShulkerBox() + { + return 9348; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9347: return eBlockFace::BLOCK_FACE_XM; + case 9345: return eBlockFace::BLOCK_FACE_XP; + case 9349: return eBlockFace::BLOCK_FACE_YM; + case 9348: return eBlockFace::BLOCK_FACE_YP; + case 9344: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace BlueStainedGlass + { + } + namespace BlueStainedGlassPane + { + short BlueStainedGlassPane() + { + return 7246; + } + bool East(short ID) + { + switch (ID) + { + case 7241: case 7245: case 7234: case 7238: case 7242: case 7231: case 7235: case 7239: case 7243: case 7232: case 7236: case 7240: case 7244: case 7233: case 7237: case 7246: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 7241: case 7245: case 7226: case 7230: case 7242: case 7223: case 7227: case 7239: case 7243: case 7224: case 7228: case 7240: case 7244: case 7225: case 7229: case 7246: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 7245: case 7222: case 7230: case 7238: case 7219: case 7227: case 7235: case 7243: case 7220: case 7228: case 7236: case 7244: case 7221: case 7229: case 7237: case 7246: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7241: case 7245: case 7218: case 7222: case 7226: case 7230: case 7234: case 7238: case 7242: case 7217: case 7221: case 7225: case 7229: case 7233: case 7237: case 7246: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 7218: case 7222: case 7226: case 7230: case 7234: case 7238: case 7242: case 7216: case 7220: case 7224: case 7228: case 7232: case 7236: case 7240: case 7244: case 7246: return false; + default: return true; + } + } + } + namespace BlueTerracotta + { + } + namespace BlueWallBanner + { + short BlueWallBanner() + { + return 8197; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8199: return eBlockFace::BLOCK_FACE_XM; + case 8200: return eBlockFace::BLOCK_FACE_XP; + case 8197: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace BlueWool + { + } + namespace BoneBlock + { + short BoneBlock() + { + return 9257; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 9256: return Axis::X; + case 9257: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace Bookshelf + { + } + namespace BrainCoral + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9533: return false; + default: return true; + } + } + } + namespace BrainCoralBlock + { + } + namespace BrainCoralFan + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9553: return false; + default: return true; + } + } + } + namespace BrainCoralWallFan + { + short BrainCoralWallFan() + { + return 9608; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9613: case 9612: return eBlockFace::BLOCK_FACE_XM; + case 9614: case 9615: return eBlockFace::BLOCK_FACE_XP; + case 9608: case 9609: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9613: case 9611: case 9609: case 9615: return false; + default: return true; + } + } + } + namespace BrewingStand + { + short BrewingStand() + { + return 5140; + } + bool HasBottle_0(short ID) + { + switch (ID) + { + case 5137: case 5139: case 5138: case 5140: return false; + default: return true; + } + } + bool HasBottle_1(short ID) + { + switch (ID) + { + case 5135: case 5139: case 5136: case 5140: return false; + default: return true; + } + } + bool HasBottle_2(short ID) + { + switch (ID) + { + case 5134: case 5136: case 5138: case 5140: return false; + default: return true; + } + } + } + namespace BrickSlab + { + short BrickSlab() + { + return 8375; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8374: case 8375: return Type::Bottom; + case 8376: case 8377: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8375: case 8373: case 8377: return false; + default: return true; + } + } + } + namespace BrickStairs + { + short BrickStairs() + { + return 4863; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 4892: case 4893: case 4894: case 4895: case 4896: case 4897: case 4898: case 4899: case 4900: case 4901: case 4902: case 4903: case 4904: case 4905: case 4906: case 4907: case 4908: case 4909: case 4910: case 4911: return eBlockFace::BLOCK_FACE_XM; + case 4912: case 4913: case 4914: case 4915: case 4916: case 4917: case 4918: case 4919: case 4920: case 4921: case 4922: case 4923: case 4924: case 4925: case 4926: case 4927: case 4928: case 4929: case 4930: case 4931: return eBlockFace::BLOCK_FACE_XP; + case 4852: case 4853: case 4854: case 4855: case 4856: case 4857: case 4858: case 4859: case 4860: case 4861: case 4862: case 4863: case 4864: case 4865: case 4866: case 4867: case 4868: case 4869: case 4870: case 4871: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 4885: case 4886: case 4887: case 4888: case 4889: case 4890: case 4891: case 4902: case 4903: case 4904: case 4905: case 4906: case 4907: case 4908: case 4909: case 4910: case 4911: case 4922: case 4923: case 4924: case 4925: case 4862: case 4926: case 4863: case 4927: case 4864: case 4928: case 4865: case 4929: case 4866: case 4930: case 4867: case 4931: case 4868: case 4869: case 4870: case 4871: case 4882: case 4883: case 4884: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 4885: case 4894: case 4895: case 4904: case 4905: case 4914: case 4915: case 4854: case 4855: case 4924: case 4925: case 4864: case 4865: case 4874: case 4875: case 4884: return Shape::InnerLeft; + case 4886: case 4887: case 4896: case 4897: case 4906: case 4907: case 4916: case 4917: case 4856: case 4857: case 4926: case 4927: case 4866: case 4867: case 4876: case 4877: return Shape::InnerRight; + case 4888: case 4889: case 4898: case 4899: case 4908: case 4909: case 4918: case 4919: case 4858: case 4859: case 4928: case 4929: case 4868: case 4869: case 4878: case 4879: return Shape::OuterLeft; + case 4890: case 4891: case 4900: case 4901: case 4910: case 4911: case 4920: case 4921: case 4860: case 4861: case 4930: case 4931: case 4870: case 4871: case 4880: case 4881: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 4885: case 4887: case 4889: case 4891: case 4893: case 4895: case 4897: case 4899: case 4901: case 4903: case 4905: case 4907: case 4909: case 4911: case 4913: case 4915: case 4853: case 4917: case 4855: case 4919: case 4857: case 4921: case 4859: case 4923: case 4861: case 4925: case 4863: case 4927: case 4865: case 4929: case 4867: case 4931: case 4869: case 4871: case 4873: case 4875: case 4877: case 4879: case 4881: case 4883: return false; + default: return true; + } + } + } + namespace BrickWall + { + short BrickWall() + { + return 10870; + } + enum East East(short ID) + { + switch (ID) + { + case 11034: case 11038: case 11042: case 11046: case 11050: case 11054: case 11058: case 11062: case 11066: case 11070: case 11074: case 11078: case 11082: case 10975: case 10979: case 10983: case 10987: case 10991: case 10995: case 10999: case 11003: case 11007: case 11011: case 11015: case 11019: case 11023: case 11027: case 11031: case 11035: case 11039: case 11043: case 11047: case 11051: case 11055: case 11059: case 11063: case 11067: case 11071: case 11075: case 11079: case 10976: case 10980: case 10984: case 10988: case 10992: case 10996: case 11000: case 11004: case 11008: case 11012: case 11016: case 11020: case 11024: case 11028: case 11032: case 11036: case 11040: case 11044: case 11048: case 11052: case 11056: case 11060: case 11064: case 11068: case 11072: case 11076: case 11080: case 10977: case 10981: case 10985: case 10989: case 10993: case 10997: case 11001: case 11005: case 11009: case 11013: case 11017: case 11021: case 11025: case 11029: case 11033: case 11037: case 11041: case 11045: case 11049: case 11053: case 11057: case 11061: case 11065: case 11069: case 11073: case 11077: case 11081: case 10978: case 10982: case 10986: case 10990: case 10994: case 10998: case 11002: case 11006: case 11010: case 11014: case 11018: case 11022: case 11026: case 11030: return East::Low; + case 10867: case 10871: case 10875: case 10879: case 10883: case 10887: case 10891: case 10895: case 10899: case 10903: case 10907: case 10911: case 10915: case 10919: case 10923: case 10927: case 10931: case 10935: case 10939: case 10943: case 10947: case 10951: case 10955: case 10959: case 10963: case 10967: case 10971: case 10868: case 10872: case 10876: case 10880: case 10884: case 10888: case 10892: case 10896: case 10900: case 10904: case 10908: case 10912: case 10916: case 10920: case 10924: case 10928: case 10932: case 10936: case 10940: case 10944: case 10948: case 10952: case 10956: case 10960: case 10964: case 10968: case 10972: case 10869: case 10873: case 10877: case 10881: case 10885: case 10889: case 10893: case 10897: case 10901: case 10905: case 10909: case 10913: case 10917: case 10921: case 10925: case 10929: case 10933: case 10937: case 10941: case 10945: case 10949: case 10953: case 10957: case 10961: case 10965: case 10969: case 10973: case 10870: case 10874: case 10878: case 10882: case 10886: case 10890: case 10894: case 10898: case 10902: case 10906: case 10910: case 10914: case 10918: case 10922: case 10926: case 10930: case 10934: case 10938: case 10942: case 10946: case 10950: case 10954: case 10958: case 10962: case 10966: case 10970: case 10974: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 11034: case 11038: case 11042: case 11046: case 11122: case 11126: case 11130: case 11134: case 11138: case 11142: case 11146: case 11150: case 11154: case 10903: case 10907: case 10911: case 10915: case 10919: case 10923: case 10927: case 10931: case 10935: case 11011: case 11015: case 11019: case 11023: case 11027: case 11031: case 11035: case 11039: case 11043: case 11119: case 11123: case 11127: case 11131: case 11135: case 11139: case 11143: case 11147: case 11151: case 10904: case 10908: case 10912: case 10916: case 10920: case 10924: case 10928: case 10932: case 10936: case 11012: case 11016: case 11020: case 11024: case 11028: case 11032: case 11036: case 11040: case 11044: case 11120: case 11124: case 11128: case 11132: case 11136: case 11140: case 11144: case 11148: case 11152: case 10905: case 10909: case 10913: case 10917: case 10921: case 10925: case 10929: case 10933: case 10937: case 11013: case 11017: case 11021: case 11025: case 11029: case 11033: case 11037: case 11041: case 11045: case 11121: case 11125: case 11129: case 11133: case 11137: case 11141: case 11145: case 11149: case 11153: case 10906: case 10910: case 10914: case 10918: case 10922: case 10926: case 10930: case 10934: case 10938: case 11014: case 11018: case 11022: case 11026: case 11030: return North::Low; + case 11086: case 11090: case 11094: case 11098: case 11102: case 11106: case 11110: case 11114: case 11118: case 10867: case 10871: case 10875: case 10879: case 10883: case 10887: case 10891: case 10895: case 10899: case 10975: case 10979: case 10983: case 10987: case 10991: case 10995: case 10999: case 11003: case 11007: case 11083: case 11087: case 11091: case 11095: case 11099: case 11103: case 11107: case 11111: case 11115: case 10868: case 10872: case 10876: case 10880: case 10884: case 10888: case 10892: case 10896: case 10900: case 10976: case 10980: case 10984: case 10988: case 10992: case 10996: case 11000: case 11004: case 11008: case 11084: case 11088: case 11092: case 11096: case 11100: case 11104: case 11108: case 11112: case 11116: case 10869: case 10873: case 10877: case 10881: case 10885: case 10889: case 10893: case 10897: case 10901: case 10977: case 10981: case 10985: case 10989: case 10993: case 10997: case 11001: case 11005: case 11009: case 11085: case 11089: case 11093: case 11097: case 11101: case 11105: case 11109: case 11113: case 11117: case 10870: case 10874: case 10878: case 10882: case 10886: case 10890: case 10894: case 10898: case 10902: case 10978: case 10982: case 10986: case 10990: case 10994: case 10998: case 11002: case 11006: case 11010: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 11034: case 11062: case 11066: case 11070: case 11098: case 11102: case 11106: case 11134: case 11138: case 11142: case 11170: case 11174: case 11178: case 10879: case 10883: case 10887: case 10915: case 10919: case 10923: case 10951: case 10955: case 10959: case 10987: case 10991: case 10995: case 11023: case 11027: case 11031: case 11059: case 11063: case 11067: case 11095: case 11099: case 11103: case 11131: case 11135: case 11139: case 11167: case 11171: case 11175: case 10880: case 10884: case 10888: case 10916: case 10920: case 10924: case 10952: case 10956: case 10960: case 10988: case 10992: case 10996: case 11024: case 11028: case 11032: case 11060: case 11064: case 11068: case 11096: case 11100: case 11104: case 11132: case 11136: case 11140: case 11168: case 11172: case 11176: case 10881: case 10885: case 10889: case 10917: case 10921: case 10925: case 10953: case 10957: case 10961: case 10989: case 10993: case 10997: case 11025: case 11029: case 11033: case 11061: case 11065: case 11069: case 11097: case 11101: case 11105: case 11133: case 11137: case 11141: case 11169: case 11173: case 11177: case 10882: case 10886: case 10890: case 10918: case 10922: case 10926: case 10954: case 10958: case 10962: case 10990: case 10994: case 10998: case 11026: case 11030: return South::Low; + case 11050: case 11054: case 11058: case 11086: case 11090: case 11094: case 11122: case 11126: case 11130: case 11158: case 11162: case 11166: case 10867: case 10871: case 10875: case 10903: case 10907: case 10911: case 10939: case 10943: case 10947: case 10975: case 10979: case 10983: case 11011: case 11015: case 11019: case 11047: case 11051: case 11055: case 11083: case 11087: case 11091: case 11119: case 11123: case 11127: case 11155: case 11159: case 11163: case 10868: case 10872: case 10876: case 10904: case 10908: case 10912: case 10940: case 10944: case 10948: case 10976: case 10980: case 10984: case 11012: case 11016: case 11020: case 11048: case 11052: case 11056: case 11084: case 11088: case 11092: case 11120: case 11124: case 11128: case 11156: case 11160: case 11164: case 10869: case 10873: case 10877: case 10905: case 10909: case 10913: case 10941: case 10945: case 10949: case 10977: case 10981: case 10985: case 11013: case 11017: case 11021: case 11049: case 11053: case 11057: case 11085: case 11089: case 11093: case 11121: case 11125: case 11129: case 11157: case 11161: case 11165: case 10870: case 10874: case 10878: case 10906: case 10910: case 10914: case 10942: case 10946: case 10950: case 10978: case 10982: case 10986: case 11014: case 11018: case 11022: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 11034: case 11042: case 11046: case 11054: case 11058: case 11066: case 11070: case 11078: case 11082: case 11090: case 11094: case 11102: case 11106: case 11114: case 11118: case 11126: case 11130: case 11138: case 11142: case 11150: case 11154: case 11162: case 11166: case 11174: case 11178: case 11186: case 11190: case 10875: case 10887: case 10899: case 10911: case 10923: case 10935: case 10947: case 10959: case 10971: case 10983: case 10995: case 11007: case 11019: case 11031: case 11043: case 11055: case 11067: case 11079: case 11091: case 11103: case 11115: case 11127: case 11139: case 11151: case 11163: case 11175: case 11187: case 10876: case 10888: case 10900: case 10912: case 10924: case 10936: case 10948: case 10960: case 10972: case 10984: case 10996: case 11008: case 11020: case 11032: case 11044: case 11056: case 11068: case 11080: case 11092: case 11104: case 11116: case 11128: case 11140: case 11152: case 11164: case 11176: case 11188: case 10873: case 10877: case 10885: case 10889: case 10897: case 10901: case 10909: case 10913: case 10921: case 10925: case 10933: case 10937: case 10945: case 10949: case 10957: case 10961: case 10969: case 10973: case 10981: case 10985: case 10993: case 10997: case 11005: case 11009: case 11017: case 11021: case 11029: case 11033: case 11041: case 11045: case 11053: case 11057: case 11065: case 11069: case 11077: case 11081: case 11089: case 11093: case 11101: case 11105: case 11113: case 11117: case 11125: case 11129: case 11137: case 11141: case 11149: case 11153: case 11161: case 11165: case 11173: case 11177: case 11185: case 11189: case 10874: case 10878: case 10886: case 10890: case 10898: case 10902: case 10910: case 10914: case 10922: case 10926: case 10934: case 10938: case 10946: case 10950: case 10958: case 10962: case 10970: case 10974: case 10982: case 10986: case 10994: case 10998: case 11006: case 11010: case 11018: case 11022: case 11030: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 11034: case 11038: case 11046: case 11050: case 11058: case 11062: case 11070: case 11074: case 11082: case 11086: case 11094: case 11098: case 11106: case 11110: case 11118: case 11122: case 11130: case 11134: case 11142: case 11146: case 11154: case 11158: case 11166: case 11170: case 11178: case 11182: case 11190: case 10871: case 10883: case 10895: case 10907: case 10919: case 10931: case 10943: case 10955: case 10967: case 10979: case 10991: case 11003: case 11015: case 11027: case 11039: case 11051: case 11063: case 11075: case 11087: case 11099: case 11111: case 11123: case 11135: case 11147: case 11159: case 11171: case 11183: case 10872: case 10876: case 10884: case 10888: case 10896: case 10900: case 10908: case 10912: case 10920: case 10924: case 10932: case 10936: case 10944: case 10948: case 10956: case 10960: case 10968: case 10972: case 10980: case 10984: case 10992: case 10996: case 11004: case 11008: case 11016: case 11020: case 11028: case 11032: case 11040: case 11044: case 11052: case 11056: case 11064: case 11068: case 11076: case 11080: case 11088: case 11092: case 11100: case 11104: case 11112: case 11116: case 11124: case 11128: case 11136: case 11140: case 11148: case 11152: case 11160: case 11164: case 11172: case 11176: case 11184: case 11188: case 10877: case 10889: case 10901: case 10913: case 10925: case 10937: case 10949: case 10961: case 10973: case 10985: case 10997: case 11009: case 11021: case 11033: case 11045: case 11057: case 11069: case 11081: case 11093: case 11105: case 11117: case 11129: case 11141: case 11153: case 11165: case 11177: case 11189: case 10870: case 10878: case 10882: case 10890: case 10894: case 10902: case 10906: case 10914: case 10918: case 10926: case 10930: case 10938: case 10942: case 10950: case 10954: case 10962: case 10966: case 10974: case 10978: case 10986: case 10990: case 10998: case 11002: case 11010: case 11014: case 11022: case 11026: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 11042: case 11054: case 11066: case 11078: case 11090: case 11102: case 11114: case 11126: case 11138: case 11150: case 11162: case 11174: case 11186: case 10871: case 10883: case 10895: case 10907: case 10919: case 10931: case 10943: case 10955: case 10967: case 10979: case 10991: case 11003: case 11015: case 11027: case 11039: case 11051: case 11063: case 11075: case 11087: case 11099: case 11111: case 11123: case 11135: case 11147: case 11159: case 11171: case 11183: case 10868: case 10880: case 10892: case 10904: case 10916: case 10928: case 10940: case 10952: case 10964: case 10976: case 10988: case 11000: case 11012: case 11024: case 11036: case 11048: case 11060: case 11072: case 11084: case 11096: case 11108: case 11120: case 11132: case 11144: case 11156: case 11168: case 11180: case 10877: case 10889: case 10901: case 10913: case 10925: case 10937: case 10949: case 10961: case 10973: case 10985: case 10997: case 11009: case 11021: case 11033: case 11045: case 11057: case 11069: case 11081: case 11093: case 11105: case 11117: case 11129: case 11141: case 11153: case 11165: case 11177: case 11189: case 10874: case 10886: case 10898: case 10910: case 10922: case 10934: case 10946: case 10958: case 10970: case 10982: case 10994: case 11006: case 11018: case 11030: return West::Low; + case 11038: case 11050: case 11062: case 11074: case 11086: case 11098: case 11110: case 11122: case 11134: case 11146: case 11158: case 11170: case 11182: case 10867: case 10879: case 10891: case 10903: case 10915: case 10927: case 10939: case 10951: case 10963: case 10975: case 10987: case 10999: case 11011: case 11023: case 11035: case 11047: case 11059: case 11071: case 11083: case 11095: case 11107: case 11119: case 11131: case 11143: case 11155: case 11167: case 11179: case 10876: case 10888: case 10900: case 10912: case 10924: case 10936: case 10948: case 10960: case 10972: case 10984: case 10996: case 11008: case 11020: case 11032: case 11044: case 11056: case 11068: case 11080: case 11092: case 11104: case 11116: case 11128: case 11140: case 11152: case 11164: case 11176: case 11188: case 10873: case 10885: case 10897: case 10909: case 10921: case 10933: case 10945: case 10957: case 10969: case 10981: case 10993: case 11005: case 11017: case 11029: case 11041: case 11053: case 11065: case 11077: case 11089: case 11101: case 11113: case 11125: case 11137: case 11149: case 11161: case 11173: case 11185: case 10870: case 10882: case 10894: case 10906: case 10918: case 10930: case 10942: case 10954: case 10966: case 10978: case 10990: case 11002: case 11014: case 11026: return West::None; + default: return West::Tall; + } + } + } + namespace Bricks + { + } + namespace BrownBanner + { + short BrownBanner() + { + return 8089; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 8089: return 0; + case 8090: return 1; + case 8099: return 10; + case 8100: return 11; + case 8101: return 12; + case 8102: return 13; + case 8103: return 14; + case 8104: return 15; + case 8091: return 2; + case 8092: return 3; + case 8093: return 4; + case 8094: return 5; + case 8095: return 6; + case 8096: return 7; + case 8097: return 8; + default: return 9; + } + } + } + namespace BrownBed + { + short BrownBed() + { + return 1244; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1250: case 1251: case 1252: case 1249: return eBlockFace::BLOCK_FACE_XM; + case 1254: case 1255: case 1253: case 1256: return eBlockFace::BLOCK_FACE_XP; + case 1242: case 1243: case 1244: case 1241: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1243: case 1247: case 1251: case 1255: case 1244: case 1248: case 1252: case 1256: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1242: case 1246: case 1250: case 1254: case 1244: case 1248: case 1252: case 1256: return Part::Foot; + default: return Part::Head; + } + } + } + namespace BrownCarpet + { + } + namespace BrownConcrete + { + } + namespace BrownConcretePowder + { + } + namespace BrownGlazedTerracotta + { + short BrownGlazedTerracotta() + { + return 9422; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9424: return eBlockFace::BLOCK_FACE_XM; + case 9425: return eBlockFace::BLOCK_FACE_XP; + case 9422: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace BrownMushroom + { + } + namespace BrownMushroomBlock + { + short BrownMushroomBlock() + { + return 4505; + } + bool Down(short ID) + { + switch (ID) + { + case 4542: case 4558: case 4543: case 4559: case 4544: case 4560: case 4545: case 4561: case 4546: case 4562: case 4547: case 4563: case 4548: case 4564: case 4549: case 4565: case 4550: case 4566: case 4551: case 4567: case 4552: case 4537: case 4553: case 4538: case 4554: case 4539: case 4555: case 4540: case 4556: case 4541: case 4557: case 4568: return false; + default: return true; + } + } + bool East(short ID) + { + switch (ID) + { + case 4526: case 4558: case 4527: case 4559: case 4528: case 4560: case 4529: case 4561: case 4530: case 4562: case 4531: case 4563: case 4532: case 4564: case 4533: case 4565: case 4534: case 4566: case 4535: case 4567: case 4536: case 4521: case 4553: case 4522: case 4554: case 4523: case 4555: case 4524: case 4556: case 4525: case 4557: case 4568: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 4513: case 4529: case 4545: case 4561: case 4514: case 4530: case 4546: case 4562: case 4515: case 4531: case 4547: case 4563: case 4516: case 4532: case 4548: case 4564: case 4517: case 4533: case 4549: case 4565: case 4518: case 4534: case 4550: case 4566: case 4519: case 4535: case 4551: case 4567: case 4520: case 4536: case 4552: case 4568: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 4510: case 4526: case 4542: case 4558: case 4511: case 4527: case 4543: case 4559: case 4512: case 4528: case 4544: case 4560: case 4517: case 4533: case 4549: case 4565: case 4518: case 4534: case 4550: case 4566: case 4519: case 4535: case 4551: case 4567: case 4520: case 4536: case 4552: case 4509: case 4525: case 4541: case 4557: case 4568: return false; + default: return true; + } + } + bool Up(short ID) + { + switch (ID) + { + case 4511: case 4527: case 4543: case 4559: case 4512: case 4528: case 4544: case 4560: case 4515: case 4531: case 4547: case 4563: case 4516: case 4532: case 4548: case 4564: case 4519: case 4535: case 4551: case 4567: case 4520: case 4536: case 4552: case 4507: case 4523: case 4539: case 4555: case 4508: case 4524: case 4540: case 4556: case 4568: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 4510: case 4526: case 4542: case 4558: case 4512: case 4528: case 4544: case 4560: case 4514: case 4530: case 4546: case 4562: case 4516: case 4532: case 4548: case 4564: case 4518: case 4534: case 4550: case 4566: case 4520: case 4536: case 4552: case 4506: case 4522: case 4538: case 4554: case 4508: case 4524: case 4540: case 4556: case 4568: return false; + default: return true; + } + } + } + namespace BrownShulkerBox + { + short BrownShulkerBox() + { + return 9354; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9353: return eBlockFace::BLOCK_FACE_XM; + case 9351: return eBlockFace::BLOCK_FACE_XP; + case 9355: return eBlockFace::BLOCK_FACE_YM; + case 9354: return eBlockFace::BLOCK_FACE_YP; + case 9350: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace BrownStainedGlass + { + } + namespace BrownStainedGlassPane + { + short BrownStainedGlassPane() + { + return 7278; + } + bool East(short ID) + { + switch (ID) + { + case 7272: case 7276: case 7265: case 7269: case 7273: case 7277: case 7266: case 7270: case 7274: case 7263: case 7267: case 7271: case 7275: case 7264: case 7268: case 7278: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 7272: case 7276: case 7257: case 7261: case 7273: case 7277: case 7258: case 7262: case 7274: case 7255: case 7259: case 7271: case 7275: case 7256: case 7260: case 7278: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 7276: case 7253: case 7261: case 7269: case 7277: case 7254: case 7262: case 7270: case 7251: case 7259: case 7267: case 7275: case 7252: case 7260: case 7268: case 7278: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7249: case 7253: case 7257: case 7261: case 7265: case 7269: case 7273: case 7277: case 7250: case 7254: case 7258: case 7262: case 7266: case 7270: case 7274: case 7278: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 7272: case 7276: case 7250: case 7254: case 7258: case 7262: case 7266: case 7270: case 7274: case 7248: case 7252: case 7256: case 7260: case 7264: case 7268: case 7278: return false; + default: return true; + } + } + } + namespace BrownTerracotta + { + } + namespace BrownWallBanner + { + short BrownWallBanner() + { + return 8201; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8203: return eBlockFace::BLOCK_FACE_XM; + case 8204: return eBlockFace::BLOCK_FACE_XP; + case 8201: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace BrownWool + { + } + namespace BubbleColumn + { + short BubbleColumn() + { + return 9667; + } + bool Drag(short ID) + { + switch (ID) + { + case 9668: return false; + default: return true; + } + } + } + namespace BubbleCoral + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9535: return false; + default: return true; + } + } + } + namespace BubbleCoralBlock + { + } + namespace BubbleCoralFan + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9555: return false; + default: return true; + } + } + } + namespace BubbleCoralWallFan + { + short BubbleCoralWallFan() + { + return 9616; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9620: case 9621: return eBlockFace::BLOCK_FACE_XM; + case 9622: case 9623: return eBlockFace::BLOCK_FACE_XP; + case 9617: case 9616: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9617: case 9621: case 9619: case 9623: return false; + default: return true; + } + } + } + namespace Cactus + { + short Cactus() + { + return 3931; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 3931: return 0; + case 3932: return 1; + case 3941: return 10; + case 3942: return 11; + case 3943: return 12; + case 3944: return 13; + case 3945: return 14; + case 3946: return 15; + case 3933: return 2; + case 3934: return 3; + case 3935: return 4; + case 3936: return 5; + case 3937: return 6; + case 3938: return 7; + case 3939: return 8; + default: return 9; + } + } + } + namespace Cake + { + short Cake() + { + return 4024; + } + unsigned char Bites(short ID) + { + switch (ID) + { + case 4024: return 0; + case 4025: return 1; + case 4026: return 2; + case 4027: return 3; + case 4028: return 4; + case 4029: return 5; + default: return 6; + } + } + } + namespace Campfire + { + short Campfire() + { + return 14893; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 14908: case 14909: case 14910: case 14911: case 14912: case 14913: case 14906: case 14907: return eBlockFace::BLOCK_FACE_XM; + case 14916: case 14917: case 14918: case 14919: case 14920: case 14914: case 14915: case 14921: return eBlockFace::BLOCK_FACE_XP; + case 14893: case 14894: case 14895: case 14896: case 14897: case 14890: case 14891: case 14892: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Lit(short ID) + { + switch (ID) + { + case 14894: case 14902: case 14910: case 14918: case 14895: case 14903: case 14911: case 14919: case 14896: case 14904: case 14912: case 14920: case 14897: case 14905: case 14913: case 14921: return false; + default: return true; + } + } + bool SignalFire(short ID) + { + switch (ID) + { + case 14908: case 14916: case 14893: case 14901: case 14909: case 14917: case 14896: case 14904: case 14912: case 14920: case 14897: case 14905: case 14913: case 14892: case 14900: case 14921: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 14893: case 14901: case 14909: case 14917: case 14895: case 14903: case 14911: case 14919: case 14897: case 14905: case 14913: case 14891: case 14899: case 14907: case 14915: case 14921: return false; + default: return true; + } + } + } + namespace Carrots + { + short Carrots() + { + return 6330; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 6330: return 0; + case 6331: return 1; + case 6332: return 2; + case 6333: return 3; + case 6334: return 4; + case 6335: return 5; + case 6336: return 6; + default: return 7; + } + } + } + namespace CartographyTable + { + } + namespace CarvedPumpkin + { + short CarvedPumpkin() + { + return 4016; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 4018: return eBlockFace::BLOCK_FACE_XM; + case 4019: return eBlockFace::BLOCK_FACE_XP; + case 4016: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace Cauldron + { + short Cauldron() + { + return 5141; + } + unsigned char Level(short ID) + { + switch (ID) + { + case 5141: return 0; + case 5142: return 1; + case 5143: return 2; + default: return 3; + } + } + } + namespace CaveAir + { + } + namespace Chain + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 4730: return false; + default: return true; + } + } + } + namespace ChainCommandBlock + { + short ChainCommandBlock() + { + return 9243; + } + bool Conditional(short ID) + { + switch (ID) + { + case 9244: case 9246: case 9248: case 9243: case 9245: case 9247: return false; + default: return true; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9240: case 9246: return eBlockFace::BLOCK_FACE_XM; + case 9244: case 9238: return eBlockFace::BLOCK_FACE_XP; + case 9242: case 9248: return eBlockFace::BLOCK_FACE_YM; + case 9241: case 9247: return eBlockFace::BLOCK_FACE_YP; + case 9237: case 9243: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace Chest + { + short Chest() + { + return 2035; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 2046: case 2047: case 2048: case 2050: case 2049: case 2051: return eBlockFace::BLOCK_FACE_XM; + case 2052: case 2054: case 2056: case 2057: case 2055: case 2053: return eBlockFace::BLOCK_FACE_XP; + case 2037: case 2038: case 2039: case 2034: case 2035: case 2036: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Type Type(short ID) + { + switch (ID) + { + case 2037: case 2042: case 2043: case 2048: case 2054: case 2055: case 2049: case 2036: return Type::Left; + case 2038: case 2039: case 2044: case 2045: case 2050: case 2056: case 2057: case 2051: return Type::Right; + default: return Type::Single; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 2037: case 2039: case 2041: case 2043: case 2045: case 2047: case 2057: case 2055: case 2053: case 2049: case 2035: case 2051: return false; + default: return true; + } + } + } + namespace ChippedAnvil + { + short ChippedAnvil() + { + return 6614; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6616: return eBlockFace::BLOCK_FACE_XM; + case 6617: return eBlockFace::BLOCK_FACE_XP; + case 6614: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace ChiseledNetherBricks + { + } + namespace ChiseledPolishedBlackstone + { + } + namespace ChiseledQuartzBlock + { + } + namespace ChiseledRedSandstone + { + } + namespace ChiseledSandstone + { + } + namespace ChiseledStoneBricks + { + } + namespace ChorusFlower + { + short ChorusFlower() + { + return 9128; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 9128: return 0; + case 9129: return 1; + case 9130: return 2; + case 9131: return 3; + case 9132: return 4; + default: return 5; + } + } + } + namespace ChorusPlant + { + short ChorusPlant() + { + return 9127; + } + bool Down(short ID) + { + switch (ID) + { + case 9113: case 9114: case 9115: case 9116: case 9117: case 9118: case 9119: case 9120: case 9121: case 9122: case 9123: case 9124: case 9125: case 9126: case 9096: case 9097: case 9098: case 9099: case 9100: case 9101: case 9102: case 9103: case 9104: case 9105: case 9106: case 9107: case 9108: case 9109: case 9110: case 9111: case 9112: case 9127: return false; + default: return true; + } + } + bool East(short ID) + { + switch (ID) + { + case 9081: case 9113: case 9082: case 9114: case 9083: case 9115: case 9084: case 9116: case 9085: case 9117: case 9086: case 9118: case 9087: case 9119: case 9088: case 9120: case 9089: case 9121: case 9090: case 9122: case 9091: case 9123: case 9092: case 9124: case 9093: case 9125: case 9094: case 9126: case 9095: case 9080: case 9112: case 9127: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 9088: case 9120: case 9089: case 9121: case 9090: case 9122: case 9091: case 9123: case 9092: case 9124: case 9093: case 9125: case 9094: case 9126: case 9095: case 9072: case 9104: case 9073: case 9105: case 9074: case 9106: case 9075: case 9107: case 9076: case 9108: case 9077: case 9109: case 9078: case 9110: case 9079: case 9111: case 9127: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 9084: case 9116: case 9085: case 9117: case 9086: case 9118: case 9087: case 9119: case 9092: case 9124: case 9093: case 9125: case 9094: case 9126: case 9095: case 9068: case 9100: case 9069: case 9101: case 9070: case 9102: case 9071: case 9103: case 9076: case 9108: case 9077: case 9109: case 9078: case 9110: case 9079: case 9111: case 9127: return false; + default: return true; + } + } + bool Up(short ID) + { + switch (ID) + { + case 9082: case 9114: case 9083: case 9115: case 9086: case 9118: case 9087: case 9119: case 9090: case 9122: case 9091: case 9123: case 9094: case 9126: case 9095: case 9066: case 9098: case 9067: case 9099: case 9070: case 9102: case 9071: case 9103: case 9074: case 9106: case 9075: case 9107: case 9078: case 9110: case 9079: case 9111: case 9127: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 9081: case 9113: case 9083: case 9115: case 9085: case 9117: case 9087: case 9119: case 9089: case 9121: case 9091: case 9123: case 9093: case 9125: case 9095: case 9065: case 9097: case 9067: case 9099: case 9069: case 9101: case 9071: case 9103: case 9073: case 9105: case 9075: case 9107: case 9077: case 9109: case 9079: case 9111: case 9127: return false; + default: return true; + } + } + } + namespace Clay + { + } + namespace CoalBlock + { + } + namespace CoalOre + { + } + namespace CoarseDirt + { + } + namespace Cobblestone + { + } + namespace CobblestoneSlab + { + short CobblestoneSlab() + { + return 8369; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8368: case 8369: return Type::Bottom; + case 8371: case 8370: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8367: case 8371: case 8369: return false; + default: return true; + } + } + } + namespace CobblestoneStairs + { + short CobblestoneStairs() + { + return 3666; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 3697: case 3698: case 3699: case 3700: case 3701: case 3702: case 3703: case 3704: case 3705: case 3706: case 3707: case 3708: case 3709: case 3710: case 3711: case 3712: case 3713: case 3714: case 3695: case 3696: return eBlockFace::BLOCK_FACE_XM; + case 3729: case 3730: case 3731: case 3732: case 3733: case 3734: case 3715: case 3716: case 3717: case 3718: case 3719: case 3720: case 3721: case 3722: case 3723: case 3724: case 3725: case 3726: case 3727: case 3728: return eBlockFace::BLOCK_FACE_XP; + case 3665: case 3666: case 3667: case 3668: case 3669: case 3670: case 3671: case 3672: case 3673: case 3674: case 3655: case 3656: case 3657: case 3658: case 3659: case 3660: case 3661: case 3662: case 3663: case 3664: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 3665: case 3729: case 3666: case 3730: case 3667: case 3731: case 3668: case 3732: case 3669: case 3733: case 3670: case 3734: case 3671: case 3672: case 3673: case 3705: case 3674: case 3706: case 3707: case 3708: case 3709: case 3710: case 3711: case 3712: case 3713: case 3714: case 3685: case 3686: case 3687: case 3688: case 3689: case 3690: case 3691: case 3692: case 3693: case 3725: case 3694: case 3726: case 3727: case 3728: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 3697: case 3698: case 3667: case 3668: case 3707: case 3708: case 3677: case 3678: case 3717: case 3718: case 3687: case 3688: case 3657: case 3658: case 3727: case 3728: return Shape::InnerLeft; + case 3729: case 3730: case 3699: case 3700: case 3669: case 3670: case 3709: case 3710: case 3679: case 3680: case 3719: case 3720: case 3689: case 3690: case 3659: case 3660: return Shape::InnerRight; + case 3731: case 3732: case 3701: case 3702: case 3671: case 3672: case 3711: case 3712: case 3681: case 3682: case 3721: case 3722: case 3691: case 3692: case 3661: case 3662: return Shape::OuterLeft; + case 3733: case 3734: case 3703: case 3704: case 3673: case 3674: case 3713: case 3714: case 3683: case 3684: case 3723: case 3724: case 3693: case 3694: case 3663: case 3664: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 3666: case 3698: case 3730: case 3668: case 3700: case 3732: case 3670: case 3702: case 3734: case 3672: case 3704: case 3674: case 3706: case 3676: case 3708: case 3678: case 3710: case 3680: case 3712: case 3682: case 3714: case 3684: case 3716: case 3686: case 3718: case 3656: case 3688: case 3720: case 3658: case 3690: case 3722: case 3660: case 3692: case 3724: case 3662: case 3694: case 3726: case 3664: case 3696: case 3728: return false; + default: return true; + } + } + } + namespace CobblestoneWall + { + short CobblestoneWall() + { + return 5660; + } + enum East East(short ID) + { + switch (ID) + { + case 5765: case 5767: case 5769: case 5771: case 5773: case 5775: case 5777: case 5779: case 5781: case 5783: case 5785: case 5787: case 5789: case 5791: case 5793: case 5795: case 5797: case 5799: case 5801: case 5803: case 5805: case 5807: case 5809: case 5811: case 5813: case 5815: case 5817: case 5819: case 5821: case 5823: case 5825: case 5827: case 5829: case 5831: case 5833: case 5835: case 5837: case 5839: case 5841: case 5843: case 5845: case 5847: case 5849: case 5851: case 5853: case 5855: case 5857: case 5859: case 5861: case 5863: case 5865: case 5867: case 5869: case 5871: case 5766: case 5768: case 5770: case 5772: case 5774: case 5776: case 5778: case 5780: case 5782: case 5784: case 5786: case 5788: case 5790: case 5792: case 5794: case 5796: case 5798: case 5800: case 5802: case 5804: case 5806: case 5808: case 5810: case 5812: case 5814: case 5816: case 5818: case 5820: case 5822: case 5824: case 5826: case 5828: case 5830: case 5832: case 5834: case 5836: case 5838: case 5840: case 5842: case 5844: case 5846: case 5848: case 5850: case 5852: case 5854: case 5856: case 5858: case 5860: case 5862: case 5864: case 5866: case 5868: case 5870: case 5872: return East::Low; + case 5657: case 5659: case 5661: case 5663: case 5665: case 5667: case 5669: case 5671: case 5673: case 5675: case 5677: case 5679: case 5681: case 5683: case 5685: case 5687: case 5689: case 5691: case 5693: case 5695: case 5697: case 5699: case 5701: case 5703: case 5705: case 5707: case 5709: case 5711: case 5713: case 5715: case 5717: case 5719: case 5721: case 5723: case 5725: case 5727: case 5729: case 5731: case 5733: case 5735: case 5737: case 5739: case 5741: case 5743: case 5745: case 5747: case 5749: case 5751: case 5753: case 5755: case 5757: case 5759: case 5761: case 5763: case 5658: case 5660: case 5662: case 5664: case 5666: case 5668: case 5670: case 5672: case 5674: case 5676: case 5678: case 5680: case 5682: case 5684: case 5686: case 5688: case 5690: case 5692: case 5694: case 5696: case 5698: case 5700: case 5702: case 5704: case 5706: case 5708: case 5710: case 5712: case 5714: case 5716: case 5718: case 5720: case 5722: case 5724: case 5726: case 5728: case 5730: case 5732: case 5734: case 5736: case 5738: case 5740: case 5742: case 5744: case 5746: case 5748: case 5750: case 5752: case 5754: case 5756: case 5758: case 5760: case 5762: case 5764: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 5693: case 5695: case 5697: case 5699: case 5701: case 5703: case 5705: case 5707: case 5709: case 5711: case 5713: case 5715: case 5717: case 5719: case 5721: case 5723: case 5725: case 5727: case 5801: case 5803: case 5805: case 5807: case 5809: case 5811: case 5813: case 5815: case 5817: case 5819: case 5821: case 5823: case 5825: case 5827: case 5829: case 5831: case 5833: case 5835: case 5909: case 5911: case 5913: case 5915: case 5917: case 5919: case 5921: case 5923: case 5925: case 5927: case 5929: case 5931: case 5933: case 5935: case 5937: case 5939: case 5941: case 5943: case 5694: case 5696: case 5698: case 5700: case 5702: case 5704: case 5706: case 5708: case 5710: case 5712: case 5714: case 5716: case 5718: case 5720: case 5722: case 5724: case 5726: case 5728: case 5802: case 5804: case 5806: case 5808: case 5810: case 5812: case 5814: case 5816: case 5818: case 5820: case 5822: case 5824: case 5826: case 5828: case 5830: case 5832: case 5834: case 5836: case 5910: case 5912: case 5914: case 5916: case 5918: case 5920: case 5922: case 5924: case 5926: case 5928: case 5930: case 5932: case 5934: case 5936: case 5938: case 5940: case 5942: case 5944: return North::Low; + case 5657: case 5659: case 5661: case 5663: case 5665: case 5667: case 5669: case 5671: case 5673: case 5675: case 5677: case 5679: case 5681: case 5683: case 5685: case 5687: case 5689: case 5691: case 5765: case 5767: case 5769: case 5771: case 5773: case 5775: case 5777: case 5779: case 5781: case 5783: case 5785: case 5787: case 5789: case 5791: case 5793: case 5795: case 5797: case 5799: case 5873: case 5875: case 5877: case 5879: case 5881: case 5883: case 5885: case 5887: case 5889: case 5891: case 5893: case 5895: case 5897: case 5899: case 5901: case 5903: case 5905: case 5907: case 5658: case 5660: case 5662: case 5664: case 5666: case 5668: case 5670: case 5672: case 5674: case 5676: case 5678: case 5680: case 5682: case 5684: case 5686: case 5688: case 5690: case 5692: case 5766: case 5768: case 5770: case 5772: case 5774: case 5776: case 5778: case 5780: case 5782: case 5784: case 5786: case 5788: case 5790: case 5792: case 5794: case 5796: case 5798: case 5800: case 5874: case 5876: case 5878: case 5880: case 5882: case 5884: case 5886: case 5888: case 5890: case 5892: case 5894: case 5896: case 5898: case 5900: case 5902: case 5904: case 5906: case 5908: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 5669: case 5671: case 5673: case 5675: case 5677: case 5679: case 5705: case 5707: case 5709: case 5711: case 5713: case 5715: case 5741: case 5743: case 5745: case 5747: case 5749: case 5751: case 5777: case 5779: case 5781: case 5783: case 5785: case 5787: case 5813: case 5815: case 5817: case 5819: case 5821: case 5823: case 5849: case 5851: case 5853: case 5855: case 5857: case 5859: case 5885: case 5887: case 5889: case 5891: case 5893: case 5895: case 5921: case 5923: case 5925: case 5927: case 5929: case 5931: case 5957: case 5959: case 5961: case 5963: case 5965: case 5967: case 5670: case 5672: case 5674: case 5676: case 5678: case 5680: case 5706: case 5708: case 5710: case 5712: case 5714: case 5716: case 5742: case 5744: case 5746: case 5748: case 5750: case 5752: case 5778: case 5780: case 5782: case 5784: case 5786: case 5788: case 5814: case 5816: case 5818: case 5820: case 5822: case 5824: case 5850: case 5852: case 5854: case 5856: case 5858: case 5860: case 5886: case 5888: case 5890: case 5892: case 5894: case 5896: case 5922: case 5924: case 5926: case 5928: case 5930: case 5932: case 5958: case 5960: case 5962: case 5964: case 5966: case 5968: return South::Low; + case 5657: case 5659: case 5661: case 5663: case 5665: case 5667: case 5693: case 5695: case 5697: case 5699: case 5701: case 5703: case 5729: case 5731: case 5733: case 5735: case 5737: case 5739: case 5765: case 5767: case 5769: case 5771: case 5773: case 5775: case 5801: case 5803: case 5805: case 5807: case 5809: case 5811: case 5837: case 5839: case 5841: case 5843: case 5845: case 5847: case 5873: case 5875: case 5877: case 5879: case 5881: case 5883: case 5909: case 5911: case 5913: case 5915: case 5917: case 5919: case 5945: case 5947: case 5949: case 5951: case 5953: case 5955: case 5658: case 5660: case 5662: case 5664: case 5666: case 5668: case 5694: case 5696: case 5698: case 5700: case 5702: case 5704: case 5730: case 5732: case 5734: case 5736: case 5738: case 5740: case 5766: case 5768: case 5770: case 5772: case 5774: case 5776: case 5802: case 5804: case 5806: case 5808: case 5810: case 5812: case 5838: case 5840: case 5842: case 5844: case 5846: case 5848: case 5874: case 5876: case 5878: case 5880: case 5882: case 5884: case 5910: case 5912: case 5914: case 5916: case 5918: case 5920: case 5946: case 5948: case 5950: case 5952: case 5954: case 5956: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 5663: case 5665: case 5667: case 5675: case 5677: case 5679: case 5687: case 5689: case 5691: case 5699: case 5701: case 5703: case 5711: case 5713: case 5715: case 5723: case 5725: case 5727: case 5735: case 5737: case 5739: case 5747: case 5749: case 5751: case 5759: case 5761: case 5763: case 5771: case 5773: case 5775: case 5783: case 5785: case 5787: case 5795: case 5797: case 5799: case 5807: case 5809: case 5811: case 5819: case 5821: case 5823: case 5831: case 5833: case 5835: case 5843: case 5845: case 5847: case 5855: case 5857: case 5859: case 5867: case 5869: case 5871: case 5879: case 5881: case 5883: case 5891: case 5893: case 5895: case 5903: case 5905: case 5907: case 5915: case 5917: case 5919: case 5927: case 5929: case 5931: case 5939: case 5941: case 5943: case 5951: case 5953: case 5955: case 5963: case 5965: case 5967: case 5975: case 5977: case 5979: case 5664: case 5666: case 5668: case 5676: case 5678: case 5680: case 5688: case 5690: case 5692: case 5700: case 5702: case 5704: case 5712: case 5714: case 5716: case 5724: case 5726: case 5728: case 5736: case 5738: case 5740: case 5748: case 5750: case 5752: case 5760: case 5762: case 5764: case 5772: case 5774: case 5776: case 5784: case 5786: case 5788: case 5796: case 5798: case 5800: case 5808: case 5810: case 5812: case 5820: case 5822: case 5824: case 5832: case 5834: case 5836: case 5844: case 5846: case 5848: case 5856: case 5858: case 5860: case 5868: case 5870: case 5872: case 5880: case 5882: case 5884: case 5892: case 5894: case 5896: case 5904: case 5906: case 5908: case 5916: case 5918: case 5920: case 5928: case 5930: case 5932: case 5940: case 5942: case 5944: case 5952: case 5954: case 5956: case 5964: case 5966: case 5968: case 5976: case 5978: case 5980: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 5661: case 5667: case 5673: case 5679: case 5685: case 5691: case 5697: case 5703: case 5709: case 5715: case 5721: case 5727: case 5733: case 5739: case 5745: case 5751: case 5757: case 5763: case 5769: case 5775: case 5781: case 5787: case 5793: case 5799: case 5805: case 5811: case 5817: case 5823: case 5829: case 5835: case 5841: case 5847: case 5853: case 5859: case 5865: case 5871: case 5877: case 5883: case 5889: case 5895: case 5901: case 5907: case 5913: case 5919: case 5925: case 5931: case 5937: case 5943: case 5949: case 5955: case 5961: case 5967: case 5973: case 5979: case 5660: case 5662: case 5666: case 5668: case 5672: case 5674: case 5678: case 5680: case 5684: case 5686: case 5690: case 5692: case 5696: case 5698: case 5702: case 5704: case 5708: case 5710: case 5714: case 5716: case 5720: case 5722: case 5726: case 5728: case 5732: case 5734: case 5738: case 5740: case 5744: case 5746: case 5750: case 5752: case 5756: case 5758: case 5762: case 5764: case 5768: case 5770: case 5774: case 5776: case 5780: case 5782: case 5786: case 5788: case 5792: case 5794: case 5798: case 5800: case 5804: case 5806: case 5810: case 5812: case 5816: case 5818: case 5822: case 5824: case 5828: case 5830: case 5834: case 5836: case 5840: case 5842: case 5846: case 5848: case 5852: case 5854: case 5858: case 5860: case 5864: case 5866: case 5870: case 5872: case 5876: case 5878: case 5882: case 5884: case 5888: case 5890: case 5894: case 5896: case 5900: case 5902: case 5906: case 5908: case 5912: case 5914: case 5918: case 5920: case 5924: case 5926: case 5930: case 5932: case 5936: case 5938: case 5942: case 5944: case 5948: case 5950: case 5954: case 5956: case 5960: case 5962: case 5966: case 5968: case 5972: case 5974: case 5978: case 5980: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 5661: case 5667: case 5673: case 5679: case 5685: case 5691: case 5697: case 5703: case 5709: case 5715: case 5721: case 5727: case 5733: case 5739: case 5745: case 5751: case 5757: case 5763: case 5769: case 5775: case 5781: case 5787: case 5793: case 5799: case 5805: case 5811: case 5817: case 5823: case 5829: case 5835: case 5841: case 5847: case 5853: case 5859: case 5865: case 5871: case 5877: case 5883: case 5889: case 5895: case 5901: case 5907: case 5913: case 5919: case 5925: case 5931: case 5937: case 5943: case 5949: case 5955: case 5961: case 5967: case 5973: case 5979: case 5658: case 5664: case 5670: case 5676: case 5682: case 5688: case 5694: case 5700: case 5706: case 5712: case 5718: case 5724: case 5730: case 5736: case 5742: case 5748: case 5754: case 5760: case 5766: case 5772: case 5778: case 5784: case 5790: case 5796: case 5802: case 5808: case 5814: case 5820: case 5826: case 5832: case 5838: case 5844: case 5850: case 5856: case 5862: case 5868: case 5874: case 5880: case 5886: case 5892: case 5898: case 5904: case 5910: case 5916: case 5922: case 5928: case 5934: case 5940: case 5946: case 5952: case 5958: case 5964: case 5970: case 5976: return West::Low; + case 5657: case 5663: case 5669: case 5675: case 5681: case 5687: case 5693: case 5699: case 5705: case 5711: case 5717: case 5723: case 5729: case 5735: case 5741: case 5747: case 5753: case 5759: case 5765: case 5771: case 5777: case 5783: case 5789: case 5795: case 5801: case 5807: case 5813: case 5819: case 5825: case 5831: case 5837: case 5843: case 5849: case 5855: case 5861: case 5867: case 5873: case 5879: case 5885: case 5891: case 5897: case 5903: case 5909: case 5915: case 5921: case 5927: case 5933: case 5939: case 5945: case 5951: case 5957: case 5963: case 5969: case 5975: case 5660: case 5666: case 5672: case 5678: case 5684: case 5690: case 5696: case 5702: case 5708: case 5714: case 5720: case 5726: case 5732: case 5738: case 5744: case 5750: case 5756: case 5762: case 5768: case 5774: case 5780: case 5786: case 5792: case 5798: case 5804: case 5810: case 5816: case 5822: case 5828: case 5834: case 5840: case 5846: case 5852: case 5858: case 5864: case 5870: case 5876: case 5882: case 5888: case 5894: case 5900: case 5906: case 5912: case 5918: case 5924: case 5930: case 5936: case 5942: case 5948: case 5954: case 5960: case 5966: case 5972: case 5978: return West::None; + default: return West::Tall; + } + } + } + namespace Cobweb + { + } + namespace Cocoa + { + short Cocoa() + { + return 5158; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 5161: case 5158: case 5159: case 5160: return 0; + case 5162: case 5163: case 5164: case 5165: return 1; + default: return 2; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 5164: case 5168: case 5160: return eBlockFace::BLOCK_FACE_XM; + case 5161: case 5165: case 5169: return eBlockFace::BLOCK_FACE_XP; + case 5162: case 5166: case 5158: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace CommandBlock + { + short CommandBlock() + { + return 5650; + } + bool Conditional(short ID) + { + switch (ID) + { + case 5650: case 5651: case 5652: case 5653: case 5654: case 5655: return false; + default: return true; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 5647: case 5653: return eBlockFace::BLOCK_FACE_XM; + case 5645: case 5651: return eBlockFace::BLOCK_FACE_XP; + case 5649: case 5655: return eBlockFace::BLOCK_FACE_YM; + case 5648: case 5654: return eBlockFace::BLOCK_FACE_YP; + case 5644: case 5650: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace Comparator + { + short Comparator() + { + return 6679; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6686: case 6687: case 6688: case 6689: return eBlockFace::BLOCK_FACE_XM; + case 6691: case 6692: case 6690: case 6693: return eBlockFace::BLOCK_FACE_XP; + case 6678: case 6679: case 6680: case 6681: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Mode Mode(short ID) + { + switch (ID) + { + case 6691: case 6678: case 6679: case 6682: case 6683: case 6686: case 6687: case 6690: return Mode::Compare; + default: return Mode::Subtract; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 6691: case 6679: case 6681: case 6683: case 6685: case 6687: case 6689: case 6693: return false; + default: return true; + } + } + } + namespace Composter + { + short Composter() + { + return 15751; + } + unsigned char Level(short ID) + { + switch (ID) + { + case 15751: return 0; + case 15752: return 1; + case 15753: return 2; + case 15754: return 3; + case 15755: return 4; + case 15756: return 5; + case 15757: return 6; + case 15758: return 7; + default: return 8; + } + } + } + namespace Conduit + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9650: return false; + default: return true; + } + } + } + namespace Cornflower + { + } + namespace CrackedNetherBricks + { + } + namespace CrackedPolishedBlackstoneBricks + { + } + namespace CrackedStoneBricks + { + } + namespace CraftingTable + { + } + namespace CreeperHead + { + short CreeperHead() + { + return 6570; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 6570: return 0; + case 6571: return 1; + case 6580: return 10; + case 6581: return 11; + case 6582: return 12; + case 6583: return 13; + case 6584: return 14; + case 6585: return 15; + case 6572: return 2; + case 6573: return 3; + case 6574: return 4; + case 6575: return 5; + case 6576: return 6; + case 6577: return 7; + case 6578: return 8; + default: return 9; + } + } + } + namespace CreeperWallHead + { + short CreeperWallHead() + { + return 6586; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6588: return eBlockFace::BLOCK_FACE_XM; + case 6589: return eBlockFace::BLOCK_FACE_XP; + case 6586: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace CrimsonButton + { + short CrimsonButton() + { + return 15488; + } + enum Face Face(short ID) + { + switch (ID) + { + case 15497: case 15498: case 15499: case 15500: case 15501: case 15502: case 15495: case 15496: return Face::Ceiling; + case 15482: case 15483: case 15484: case 15485: case 15486: case 15479: case 15480: case 15481: return Face::Floor; + default: return Face::Wall; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 15483: case 15491: case 15499: case 15484: case 15492: case 15500: return eBlockFace::BLOCK_FACE_XM; + case 15485: case 15493: case 15501: case 15486: case 15494: case 15502: return eBlockFace::BLOCK_FACE_XP; + case 15479: case 15487: case 15495: case 15480: case 15488: case 15496: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 15482: case 15490: case 15498: case 15484: case 15492: case 15500: case 15486: case 15494: case 15502: case 15480: case 15488: case 15496: return false; + default: return true; + } + } + } + namespace CrimsonDoor + { + short CrimsonDoor() + { + return 15538; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 15570: case 15571: case 15572: case 15573: case 15574: case 15559: case 15560: case 15561: case 15562: case 15563: case 15564: case 15565: case 15566: case 15567: case 15568: case 15569: return eBlockFace::BLOCK_FACE_XM; + case 15575: case 15576: case 15577: case 15578: case 15579: case 15580: case 15581: case 15582: case 15583: case 15584: case 15585: case 15586: case 15587: case 15588: case 15589: case 15590: return eBlockFace::BLOCK_FACE_XP; + case 15539: case 15540: case 15541: case 15542: case 15527: case 15528: case 15529: case 15530: case 15531: case 15532: case 15533: case 15534: case 15535: case 15536: case 15537: case 15538: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 15570: case 15539: case 15571: case 15540: case 15572: case 15541: case 15573: case 15542: case 15574: case 15551: case 15583: case 15552: case 15584: case 15553: case 15585: case 15554: case 15586: case 15555: case 15587: case 15556: case 15588: case 15557: case 15589: case 15558: case 15535: case 15567: case 15536: case 15568: case 15537: case 15569: case 15538: case 15590: return Half::Lower; + default: return Half::Upper; + } + } + enum Hinge Hinge(short ID) + { + switch (ID) + { + case 15570: case 15543: case 15575: case 15544: case 15576: case 15545: case 15577: case 15546: case 15578: case 15551: case 15583: case 15552: case 15584: case 15553: case 15585: case 15554: case 15586: case 15527: case 15559: case 15528: case 15560: case 15529: case 15561: case 15530: case 15562: case 15535: case 15567: case 15536: case 15568: case 15537: case 15569: case 15538: return Hinge::Left; + default: return Hinge::Right; + } + } + bool Open(short ID) + { + switch (ID) + { + case 15570: case 15541: case 15573: case 15542: case 15574: case 15545: case 15577: case 15546: case 15578: case 15549: case 15581: case 15550: case 15582: case 15553: case 15585: case 15554: case 15586: case 15557: case 15589: case 15558: case 15529: case 15561: case 15530: case 15562: case 15533: case 15565: case 15534: case 15566: case 15537: case 15569: case 15538: case 15590: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 15570: case 15540: case 15572: case 15542: case 15574: case 15544: case 15576: case 15546: case 15578: case 15548: case 15580: case 15550: case 15582: case 15552: case 15584: case 15554: case 15586: case 15556: case 15588: case 15558: case 15528: case 15560: case 15530: case 15562: case 15532: case 15564: case 15534: case 15566: case 15536: case 15568: case 15538: case 15590: return false; + default: return true; + } + } + } + namespace CrimsonFence + { + short CrimsonFence() + { + return 15094; + } + bool East(short ID) + { + switch (ID) + { + case 15079: case 15087: case 15080: case 15088: case 15081: case 15089: case 15082: case 15090: case 15083: case 15091: case 15084: case 15092: case 15085: case 15093: case 15086: case 15094: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 15071: case 15087: case 15072: case 15088: case 15073: case 15089: case 15074: case 15090: case 15075: case 15091: case 15076: case 15092: case 15077: case 15093: case 15078: case 15094: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 15067: case 15075: case 15083: case 15091: case 15068: case 15076: case 15084: case 15092: case 15069: case 15077: case 15085: case 15093: case 15070: case 15078: case 15086: case 15094: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 15065: case 15073: case 15081: case 15089: case 15066: case 15074: case 15082: case 15090: case 15069: case 15077: case 15085: case 15093: case 15070: case 15078: case 15086: case 15094: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 15064: case 15072: case 15080: case 15088: case 15066: case 15074: case 15082: case 15090: case 15068: case 15076: case 15084: case 15092: case 15070: case 15078: case 15086: case 15094: return false; + default: return true; + } + } + } + namespace CrimsonFenceGate + { + short CrimsonFenceGate() + { + return 15262; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 15273: case 15274: case 15275: case 15276: case 15277: case 15278: case 15271: case 15272: return eBlockFace::BLOCK_FACE_XM; + case 15280: case 15281: case 15282: case 15283: case 15284: case 15285: case 15279: case 15286: return eBlockFace::BLOCK_FACE_XP; + case 15257: case 15258: case 15259: case 15260: case 15261: case 15262: case 15255: case 15256: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool InWall(short ID) + { + switch (ID) + { + case 15259: case 15267: case 15275: case 15283: case 15260: case 15268: case 15276: case 15284: case 15261: case 15269: case 15277: case 15285: case 15262: case 15270: case 15278: case 15286: return false; + default: return true; + } + } + bool Open(short ID) + { + switch (ID) + { + case 15257: case 15265: case 15273: case 15281: case 15258: case 15266: case 15274: case 15282: case 15261: case 15269: case 15277: case 15285: case 15262: case 15270: case 15278: case 15286: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 15280: case 15258: case 15266: case 15274: case 15282: case 15260: case 15268: case 15276: case 15284: case 15262: case 15270: case 15278: case 15256: case 15264: case 15272: case 15286: return false; + default: return true; + } + } + } + namespace CrimsonFungus + { + } + namespace CrimsonHyphae + { + short CrimsonHyphae() + { + return 14982; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 14981: return Axis::X; + case 14982: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace CrimsonNylium + { + } + namespace CrimsonPlanks + { + } + namespace CrimsonPressurePlate + { + short CrimsonPressurePlate() + { + return 15060; + } + bool Powered(short ID) + { + switch (ID) + { + case 15060: return false; + default: return true; + } + } + } + namespace CrimsonRoots + { + } + namespace CrimsonSign + { + short CrimsonSign() + { + return 15656; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 15655: case 15656: return 0; + case 15657: case 15658: return 1; + case 15676: case 15675: return 10; + case 15677: case 15678: return 11; + case 15679: case 15680: return 12; + case 15681: case 15682: return 13; + case 15683: case 15684: return 14; + case 15685: case 15686: return 15; + case 15660: case 15659: return 2; + case 15661: case 15662: return 3; + case 15663: case 15664: return 4; + case 15665: case 15666: return 5; + case 15668: case 15667: return 6; + case 15669: case 15670: return 7; + case 15671: case 15672: return 8; + default: return 9; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 15660: case 15668: case 15676: case 15684: case 15662: case 15670: case 15678: case 15656: case 15664: case 15672: case 15680: case 15658: case 15666: case 15674: case 15682: case 15686: return false; + default: return true; + } + } + } + namespace CrimsonSlab + { + short CrimsonSlab() + { + return 15050; + } + enum Type Type(short ID) + { + switch (ID) + { + case 15049: case 15050: return Type::Bottom; + case 15052: case 15051: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 15052: case 15050: case 15048: return false; + default: return true; + } + } + } + namespace CrimsonStairs + { + short CrimsonStairs() + { + return 15330; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 15359: case 15360: case 15361: case 15362: case 15363: case 15364: case 15365: case 15366: case 15367: case 15368: case 15369: case 15370: case 15371: case 15372: case 15373: case 15374: case 15375: case 15376: case 15377: case 15378: return eBlockFace::BLOCK_FACE_XM; + case 15379: case 15380: case 15381: case 15382: case 15383: case 15384: case 15385: case 15386: case 15387: case 15388: case 15389: case 15390: case 15391: case 15392: case 15393: case 15394: case 15395: case 15396: case 15397: case 15398: return eBlockFace::BLOCK_FACE_XP; + case 15319: case 15320: case 15321: case 15322: case 15323: case 15324: case 15325: case 15326: case 15327: case 15328: case 15329: case 15330: case 15331: case 15332: case 15333: case 15334: case 15335: case 15336: case 15337: case 15338: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 15329: case 15330: case 15331: case 15332: case 15333: case 15334: case 15335: case 15336: case 15337: case 15338: case 15349: case 15350: case 15351: case 15352: case 15353: case 15354: case 15355: case 15356: case 15357: case 15358: case 15369: case 15370: case 15371: case 15372: case 15373: case 15374: case 15375: case 15376: case 15377: case 15378: case 15389: case 15390: case 15391: case 15392: case 15393: case 15394: case 15395: case 15396: case 15397: case 15398: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 15321: case 15322: case 15331: case 15332: case 15341: case 15342: case 15351: case 15352: case 15361: case 15362: case 15371: case 15372: case 15381: case 15382: case 15391: case 15392: return Shape::InnerLeft; + case 15323: case 15324: case 15333: case 15334: case 15343: case 15344: case 15353: case 15354: case 15363: case 15364: case 15373: case 15374: case 15383: case 15384: case 15393: case 15394: return Shape::InnerRight; + case 15325: case 15326: case 15335: case 15336: case 15345: case 15346: case 15355: case 15356: case 15365: case 15366: case 15375: case 15376: case 15385: case 15386: case 15395: case 15396: return Shape::OuterLeft; + case 15327: case 15328: case 15337: case 15338: case 15347: case 15348: case 15357: case 15358: case 15367: case 15368: case 15377: case 15378: case 15387: case 15388: case 15397: case 15398: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 15320: case 15322: case 15324: case 15326: case 15328: case 15330: case 15332: case 15334: case 15336: case 15338: case 15340: case 15342: case 15344: case 15346: case 15348: case 15350: case 15352: case 15354: case 15356: case 15358: case 15360: case 15362: case 15364: case 15366: case 15368: case 15370: case 15372: case 15374: case 15376: case 15378: case 15380: case 15382: case 15384: case 15386: case 15388: case 15390: case 15392: case 15394: case 15396: case 15398: return false; + default: return true; + } + } + } + namespace CrimsonStem + { + short CrimsonStem() + { + return 14976; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 14975: return Axis::X; + case 14976: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace CrimsonTrapdoor + { + short CrimsonTrapdoor() + { + return 15142; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 15161: case 15162: case 15163: case 15164: case 15165: case 15166: case 15167: case 15168: case 15169: case 15170: case 15171: case 15172: case 15173: case 15174: case 15159: case 15160: return eBlockFace::BLOCK_FACE_XM; + case 15175: case 15176: case 15177: case 15178: case 15179: case 15180: case 15181: case 15182: case 15183: case 15184: case 15185: case 15186: case 15187: case 15188: case 15189: case 15190: return eBlockFace::BLOCK_FACE_XP; + case 15129: case 15130: case 15131: case 15132: case 15133: case 15134: case 15135: case 15136: case 15137: case 15138: case 15139: case 15140: case 15141: case 15142: case 15127: case 15128: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 15135: case 15167: case 15136: case 15168: case 15137: case 15169: case 15138: case 15170: case 15139: case 15171: case 15140: case 15172: case 15141: case 15173: case 15142: case 15174: case 15151: case 15183: case 15152: case 15184: case 15153: case 15185: case 15154: case 15186: case 15155: case 15187: case 15156: case 15188: case 15157: case 15189: case 15158: case 15190: return Half::Bottom; + default: return Half::Top; + } + } + bool Open(short ID) + { + switch (ID) + { + case 15131: case 15163: case 15132: case 15164: case 15133: case 15165: case 15134: case 15166: case 15139: case 15171: case 15140: case 15172: case 15141: case 15173: case 15142: case 15174: case 15147: case 15179: case 15148: case 15180: case 15149: case 15181: case 15150: case 15182: case 15155: case 15187: case 15156: case 15188: case 15157: case 15189: case 15158: case 15190: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 15129: case 15161: case 15130: case 15162: case 15133: case 15165: case 15134: case 15166: case 15137: case 15169: case 15138: case 15170: case 15141: case 15173: case 15142: case 15174: case 15145: case 15177: case 15146: case 15178: case 15149: case 15181: case 15150: case 15182: case 15153: case 15185: case 15154: case 15186: case 15157: case 15189: case 15158: case 15190: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 15130: case 15162: case 15132: case 15164: case 15134: case 15166: case 15136: case 15168: case 15138: case 15170: case 15140: case 15172: case 15142: case 15174: case 15144: case 15176: case 15146: case 15178: case 15148: case 15180: case 15150: case 15182: case 15152: case 15184: case 15154: case 15186: case 15156: case 15188: case 15158: case 15128: case 15160: case 15190: return false; + default: return true; + } + } + } + namespace CrimsonWallSign + { + short CrimsonWallSign() + { + return 15720; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 15724: case 15723: return eBlockFace::BLOCK_FACE_XM; + case 15725: case 15726: return eBlockFace::BLOCK_FACE_XP; + case 15719: case 15720: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 15724: case 15722: case 15720: case 15726: return false; + default: return true; + } + } + } + namespace CryingObsidian + { + } + namespace CutRedSandstone + { + } + namespace CutRedSandstoneSlab + { + short CutRedSandstoneSlab() + { + return 8405; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8404: case 8405: return Type::Bottom; + case 8406: case 8407: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8403: case 8407: case 8405: return false; + default: return true; + } + } + } + namespace CutSandstone + { + } + namespace CutSandstoneSlab + { + short CutSandstoneSlab() + { + return 8357; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8357: case 8356: return Type::Bottom; + case 8358: case 8359: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8357: case 8355: case 8359: return false; + default: return true; + } + } + } + namespace CyanBanner + { + short CyanBanner() + { + return 8041; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 8041: return 0; + case 8042: return 1; + case 8051: return 10; + case 8052: return 11; + case 8053: return 12; + case 8054: return 13; + case 8055: return 14; + case 8056: return 15; + case 8043: return 2; + case 8044: return 3; + case 8045: return 4; + case 8046: return 5; + case 8047: return 6; + case 8048: return 7; + case 8049: return 8; + default: return 9; + } + } + } + namespace CyanBed + { + short CyanBed() + { + return 1196; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1201: case 1202: case 1203: case 1204: return eBlockFace::BLOCK_FACE_XM; + case 1205: case 1206: case 1207: case 1208: return eBlockFace::BLOCK_FACE_XP; + case 1194: case 1195: case 1196: case 1193: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1195: case 1199: case 1203: case 1207: case 1196: case 1200: case 1204: case 1208: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1194: case 1198: case 1202: case 1206: case 1196: case 1200: case 1204: case 1208: return Part::Foot; + default: return Part::Head; + } + } + } + namespace CyanCarpet + { + } + namespace CyanConcrete + { + } + namespace CyanConcretePowder + { + } + namespace CyanGlazedTerracotta + { + short CyanGlazedTerracotta() + { + return 9410; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9412: return eBlockFace::BLOCK_FACE_XM; + case 9413: return eBlockFace::BLOCK_FACE_XP; + case 9410: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace CyanShulkerBox + { + short CyanShulkerBox() + { + return 9336; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9335: return eBlockFace::BLOCK_FACE_XM; + case 9333: return eBlockFace::BLOCK_FACE_XP; + case 9337: return eBlockFace::BLOCK_FACE_YM; + case 9336: return eBlockFace::BLOCK_FACE_YP; + case 9332: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace CyanStainedGlass + { + } + namespace CyanStainedGlassPane + { + short CyanStainedGlassPane() + { + return 7182; + } + bool East(short ID) + { + switch (ID) + { + case 7179: case 7168: case 7172: case 7176: case 7180: case 7169: case 7173: case 7177: case 7181: case 7170: case 7174: case 7178: case 7167: case 7171: case 7175: case 7182: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 7179: case 7160: case 7164: case 7176: case 7180: case 7161: case 7165: case 7177: case 7181: case 7162: case 7166: case 7178: case 7159: case 7163: case 7175: case 7182: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 7179: case 7156: case 7164: case 7172: case 7180: case 7157: case 7165: case 7173: case 7181: case 7158: case 7166: case 7174: case 7155: case 7163: case 7171: case 7182: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7153: case 7157: case 7161: case 7165: case 7169: case 7173: case 7177: case 7181: case 7154: case 7158: case 7162: case 7166: case 7170: case 7174: case 7178: case 7182: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 7152: case 7156: case 7160: case 7164: case 7168: case 7172: case 7176: case 7180: case 7154: case 7158: case 7162: case 7166: case 7170: case 7174: case 7178: case 7182: return false; + default: return true; + } + } + } + namespace CyanTerracotta + { + } + namespace CyanWallBanner + { + short CyanWallBanner() + { + return 8189; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8191: return eBlockFace::BLOCK_FACE_XM; + case 8192: return eBlockFace::BLOCK_FACE_XP; + case 8189: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace CyanWool + { + } + namespace DamagedAnvil + { + short DamagedAnvil() + { + return 6618; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6620: return eBlockFace::BLOCK_FACE_XM; + case 6621: return eBlockFace::BLOCK_FACE_XP; + case 6618: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace Dandelion + { + } + namespace DarkOakButton + { + short DarkOakButton() + { + return 6475; + } + enum Face Face(short ID) + { + switch (ID) + { + case 6482: case 6486: case 6483: case 6487: case 6484: case 6488: case 6485: case 6489: return Face::Ceiling; + case 6466: case 6470: case 6467: case 6471: case 6468: case 6472: case 6469: case 6473: return Face::Floor; + default: return Face::Wall; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6470: case 6478: case 6486: case 6471: case 6479: case 6487: return eBlockFace::BLOCK_FACE_XM; + case 6472: case 6480: case 6488: case 6473: case 6481: case 6489: return eBlockFace::BLOCK_FACE_XP; + case 6466: case 6474: case 6482: case 6467: case 6475: case 6483: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 6467: case 6471: case 6475: case 6479: case 6483: case 6487: case 6469: case 6473: case 6477: case 6481: case 6485: case 6489: return false; + default: return true; + } + } + } + namespace DarkOakDoor + { + short DarkOakDoor() + { + return 9005; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9026: case 9027: case 9028: case 9029: case 9030: case 9031: case 9032: case 9033: case 9034: case 9035: case 9036: case 9037: case 9038: case 9039: case 9040: case 9041: return eBlockFace::BLOCK_FACE_XM; + case 9050: case 9051: case 9052: case 9053: case 9054: case 9055: case 9056: case 9042: case 9043: case 9044: case 9045: case 9046: case 9047: case 9048: case 9049: case 9057: return eBlockFace::BLOCK_FACE_XP; + case 8994: case 8995: case 8996: case 8997: case 8998: case 8999: case 9000: case 9001: case 9002: case 9003: case 9004: case 9005: case 9006: case 9007: case 9008: case 9009: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 9018: case 9050: case 9019: case 9051: case 9020: case 9052: case 9021: case 9053: case 9022: case 9054: case 9023: case 9055: case 9024: case 9056: case 9025: case 9002: case 9034: case 9003: case 9035: case 9004: case 9036: case 9005: case 9037: case 9006: case 9038: case 9007: case 9039: case 9008: case 9040: case 9009: case 9041: case 9057: return Half::Lower; + default: return Half::Upper; + } + } + enum Hinge Hinge(short ID) + { + switch (ID) + { + case 9018: case 9050: case 9019: case 9051: case 9020: case 9052: case 9021: case 9053: case 8994: case 9026: case 8995: case 9027: case 8996: case 9028: case 8997: case 9029: case 9002: case 9034: case 9003: case 9035: case 9004: case 9036: case 9005: case 9037: case 9010: case 9042: case 9011: case 9043: case 9012: case 9044: case 9013: case 9045: return Hinge::Left; + default: return Hinge::Right; + } + } + bool Open(short ID) + { + switch (ID) + { + case 9020: case 9052: case 9021: case 9053: case 9024: case 9056: case 9025: case 8996: case 9028: case 8997: case 9029: case 9000: case 9032: case 9001: case 9033: case 9004: case 9036: case 9005: case 9037: case 9008: case 9040: case 9009: case 9041: case 9012: case 9044: case 9013: case 9045: case 9016: case 9048: case 9017: case 9049: case 9057: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 9019: case 9051: case 9021: case 9053: case 9023: case 9055: case 9025: case 8995: case 9027: case 8997: case 9029: case 8999: case 9031: case 9001: case 9033: case 9003: case 9035: case 9005: case 9037: case 9007: case 9039: case 9009: case 9041: case 9011: case 9043: case 9013: case 9045: case 9015: case 9047: case 9017: case 9049: case 9057: return false; + default: return true; + } + } + } + namespace DarkOakFence + { + short DarkOakFence() + { + return 8737; + } + bool East(short ID) + { + switch (ID) + { + case 8724: case 8732: case 8725: case 8733: case 8726: case 8734: case 8727: case 8735: case 8728: case 8736: case 8729: case 8722: case 8730: case 8723: case 8731: case 8737: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 8716: case 8732: case 8717: case 8733: case 8718: case 8734: case 8719: case 8735: case 8720: case 8736: case 8721: case 8714: case 8730: case 8715: case 8731: case 8737: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 8710: case 8718: case 8726: case 8734: case 8711: case 8719: case 8727: case 8735: case 8712: case 8720: case 8728: case 8736: case 8713: case 8721: case 8729: case 8737: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8708: case 8716: case 8724: case 8732: case 8709: case 8717: case 8725: case 8733: case 8712: case 8720: case 8728: case 8736: case 8713: case 8721: case 8729: case 8737: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 8709: case 8717: case 8725: case 8733: case 8711: case 8719: case 8727: case 8735: case 8713: case 8721: case 8729: case 8707: case 8715: case 8723: case 8731: case 8737: return false; + default: return true; + } + } + } + namespace DarkOakFenceGate + { + short DarkOakFenceGate() + { + return 8553; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8569: case 8562: case 8563: case 8564: case 8565: case 8566: case 8567: case 8568: return eBlockFace::BLOCK_FACE_XM; + case 8570: case 8571: case 8572: case 8573: case 8574: case 8575: case 8576: case 8577: return eBlockFace::BLOCK_FACE_XP; + case 8553: case 8546: case 8547: case 8548: case 8549: case 8550: case 8551: case 8552: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool InWall(short ID) + { + switch (ID) + { + case 8553: case 8561: case 8569: case 8550: case 8558: case 8566: case 8574: case 8551: case 8559: case 8567: case 8575: case 8552: case 8560: case 8568: case 8576: case 8577: return false; + default: return true; + } + } + bool Open(short ID) + { + switch (ID) + { + case 8553: case 8561: case 8569: case 8548: case 8556: case 8564: case 8572: case 8549: case 8557: case 8565: case 8573: case 8552: case 8560: case 8568: case 8576: case 8577: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 8553: case 8561: case 8569: case 8547: case 8555: case 8563: case 8571: case 8549: case 8557: case 8565: case 8573: case 8551: case 8559: case 8567: case 8575: case 8577: return false; + default: return true; + } + } + } + namespace DarkOakLeaves + { + short DarkOakLeaves() + { + return 228; + } + unsigned char Distance(short ID) + { + switch (ID) + { + case 215: case 216: return 1; + case 217: case 218: return 2; + case 219: case 220: return 3; + case 221: case 222: return 4; + case 223: case 224: return 5; + case 225: case 226: return 6; + default: return 7; + } + } + bool Persistent(short ID) + { + switch (ID) + { + case 228: case 222: case 216: case 224: case 218: case 226: case 220: return false; + default: return true; + } + } + } + namespace DarkOakLog + { + short DarkOakLog() + { + return 89; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 88: return Axis::X; + case 89: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace DarkOakPlanks + { + } + namespace DarkOakPressurePlate + { + short DarkOakPressurePlate() + { + return 3884; + } + bool Powered(short ID) + { + switch (ID) + { + case 3884: return false; + default: return true; + } + } + } + namespace DarkOakSapling + { + short DarkOakSapling() + { + return 31; + } + unsigned char Stage(short ID) + { + switch (ID) + { + case 31: return 0; + default: return 1; + } + } + } + namespace DarkOakSign + { + short DarkOakSign() + { + return 3542; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 3542: case 3541: return 0; + case 3544: case 3543: return 1; + case 3561: case 3562: return 10; + case 3563: case 3564: return 11; + case 3565: case 3566: return 12; + case 3567: case 3568: return 13; + case 3569: case 3570: return 14; + case 3571: case 3572: return 15; + case 3545: case 3546: return 2; + case 3547: case 3548: return 3; + case 3549: case 3550: return 4; + case 3551: case 3552: return 5; + case 3553: case 3554: return 6; + case 3555: case 3556: return 7; + case 3557: case 3558: return 8; + default: return 9; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 3542: case 3544: case 3546: case 3548: case 3550: case 3552: case 3554: case 3556: case 3558: case 3560: case 3562: case 3564: case 3566: case 3568: case 3570: case 3572: return false; + default: return true; + } + } + } + namespace DarkOakSlab + { + short DarkOakSlab() + { + return 8333; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8332: case 8333: return Type::Bottom; + case 8334: case 8335: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8333: case 8331: case 8335: return false; + default: return true; + } + } + } + namespace DarkOakStairs + { + short DarkOakStairs() + { + return 7466; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 7495: case 7496: case 7497: case 7498: case 7499: case 7500: case 7501: case 7502: case 7503: case 7504: case 7505: case 7506: case 7507: case 7508: case 7509: case 7510: case 7511: case 7512: case 7513: case 7514: return eBlockFace::BLOCK_FACE_XM; + case 7515: case 7516: case 7517: case 7518: case 7519: case 7520: case 7521: case 7522: case 7523: case 7524: case 7525: case 7526: case 7527: case 7528: case 7529: case 7530: case 7531: case 7532: case 7533: case 7534: return eBlockFace::BLOCK_FACE_XP; + case 7455: case 7456: case 7457: case 7458: case 7459: case 7460: case 7461: case 7462: case 7463: case 7464: case 7465: case 7466: case 7467: case 7468: case 7469: case 7470: case 7471: case 7472: case 7473: case 7474: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 7489: case 7490: case 7491: case 7492: case 7493: case 7494: case 7505: case 7506: case 7507: case 7508: case 7509: case 7510: case 7511: case 7512: case 7513: case 7514: case 7525: case 7526: case 7527: case 7528: case 7465: case 7529: case 7466: case 7530: case 7467: case 7531: case 7468: case 7532: case 7469: case 7533: case 7470: case 7534: case 7471: case 7472: case 7473: case 7474: case 7485: case 7486: case 7487: case 7488: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 7497: case 7498: case 7507: case 7508: case 7517: case 7518: case 7457: case 7458: case 7527: case 7528: case 7467: case 7468: case 7477: case 7478: case 7487: case 7488: return Shape::InnerLeft; + case 7489: case 7490: case 7499: case 7500: case 7509: case 7510: case 7519: case 7520: case 7459: case 7460: case 7529: case 7530: case 7469: case 7470: case 7479: case 7480: return Shape::InnerRight; + case 7491: case 7492: case 7501: case 7502: case 7511: case 7512: case 7521: case 7522: case 7461: case 7462: case 7531: case 7532: case 7471: case 7472: case 7481: case 7482: return Shape::OuterLeft; + case 7493: case 7494: case 7503: case 7504: case 7513: case 7514: case 7523: case 7524: case 7463: case 7464: case 7533: case 7534: case 7473: case 7474: case 7483: case 7484: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7490: case 7492: case 7494: case 7496: case 7498: case 7500: case 7502: case 7504: case 7506: case 7508: case 7510: case 7512: case 7514: case 7516: case 7518: case 7456: case 7520: case 7458: case 7522: case 7460: case 7524: case 7462: case 7526: case 7464: case 7528: case 7466: case 7530: case 7468: case 7532: case 7470: case 7534: case 7472: case 7474: case 7476: case 7478: case 7480: case 7482: case 7484: case 7486: case 7488: return false; + default: return true; + } + } + } + namespace DarkOakTrapdoor + { + short DarkOakTrapdoor() + { + return 4446; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 4463: case 4464: case 4465: case 4466: case 4467: case 4468: case 4469: case 4470: case 4471: case 4472: case 4473: case 4474: case 4475: case 4476: case 4477: case 4478: return eBlockFace::BLOCK_FACE_XM; + case 4479: case 4480: case 4481: case 4482: case 4483: case 4484: case 4485: case 4486: case 4487: case 4488: case 4489: case 4490: case 4491: case 4492: case 4493: case 4494: return eBlockFace::BLOCK_FACE_XP; + case 4432: case 4433: case 4434: case 4435: case 4436: case 4437: case 4438: case 4439: case 4440: case 4441: case 4442: case 4443: case 4444: case 4445: case 4446: case 4431: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 4439: case 4455: case 4471: case 4487: case 4440: case 4456: case 4472: case 4488: case 4441: case 4457: case 4473: case 4489: case 4442: case 4458: case 4474: case 4490: case 4443: case 4459: case 4475: case 4491: case 4444: case 4460: case 4476: case 4492: case 4445: case 4461: case 4477: case 4493: case 4446: case 4462: case 4478: case 4494: return Half::Bottom; + default: return Half::Top; + } + } + bool Open(short ID) + { + switch (ID) + { + case 4435: case 4451: case 4467: case 4483: case 4436: case 4452: case 4468: case 4484: case 4437: case 4453: case 4469: case 4485: case 4438: case 4454: case 4470: case 4486: case 4443: case 4459: case 4475: case 4491: case 4444: case 4460: case 4476: case 4492: case 4445: case 4461: case 4477: case 4493: case 4446: case 4462: case 4478: case 4494: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 4433: case 4449: case 4465: case 4481: case 4434: case 4450: case 4466: case 4482: case 4437: case 4453: case 4469: case 4485: case 4438: case 4454: case 4470: case 4486: case 4441: case 4457: case 4473: case 4489: case 4442: case 4458: case 4474: case 4490: case 4445: case 4461: case 4477: case 4493: case 4446: case 4462: case 4478: case 4494: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 4432: case 4448: case 4464: case 4480: case 4434: case 4450: case 4466: case 4482: case 4436: case 4452: case 4468: case 4484: case 4438: case 4454: case 4470: case 4486: case 4440: case 4456: case 4472: case 4488: case 4442: case 4458: case 4474: case 4490: case 4444: case 4460: case 4476: case 4492: case 4446: case 4462: case 4478: case 4494: return false; + default: return true; + } + } + } + namespace DarkOakWallSign + { + short DarkOakWallSign() + { + return 3776; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 3779: case 3780: return eBlockFace::BLOCK_FACE_XM; + case 3781: case 3782: return eBlockFace::BLOCK_FACE_XP; + case 3775: case 3776: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 3778: case 3780: case 3776: case 3782: return false; + default: return true; + } + } + } + namespace DarkOakWood + { + short DarkOakWood() + { + return 125; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 124: return Axis::X; + case 125: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace DarkPrismarine + { + } + namespace DarkPrismarineSlab + { + short DarkPrismarineSlab() + { + return 7859; + } + enum Type Type(short ID) + { + switch (ID) + { + case 7858: case 7859: return Type::Bottom; + case 7860: case 7861: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7857: case 7859: case 7861: return false; + default: return true; + } + } + } + namespace DarkPrismarineStairs + { + short DarkPrismarineStairs() + { + return 7775; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 7806: case 7807: case 7808: case 7809: case 7810: case 7811: case 7812: case 7813: case 7814: case 7815: case 7816: case 7817: case 7818: case 7819: case 7820: case 7821: case 7822: case 7823: case 7804: case 7805: return eBlockFace::BLOCK_FACE_XM; + case 7824: case 7825: case 7826: case 7827: case 7828: case 7829: case 7830: case 7831: case 7832: case 7833: case 7834: case 7835: case 7836: case 7837: case 7838: case 7839: case 7840: case 7841: case 7842: case 7843: return eBlockFace::BLOCK_FACE_XP; + case 7764: case 7765: case 7766: case 7767: case 7768: case 7769: case 7770: case 7771: case 7772: case 7773: case 7774: case 7775: case 7776: case 7777: case 7778: case 7779: case 7780: case 7781: case 7782: case 7783: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 7814: case 7815: case 7816: case 7817: case 7818: case 7819: case 7820: case 7821: case 7822: case 7823: case 7834: case 7835: case 7836: case 7837: case 7774: case 7838: case 7775: case 7839: case 7776: case 7840: case 7777: case 7841: case 7778: case 7842: case 7779: case 7843: case 7780: case 7781: case 7782: case 7783: case 7794: case 7795: case 7796: case 7797: case 7798: case 7799: case 7800: case 7801: case 7802: case 7803: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 7806: case 7807: case 7816: case 7817: case 7826: case 7827: case 7766: case 7767: case 7836: case 7837: case 7776: case 7777: case 7786: case 7787: case 7796: case 7797: return Shape::InnerLeft; + case 7808: case 7809: case 7818: case 7819: case 7828: case 7829: case 7768: case 7769: case 7838: case 7839: case 7778: case 7779: case 7788: case 7789: case 7798: case 7799: return Shape::InnerRight; + case 7810: case 7811: case 7820: case 7821: case 7830: case 7831: case 7770: case 7771: case 7840: case 7841: case 7780: case 7781: case 7790: case 7791: case 7800: case 7801: return Shape::OuterLeft; + case 7812: case 7813: case 7822: case 7823: case 7832: case 7833: case 7772: case 7773: case 7842: case 7843: case 7782: case 7783: case 7792: case 7793: case 7802: case 7803: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7807: case 7809: case 7811: case 7813: case 7815: case 7817: case 7819: case 7821: case 7823: case 7825: case 7827: case 7765: case 7829: case 7767: case 7831: case 7769: case 7833: case 7771: case 7835: case 7773: case 7837: case 7775: case 7839: case 7777: case 7841: case 7779: case 7843: case 7781: case 7783: case 7785: case 7787: case 7789: case 7791: case 7793: case 7795: case 7797: case 7799: case 7801: case 7803: case 7805: return false; + default: return true; + } + } + } + namespace DaylightDetector + { + short DaylightDetector() + { + return 6710; + } + bool Inverted(short ID) + { + switch (ID) + { + case 6714: case 6718: case 6722: case 6711: case 6715: case 6719: case 6723: case 6712: case 6716: case 6720: case 6724: case 6713: case 6717: case 6721: case 6710: case 6725: return false; + default: return true; + } + } + unsigned char Power(short ID) + { + switch (ID) + { + case 6694: case 6710: return 0; + case 6695: case 6711: return 1; + case 6704: case 6720: return 10; + case 6705: case 6721: return 11; + case 6722: case 6706: return 12; + case 6707: case 6723: return 13; + case 6708: case 6724: return 14; + case 6709: case 6725: return 15; + case 6696: case 6712: return 2; + case 6697: case 6713: return 3; + case 6714: case 6698: return 4; + case 6699: case 6715: return 5; + case 6700: case 6716: return 6; + case 6701: case 6717: return 7; + case 6718: case 6702: return 8; + default: return 9; + } + } + } + namespace DeadBrainCoral + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9523: return false; + default: return true; + } + } + } + namespace DeadBrainCoralBlock + { + } + namespace DeadBrainCoralFan + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9543: return false; + default: return true; + } + } + } + namespace DeadBrainCoralWallFan + { + short DeadBrainCoralWallFan() + { + return 9568; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9572: case 9573: return eBlockFace::BLOCK_FACE_XM; + case 9574: case 9575: return eBlockFace::BLOCK_FACE_XP; + case 9568: case 9569: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9571: case 9569: case 9573: case 9575: return false; + default: return true; + } + } + } + namespace DeadBubbleCoral + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9525: return false; + default: return true; + } + } + } + namespace DeadBubbleCoralBlock + { + } + namespace DeadBubbleCoralFan + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9545: return false; + default: return true; + } + } + } + namespace DeadBubbleCoralWallFan + { + short DeadBubbleCoralWallFan() + { + return 9576; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9580: case 9581: return eBlockFace::BLOCK_FACE_XM; + case 9582: case 9583: return eBlockFace::BLOCK_FACE_XP; + case 9576: case 9577: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9579: case 9577: case 9581: case 9583: return false; + default: return true; + } + } + } + namespace DeadBush + { + } + namespace DeadFireCoral + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9527: return false; + default: return true; + } + } + } + namespace DeadFireCoralBlock + { + } + namespace DeadFireCoralFan + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9547: return false; + default: return true; + } + } + } + namespace DeadFireCoralWallFan + { + short DeadFireCoralWallFan() + { + return 9584; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9589: case 9588: return eBlockFace::BLOCK_FACE_XM; + case 9590: case 9591: return eBlockFace::BLOCK_FACE_XP; + case 9585: case 9584: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9585: case 9589: case 9587: case 9591: return false; + default: return true; + } + } + } + namespace DeadHornCoral + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9529: return false; + default: return true; + } + } + } + namespace DeadHornCoralBlock + { + } + namespace DeadHornCoralFan + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9549: return false; + default: return true; + } + } + } + namespace DeadHornCoralWallFan + { + short DeadHornCoralWallFan() + { + return 9592; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9596: case 9597: return eBlockFace::BLOCK_FACE_XM; + case 9598: case 9599: return eBlockFace::BLOCK_FACE_XP; + case 9592: case 9593: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9593: case 9597: case 9595: case 9599: return false; + default: return true; + } + } + } + namespace DeadTubeCoral + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9521: return false; + default: return true; + } + } + } + namespace DeadTubeCoralBlock + { + } + namespace DeadTubeCoralFan + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9541: return false; + default: return true; + } + } + } + namespace DeadTubeCoralWallFan + { + short DeadTubeCoralWallFan() + { + return 9560; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9564: case 9565: return eBlockFace::BLOCK_FACE_XM; + case 9566: case 9567: return eBlockFace::BLOCK_FACE_XP; + case 9561: case 9560: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9561: case 9565: case 9563: case 9567: return false; + default: return true; + } + } + } + namespace DetectorRail + { + short DetectorRail() + { + return 1323; + } + bool Powered(short ID) + { + switch (ID) + { + case 1325: case 1326: case 1323: case 1327: case 1324: case 1328: return false; + default: return true; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 1325: case 1319: return Shape::AscendingEast; + case 1321: case 1327: return Shape::AscendingNorth; + case 1322: case 1328: return Shape::AscendingSouth; + case 1326: case 1320: return Shape::AscendingWest; + case 1318: case 1324: return Shape::EastWest; + default: return Shape::NorthSouth; + } + } + } + namespace DiamondBlock + { + } + namespace DiamondOre + { + } + namespace Diorite + { + } + namespace DioriteSlab + { + short DioriteSlab() + { + return 10864; + } + enum Type Type(short ID) + { + switch (ID) + { + case 10863: case 10864: return Type::Bottom; + case 10866: case 10865: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10866: case 10864: case 10862: return false; + default: return true; + } + } + } + namespace DioriteStairs + { + short DioriteStairs() + { + return 10720; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 10749: case 10750: case 10751: case 10752: case 10753: case 10754: case 10755: case 10756: case 10757: case 10758: case 10759: case 10760: case 10761: case 10762: case 10763: case 10764: case 10765: case 10766: case 10767: case 10768: return eBlockFace::BLOCK_FACE_XM; + case 10769: case 10770: case 10771: case 10772: case 10773: case 10774: case 10775: case 10776: case 10777: case 10778: case 10779: case 10780: case 10781: case 10782: case 10783: case 10784: case 10785: case 10786: case 10787: case 10788: return eBlockFace::BLOCK_FACE_XP; + case 10722: case 10723: case 10724: case 10725: case 10726: case 10727: case 10728: case 10709: case 10710: case 10711: case 10712: case 10713: case 10714: case 10715: case 10716: case 10717: case 10718: case 10719: case 10720: case 10721: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 10722: case 10723: case 10724: case 10725: case 10726: case 10727: case 10728: case 10739: case 10740: case 10741: case 10742: case 10743: case 10744: case 10745: case 10746: case 10747: case 10748: case 10759: case 10760: case 10761: case 10762: case 10763: case 10764: case 10765: case 10766: case 10767: case 10768: case 10779: case 10780: case 10781: case 10782: case 10783: case 10784: case 10785: case 10786: case 10787: case 10788: case 10719: case 10720: case 10721: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 10722: case 10731: case 10732: case 10741: case 10742: case 10751: case 10752: case 10761: case 10762: case 10771: case 10772: case 10781: case 10782: case 10711: case 10712: case 10721: return Shape::InnerLeft; + case 10723: case 10724: case 10733: case 10734: case 10743: case 10744: case 10753: case 10754: case 10763: case 10764: case 10773: case 10774: case 10783: case 10784: case 10713: case 10714: return Shape::InnerRight; + case 10725: case 10726: case 10735: case 10736: case 10745: case 10746: case 10755: case 10756: case 10765: case 10766: case 10775: case 10776: case 10785: case 10786: case 10715: case 10716: return Shape::OuterLeft; + case 10727: case 10728: case 10737: case 10738: case 10747: case 10748: case 10757: case 10758: case 10767: case 10768: case 10777: case 10778: case 10787: case 10788: case 10717: case 10718: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10722: case 10724: case 10726: case 10728: case 10730: case 10732: case 10734: case 10736: case 10738: case 10740: case 10742: case 10744: case 10746: case 10748: case 10750: case 10752: case 10754: case 10756: case 10758: case 10760: case 10762: case 10764: case 10766: case 10768: case 10770: case 10772: case 10774: case 10776: case 10778: case 10780: case 10782: case 10784: case 10786: case 10788: case 10710: case 10712: case 10714: case 10716: case 10718: case 10720: return false; + default: return true; + } + } + } + namespace DioriteWall + { + short DioriteWall() + { + return 14434; + } + enum East East(short ID) + { + switch (ID) + { + case 14611: case 14615: case 14619: case 14623: case 14627: case 14631: case 14635: case 14639: case 14643: case 14540: case 14544: case 14548: case 14552: case 14556: case 14560: case 14564: case 14568: case 14572: case 14576: case 14580: case 14584: case 14588: case 14592: case 14596: case 14600: case 14604: case 14608: case 14612: case 14616: case 14620: case 14624: case 14628: case 14632: case 14636: case 14640: case 14644: case 14541: case 14545: case 14549: case 14553: case 14557: case 14561: case 14565: case 14569: case 14573: case 14577: case 14581: case 14585: case 14589: case 14593: case 14597: case 14601: case 14605: case 14609: case 14613: case 14617: case 14621: case 14625: case 14629: case 14633: case 14637: case 14641: case 14645: case 14542: case 14546: case 14550: case 14554: case 14558: case 14562: case 14566: case 14570: case 14574: case 14578: case 14582: case 14586: case 14590: case 14594: case 14598: case 14602: case 14606: case 14610: case 14614: case 14618: case 14622: case 14626: case 14630: case 14634: case 14638: case 14642: case 14646: case 14539: case 14543: case 14547: case 14551: case 14555: case 14559: case 14563: case 14567: case 14571: case 14575: case 14579: case 14583: case 14587: case 14591: case 14595: case 14599: case 14603: case 14607: return East::Low; + case 14432: case 14436: case 14440: case 14444: case 14448: case 14452: case 14456: case 14460: case 14464: case 14468: case 14472: case 14476: case 14480: case 14484: case 14488: case 14492: case 14496: case 14500: case 14504: case 14508: case 14512: case 14516: case 14520: case 14524: case 14528: case 14532: case 14536: case 14433: case 14437: case 14441: case 14445: case 14449: case 14453: case 14457: case 14461: case 14465: case 14469: case 14473: case 14477: case 14481: case 14485: case 14489: case 14493: case 14497: case 14501: case 14505: case 14509: case 14513: case 14517: case 14521: case 14525: case 14529: case 14533: case 14537: case 14434: case 14438: case 14442: case 14446: case 14450: case 14454: case 14458: case 14462: case 14466: case 14470: case 14474: case 14478: case 14482: case 14486: case 14490: case 14494: case 14498: case 14502: case 14506: case 14510: case 14514: case 14518: case 14522: case 14526: case 14530: case 14534: case 14538: case 14431: case 14435: case 14439: case 14443: case 14447: case 14451: case 14455: case 14459: case 14463: case 14467: case 14471: case 14475: case 14479: case 14483: case 14487: case 14491: case 14495: case 14499: case 14503: case 14507: case 14511: case 14515: case 14519: case 14523: case 14527: case 14531: case 14535: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 14683: case 14687: case 14691: case 14695: case 14699: case 14703: case 14707: case 14711: case 14715: case 14468: case 14472: case 14476: case 14480: case 14484: case 14488: case 14492: case 14496: case 14500: case 14576: case 14580: case 14584: case 14588: case 14592: case 14596: case 14600: case 14604: case 14608: case 14684: case 14688: case 14692: case 14696: case 14700: case 14704: case 14708: case 14712: case 14716: case 14469: case 14473: case 14477: case 14481: case 14485: case 14489: case 14493: case 14497: case 14501: case 14577: case 14581: case 14585: case 14589: case 14593: case 14597: case 14601: case 14605: case 14609: case 14685: case 14689: case 14693: case 14697: case 14701: case 14705: case 14709: case 14713: case 14717: case 14470: case 14474: case 14478: case 14482: case 14486: case 14490: case 14494: case 14498: case 14502: case 14578: case 14582: case 14586: case 14590: case 14594: case 14598: case 14602: case 14606: case 14610: case 14686: case 14690: case 14694: case 14698: case 14702: case 14706: case 14710: case 14714: case 14718: case 14467: case 14471: case 14475: case 14479: case 14483: case 14487: case 14491: case 14495: case 14499: case 14575: case 14579: case 14583: case 14587: case 14591: case 14595: case 14599: case 14603: case 14607: return North::Low; + case 14647: case 14651: case 14655: case 14659: case 14663: case 14667: case 14671: case 14675: case 14679: case 14432: case 14436: case 14440: case 14444: case 14448: case 14452: case 14456: case 14460: case 14464: case 14540: case 14544: case 14548: case 14552: case 14556: case 14560: case 14564: case 14568: case 14572: case 14648: case 14652: case 14656: case 14660: case 14664: case 14668: case 14672: case 14676: case 14680: case 14433: case 14437: case 14441: case 14445: case 14449: case 14453: case 14457: case 14461: case 14465: case 14541: case 14545: case 14549: case 14553: case 14557: case 14561: case 14565: case 14569: case 14573: case 14649: case 14653: case 14657: case 14661: case 14665: case 14669: case 14673: case 14677: case 14681: case 14434: case 14438: case 14442: case 14446: case 14450: case 14454: case 14458: case 14462: case 14466: case 14542: case 14546: case 14550: case 14554: case 14558: case 14562: case 14566: case 14570: case 14574: case 14650: case 14654: case 14658: case 14662: case 14666: case 14670: case 14674: case 14678: case 14682: case 14431: case 14435: case 14439: case 14443: case 14447: case 14451: case 14455: case 14459: case 14463: case 14539: case 14543: case 14547: case 14551: case 14555: case 14559: case 14563: case 14567: case 14571: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 14623: case 14627: case 14631: case 14659: case 14663: case 14667: case 14695: case 14699: case 14703: case 14731: case 14735: case 14739: case 14444: case 14448: case 14452: case 14480: case 14484: case 14488: case 14516: case 14520: case 14524: case 14552: case 14556: case 14560: case 14588: case 14592: case 14596: case 14624: case 14628: case 14632: case 14660: case 14664: case 14668: case 14696: case 14700: case 14704: case 14732: case 14736: case 14740: case 14445: case 14449: case 14453: case 14481: case 14485: case 14489: case 14517: case 14521: case 14525: case 14553: case 14557: case 14561: case 14589: case 14593: case 14597: case 14625: case 14629: case 14633: case 14661: case 14665: case 14669: case 14697: case 14701: case 14705: case 14733: case 14737: case 14741: case 14446: case 14450: case 14454: case 14482: case 14486: case 14490: case 14518: case 14522: case 14526: case 14554: case 14558: case 14562: case 14590: case 14594: case 14598: case 14626: case 14630: case 14634: case 14662: case 14666: case 14670: case 14698: case 14702: case 14706: case 14734: case 14738: case 14742: case 14443: case 14447: case 14451: case 14479: case 14483: case 14487: case 14515: case 14519: case 14523: case 14551: case 14555: case 14559: case 14587: case 14591: case 14595: return South::Low; + case 14611: case 14615: case 14619: case 14647: case 14651: case 14655: case 14683: case 14687: case 14691: case 14719: case 14723: case 14727: case 14432: case 14436: case 14440: case 14468: case 14472: case 14476: case 14504: case 14508: case 14512: case 14540: case 14544: case 14548: case 14576: case 14580: case 14584: case 14612: case 14616: case 14620: case 14648: case 14652: case 14656: case 14684: case 14688: case 14692: case 14720: case 14724: case 14728: case 14433: case 14437: case 14441: case 14469: case 14473: case 14477: case 14505: case 14509: case 14513: case 14541: case 14545: case 14549: case 14577: case 14581: case 14585: case 14613: case 14617: case 14621: case 14649: case 14653: case 14657: case 14685: case 14689: case 14693: case 14721: case 14725: case 14729: case 14434: case 14438: case 14442: case 14470: case 14474: case 14478: case 14506: case 14510: case 14514: case 14542: case 14546: case 14550: case 14578: case 14582: case 14586: case 14614: case 14618: case 14622: case 14650: case 14654: case 14658: case 14686: case 14690: case 14694: case 14722: case 14726: case 14730: case 14431: case 14435: case 14439: case 14467: case 14471: case 14475: case 14503: case 14507: case 14511: case 14539: case 14543: case 14547: case 14575: case 14579: case 14583: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 14619: case 14631: case 14643: case 14655: case 14667: case 14679: case 14691: case 14703: case 14715: case 14727: case 14739: case 14751: case 14440: case 14452: case 14464: case 14476: case 14488: case 14500: case 14512: case 14524: case 14536: case 14548: case 14560: case 14572: case 14584: case 14596: case 14608: case 14620: case 14632: case 14644: case 14656: case 14668: case 14680: case 14692: case 14704: case 14716: case 14728: case 14740: case 14752: case 14437: case 14441: case 14449: case 14453: case 14461: case 14465: case 14473: case 14477: case 14485: case 14489: case 14497: case 14501: case 14509: case 14513: case 14521: case 14525: case 14533: case 14537: case 14545: case 14549: case 14557: case 14561: case 14569: case 14573: case 14581: case 14585: case 14593: case 14597: case 14605: case 14609: case 14617: case 14621: case 14629: case 14633: case 14641: case 14645: case 14653: case 14657: case 14665: case 14669: case 14677: case 14681: case 14689: case 14693: case 14701: case 14705: case 14713: case 14717: case 14725: case 14729: case 14737: case 14741: case 14749: case 14753: case 14438: case 14442: case 14450: case 14454: case 14462: case 14466: case 14474: case 14478: case 14486: case 14490: case 14498: case 14502: case 14510: case 14514: case 14522: case 14526: case 14534: case 14538: case 14546: case 14550: case 14558: case 14562: case 14570: case 14574: case 14582: case 14586: case 14594: case 14598: case 14606: case 14610: case 14618: case 14622: case 14630: case 14634: case 14642: case 14646: case 14654: case 14658: case 14666: case 14670: case 14678: case 14682: case 14690: case 14694: case 14702: case 14706: case 14714: case 14718: case 14726: case 14730: case 14738: case 14742: case 14750: case 14754: case 14439: case 14451: case 14463: case 14475: case 14487: case 14499: case 14511: case 14523: case 14535: case 14547: case 14559: case 14571: case 14583: case 14595: case 14607: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 14615: case 14627: case 14639: case 14651: case 14663: case 14675: case 14687: case 14699: case 14711: case 14723: case 14735: case 14747: case 14436: case 14440: case 14448: case 14452: case 14460: case 14464: case 14472: case 14476: case 14484: case 14488: case 14496: case 14500: case 14508: case 14512: case 14520: case 14524: case 14532: case 14536: case 14544: case 14548: case 14556: case 14560: case 14568: case 14572: case 14580: case 14584: case 14592: case 14596: case 14604: case 14608: case 14616: case 14620: case 14628: case 14632: case 14640: case 14644: case 14652: case 14656: case 14664: case 14668: case 14676: case 14680: case 14688: case 14692: case 14700: case 14704: case 14712: case 14716: case 14724: case 14728: case 14736: case 14740: case 14748: case 14752: case 14441: case 14453: case 14465: case 14477: case 14489: case 14501: case 14513: case 14525: case 14537: case 14549: case 14561: case 14573: case 14585: case 14597: case 14609: case 14621: case 14633: case 14645: case 14657: case 14669: case 14681: case 14693: case 14705: case 14717: case 14729: case 14741: case 14753: case 14434: case 14442: case 14446: case 14454: case 14458: case 14466: case 14470: case 14478: case 14482: case 14490: case 14494: case 14502: case 14506: case 14514: case 14518: case 14526: case 14530: case 14538: case 14542: case 14550: case 14554: case 14562: case 14566: case 14574: case 14578: case 14586: case 14590: case 14598: case 14602: case 14610: case 14614: case 14622: case 14626: case 14634: case 14638: case 14646: case 14650: case 14658: case 14662: case 14670: case 14674: case 14682: case 14686: case 14694: case 14698: case 14706: case 14710: case 14718: case 14722: case 14730: case 14734: case 14742: case 14746: case 14754: case 14435: case 14447: case 14459: case 14471: case 14483: case 14495: case 14507: case 14519: case 14531: case 14543: case 14555: case 14567: case 14579: case 14591: case 14603: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 14615: case 14627: case 14639: case 14651: case 14663: case 14675: case 14687: case 14699: case 14711: case 14723: case 14735: case 14747: case 14432: case 14444: case 14456: case 14468: case 14480: case 14492: case 14504: case 14516: case 14528: case 14540: case 14552: case 14564: case 14576: case 14588: case 14600: case 14612: case 14624: case 14636: case 14648: case 14660: case 14672: case 14684: case 14696: case 14708: case 14720: case 14732: case 14744: case 14441: case 14453: case 14465: case 14477: case 14489: case 14501: case 14513: case 14525: case 14537: case 14549: case 14561: case 14573: case 14585: case 14597: case 14609: case 14621: case 14633: case 14645: case 14657: case 14669: case 14681: case 14693: case 14705: case 14717: case 14729: case 14741: case 14753: case 14438: case 14450: case 14462: case 14474: case 14486: case 14498: case 14510: case 14522: case 14534: case 14546: case 14558: case 14570: case 14582: case 14594: case 14606: case 14618: case 14630: case 14642: case 14654: case 14666: case 14678: case 14690: case 14702: case 14714: case 14726: case 14738: case 14750: case 14435: case 14447: case 14459: case 14471: case 14483: case 14495: case 14507: case 14519: case 14531: case 14543: case 14555: case 14567: case 14579: case 14591: case 14603: return West::Low; + case 14611: case 14623: case 14635: case 14647: case 14659: case 14671: case 14683: case 14695: case 14707: case 14719: case 14731: case 14743: case 14440: case 14452: case 14464: case 14476: case 14488: case 14500: case 14512: case 14524: case 14536: case 14548: case 14560: case 14572: case 14584: case 14596: case 14608: case 14620: case 14632: case 14644: case 14656: case 14668: case 14680: case 14692: case 14704: case 14716: case 14728: case 14740: case 14752: case 14437: case 14449: case 14461: case 14473: case 14485: case 14497: case 14509: case 14521: case 14533: case 14545: case 14557: case 14569: case 14581: case 14593: case 14605: case 14617: case 14629: case 14641: case 14653: case 14665: case 14677: case 14689: case 14701: case 14713: case 14725: case 14737: case 14749: case 14434: case 14446: case 14458: case 14470: case 14482: case 14494: case 14506: case 14518: case 14530: case 14542: case 14554: case 14566: case 14578: case 14590: case 14602: case 14614: case 14626: case 14638: case 14650: case 14662: case 14674: case 14686: case 14698: case 14710: case 14722: case 14734: case 14746: case 14431: case 14443: case 14455: case 14467: case 14479: case 14491: case 14503: case 14515: case 14527: case 14539: case 14551: case 14563: case 14575: case 14587: case 14599: return West::None; + default: return West::Tall; + } + } + } + namespace Dirt + { + } + namespace Dispenser + { + short Dispenser() + { + return 235; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 240: case 241: return eBlockFace::BLOCK_FACE_XM; + case 236: case 237: return eBlockFace::BLOCK_FACE_XP; + case 244: case 245: return eBlockFace::BLOCK_FACE_YM; + case 243: case 242: return eBlockFace::BLOCK_FACE_YP; + case 234: case 235: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Triggered(short ID) + { + switch (ID) + { + case 243: case 237: case 245: case 239: case 241: case 235: return false; + default: return true; + } + } + } + namespace DragonEgg + { + } + namespace DragonHead + { + short DragonHead() + { + return 6590; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 6590: return 0; + case 6591: return 1; + case 6600: return 10; + case 6601: return 11; + case 6602: return 12; + case 6603: return 13; + case 6604: return 14; + case 6605: return 15; + case 6592: return 2; + case 6593: return 3; + case 6594: return 4; + case 6595: return 5; + case 6596: return 6; + case 6597: return 7; + case 6598: return 8; + default: return 9; + } + } + } + namespace DragonWallHead + { + short DragonWallHead() + { + return 6606; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6608: return eBlockFace::BLOCK_FACE_XM; + case 6609: return eBlockFace::BLOCK_FACE_XP; + case 6606: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace DriedKelpBlock + { + } + namespace Dropper + { + short Dropper() + { + return 6836; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6841: case 6842: return eBlockFace::BLOCK_FACE_XM; + case 6837: case 6838: return eBlockFace::BLOCK_FACE_XP; + case 6845: case 6846: return eBlockFace::BLOCK_FACE_YM; + case 6843: case 6844: return eBlockFace::BLOCK_FACE_YP; + case 6835: case 6836: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Triggered(short ID) + { + switch (ID) + { + case 6842: case 6844: case 6846: case 6836: case 6838: case 6840: return false; + default: return true; + } + } + } + namespace EmeraldBlock + { + } + namespace EmeraldOre + { + } + namespace EnchantingTable + { + } + namespace EndGateway + { + } + namespace EndPortal + { + } + namespace EndPortalFrame + { + short EndPortalFrame() + { + return 5150; + } + bool Eye(short ID) + { + switch (ID) + { + case 5151: case 5150: case 5152: case 5153: return false; + default: return true; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 5148: case 5152: return eBlockFace::BLOCK_FACE_XM; + case 5149: case 5153: return eBlockFace::BLOCK_FACE_XP; + case 5146: case 5150: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace EndRod + { + short EndRod() + { + return 9062; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9061: return eBlockFace::BLOCK_FACE_XM; + case 9059: return eBlockFace::BLOCK_FACE_XP; + case 9063: return eBlockFace::BLOCK_FACE_YM; + case 9062: return eBlockFace::BLOCK_FACE_YP; + case 9058: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace EndStone + { + } + namespace EndStoneBrickSlab + { + short EndStoneBrickSlab() + { + return 10822; + } + enum Type Type(short ID) + { + switch (ID) + { + case 10821: case 10822: return Type::Bottom; + case 10824: case 10823: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10824: case 10822: case 10820: return false; + default: return true; + } + } + } + namespace EndStoneBrickStairs + { + short EndStoneBrickStairs() + { + return 10080; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 10109: case 10110: case 10111: case 10112: case 10113: case 10114: case 10115: case 10116: case 10117: case 10118: case 10119: case 10120: case 10121: case 10122: case 10123: case 10124: case 10125: case 10126: case 10127: case 10128: return eBlockFace::BLOCK_FACE_XM; + case 10129: case 10130: case 10131: case 10132: case 10133: case 10134: case 10135: case 10136: case 10137: case 10138: case 10139: case 10140: case 10141: case 10142: case 10143: case 10144: case 10145: case 10146: case 10147: case 10148: return eBlockFace::BLOCK_FACE_XP; + case 10087: case 10088: case 10069: case 10070: case 10071: case 10072: case 10073: case 10074: case 10075: case 10076: case 10077: case 10078: case 10079: case 10080: case 10081: case 10082: case 10083: case 10084: case 10085: case 10086: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 10087: case 10088: case 10099: case 10100: case 10101: case 10102: case 10103: case 10104: case 10105: case 10106: case 10107: case 10108: case 10119: case 10120: case 10121: case 10122: case 10123: case 10124: case 10125: case 10126: case 10127: case 10128: case 10139: case 10140: case 10141: case 10142: case 10143: case 10144: case 10145: case 10146: case 10147: case 10148: case 10079: case 10080: case 10081: case 10082: case 10083: case 10084: case 10085: case 10086: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 10091: case 10092: case 10101: case 10102: case 10111: case 10112: case 10121: case 10122: case 10131: case 10132: case 10141: case 10142: case 10071: case 10072: case 10081: case 10082: return Shape::InnerLeft; + case 10093: case 10094: case 10103: case 10104: case 10113: case 10114: case 10123: case 10124: case 10133: case 10134: case 10143: case 10144: case 10073: case 10074: case 10083: case 10084: return Shape::InnerRight; + case 10095: case 10096: case 10105: case 10106: case 10115: case 10116: case 10125: case 10126: case 10135: case 10136: case 10145: case 10146: case 10075: case 10076: case 10085: case 10086: return Shape::OuterLeft; + case 10087: case 10088: case 10097: case 10098: case 10107: case 10108: case 10117: case 10118: case 10127: case 10128: case 10137: case 10138: case 10147: case 10148: case 10077: case 10078: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10088: case 10090: case 10092: case 10094: case 10096: case 10098: case 10100: case 10102: case 10104: case 10106: case 10108: case 10110: case 10112: case 10114: case 10116: case 10118: case 10120: case 10122: case 10124: case 10126: case 10128: case 10130: case 10132: case 10134: case 10136: case 10138: case 10140: case 10142: case 10144: case 10146: case 10148: case 10070: case 10072: case 10074: case 10076: case 10078: case 10080: case 10082: case 10084: case 10086: return false; + default: return true; + } + } + } + namespace EndStoneBrickWall + { + short EndStoneBrickWall() + { + return 14110; + } + enum East East(short ID) + { + switch (ID) + { + case 14216: case 14220: case 14224: case 14228: case 14232: case 14236: case 14240: case 14244: case 14248: case 14252: case 14256: case 14260: case 14264: case 14268: case 14272: case 14276: case 14280: case 14284: case 14288: case 14292: case 14296: case 14300: case 14304: case 14308: case 14312: case 14316: case 14320: case 14217: case 14221: case 14225: case 14229: case 14233: case 14237: case 14241: case 14245: case 14249: case 14253: case 14257: case 14261: case 14265: case 14269: case 14273: case 14277: case 14281: case 14285: case 14289: case 14293: case 14297: case 14301: case 14305: case 14309: case 14313: case 14317: case 14321: case 14218: case 14222: case 14226: case 14230: case 14234: case 14238: case 14242: case 14246: case 14250: case 14254: case 14258: case 14262: case 14266: case 14270: case 14274: case 14278: case 14282: case 14286: case 14290: case 14294: case 14298: case 14302: case 14306: case 14310: case 14314: case 14318: case 14322: case 14215: case 14219: case 14223: case 14227: case 14231: case 14235: case 14239: case 14243: case 14247: case 14251: case 14255: case 14259: case 14263: case 14267: case 14271: case 14275: case 14279: case 14283: case 14287: case 14291: case 14295: case 14299: case 14303: case 14307: case 14311: case 14315: case 14319: return East::Low; + case 14108: case 14112: case 14116: case 14120: case 14124: case 14128: case 14132: case 14136: case 14140: case 14144: case 14148: case 14152: case 14156: case 14160: case 14164: case 14168: case 14172: case 14176: case 14180: case 14184: case 14188: case 14192: case 14196: case 14200: case 14204: case 14208: case 14212: case 14109: case 14113: case 14117: case 14121: case 14125: case 14129: case 14133: case 14137: case 14141: case 14145: case 14149: case 14153: case 14157: case 14161: case 14165: case 14169: case 14173: case 14177: case 14181: case 14185: case 14189: case 14193: case 14197: case 14201: case 14205: case 14209: case 14213: case 14110: case 14114: case 14118: case 14122: case 14126: case 14130: case 14134: case 14138: case 14142: case 14146: case 14150: case 14154: case 14158: case 14162: case 14166: case 14170: case 14174: case 14178: case 14182: case 14186: case 14190: case 14194: case 14198: case 14202: case 14206: case 14210: case 14214: case 14107: case 14111: case 14115: case 14119: case 14123: case 14127: case 14131: case 14135: case 14139: case 14143: case 14147: case 14151: case 14155: case 14159: case 14163: case 14167: case 14171: case 14175: case 14179: case 14183: case 14187: case 14191: case 14195: case 14199: case 14203: case 14207: case 14211: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 14144: case 14148: case 14152: case 14156: case 14160: case 14164: case 14168: case 14172: case 14176: case 14252: case 14256: case 14260: case 14264: case 14268: case 14272: case 14276: case 14280: case 14284: case 14360: case 14364: case 14368: case 14372: case 14376: case 14380: case 14384: case 14388: case 14392: case 14145: case 14149: case 14153: case 14157: case 14161: case 14165: case 14169: case 14173: case 14177: case 14253: case 14257: case 14261: case 14265: case 14269: case 14273: case 14277: case 14281: case 14285: case 14361: case 14365: case 14369: case 14373: case 14377: case 14381: case 14385: case 14389: case 14393: case 14146: case 14150: case 14154: case 14158: case 14162: case 14166: case 14170: case 14174: case 14178: case 14254: case 14258: case 14262: case 14266: case 14270: case 14274: case 14278: case 14282: case 14286: case 14362: case 14366: case 14370: case 14374: case 14378: case 14382: case 14386: case 14390: case 14394: case 14143: case 14147: case 14151: case 14155: case 14159: case 14163: case 14167: case 14171: case 14175: case 14251: case 14255: case 14259: case 14263: case 14267: case 14271: case 14275: case 14279: case 14283: case 14359: case 14363: case 14367: case 14371: case 14375: case 14379: case 14383: case 14387: case 14391: return North::Low; + case 14108: case 14112: case 14116: case 14120: case 14124: case 14128: case 14132: case 14136: case 14140: case 14216: case 14220: case 14224: case 14228: case 14232: case 14236: case 14240: case 14244: case 14248: case 14324: case 14328: case 14332: case 14336: case 14340: case 14344: case 14348: case 14352: case 14356: case 14109: case 14113: case 14117: case 14121: case 14125: case 14129: case 14133: case 14137: case 14141: case 14217: case 14221: case 14225: case 14229: case 14233: case 14237: case 14241: case 14245: case 14249: case 14325: case 14329: case 14333: case 14337: case 14341: case 14345: case 14349: case 14353: case 14357: case 14110: case 14114: case 14118: case 14122: case 14126: case 14130: case 14134: case 14138: case 14142: case 14218: case 14222: case 14226: case 14230: case 14234: case 14238: case 14242: case 14246: case 14250: case 14326: case 14330: case 14334: case 14338: case 14342: case 14346: case 14350: case 14354: case 14358: case 14107: case 14111: case 14115: case 14119: case 14123: case 14127: case 14131: case 14135: case 14139: case 14215: case 14219: case 14223: case 14227: case 14231: case 14235: case 14239: case 14243: case 14247: case 14323: case 14327: case 14331: case 14335: case 14339: case 14343: case 14347: case 14351: case 14355: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 14120: case 14124: case 14128: case 14156: case 14160: case 14164: case 14192: case 14196: case 14200: case 14228: case 14232: case 14236: case 14264: case 14268: case 14272: case 14300: case 14304: case 14308: case 14336: case 14340: case 14344: case 14372: case 14376: case 14380: case 14408: case 14412: case 14416: case 14121: case 14125: case 14129: case 14157: case 14161: case 14165: case 14193: case 14197: case 14201: case 14229: case 14233: case 14237: case 14265: case 14269: case 14273: case 14301: case 14305: case 14309: case 14337: case 14341: case 14345: case 14373: case 14377: case 14381: case 14409: case 14413: case 14417: case 14122: case 14126: case 14130: case 14158: case 14162: case 14166: case 14194: case 14198: case 14202: case 14230: case 14234: case 14238: case 14266: case 14270: case 14274: case 14302: case 14306: case 14310: case 14338: case 14342: case 14346: case 14374: case 14378: case 14382: case 14410: case 14414: case 14418: case 14119: case 14123: case 14127: case 14155: case 14159: case 14163: case 14191: case 14195: case 14199: case 14227: case 14231: case 14235: case 14263: case 14267: case 14271: case 14299: case 14303: case 14307: case 14335: case 14339: case 14343: case 14371: case 14375: case 14379: case 14407: case 14411: case 14415: return South::Low; + case 14108: case 14112: case 14116: case 14144: case 14148: case 14152: case 14180: case 14184: case 14188: case 14216: case 14220: case 14224: case 14252: case 14256: case 14260: case 14288: case 14292: case 14296: case 14324: case 14328: case 14332: case 14360: case 14364: case 14368: case 14396: case 14400: case 14404: case 14109: case 14113: case 14117: case 14145: case 14149: case 14153: case 14181: case 14185: case 14189: case 14217: case 14221: case 14225: case 14253: case 14257: case 14261: case 14289: case 14293: case 14297: case 14325: case 14329: case 14333: case 14361: case 14365: case 14369: case 14397: case 14401: case 14405: case 14110: case 14114: case 14118: case 14146: case 14150: case 14154: case 14182: case 14186: case 14190: case 14218: case 14222: case 14226: case 14254: case 14258: case 14262: case 14290: case 14294: case 14298: case 14326: case 14330: case 14334: case 14362: case 14366: case 14370: case 14398: case 14402: case 14406: case 14107: case 14111: case 14115: case 14143: case 14147: case 14151: case 14179: case 14183: case 14187: case 14215: case 14219: case 14223: case 14251: case 14255: case 14259: case 14287: case 14291: case 14295: case 14323: case 14327: case 14331: case 14359: case 14363: case 14367: case 14395: case 14399: case 14403: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 14116: case 14128: case 14140: case 14152: case 14164: case 14176: case 14188: case 14200: case 14212: case 14224: case 14236: case 14248: case 14260: case 14272: case 14284: case 14296: case 14308: case 14320: case 14332: case 14344: case 14356: case 14368: case 14380: case 14392: case 14404: case 14416: case 14428: case 14113: case 14117: case 14125: case 14129: case 14137: case 14141: case 14149: case 14153: case 14161: case 14165: case 14173: case 14177: case 14185: case 14189: case 14197: case 14201: case 14209: case 14213: case 14221: case 14225: case 14233: case 14237: case 14245: case 14249: case 14257: case 14261: case 14269: case 14273: case 14281: case 14285: case 14293: case 14297: case 14305: case 14309: case 14317: case 14321: case 14329: case 14333: case 14341: case 14345: case 14353: case 14357: case 14365: case 14369: case 14377: case 14381: case 14389: case 14393: case 14401: case 14405: case 14413: case 14417: case 14425: case 14429: case 14114: case 14118: case 14126: case 14130: case 14138: case 14142: case 14150: case 14154: case 14162: case 14166: case 14174: case 14178: case 14186: case 14190: case 14198: case 14202: case 14210: case 14214: case 14222: case 14226: case 14234: case 14238: case 14246: case 14250: case 14258: case 14262: case 14270: case 14274: case 14282: case 14286: case 14294: case 14298: case 14306: case 14310: case 14318: case 14322: case 14330: case 14334: case 14342: case 14346: case 14354: case 14358: case 14366: case 14370: case 14378: case 14382: case 14390: case 14394: case 14402: case 14406: case 14414: case 14418: case 14426: case 14430: case 14115: case 14127: case 14139: case 14151: case 14163: case 14175: case 14187: case 14199: case 14211: case 14223: case 14235: case 14247: case 14259: case 14271: case 14283: case 14295: case 14307: case 14319: case 14331: case 14343: case 14355: case 14367: case 14379: case 14391: case 14403: case 14415: case 14427: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 14112: case 14116: case 14124: case 14128: case 14136: case 14140: case 14148: case 14152: case 14160: case 14164: case 14172: case 14176: case 14184: case 14188: case 14196: case 14200: case 14208: case 14212: case 14220: case 14224: case 14232: case 14236: case 14244: case 14248: case 14256: case 14260: case 14268: case 14272: case 14280: case 14284: case 14292: case 14296: case 14304: case 14308: case 14316: case 14320: case 14328: case 14332: case 14340: case 14344: case 14352: case 14356: case 14364: case 14368: case 14376: case 14380: case 14388: case 14392: case 14400: case 14404: case 14412: case 14416: case 14424: case 14428: case 14117: case 14129: case 14141: case 14153: case 14165: case 14177: case 14189: case 14201: case 14213: case 14225: case 14237: case 14249: case 14261: case 14273: case 14285: case 14297: case 14309: case 14321: case 14333: case 14345: case 14357: case 14369: case 14381: case 14393: case 14405: case 14417: case 14429: case 14110: case 14118: case 14122: case 14130: case 14134: case 14142: case 14146: case 14154: case 14158: case 14166: case 14170: case 14178: case 14182: case 14190: case 14194: case 14202: case 14206: case 14214: case 14218: case 14226: case 14230: case 14238: case 14242: case 14250: case 14254: case 14262: case 14266: case 14274: case 14278: case 14286: case 14290: case 14298: case 14302: case 14310: case 14314: case 14322: case 14326: case 14334: case 14338: case 14346: case 14350: case 14358: case 14362: case 14370: case 14374: case 14382: case 14386: case 14394: case 14398: case 14406: case 14410: case 14418: case 14422: case 14430: case 14111: case 14123: case 14135: case 14147: case 14159: case 14171: case 14183: case 14195: case 14207: case 14219: case 14231: case 14243: case 14255: case 14267: case 14279: case 14291: case 14303: case 14315: case 14327: case 14339: case 14351: case 14363: case 14375: case 14387: case 14399: case 14411: case 14423: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 14108: case 14120: case 14132: case 14144: case 14156: case 14168: case 14180: case 14192: case 14204: case 14216: case 14228: case 14240: case 14252: case 14264: case 14276: case 14288: case 14300: case 14312: case 14324: case 14336: case 14348: case 14360: case 14372: case 14384: case 14396: case 14408: case 14420: case 14117: case 14129: case 14141: case 14153: case 14165: case 14177: case 14189: case 14201: case 14213: case 14225: case 14237: case 14249: case 14261: case 14273: case 14285: case 14297: case 14309: case 14321: case 14333: case 14345: case 14357: case 14369: case 14381: case 14393: case 14405: case 14417: case 14429: case 14114: case 14126: case 14138: case 14150: case 14162: case 14174: case 14186: case 14198: case 14210: case 14222: case 14234: case 14246: case 14258: case 14270: case 14282: case 14294: case 14306: case 14318: case 14330: case 14342: case 14354: case 14366: case 14378: case 14390: case 14402: case 14414: case 14426: case 14111: case 14123: case 14135: case 14147: case 14159: case 14171: case 14183: case 14195: case 14207: case 14219: case 14231: case 14243: case 14255: case 14267: case 14279: case 14291: case 14303: case 14315: case 14327: case 14339: case 14351: case 14363: case 14375: case 14387: case 14399: case 14411: case 14423: return West::Low; + case 14116: case 14128: case 14140: case 14152: case 14164: case 14176: case 14188: case 14200: case 14212: case 14224: case 14236: case 14248: case 14260: case 14272: case 14284: case 14296: case 14308: case 14320: case 14332: case 14344: case 14356: case 14368: case 14380: case 14392: case 14404: case 14416: case 14428: case 14113: case 14125: case 14137: case 14149: case 14161: case 14173: case 14185: case 14197: case 14209: case 14221: case 14233: case 14245: case 14257: case 14269: case 14281: case 14293: case 14305: case 14317: case 14329: case 14341: case 14353: case 14365: case 14377: case 14389: case 14401: case 14413: case 14425: case 14110: case 14122: case 14134: case 14146: case 14158: case 14170: case 14182: case 14194: case 14206: case 14218: case 14230: case 14242: case 14254: case 14266: case 14278: case 14290: case 14302: case 14314: case 14326: case 14338: case 14350: case 14362: case 14374: case 14386: case 14398: case 14410: case 14422: case 14107: case 14119: case 14131: case 14143: case 14155: case 14167: case 14179: case 14191: case 14203: case 14215: case 14227: case 14239: case 14251: case 14263: case 14275: case 14287: case 14299: case 14311: case 14323: case 14335: case 14347: case 14359: case 14371: case 14383: case 14395: case 14407: case 14419: return West::None; + default: return West::Tall; + } + } + } + namespace EndStoneBricks + { + } + namespace EnderChest + { + short EnderChest() + { + return 5252; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 5256: case 5255: return eBlockFace::BLOCK_FACE_XM; + case 5257: case 5258: return eBlockFace::BLOCK_FACE_XP; + case 5252: case 5251: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 5252: case 5254: case 5256: case 5258: return false; + default: return true; + } + } + } + namespace Farmland + { + short Farmland() + { + return 3365; + } + unsigned char Moisture(short ID) + { + switch (ID) + { + case 3365: return 0; + case 3366: return 1; + case 3367: return 2; + case 3368: return 3; + case 3369: return 4; + case 3370: return 5; + case 3371: return 6; + default: return 7; + } + } + } + namespace Fern + { + } + namespace Fire + { + short Fire() + { + return 1471; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 1440: case 1441: case 1442: case 1443: case 1444: case 1445: case 1446: case 1447: case 1448: case 1449: case 1450: case 1451: case 1452: case 1453: case 1454: case 1455: case 1456: case 1457: case 1458: case 1459: case 1460: case 1461: case 1462: case 1463: case 1464: case 1465: case 1466: case 1467: case 1468: case 1469: case 1470: case 1471: return 0; + case 1472: case 1473: case 1474: case 1475: case 1476: case 1477: case 1478: case 1479: case 1480: case 1481: case 1482: case 1483: case 1484: case 1485: case 1486: case 1487: case 1488: case 1489: case 1490: case 1491: case 1492: case 1493: case 1494: case 1495: case 1496: case 1497: case 1498: case 1499: case 1500: case 1501: case 1502: case 1503: return 1; + case 1769: case 1770: case 1771: case 1772: case 1773: case 1774: case 1775: case 1776: case 1777: case 1778: case 1779: case 1780: case 1781: case 1782: case 1783: case 1784: case 1785: case 1786: case 1787: case 1788: case 1789: case 1790: case 1791: case 1760: case 1761: case 1762: case 1763: case 1764: case 1765: case 1766: case 1767: case 1768: return 10; + case 1792: case 1793: case 1794: case 1795: case 1796: case 1797: case 1798: case 1799: case 1800: case 1801: case 1802: case 1803: case 1804: case 1805: case 1806: case 1807: case 1808: case 1809: case 1810: case 1811: case 1812: case 1813: case 1814: case 1815: case 1816: case 1817: case 1818: case 1819: case 1820: case 1821: case 1822: case 1823: return 11; + case 1824: case 1825: case 1826: case 1827: case 1828: case 1829: case 1830: case 1831: case 1832: case 1833: case 1834: case 1835: case 1836: case 1837: case 1838: case 1839: case 1840: case 1841: case 1842: case 1843: case 1844: case 1845: case 1846: case 1847: case 1848: case 1849: case 1850: case 1851: case 1852: case 1853: case 1854: case 1855: return 12; + case 1856: case 1857: case 1858: case 1859: case 1860: case 1861: case 1862: case 1863: case 1864: case 1865: case 1866: case 1867: case 1868: case 1869: case 1870: case 1871: case 1872: case 1873: case 1874: case 1875: case 1876: case 1877: case 1878: case 1879: case 1880: case 1881: case 1882: case 1883: case 1884: case 1885: case 1886: case 1887: return 13; + case 1888: case 1889: case 1890: case 1891: case 1892: case 1893: case 1894: case 1895: case 1896: case 1897: case 1898: case 1899: case 1900: case 1901: case 1902: case 1903: case 1904: case 1905: case 1906: case 1907: case 1908: case 1909: case 1910: case 1911: case 1912: case 1913: case 1914: case 1915: case 1916: case 1917: case 1918: case 1919: return 14; + case 1920: case 1921: case 1922: case 1923: case 1924: case 1925: case 1926: case 1927: case 1928: case 1929: case 1930: case 1931: case 1932: case 1933: case 1934: case 1935: case 1936: case 1937: case 1938: case 1939: case 1940: case 1941: case 1942: case 1943: case 1944: case 1945: case 1946: case 1947: case 1948: case 1949: case 1950: case 1951: return 15; + case 1513: case 1514: case 1515: case 1516: case 1517: case 1518: case 1519: case 1520: case 1521: case 1522: case 1523: case 1524: case 1525: case 1526: case 1527: case 1528: case 1529: case 1530: case 1531: case 1532: case 1533: case 1534: case 1535: case 1504: case 1505: case 1506: case 1507: case 1508: case 1509: case 1510: case 1511: case 1512: return 2; + case 1536: case 1537: case 1538: case 1539: case 1540: case 1541: case 1542: case 1543: case 1544: case 1545: case 1546: case 1547: case 1548: case 1549: case 1550: case 1551: case 1552: case 1553: case 1554: case 1555: case 1556: case 1557: case 1558: case 1559: case 1560: case 1561: case 1562: case 1563: case 1564: case 1565: case 1566: case 1567: return 3; + case 1568: case 1569: case 1570: case 1571: case 1572: case 1573: case 1574: case 1575: case 1576: case 1577: case 1578: case 1579: case 1580: case 1581: case 1582: case 1583: case 1584: case 1585: case 1586: case 1587: case 1588: case 1589: case 1590: case 1591: case 1592: case 1593: case 1594: case 1595: case 1596: case 1597: case 1598: case 1599: return 4; + case 1600: case 1601: case 1602: case 1603: case 1604: case 1605: case 1606: case 1607: case 1608: case 1609: case 1610: case 1611: case 1612: case 1613: case 1614: case 1615: case 1616: case 1617: case 1618: case 1619: case 1620: case 1621: case 1622: case 1623: case 1624: case 1625: case 1626: case 1627: case 1628: case 1629: case 1630: case 1631: return 5; + case 1632: case 1633: case 1634: case 1635: case 1636: case 1637: case 1638: case 1639: case 1640: case 1641: case 1642: case 1643: case 1644: case 1645: case 1646: case 1647: case 1648: case 1649: case 1650: case 1651: case 1652: case 1653: case 1654: case 1655: case 1656: case 1657: case 1658: case 1659: case 1660: case 1661: case 1662: case 1663: return 6; + case 1664: case 1665: case 1666: case 1667: case 1668: case 1669: case 1670: case 1671: case 1672: case 1673: case 1674: case 1675: case 1676: case 1677: case 1678: case 1679: case 1680: case 1681: case 1682: case 1683: case 1684: case 1685: case 1686: case 1687: case 1688: case 1689: case 1690: case 1691: case 1692: case 1693: case 1694: case 1695: return 7; + case 1696: case 1697: case 1698: case 1699: case 1700: case 1701: case 1702: case 1703: case 1704: case 1705: case 1706: case 1707: case 1708: case 1709: case 1710: case 1711: case 1712: case 1713: case 1714: case 1715: case 1716: case 1717: case 1718: case 1719: case 1720: case 1721: case 1722: case 1723: case 1724: case 1725: case 1726: case 1727: return 8; + default: return 9; + } + } + bool East(short ID) + { + switch (ID) + { + case 1520: case 1776: case 1521: case 1777: case 1522: case 1778: case 1523: case 1779: case 1524: case 1780: case 1525: case 1781: case 1526: case 1782: case 1527: case 1783: case 1528: case 1784: case 1529: case 1785: case 1530: case 1786: case 1531: case 1787: case 1532: case 1788: case 1533: case 1789: case 1534: case 1790: case 1535: case 1791: case 1552: case 1808: case 1553: case 1809: case 1554: case 1810: case 1555: case 1811: case 1556: case 1812: case 1557: case 1813: case 1558: case 1814: case 1559: case 1815: case 1560: case 1816: case 1561: case 1817: case 1562: case 1818: case 1563: case 1819: case 1564: case 1820: case 1565: case 1821: case 1566: case 1822: case 1567: case 1823: case 1584: case 1840: case 1585: case 1841: case 1586: case 1842: case 1587: case 1843: case 1588: case 1844: case 1589: case 1845: case 1590: case 1846: case 1591: case 1847: case 1592: case 1848: case 1593: case 1849: case 1594: case 1850: case 1595: case 1851: case 1596: case 1852: case 1597: case 1853: case 1598: case 1854: case 1599: case 1855: case 1616: case 1872: case 1617: case 1873: case 1618: case 1874: case 1619: case 1875: case 1620: case 1876: case 1621: case 1877: case 1622: case 1878: case 1623: case 1879: case 1624: case 1880: case 1625: case 1881: case 1626: case 1882: case 1627: case 1883: case 1628: case 1884: case 1629: case 1885: case 1630: case 1886: case 1631: case 1887: case 1648: case 1904: case 1649: case 1905: case 1650: case 1906: case 1651: case 1907: case 1652: case 1908: case 1653: case 1909: case 1654: case 1910: case 1655: case 1911: case 1656: case 1912: case 1657: case 1913: case 1658: case 1914: case 1659: case 1915: case 1660: case 1916: case 1661: case 1917: case 1662: case 1918: case 1663: case 1919: case 1680: case 1936: case 1681: case 1937: case 1682: case 1938: case 1683: case 1939: case 1684: case 1940: case 1685: case 1941: case 1686: case 1942: case 1687: case 1943: case 1688: case 1944: case 1689: case 1945: case 1690: case 1946: case 1691: case 1947: case 1692: case 1948: case 1693: case 1949: case 1694: case 1950: case 1695: case 1456: case 1712: case 1457: case 1713: case 1458: case 1714: case 1459: case 1715: case 1460: case 1716: case 1461: case 1717: case 1462: case 1718: case 1463: case 1719: case 1464: case 1720: case 1465: case 1721: case 1466: case 1722: case 1467: case 1723: case 1468: case 1724: case 1469: case 1725: case 1470: case 1726: case 1471: case 1727: case 1488: case 1744: case 1489: case 1745: case 1490: case 1746: case 1491: case 1747: case 1492: case 1748: case 1493: case 1749: case 1494: case 1750: case 1495: case 1751: case 1496: case 1752: case 1497: case 1753: case 1498: case 1754: case 1499: case 1755: case 1500: case 1756: case 1501: case 1757: case 1502: case 1758: case 1503: case 1759: case 1951: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 1513: case 1769: case 1514: case 1770: case 1515: case 1771: case 1516: case 1772: case 1517: case 1773: case 1518: case 1774: case 1519: case 1775: case 1528: case 1784: case 1529: case 1785: case 1530: case 1786: case 1531: case 1787: case 1532: case 1788: case 1533: case 1789: case 1534: case 1790: case 1535: case 1791: case 1544: case 1800: case 1545: case 1801: case 1546: case 1802: case 1547: case 1803: case 1548: case 1804: case 1549: case 1805: case 1550: case 1806: case 1551: case 1807: case 1560: case 1816: case 1561: case 1817: case 1562: case 1818: case 1563: case 1819: case 1564: case 1820: case 1565: case 1821: case 1566: case 1822: case 1567: case 1823: case 1576: case 1832: case 1577: case 1833: case 1578: case 1834: case 1579: case 1835: case 1580: case 1836: case 1581: case 1837: case 1582: case 1838: case 1583: case 1839: case 1592: case 1848: case 1593: case 1849: case 1594: case 1850: case 1595: case 1851: case 1596: case 1852: case 1597: case 1853: case 1598: case 1854: case 1599: case 1855: case 1608: case 1864: case 1609: case 1865: case 1610: case 1866: case 1611: case 1867: case 1612: case 1868: case 1613: case 1869: case 1614: case 1870: case 1615: case 1871: case 1624: case 1880: case 1625: case 1881: case 1626: case 1882: case 1627: case 1883: case 1628: case 1884: case 1629: case 1885: case 1630: case 1886: case 1631: case 1887: case 1640: case 1896: case 1641: case 1897: case 1642: case 1898: case 1643: case 1899: case 1644: case 1900: case 1645: case 1901: case 1646: case 1902: case 1647: case 1903: case 1656: case 1912: case 1657: case 1913: case 1658: case 1914: case 1659: case 1915: case 1660: case 1916: case 1661: case 1917: case 1662: case 1918: case 1663: case 1919: case 1672: case 1928: case 1673: case 1929: case 1674: case 1930: case 1675: case 1931: case 1676: case 1932: case 1677: case 1933: case 1678: case 1934: case 1679: case 1935: case 1688: case 1944: case 1689: case 1945: case 1690: case 1946: case 1691: case 1947: case 1692: case 1948: case 1693: case 1949: case 1694: case 1950: case 1695: case 1448: case 1704: case 1449: case 1705: case 1450: case 1706: case 1451: case 1707: case 1452: case 1708: case 1453: case 1709: case 1454: case 1710: case 1455: case 1711: case 1464: case 1720: case 1465: case 1721: case 1466: case 1722: case 1467: case 1723: case 1468: case 1724: case 1469: case 1725: case 1470: case 1726: case 1471: case 1727: case 1480: case 1736: case 1481: case 1737: case 1482: case 1738: case 1483: case 1739: case 1484: case 1740: case 1485: case 1741: case 1486: case 1742: case 1487: case 1743: case 1496: case 1752: case 1497: case 1753: case 1498: case 1754: case 1499: case 1755: case 1500: case 1756: case 1501: case 1757: case 1502: case 1758: case 1503: case 1759: case 1512: case 1768: case 1951: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 1516: case 1772: case 1517: case 1773: case 1518: case 1774: case 1519: case 1775: case 1524: case 1780: case 1525: case 1781: case 1526: case 1782: case 1527: case 1783: case 1532: case 1788: case 1533: case 1789: case 1534: case 1790: case 1535: case 1791: case 1540: case 1796: case 1541: case 1797: case 1542: case 1798: case 1543: case 1799: case 1548: case 1804: case 1549: case 1805: case 1550: case 1806: case 1551: case 1807: case 1556: case 1812: case 1557: case 1813: case 1558: case 1814: case 1559: case 1815: case 1564: case 1820: case 1565: case 1821: case 1566: case 1822: case 1567: case 1823: case 1572: case 1828: case 1573: case 1829: case 1574: case 1830: case 1575: case 1831: case 1580: case 1836: case 1581: case 1837: case 1582: case 1838: case 1583: case 1839: case 1588: case 1844: case 1589: case 1845: case 1590: case 1846: case 1591: case 1847: case 1596: case 1852: case 1597: case 1853: case 1598: case 1854: case 1599: case 1855: case 1604: case 1860: case 1605: case 1861: case 1606: case 1862: case 1607: case 1863: case 1612: case 1868: case 1613: case 1869: case 1614: case 1870: case 1615: case 1871: case 1620: case 1876: case 1621: case 1877: case 1622: case 1878: case 1623: case 1879: case 1628: case 1884: case 1629: case 1885: case 1630: case 1886: case 1631: case 1887: case 1636: case 1892: case 1637: case 1893: case 1638: case 1894: case 1639: case 1895: case 1644: case 1900: case 1645: case 1901: case 1646: case 1902: case 1647: case 1903: case 1652: case 1908: case 1653: case 1909: case 1654: case 1910: case 1655: case 1911: case 1660: case 1916: case 1661: case 1917: case 1662: case 1918: case 1663: case 1919: case 1668: case 1924: case 1669: case 1925: case 1670: case 1926: case 1671: case 1927: case 1676: case 1932: case 1677: case 1933: case 1678: case 1934: case 1679: case 1935: case 1684: case 1940: case 1685: case 1941: case 1686: case 1942: case 1687: case 1943: case 1692: case 1948: case 1693: case 1949: case 1694: case 1950: case 1695: case 1444: case 1700: case 1445: case 1701: case 1446: case 1702: case 1447: case 1703: case 1452: case 1708: case 1453: case 1709: case 1454: case 1710: case 1455: case 1711: case 1460: case 1716: case 1461: case 1717: case 1462: case 1718: case 1463: case 1719: case 1468: case 1724: case 1469: case 1725: case 1470: case 1726: case 1471: case 1727: case 1476: case 1732: case 1477: case 1733: case 1478: case 1734: case 1479: case 1735: case 1484: case 1740: case 1485: case 1741: case 1486: case 1742: case 1487: case 1743: case 1492: case 1748: case 1493: case 1749: case 1494: case 1750: case 1495: case 1751: case 1500: case 1756: case 1501: case 1757: case 1502: case 1758: case 1503: case 1759: case 1508: case 1764: case 1509: case 1765: case 1510: case 1766: case 1511: case 1767: case 1951: return false; + default: return true; + } + } + bool Up(short ID) + { + switch (ID) + { + case 1514: case 1770: case 1515: case 1771: case 1518: case 1774: case 1519: case 1775: case 1522: case 1778: case 1523: case 1779: case 1526: case 1782: case 1527: case 1783: case 1530: case 1786: case 1531: case 1787: case 1534: case 1790: case 1535: case 1791: case 1538: case 1794: case 1539: case 1795: case 1542: case 1798: case 1543: case 1799: case 1546: case 1802: case 1547: case 1803: case 1550: case 1806: case 1551: case 1807: case 1554: case 1810: case 1555: case 1811: case 1558: case 1814: case 1559: case 1815: case 1562: case 1818: case 1563: case 1819: case 1566: case 1822: case 1567: case 1823: case 1570: case 1826: case 1571: case 1827: case 1574: case 1830: case 1575: case 1831: case 1578: case 1834: case 1579: case 1835: case 1582: case 1838: case 1583: case 1839: case 1586: case 1842: case 1587: case 1843: case 1590: case 1846: case 1591: case 1847: case 1594: case 1850: case 1595: case 1851: case 1598: case 1854: case 1599: case 1855: case 1602: case 1858: case 1603: case 1859: case 1606: case 1862: case 1607: case 1863: case 1610: case 1866: case 1611: case 1867: case 1614: case 1870: case 1615: case 1871: case 1618: case 1874: case 1619: case 1875: case 1622: case 1878: case 1623: case 1879: case 1626: case 1882: case 1627: case 1883: case 1630: case 1886: case 1631: case 1887: case 1634: case 1890: case 1635: case 1891: case 1638: case 1894: case 1639: case 1895: case 1642: case 1898: case 1643: case 1899: case 1646: case 1902: case 1647: case 1903: case 1650: case 1906: case 1651: case 1907: case 1654: case 1910: case 1655: case 1911: case 1658: case 1914: case 1659: case 1915: case 1662: case 1918: case 1663: case 1919: case 1666: case 1922: case 1667: case 1923: case 1670: case 1926: case 1671: case 1927: case 1674: case 1930: case 1675: case 1931: case 1678: case 1934: case 1679: case 1935: case 1682: case 1938: case 1683: case 1939: case 1686: case 1942: case 1687: case 1943: case 1690: case 1946: case 1691: case 1947: case 1694: case 1950: case 1695: case 1442: case 1698: case 1443: case 1699: case 1446: case 1702: case 1447: case 1703: case 1450: case 1706: case 1451: case 1707: case 1454: case 1710: case 1455: case 1711: case 1458: case 1714: case 1459: case 1715: case 1462: case 1718: case 1463: case 1719: case 1466: case 1722: case 1467: case 1723: case 1470: case 1726: case 1471: case 1727: case 1474: case 1730: case 1475: case 1731: case 1478: case 1734: case 1479: case 1735: case 1482: case 1738: case 1483: case 1739: case 1486: case 1742: case 1487: case 1743: case 1490: case 1746: case 1491: case 1747: case 1494: case 1750: case 1495: case 1751: case 1498: case 1754: case 1499: case 1755: case 1502: case 1758: case 1503: case 1759: case 1506: case 1762: case 1507: case 1763: case 1510: case 1766: case 1511: case 1767: case 1951: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 1513: case 1769: case 1515: case 1771: case 1517: case 1773: case 1519: case 1775: case 1521: case 1777: case 1523: case 1779: case 1525: case 1781: case 1527: case 1783: case 1529: case 1785: case 1531: case 1787: case 1533: case 1789: case 1535: case 1791: case 1537: case 1793: case 1539: case 1795: case 1541: case 1797: case 1543: case 1799: case 1545: case 1801: case 1547: case 1803: case 1549: case 1805: case 1551: case 1807: case 1553: case 1809: case 1555: case 1811: case 1557: case 1813: case 1559: case 1815: case 1561: case 1817: case 1563: case 1819: case 1565: case 1821: case 1567: case 1823: case 1569: case 1825: case 1571: case 1827: case 1573: case 1829: case 1575: case 1831: case 1577: case 1833: case 1579: case 1835: case 1581: case 1837: case 1583: case 1839: case 1585: case 1841: case 1587: case 1843: case 1589: case 1845: case 1591: case 1847: case 1593: case 1849: case 1595: case 1851: case 1597: case 1853: case 1599: case 1855: case 1601: case 1857: case 1603: case 1859: case 1605: case 1861: case 1607: case 1863: case 1609: case 1865: case 1611: case 1867: case 1613: case 1869: case 1615: case 1871: case 1617: case 1873: case 1619: case 1875: case 1621: case 1877: case 1623: case 1879: case 1625: case 1881: case 1627: case 1883: case 1629: case 1885: case 1631: case 1887: case 1633: case 1889: case 1635: case 1891: case 1637: case 1893: case 1639: case 1895: case 1641: case 1897: case 1643: case 1899: case 1645: case 1901: case 1647: case 1903: case 1649: case 1905: case 1651: case 1907: case 1653: case 1909: case 1655: case 1911: case 1657: case 1913: case 1659: case 1915: case 1661: case 1917: case 1663: case 1919: case 1665: case 1921: case 1667: case 1923: case 1669: case 1925: case 1671: case 1927: case 1673: case 1929: case 1675: case 1931: case 1677: case 1933: case 1679: case 1935: case 1681: case 1937: case 1683: case 1939: case 1685: case 1941: case 1687: case 1943: case 1689: case 1945: case 1691: case 1947: case 1693: case 1949: case 1695: case 1441: case 1697: case 1443: case 1699: case 1445: case 1701: case 1447: case 1703: case 1449: case 1705: case 1451: case 1707: case 1453: case 1709: case 1455: case 1711: case 1457: case 1713: case 1459: case 1715: case 1461: case 1717: case 1463: case 1719: case 1465: case 1721: case 1467: case 1723: case 1469: case 1725: case 1471: case 1727: case 1473: case 1729: case 1475: case 1731: case 1477: case 1733: case 1479: case 1735: case 1481: case 1737: case 1483: case 1739: case 1485: case 1741: case 1487: case 1743: case 1489: case 1745: case 1491: case 1747: case 1493: case 1749: case 1495: case 1751: case 1497: case 1753: case 1499: case 1755: case 1501: case 1757: case 1503: case 1759: case 1505: case 1761: case 1507: case 1763: case 1509: case 1765: case 1511: case 1767: case 1951: return false; + default: return true; + } + } + } + namespace FireCoral + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9537: return false; + default: return true; + } + } + } + namespace FireCoralBlock + { + } + namespace FireCoralFan + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9557: return false; + default: return true; + } + } + } + namespace FireCoralWallFan + { + short FireCoralWallFan() + { + return 9624; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9628: case 9629: return eBlockFace::BLOCK_FACE_XM; + case 9630: case 9631: return eBlockFace::BLOCK_FACE_XP; + case 9624: case 9625: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9627: case 9625: case 9629: case 9631: return false; + default: return true; + } + } + } + namespace FletchingTable + { + } + namespace FlowerPot + { + } + namespace FrostedIce + { + short FrostedIce() + { + return 9249; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 9249: return 0; + case 9250: return 1; + case 9251: return 2; + default: return 3; + } + } + } + namespace Furnace + { + short Furnace() + { + return 3374; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 3377: case 3378: return eBlockFace::BLOCK_FACE_XM; + case 3379: case 3380: return eBlockFace::BLOCK_FACE_XP; + case 3373: case 3374: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Lit(short ID) + { + switch (ID) + { + case 3374: case 3376: case 3378: case 3380: return false; + default: return true; + } + } + } + namespace GildedBlackstone + { + } + namespace Glass + { + } + namespace GlassPane + { + short GlassPane() + { + return 4762; + } + bool East(short ID) + { + switch (ID) + { + case 4761: case 4750: case 4754: case 4758: case 4747: case 4751: case 4755: case 4759: case 4748: case 4752: case 4756: case 4760: case 4749: case 4753: case 4757: case 4762: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 4761: case 4742: case 4746: case 4758: case 4739: case 4743: case 4755: case 4759: case 4740: case 4744: case 4756: case 4760: case 4741: case 4745: case 4757: case 4762: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 4761: case 4738: case 4746: case 4754: case 4735: case 4743: case 4751: case 4759: case 4736: case 4744: case 4752: case 4760: case 4737: case 4745: case 4753: case 4762: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 4761: case 4734: case 4738: case 4742: case 4746: case 4750: case 4754: case 4758: case 4733: case 4737: case 4741: case 4745: case 4749: case 4753: case 4757: case 4762: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 4734: case 4738: case 4742: case 4746: case 4750: case 4754: case 4758: case 4732: case 4736: case 4740: case 4744: case 4748: case 4752: case 4756: case 4760: case 4762: return false; + default: return true; + } + } + } + namespace Glowstone + { + } + namespace GoldBlock + { + } + namespace GoldOre + { + } + namespace Granite + { + } + namespace GraniteSlab + { + short GraniteSlab() + { + return 10840; + } + enum Type Type(short ID) + { + switch (ID) + { + case 10839: case 10840: return Type::Bottom; + case 10842: case 10841: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10838: case 10842: case 10840: return false; + default: return true; + } + } + } + namespace GraniteStairs + { + short GraniteStairs() + { + return 10400; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 10429: case 10430: case 10431: case 10432: case 10433: case 10434: case 10435: case 10436: case 10437: case 10438: case 10439: case 10440: case 10441: case 10442: case 10443: case 10444: case 10445: case 10446: case 10447: case 10448: return eBlockFace::BLOCK_FACE_XM; + case 10468: case 10449: case 10450: case 10451: case 10452: case 10453: case 10454: case 10455: case 10456: case 10457: case 10458: case 10459: case 10460: case 10461: case 10462: case 10463: case 10464: case 10465: case 10466: case 10467: return eBlockFace::BLOCK_FACE_XP; + case 10389: case 10390: case 10391: case 10392: case 10393: case 10394: case 10395: case 10396: case 10397: case 10398: case 10399: case 10400: case 10401: case 10402: case 10403: case 10404: case 10405: case 10406: case 10407: case 10408: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 10468: case 10399: case 10400: case 10401: case 10402: case 10403: case 10404: case 10405: case 10406: case 10407: case 10408: case 10419: case 10420: case 10421: case 10422: case 10423: case 10424: case 10425: case 10426: case 10427: case 10428: case 10439: case 10440: case 10441: case 10442: case 10443: case 10444: case 10445: case 10446: case 10447: case 10448: case 10459: case 10460: case 10461: case 10462: case 10463: case 10464: case 10465: case 10466: case 10467: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 10391: case 10392: case 10401: case 10402: case 10411: case 10412: case 10421: case 10422: case 10431: case 10432: case 10441: case 10442: case 10451: case 10452: case 10461: case 10462: return Shape::InnerLeft; + case 10393: case 10394: case 10403: case 10404: case 10413: case 10414: case 10423: case 10424: case 10433: case 10434: case 10443: case 10444: case 10453: case 10454: case 10463: case 10464: return Shape::InnerRight; + case 10395: case 10396: case 10405: case 10406: case 10415: case 10416: case 10425: case 10426: case 10435: case 10436: case 10445: case 10446: case 10455: case 10456: case 10465: case 10466: return Shape::OuterLeft; + case 10468: case 10397: case 10398: case 10407: case 10408: case 10417: case 10418: case 10427: case 10428: case 10437: case 10438: case 10447: case 10448: case 10457: case 10458: case 10467: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10468: case 10390: case 10392: case 10394: case 10396: case 10398: case 10400: case 10402: case 10404: case 10406: case 10408: case 10410: case 10412: case 10414: case 10416: case 10418: case 10420: case 10422: case 10424: case 10426: case 10428: case 10430: case 10432: case 10434: case 10436: case 10438: case 10440: case 10442: case 10444: case 10446: case 10448: case 10450: case 10452: case 10454: case 10456: case 10458: case 10460: case 10462: case 10464: case 10466: return false; + default: return true; + } + } + } + namespace GraniteWall + { + short GraniteWall() + { + return 12166; + } + enum East East(short ID) + { + switch (ID) + { + case 12272: case 12276: case 12280: case 12284: case 12288: case 12292: case 12296: case 12300: case 12304: case 12308: case 12312: case 12316: case 12320: case 12324: case 12328: case 12332: case 12336: case 12340: case 12344: case 12348: case 12352: case 12356: case 12360: case 12364: case 12368: case 12372: case 12376: case 12273: case 12277: case 12281: case 12285: case 12289: case 12293: case 12297: case 12301: case 12305: case 12309: case 12313: case 12317: case 12321: case 12325: case 12329: case 12333: case 12337: case 12341: case 12345: case 12349: case 12353: case 12357: case 12361: case 12365: case 12369: case 12373: case 12377: case 12274: case 12278: case 12282: case 12286: case 12290: case 12294: case 12298: case 12302: case 12306: case 12310: case 12314: case 12318: case 12322: case 12326: case 12330: case 12334: case 12338: case 12342: case 12346: case 12350: case 12354: case 12358: case 12362: case 12366: case 12370: case 12374: case 12378: case 12271: case 12275: case 12279: case 12283: case 12287: case 12291: case 12295: case 12299: case 12303: case 12307: case 12311: case 12315: case 12319: case 12323: case 12327: case 12331: case 12335: case 12339: case 12343: case 12347: case 12351: case 12355: case 12359: case 12363: case 12367: case 12371: case 12375: return East::Low; + case 12164: case 12168: case 12172: case 12176: case 12180: case 12184: case 12188: case 12192: case 12196: case 12200: case 12204: case 12208: case 12212: case 12216: case 12220: case 12224: case 12228: case 12232: case 12236: case 12240: case 12244: case 12248: case 12252: case 12256: case 12260: case 12264: case 12268: case 12165: case 12169: case 12173: case 12177: case 12181: case 12185: case 12189: case 12193: case 12197: case 12201: case 12205: case 12209: case 12213: case 12217: case 12221: case 12225: case 12229: case 12233: case 12237: case 12241: case 12245: case 12249: case 12253: case 12257: case 12261: case 12265: case 12269: case 12166: case 12170: case 12174: case 12178: case 12182: case 12186: case 12190: case 12194: case 12198: case 12202: case 12206: case 12210: case 12214: case 12218: case 12222: case 12226: case 12230: case 12234: case 12238: case 12242: case 12246: case 12250: case 12254: case 12258: case 12262: case 12266: case 12270: case 12163: case 12167: case 12171: case 12175: case 12179: case 12183: case 12187: case 12191: case 12195: case 12199: case 12203: case 12207: case 12211: case 12215: case 12219: case 12223: case 12227: case 12231: case 12235: case 12239: case 12243: case 12247: case 12251: case 12255: case 12259: case 12263: case 12267: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 12200: case 12204: case 12208: case 12212: case 12216: case 12220: case 12224: case 12228: case 12232: case 12308: case 12312: case 12316: case 12320: case 12324: case 12328: case 12332: case 12336: case 12340: case 12416: case 12420: case 12424: case 12428: case 12432: case 12436: case 12440: case 12444: case 12448: case 12201: case 12205: case 12209: case 12213: case 12217: case 12221: case 12225: case 12229: case 12233: case 12309: case 12313: case 12317: case 12321: case 12325: case 12329: case 12333: case 12337: case 12341: case 12417: case 12421: case 12425: case 12429: case 12433: case 12437: case 12441: case 12445: case 12449: case 12202: case 12206: case 12210: case 12214: case 12218: case 12222: case 12226: case 12230: case 12234: case 12310: case 12314: case 12318: case 12322: case 12326: case 12330: case 12334: case 12338: case 12342: case 12418: case 12422: case 12426: case 12430: case 12434: case 12438: case 12442: case 12446: case 12450: case 12199: case 12203: case 12207: case 12211: case 12215: case 12219: case 12223: case 12227: case 12231: case 12307: case 12311: case 12315: case 12319: case 12323: case 12327: case 12331: case 12335: case 12339: case 12415: case 12419: case 12423: case 12427: case 12431: case 12435: case 12439: case 12443: case 12447: return North::Low; + case 12164: case 12168: case 12172: case 12176: case 12180: case 12184: case 12188: case 12192: case 12196: case 12272: case 12276: case 12280: case 12284: case 12288: case 12292: case 12296: case 12300: case 12304: case 12380: case 12384: case 12388: case 12392: case 12396: case 12400: case 12404: case 12408: case 12412: case 12165: case 12169: case 12173: case 12177: case 12181: case 12185: case 12189: case 12193: case 12197: case 12273: case 12277: case 12281: case 12285: case 12289: case 12293: case 12297: case 12301: case 12305: case 12381: case 12385: case 12389: case 12393: case 12397: case 12401: case 12405: case 12409: case 12413: case 12166: case 12170: case 12174: case 12178: case 12182: case 12186: case 12190: case 12194: case 12198: case 12274: case 12278: case 12282: case 12286: case 12290: case 12294: case 12298: case 12302: case 12306: case 12382: case 12386: case 12390: case 12394: case 12398: case 12402: case 12406: case 12410: case 12414: case 12163: case 12167: case 12171: case 12175: case 12179: case 12183: case 12187: case 12191: case 12195: case 12271: case 12275: case 12279: case 12283: case 12287: case 12291: case 12295: case 12299: case 12303: case 12379: case 12383: case 12387: case 12391: case 12395: case 12399: case 12403: case 12407: case 12411: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 12176: case 12180: case 12184: case 12212: case 12216: case 12220: case 12248: case 12252: case 12256: case 12284: case 12288: case 12292: case 12320: case 12324: case 12328: case 12356: case 12360: case 12364: case 12392: case 12396: case 12400: case 12428: case 12432: case 12436: case 12464: case 12468: case 12472: case 12177: case 12181: case 12185: case 12213: case 12217: case 12221: case 12249: case 12253: case 12257: case 12285: case 12289: case 12293: case 12321: case 12325: case 12329: case 12357: case 12361: case 12365: case 12393: case 12397: case 12401: case 12429: case 12433: case 12437: case 12465: case 12469: case 12473: case 12178: case 12182: case 12186: case 12214: case 12218: case 12222: case 12250: case 12254: case 12258: case 12286: case 12290: case 12294: case 12322: case 12326: case 12330: case 12358: case 12362: case 12366: case 12394: case 12398: case 12402: case 12430: case 12434: case 12438: case 12466: case 12470: case 12474: case 12175: case 12179: case 12183: case 12211: case 12215: case 12219: case 12247: case 12251: case 12255: case 12283: case 12287: case 12291: case 12319: case 12323: case 12327: case 12355: case 12359: case 12363: case 12391: case 12395: case 12399: case 12427: case 12431: case 12435: case 12463: case 12467: case 12471: return South::Low; + case 12164: case 12168: case 12172: case 12200: case 12204: case 12208: case 12236: case 12240: case 12244: case 12272: case 12276: case 12280: case 12308: case 12312: case 12316: case 12344: case 12348: case 12352: case 12380: case 12384: case 12388: case 12416: case 12420: case 12424: case 12452: case 12456: case 12460: case 12165: case 12169: case 12173: case 12201: case 12205: case 12209: case 12237: case 12241: case 12245: case 12273: case 12277: case 12281: case 12309: case 12313: case 12317: case 12345: case 12349: case 12353: case 12381: case 12385: case 12389: case 12417: case 12421: case 12425: case 12453: case 12457: case 12461: case 12166: case 12170: case 12174: case 12202: case 12206: case 12210: case 12238: case 12242: case 12246: case 12274: case 12278: case 12282: case 12310: case 12314: case 12318: case 12346: case 12350: case 12354: case 12382: case 12386: case 12390: case 12418: case 12422: case 12426: case 12454: case 12458: case 12462: case 12163: case 12167: case 12171: case 12199: case 12203: case 12207: case 12235: case 12239: case 12243: case 12271: case 12275: case 12279: case 12307: case 12311: case 12315: case 12343: case 12347: case 12351: case 12379: case 12383: case 12387: case 12415: case 12419: case 12423: case 12451: case 12455: case 12459: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 12172: case 12184: case 12196: case 12208: case 12220: case 12232: case 12244: case 12256: case 12268: case 12280: case 12292: case 12304: case 12316: case 12328: case 12340: case 12352: case 12364: case 12376: case 12388: case 12400: case 12412: case 12424: case 12436: case 12448: case 12460: case 12472: case 12484: case 12169: case 12173: case 12181: case 12185: case 12193: case 12197: case 12205: case 12209: case 12217: case 12221: case 12229: case 12233: case 12241: case 12245: case 12253: case 12257: case 12265: case 12269: case 12277: case 12281: case 12289: case 12293: case 12301: case 12305: case 12313: case 12317: case 12325: case 12329: case 12337: case 12341: case 12349: case 12353: case 12361: case 12365: case 12373: case 12377: case 12385: case 12389: case 12397: case 12401: case 12409: case 12413: case 12421: case 12425: case 12433: case 12437: case 12445: case 12449: case 12457: case 12461: case 12469: case 12473: case 12481: case 12485: case 12170: case 12174: case 12182: case 12186: case 12194: case 12198: case 12206: case 12210: case 12218: case 12222: case 12230: case 12234: case 12242: case 12246: case 12254: case 12258: case 12266: case 12270: case 12278: case 12282: case 12290: case 12294: case 12302: case 12306: case 12314: case 12318: case 12326: case 12330: case 12338: case 12342: case 12350: case 12354: case 12362: case 12366: case 12374: case 12378: case 12386: case 12390: case 12398: case 12402: case 12410: case 12414: case 12422: case 12426: case 12434: case 12438: case 12446: case 12450: case 12458: case 12462: case 12470: case 12474: case 12482: case 12486: case 12171: case 12183: case 12195: case 12207: case 12219: case 12231: case 12243: case 12255: case 12267: case 12279: case 12291: case 12303: case 12315: case 12327: case 12339: case 12351: case 12363: case 12375: case 12387: case 12399: case 12411: case 12423: case 12435: case 12447: case 12459: case 12471: case 12483: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 12168: case 12172: case 12180: case 12184: case 12192: case 12196: case 12204: case 12208: case 12216: case 12220: case 12228: case 12232: case 12240: case 12244: case 12252: case 12256: case 12264: case 12268: case 12276: case 12280: case 12288: case 12292: case 12300: case 12304: case 12312: case 12316: case 12324: case 12328: case 12336: case 12340: case 12348: case 12352: case 12360: case 12364: case 12372: case 12376: case 12384: case 12388: case 12396: case 12400: case 12408: case 12412: case 12420: case 12424: case 12432: case 12436: case 12444: case 12448: case 12456: case 12460: case 12468: case 12472: case 12480: case 12484: case 12173: case 12185: case 12197: case 12209: case 12221: case 12233: case 12245: case 12257: case 12269: case 12281: case 12293: case 12305: case 12317: case 12329: case 12341: case 12353: case 12365: case 12377: case 12389: case 12401: case 12413: case 12425: case 12437: case 12449: case 12461: case 12473: case 12485: case 12166: case 12174: case 12178: case 12186: case 12190: case 12198: case 12202: case 12210: case 12214: case 12222: case 12226: case 12234: case 12238: case 12246: case 12250: case 12258: case 12262: case 12270: case 12274: case 12282: case 12286: case 12294: case 12298: case 12306: case 12310: case 12318: case 12322: case 12330: case 12334: case 12342: case 12346: case 12354: case 12358: case 12366: case 12370: case 12378: case 12382: case 12390: case 12394: case 12402: case 12406: case 12414: case 12418: case 12426: case 12430: case 12438: case 12442: case 12450: case 12454: case 12462: case 12466: case 12474: case 12478: case 12486: case 12167: case 12179: case 12191: case 12203: case 12215: case 12227: case 12239: case 12251: case 12263: case 12275: case 12287: case 12299: case 12311: case 12323: case 12335: case 12347: case 12359: case 12371: case 12383: case 12395: case 12407: case 12419: case 12431: case 12443: case 12455: case 12467: case 12479: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 12164: case 12176: case 12188: case 12200: case 12212: case 12224: case 12236: case 12248: case 12260: case 12272: case 12284: case 12296: case 12308: case 12320: case 12332: case 12344: case 12356: case 12368: case 12380: case 12392: case 12404: case 12416: case 12428: case 12440: case 12452: case 12464: case 12476: case 12173: case 12185: case 12197: case 12209: case 12221: case 12233: case 12245: case 12257: case 12269: case 12281: case 12293: case 12305: case 12317: case 12329: case 12341: case 12353: case 12365: case 12377: case 12389: case 12401: case 12413: case 12425: case 12437: case 12449: case 12461: case 12473: case 12485: case 12170: case 12182: case 12194: case 12206: case 12218: case 12230: case 12242: case 12254: case 12266: case 12278: case 12290: case 12302: case 12314: case 12326: case 12338: case 12350: case 12362: case 12374: case 12386: case 12398: case 12410: case 12422: case 12434: case 12446: case 12458: case 12470: case 12482: case 12167: case 12179: case 12191: case 12203: case 12215: case 12227: case 12239: case 12251: case 12263: case 12275: case 12287: case 12299: case 12311: case 12323: case 12335: case 12347: case 12359: case 12371: case 12383: case 12395: case 12407: case 12419: case 12431: case 12443: case 12455: case 12467: case 12479: return West::Low; + case 12172: case 12184: case 12196: case 12208: case 12220: case 12232: case 12244: case 12256: case 12268: case 12280: case 12292: case 12304: case 12316: case 12328: case 12340: case 12352: case 12364: case 12376: case 12388: case 12400: case 12412: case 12424: case 12436: case 12448: case 12460: case 12472: case 12484: case 12169: case 12181: case 12193: case 12205: case 12217: case 12229: case 12241: case 12253: case 12265: case 12277: case 12289: case 12301: case 12313: case 12325: case 12337: case 12349: case 12361: case 12373: case 12385: case 12397: case 12409: case 12421: case 12433: case 12445: case 12457: case 12469: case 12481: case 12166: case 12178: case 12190: case 12202: case 12214: case 12226: case 12238: case 12250: case 12262: case 12274: case 12286: case 12298: case 12310: case 12322: case 12334: case 12346: case 12358: case 12370: case 12382: case 12394: case 12406: case 12418: case 12430: case 12442: case 12454: case 12466: case 12478: case 12163: case 12175: case 12187: case 12199: case 12211: case 12223: case 12235: case 12247: case 12259: case 12271: case 12283: case 12295: case 12307: case 12319: case 12331: case 12343: case 12355: case 12367: case 12379: case 12391: case 12403: case 12415: case 12427: case 12439: case 12451: case 12463: case 12475: return West::None; + default: return West::Tall; + } + } + } + namespace Grass + { + } + namespace GrassBlock + { + short GrassBlock() + { + return 9; + } + bool Snowy(short ID) + { + switch (ID) + { + case 9: return false; + default: return true; + } + } + } + namespace GrassPath + { + } + namespace Gravel + { + } + namespace GrayBanner + { + short GrayBanner() + { + return 8009; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 8009: return 0; + case 8010: return 1; + case 8019: return 10; + case 8020: return 11; + case 8021: return 12; + case 8022: return 13; + case 8023: return 14; + case 8024: return 15; + case 8011: return 2; + case 8012: return 3; + case 8013: return 4; + case 8014: return 5; + case 8015: return 6; + case 8016: return 7; + case 8017: return 8; + default: return 9; + } + } + } + namespace GrayBed + { + short GrayBed() + { + return 1164; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1171: case 1172: case 1169: case 1170: return eBlockFace::BLOCK_FACE_XM; + case 1175: case 1173: case 1174: case 1176: return eBlockFace::BLOCK_FACE_XP; + case 1164: case 1161: case 1162: case 1163: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1167: case 1171: case 1175: case 1164: case 1168: case 1172: case 1163: case 1176: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1164: case 1168: case 1172: case 1162: case 1166: case 1170: case 1174: case 1176: return Part::Foot; + default: return Part::Head; + } + } + } + namespace GrayCarpet + { + } + namespace GrayConcrete + { + } + namespace GrayConcretePowder + { + } + namespace GrayGlazedTerracotta + { + short GrayGlazedTerracotta() + { + return 9402; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9404: return eBlockFace::BLOCK_FACE_XM; + case 9405: return eBlockFace::BLOCK_FACE_XP; + case 9402: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace GrayShulkerBox + { + short GrayShulkerBox() + { + return 9324; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9323: return eBlockFace::BLOCK_FACE_XM; + case 9321: return eBlockFace::BLOCK_FACE_XP; + case 9325: return eBlockFace::BLOCK_FACE_YM; + case 9324: return eBlockFace::BLOCK_FACE_YP; + case 9320: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace GrayStainedGlass + { + } + namespace GrayStainedGlassPane + { + short GrayStainedGlassPane() + { + return 7118; + } + bool East(short ID) + { + switch (ID) + { + case 7117: case 7106: case 7110: case 7114: case 7103: case 7107: case 7111: case 7115: case 7104: case 7108: case 7112: case 7116: case 7105: case 7109: case 7113: case 7118: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 7117: case 7098: case 7102: case 7114: case 7095: case 7099: case 7111: case 7115: case 7096: case 7100: case 7112: case 7116: case 7097: case 7101: case 7113: case 7118: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 7117: case 7094: case 7102: case 7110: case 7091: case 7099: case 7107: case 7115: case 7092: case 7100: case 7108: case 7116: case 7093: case 7101: case 7109: case 7118: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7117: case 7090: case 7094: case 7098: case 7102: case 7106: case 7110: case 7114: case 7089: case 7093: case 7097: case 7101: case 7105: case 7109: case 7113: case 7118: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 7090: case 7094: case 7098: case 7102: case 7106: case 7110: case 7114: case 7088: case 7092: case 7096: case 7100: case 7104: case 7108: case 7112: case 7116: case 7118: return false; + default: return true; + } + } + } + namespace GrayTerracotta + { + } + namespace GrayWallBanner + { + short GrayWallBanner() + { + return 8181; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8183: return eBlockFace::BLOCK_FACE_XM; + case 8184: return eBlockFace::BLOCK_FACE_XP; + case 8181: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace GrayWool + { + } + namespace GreenBanner + { + short GreenBanner() + { + return 8105; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 8105: return 0; + case 8106: return 1; + case 8115: return 10; + case 8116: return 11; + case 8117: return 12; + case 8118: return 13; + case 8119: return 14; + case 8120: return 15; + case 8107: return 2; + case 8108: return 3; + case 8109: return 4; + case 8110: return 5; + case 8111: return 6; + case 8112: return 7; + case 8113: return 8; + default: return 9; + } + } + } + namespace GreenBed + { + short GreenBed() + { + return 1260; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1265: case 1266: case 1267: case 1268: return eBlockFace::BLOCK_FACE_XM; + case 1269: case 1270: case 1271: case 1272: return eBlockFace::BLOCK_FACE_XP; + case 1257: case 1258: case 1259: case 1260: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1259: case 1263: case 1267: case 1271: case 1260: case 1264: case 1268: case 1272: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1258: case 1262: case 1266: case 1270: case 1260: case 1264: case 1268: case 1272: return Part::Foot; + default: return Part::Head; + } + } + } + namespace GreenCarpet + { + } + namespace GreenConcrete + { + } + namespace GreenConcretePowder + { + } + namespace GreenGlazedTerracotta + { + short GreenGlazedTerracotta() + { + return 9426; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9428: return eBlockFace::BLOCK_FACE_XM; + case 9429: return eBlockFace::BLOCK_FACE_XP; + case 9426: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace GreenShulkerBox + { + short GreenShulkerBox() + { + return 9360; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9359: return eBlockFace::BLOCK_FACE_XM; + case 9357: return eBlockFace::BLOCK_FACE_XP; + case 9361: return eBlockFace::BLOCK_FACE_YM; + case 9360: return eBlockFace::BLOCK_FACE_YP; + case 9356: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace GreenStainedGlass + { + } + namespace GreenStainedGlassPane + { + short GreenStainedGlassPane() + { + return 7310; + } + bool East(short ID) + { + switch (ID) + { + case 7303: case 7307: case 7296: case 7300: case 7304: case 7308: case 7297: case 7301: case 7305: case 7309: case 7298: case 7302: case 7306: case 7295: case 7299: case 7310: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 7303: case 7307: case 7288: case 7292: case 7304: case 7308: case 7289: case 7293: case 7305: case 7309: case 7290: case 7294: case 7306: case 7287: case 7291: case 7310: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 7307: case 7284: case 7292: case 7300: case 7308: case 7285: case 7293: case 7301: case 7309: case 7286: case 7294: case 7302: case 7283: case 7291: case 7299: case 7310: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7281: case 7285: case 7289: case 7293: case 7297: case 7301: case 7305: case 7309: case 7282: case 7286: case 7290: case 7294: case 7298: case 7302: case 7306: case 7310: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 7280: case 7284: case 7288: case 7292: case 7296: case 7300: case 7304: case 7308: case 7282: case 7286: case 7290: case 7294: case 7298: case 7302: case 7306: case 7310: return false; + default: return true; + } + } + } + namespace GreenTerracotta + { + } + namespace GreenWallBanner + { + short GreenWallBanner() + { + return 8205; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8207: return eBlockFace::BLOCK_FACE_XM; + case 8208: return eBlockFace::BLOCK_FACE_XP; + case 8205: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace GreenWool + { + } + namespace Grindstone + { + short Grindstone() + { + return 14825; + } + enum Face Face(short ID) + { + switch (ID) + { + case 14830: case 14832: case 14829: case 14831: return Face::Ceiling; + case 14822: case 14824: case 14821: case 14823: return Face::Floor; + default: return Face::Wall; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 14823: case 14827: case 14831: return eBlockFace::BLOCK_FACE_XM; + case 14824: case 14828: case 14832: return eBlockFace::BLOCK_FACE_XP; + case 14821: case 14825: case 14829: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace HayBale + { + short HayBale() + { + return 7864; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 7863: return Axis::X; + case 7864: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace HeavyWeightedPressurePlate + { + short HeavyWeightedPressurePlate() + { + return 6662; + } + unsigned char Power(short ID) + { + switch (ID) + { + case 6662: return 0; + case 6663: return 1; + case 6672: return 10; + case 6673: return 11; + case 6674: return 12; + case 6675: return 13; + case 6676: return 14; + case 6677: return 15; + case 6664: return 2; + case 6665: return 3; + case 6666: return 4; + case 6667: return 5; + case 6668: return 6; + case 6669: return 7; + case 6670: return 8; + default: return 9; + } + } + } + namespace HoneyBlock + { + } + namespace HoneycombBlock + { + } + namespace Hopper + { + short Hopper() + { + return 6728; + } + bool Enabled(short ID) + { + switch (ID) + { + case 6736: case 6737: case 6733: case 6734: case 6735: return false; + default: return true; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6736: case 6731: return eBlockFace::BLOCK_FACE_XM; + case 6737: case 6732: return eBlockFace::BLOCK_FACE_XP; + case 6728: case 6733: return eBlockFace::BLOCK_FACE_YM; + case 6729: case 6734: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace HornCoral + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9539: return false; + default: return true; + } + } + } + namespace HornCoralBlock + { + } + namespace HornCoralFan + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9559: return false; + default: return true; + } + } + } + namespace HornCoralWallFan + { + short HornCoralWallFan() + { + return 9632; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9636: case 9637: return eBlockFace::BLOCK_FACE_XM; + case 9638: case 9639: return eBlockFace::BLOCK_FACE_XP; + case 9632: case 9633: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9635: case 9633: case 9637: case 9639: return false; + default: return true; + } + } + } + namespace Ice + { + } + namespace InfestedChiseledStoneBricks + { + } + namespace InfestedCobblestone + { + } + namespace InfestedCrackedStoneBricks + { + } + namespace InfestedMossyStoneBricks + { + } + namespace InfestedStone + { + } + namespace InfestedStoneBricks + { + } + namespace IronBars + { + short IronBars() + { + return 4728; + } + bool East(short ID) + { + switch (ID) + { + case 4715: case 4719: case 4723: case 4727: case 4716: case 4720: case 4724: case 4713: case 4717: case 4721: case 4725: case 4714: case 4718: case 4722: case 4726: case 4728: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 4707: case 4711: case 4723: case 4727: case 4708: case 4712: case 4724: case 4705: case 4709: case 4721: case 4725: case 4706: case 4710: case 4722: case 4726: case 4728: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 4703: case 4711: case 4719: case 4727: case 4704: case 4712: case 4720: case 4701: case 4709: case 4717: case 4725: case 4702: case 4710: case 4718: case 4726: case 4728: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 4699: case 4703: case 4707: case 4711: case 4715: case 4719: case 4723: case 4727: case 4700: case 4704: case 4708: case 4712: case 4716: case 4720: case 4724: case 4728: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 4700: case 4704: case 4708: case 4712: case 4716: case 4720: case 4724: case 4698: case 4702: case 4706: case 4710: case 4714: case 4718: case 4722: case 4726: case 4728: return false; + default: return true; + } + } + } + namespace IronBlock + { + } + namespace IronDoor + { + short IronDoor() + { + return 3820; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 3847: case 3855: case 3848: case 3856: case 3841: case 3849: case 3842: case 3850: case 3843: case 3851: case 3844: case 3852: case 3845: case 3853: case 3846: case 3854: return eBlockFace::BLOCK_FACE_XM; + case 3862: case 3870: case 3863: case 3871: case 3864: case 3857: case 3865: case 3858: case 3866: case 3859: case 3867: case 3860: case 3868: case 3861: case 3869: case 3872: return eBlockFace::BLOCK_FACE_XP; + case 3815: case 3823: case 3816: case 3824: case 3809: case 3817: case 3810: case 3818: case 3811: case 3819: case 3812: case 3820: case 3813: case 3821: case 3814: case 3822: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 3870: case 3823: case 3839: case 3855: case 3871: case 3824: case 3840: case 3856: case 3817: case 3833: case 3849: case 3865: case 3818: case 3834: case 3850: case 3866: case 3819: case 3835: case 3851: case 3867: case 3820: case 3836: case 3852: case 3868: case 3821: case 3837: case 3853: case 3869: case 3822: case 3838: case 3854: case 3872: return Half::Lower; + default: return Half::Upper; + } + } + enum Hinge Hinge(short ID) + { + switch (ID) + { + case 3809: case 3817: case 3825: case 3833: case 3841: case 3849: case 3857: case 3865: case 3810: case 3818: case 3826: case 3834: case 3842: case 3850: case 3858: case 3866: case 3811: case 3819: case 3827: case 3835: case 3843: case 3851: case 3859: case 3867: case 3812: case 3820: case 3828: case 3836: case 3844: case 3852: case 3860: case 3868: return Hinge::Left; + default: return Hinge::Right; + } + } + bool Open(short ID) + { + switch (ID) + { + case 3815: case 3823: case 3831: case 3839: case 3847: case 3855: case 3863: case 3871: case 3816: case 3824: case 3832: case 3840: case 3848: case 3856: case 3864: case 3811: case 3819: case 3827: case 3835: case 3843: case 3851: case 3859: case 3867: case 3812: case 3820: case 3828: case 3836: case 3844: case 3852: case 3860: case 3868: case 3872: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 3862: case 3870: case 3816: case 3824: case 3832: case 3840: case 3848: case 3856: case 3864: case 3810: case 3818: case 3826: case 3834: case 3842: case 3850: case 3858: case 3866: case 3812: case 3820: case 3828: case 3836: case 3844: case 3852: case 3860: case 3868: case 3814: case 3822: case 3830: case 3838: case 3846: case 3854: case 3872: return false; + default: return true; + } + } + } + namespace IronOre + { + } + namespace IronTrapdoor + { + short IronTrapdoor() + { + return 7552; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 7582: case 7583: case 7584: case 7569: case 7570: case 7571: case 7572: case 7573: case 7574: case 7575: case 7576: case 7577: case 7578: case 7579: case 7580: case 7581: return eBlockFace::BLOCK_FACE_XM; + case 7597: case 7598: case 7599: case 7585: case 7586: case 7587: case 7588: case 7589: case 7590: case 7591: case 7592: case 7593: case 7594: case 7595: case 7596: case 7600: return eBlockFace::BLOCK_FACE_XP; + case 7550: case 7551: case 7552: case 7537: case 7538: case 7539: case 7540: case 7541: case 7542: case 7543: case 7544: case 7545: case 7546: case 7547: case 7548: case 7549: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 7597: case 7550: case 7566: case 7582: case 7598: case 7551: case 7567: case 7583: case 7599: case 7552: case 7568: case 7584: case 7545: case 7561: case 7577: case 7593: case 7546: case 7562: case 7578: case 7594: case 7547: case 7563: case 7579: case 7595: case 7548: case 7564: case 7580: case 7596: case 7549: case 7565: case 7581: case 7600: return Half::Bottom; + default: return Half::Top; + } + } + bool Open(short ID) + { + switch (ID) + { + case 7597: case 7550: case 7566: case 7582: case 7598: case 7551: case 7567: case 7583: case 7599: case 7552: case 7568: case 7584: case 7541: case 7557: case 7573: case 7589: case 7542: case 7558: case 7574: case 7590: case 7543: case 7559: case 7575: case 7591: case 7544: case 7560: case 7576: case 7592: case 7549: case 7565: case 7581: case 7600: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 7551: case 7567: case 7583: case 7599: case 7552: case 7568: case 7584: case 7539: case 7555: case 7571: case 7587: case 7540: case 7556: case 7572: case 7588: case 7543: case 7559: case 7575: case 7591: case 7544: case 7560: case 7576: case 7592: case 7547: case 7563: case 7579: case 7595: case 7548: case 7564: case 7580: case 7596: case 7600: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7550: case 7566: case 7582: case 7598: case 7552: case 7568: case 7584: case 7538: case 7554: case 7570: case 7586: case 7540: case 7556: case 7572: case 7588: case 7542: case 7558: case 7574: case 7590: case 7544: case 7560: case 7576: case 7592: case 7546: case 7562: case 7578: case 7594: case 7548: case 7564: case 7580: case 7596: case 7600: return false; + default: return true; + } + } + } + namespace JackOLantern + { + short JackOLantern() + { + return 4020; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 4022: return eBlockFace::BLOCK_FACE_XM; + case 4023: return eBlockFace::BLOCK_FACE_XP; + case 4020: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace Jigsaw + { + short Jigsaw() + { + return 15749; + } + enum Orientation Orientation(short ID) + { + switch (ID) + { + case 15739: return Orientation::DownEast; + case 15740: return Orientation::DownNorth; + case 15741: return Orientation::DownSouth; + case 15742: return Orientation::DownWest; + case 15748: return Orientation::EastUp; + case 15749: return Orientation::NorthUp; + case 15750: return Orientation::SouthUp; + case 15743: return Orientation::UpEast; + case 15744: return Orientation::UpNorth; + case 15745: return Orientation::UpSouth; + case 15746: return Orientation::UpWest; + default: return Orientation::WestUp; + } + } + } + namespace Jukebox + { + short Jukebox() + { + return 3965; + } + bool HasRecord(short ID) + { + switch (ID) + { + case 3965: return false; + default: return true; + } + } + } + namespace JungleButton + { + short JungleButton() + { + return 6427; + } + enum Face Face(short ID) + { + switch (ID) + { + case 6435: case 6439: case 6436: case 6440: case 6437: case 6441: case 6434: case 6438: return Face::Ceiling; + case 6420: case 6424: case 6421: case 6425: case 6418: case 6422: case 6419: case 6423: return Face::Floor; + default: return Face::Wall; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6439: case 6422: case 6430: case 6438: case 6423: case 6431: return eBlockFace::BLOCK_FACE_XM; + case 6424: case 6432: case 6440: case 6425: case 6433: case 6441: return eBlockFace::BLOCK_FACE_XP; + case 6435: case 6418: case 6426: case 6434: case 6419: case 6427: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 6435: case 6439: case 6421: case 6425: case 6429: case 6433: case 6437: case 6441: case 6419: case 6423: case 6427: case 6431: return false; + default: return true; + } + } + } + namespace JungleDoor + { + short JungleDoor() + { + return 8877; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8898: case 8899: case 8900: case 8901: case 8902: case 8903: case 8904: case 8905: case 8906: case 8907: case 8908: case 8909: case 8910: case 8911: case 8912: case 8913: return eBlockFace::BLOCK_FACE_XM; + case 8924: case 8925: case 8926: case 8927: case 8928: case 8914: case 8915: case 8916: case 8917: case 8918: case 8919: case 8920: case 8921: case 8922: case 8923: case 8929: return eBlockFace::BLOCK_FACE_XP; + case 8866: case 8867: case 8868: case 8869: case 8870: case 8871: case 8872: case 8873: case 8874: case 8875: case 8876: case 8877: case 8878: case 8879: case 8880: case 8881: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 8892: case 8924: case 8893: case 8925: case 8894: case 8926: case 8895: case 8927: case 8896: case 8928: case 8897: case 8874: case 8906: case 8875: case 8907: case 8876: case 8908: case 8877: case 8909: case 8878: case 8910: case 8879: case 8911: case 8880: case 8912: case 8881: case 8913: case 8890: case 8922: case 8891: case 8923: case 8929: return Half::Lower; + default: return Half::Upper; + } + } + enum Hinge Hinge(short ID) + { + switch (ID) + { + case 8892: case 8924: case 8893: case 8925: case 8866: case 8898: case 8867: case 8899: case 8868: case 8900: case 8869: case 8901: case 8874: case 8906: case 8875: case 8907: case 8876: case 8908: case 8877: case 8909: case 8882: case 8914: case 8883: case 8915: case 8884: case 8916: case 8885: case 8917: case 8890: case 8922: case 8891: case 8923: return Hinge::Left; + default: return Hinge::Right; + } + } + bool Open(short ID) + { + switch (ID) + { + case 8892: case 8924: case 8893: case 8925: case 8896: case 8928: case 8897: case 8868: case 8900: case 8869: case 8901: case 8872: case 8904: case 8873: case 8905: case 8876: case 8908: case 8877: case 8909: case 8880: case 8912: case 8881: case 8913: case 8884: case 8916: case 8885: case 8917: case 8888: case 8920: case 8889: case 8921: case 8929: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 8893: case 8925: case 8895: case 8927: case 8897: case 8867: case 8899: case 8869: case 8901: case 8871: case 8903: case 8873: case 8905: case 8875: case 8907: case 8877: case 8909: case 8879: case 8911: case 8881: case 8913: case 8883: case 8915: case 8885: case 8917: case 8887: case 8919: case 8889: case 8921: case 8891: case 8923: case 8929: return false; + default: return true; + } + } + } + namespace JungleFence + { + short JungleFence() + { + return 8673; + } + bool East(short ID) + { + switch (ID) + { + case 8662: case 8670: case 8663: case 8671: case 8664: case 8672: case 8665: case 8658: case 8666: case 8659: case 8667: case 8660: case 8668: case 8661: case 8669: case 8673: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 8654: case 8670: case 8655: case 8671: case 8656: case 8672: case 8657: case 8650: case 8666: case 8651: case 8667: case 8652: case 8668: case 8653: case 8669: case 8673: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 8646: case 8654: case 8662: case 8670: case 8647: case 8655: case 8663: case 8671: case 8648: case 8656: case 8664: case 8672: case 8649: case 8657: case 8665: case 8673: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8648: case 8656: case 8664: case 8672: case 8649: case 8657: case 8665: case 8644: case 8652: case 8660: case 8668: case 8645: case 8653: case 8661: case 8669: case 8673: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 8647: case 8655: case 8663: case 8671: case 8649: case 8657: case 8665: case 8643: case 8651: case 8659: case 8667: case 8645: case 8653: case 8661: case 8669: case 8673: return false; + default: return true; + } + } + } + namespace JungleFenceGate + { + short JungleFenceGate() + { + return 8489; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8499: case 8500: case 8501: case 8502: case 8503: case 8504: case 8505: case 8498: return eBlockFace::BLOCK_FACE_XM; + case 8507: case 8508: case 8509: case 8510: case 8511: case 8512: case 8506: case 8513: return eBlockFace::BLOCK_FACE_XP; + case 8484: case 8485: case 8486: case 8487: case 8488: case 8489: case 8482: case 8483: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool InWall(short ID) + { + switch (ID) + { + case 8486: case 8494: case 8502: case 8510: case 8487: case 8495: case 8503: case 8511: case 8488: case 8496: case 8504: case 8512: case 8489: case 8497: case 8505: case 8513: return false; + default: return true; + } + } + bool Open(short ID) + { + switch (ID) + { + case 8484: case 8492: case 8500: case 8508: case 8485: case 8493: case 8501: case 8509: case 8488: case 8496: case 8504: case 8512: case 8489: case 8497: case 8505: case 8513: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 8491: case 8499: case 8507: case 8485: case 8493: case 8501: case 8509: case 8487: case 8495: case 8503: case 8511: case 8489: case 8497: case 8505: case 8483: case 8513: return false; + default: return true; + } + } + } + namespace JungleLeaves + { + short JungleLeaves() + { + return 200; + } + unsigned char Distance(short ID) + { + switch (ID) + { + case 187: case 188: return 1; + case 189: case 190: return 2; + case 191: case 192: return 3; + case 193: case 194: return 4; + case 195: case 196: return 5; + case 198: case 197: return 6; + default: return 7; + } + } + bool Persistent(short ID) + { + switch (ID) + { + case 198: case 192: case 200: case 194: case 188: case 196: case 190: return false; + default: return true; + } + } + } + namespace JungleLog + { + short JungleLog() + { + return 83; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 82: return Axis::X; + case 83: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace JunglePlanks + { + } + namespace JunglePressurePlate + { + short JunglePressurePlate() + { + return 3880; + } + bool Powered(short ID) + { + switch (ID) + { + case 3880: return false; + default: return true; + } + } + } + namespace JungleSapling + { + short JungleSapling() + { + return 27; + } + unsigned char Stage(short ID) + { + switch (ID) + { + case 27: return 0; + default: return 1; + } + } + } + namespace JungleSign + { + short JungleSign() + { + return 3510; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 3509: case 3510: return 0; + case 3511: case 3512: return 1; + case 3530: case 3529: return 10; + case 3532: case 3531: return 11; + case 3534: case 3533: return 12; + case 3536: case 3535: return 13; + case 3538: case 3537: return 14; + case 3539: case 3540: return 15; + case 3514: case 3513: return 2; + case 3516: case 3515: return 3; + case 3518: case 3517: return 4; + case 3520: case 3519: return 5; + case 3522: case 3521: return 6; + case 3524: case 3523: return 7; + case 3526: case 3525: return 8; + default: return 9; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 3514: case 3516: case 3518: case 3520: case 3522: case 3524: case 3526: case 3528: case 3530: case 3532: case 3534: case 3536: case 3538: case 3510: case 3512: case 3540: return false; + default: return true; + } + } + } + namespace JungleSlab + { + short JungleSlab() + { + return 8321; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8320: case 8321: return Type::Bottom; + case 8322: case 8323: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8319: case 8323: case 8321: return false; + default: return true; + } + } + } + namespace JungleStairs + { + short JungleStairs() + { + return 5575; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 5604: case 5605: case 5606: case 5607: case 5608: case 5609: case 5610: case 5611: case 5612: case 5613: case 5614: case 5615: case 5616: case 5617: case 5618: case 5619: case 5620: case 5621: case 5622: case 5623: return eBlockFace::BLOCK_FACE_XM; + case 5624: case 5625: case 5626: case 5627: case 5628: case 5629: case 5630: case 5631: case 5632: case 5633: case 5634: case 5635: case 5636: case 5637: case 5638: case 5639: case 5640: case 5641: case 5642: case 5643: return eBlockFace::BLOCK_FACE_XP; + case 5564: case 5565: case 5566: case 5567: case 5568: case 5569: case 5570: case 5571: case 5572: case 5573: case 5574: case 5575: case 5576: case 5577: case 5578: case 5579: case 5580: case 5581: case 5582: case 5583: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 5594: case 5595: case 5596: case 5597: case 5598: case 5599: case 5600: case 5601: case 5602: case 5603: case 5614: case 5615: case 5616: case 5617: case 5618: case 5619: case 5620: case 5621: case 5622: case 5623: case 5634: case 5635: case 5636: case 5637: case 5574: case 5638: case 5575: case 5639: case 5576: case 5640: case 5577: case 5641: case 5578: case 5642: case 5579: case 5643: case 5580: case 5581: case 5582: case 5583: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 5586: case 5587: case 5596: case 5597: case 5606: case 5607: case 5616: case 5617: case 5626: case 5627: case 5566: case 5567: case 5636: case 5637: case 5576: case 5577: return Shape::InnerLeft; + case 5588: case 5589: case 5598: case 5599: case 5608: case 5609: case 5618: case 5619: case 5628: case 5629: case 5568: case 5569: case 5638: case 5639: case 5578: case 5579: return Shape::InnerRight; + case 5590: case 5591: case 5600: case 5601: case 5610: case 5611: case 5620: case 5621: case 5630: case 5631: case 5570: case 5571: case 5640: case 5641: case 5580: case 5581: return Shape::OuterLeft; + case 5592: case 5593: case 5602: case 5603: case 5612: case 5613: case 5622: case 5623: case 5632: case 5633: case 5572: case 5573: case 5642: case 5643: case 5582: case 5583: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 5585: case 5587: case 5589: case 5591: case 5593: case 5595: case 5597: case 5599: case 5601: case 5603: case 5605: case 5607: case 5609: case 5611: case 5613: case 5615: case 5617: case 5619: case 5621: case 5623: case 5625: case 5627: case 5565: case 5629: case 5567: case 5631: case 5569: case 5633: case 5571: case 5635: case 5573: case 5637: case 5575: case 5639: case 5577: case 5641: case 5579: case 5643: case 5581: case 5583: return false; + default: return true; + } + } + } + namespace JungleTrapdoor + { + short JungleTrapdoor() + { + return 4318; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 4337: case 4338: case 4339: case 4340: case 4341: case 4342: case 4343: case 4344: case 4345: case 4346: case 4347: case 4348: case 4349: case 4350: case 4335: case 4336: return eBlockFace::BLOCK_FACE_XM; + case 4353: case 4354: case 4355: case 4356: case 4357: case 4358: case 4359: case 4360: case 4361: case 4362: case 4363: case 4364: case 4365: case 4351: case 4352: case 4366: return eBlockFace::BLOCK_FACE_XP; + case 4306: case 4307: case 4308: case 4309: case 4310: case 4311: case 4312: case 4313: case 4314: case 4315: case 4316: case 4317: case 4318: case 4303: case 4304: case 4305: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 4311: case 4327: case 4343: case 4359: case 4312: case 4328: case 4344: case 4360: case 4313: case 4329: case 4345: case 4361: case 4314: case 4330: case 4346: case 4362: case 4315: case 4331: case 4347: case 4363: case 4316: case 4332: case 4348: case 4364: case 4317: case 4333: case 4349: case 4365: case 4318: case 4334: case 4350: case 4366: return Half::Bottom; + default: return Half::Top; + } + } + bool Open(short ID) + { + switch (ID) + { + case 4307: case 4323: case 4339: case 4355: case 4308: case 4324: case 4340: case 4356: case 4309: case 4325: case 4341: case 4357: case 4310: case 4326: case 4342: case 4358: case 4315: case 4331: case 4347: case 4363: case 4316: case 4332: case 4348: case 4364: case 4317: case 4333: case 4349: case 4365: case 4318: case 4334: case 4350: case 4366: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 4321: case 4337: case 4353: case 4306: case 4322: case 4338: case 4354: case 4309: case 4325: case 4341: case 4357: case 4310: case 4326: case 4342: case 4358: case 4313: case 4329: case 4345: case 4361: case 4314: case 4330: case 4346: case 4362: case 4317: case 4333: case 4349: case 4365: case 4318: case 4334: case 4350: case 4305: case 4366: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 4306: case 4322: case 4338: case 4354: case 4308: case 4324: case 4340: case 4356: case 4310: case 4326: case 4342: case 4358: case 4312: case 4328: case 4344: case 4360: case 4314: case 4330: case 4346: case 4362: case 4316: case 4332: case 4348: case 4364: case 4318: case 4334: case 4350: case 4304: case 4320: case 4336: case 4352: case 4366: return false; + default: return true; + } + } + } + namespace JungleWallSign + { + short JungleWallSign() + { + return 3768; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 3771: case 3772: return eBlockFace::BLOCK_FACE_XM; + case 3773: case 3774: return eBlockFace::BLOCK_FACE_XP; + case 3767: case 3768: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 3772: case 3768: case 3770: case 3774: return false; + default: return true; + } + } + } + namespace JungleWood + { + short JungleWood() + { + return 119; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 118: return Axis::X; + case 119: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace Kelp + { + short Kelp() + { + return 9470; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 9470: return 0; + case 9471: return 1; + case 9480: return 10; + case 9481: return 11; + case 9482: return 12; + case 9483: return 13; + case 9484: return 14; + case 9485: return 15; + case 9486: return 16; + case 9487: return 17; + case 9488: return 18; + case 9489: return 19; + case 9472: return 2; + case 9490: return 20; + case 9491: return 21; + case 9492: return 22; + case 9493: return 23; + case 9494: return 24; + case 9495: return 25; + case 9473: return 3; + case 9474: return 4; + case 9475: return 5; + case 9476: return 6; + case 9477: return 7; + case 9478: return 8; + default: return 9; + } + } + } + namespace KelpPlant + { + } + namespace Ladder + { + short Ladder() + { + return 3638; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 3641: case 3642: return eBlockFace::BLOCK_FACE_XM; + case 3643: case 3644: return eBlockFace::BLOCK_FACE_XP; + case 3638: case 3637: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 3638: case 3640: case 3642: case 3644: return false; + default: return true; + } + } + } + namespace Lantern + { + short Lantern() + { + return 14887; + } + bool Hanging(short ID) + { + switch (ID) + { + case 14887: return false; + default: return true; + } + } + } + namespace LapisBlock + { + } + namespace LapisOre + { + } + namespace LargeFern + { + short LargeFern() + { + return 7896; + } + enum Half Half(short ID) + { + switch (ID) + { + case 7896: return Half::Lower; + default: return Half::Upper; + } + } + } + namespace Lava + { + short Lava() + { + return 50; + } + unsigned char Level(short ID) + { + switch (ID) + { + case 50: return 0; + case 51: return 1; + case 60: return 10; + case 61: return 11; + case 62: return 12; + case 63: return 13; + case 64: return 14; + case 65: return 15; + case 52: return 2; + case 53: return 3; + case 54: return 4; + case 55: return 5; + case 56: return 6; + case 57: return 7; + case 58: return 8; + default: return 9; + } + } + } + namespace Lectern + { + short Lectern() + { + return 14836; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 14841: case 14843: case 14842: case 14844: return eBlockFace::BLOCK_FACE_XM; + case 14845: case 14847: case 14846: case 14848: return eBlockFace::BLOCK_FACE_XP; + case 14835: case 14834: case 14836: case 14833: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool HasBook(short ID) + { + switch (ID) + { + case 14835: case 14839: case 14843: case 14847: case 14836: case 14840: case 14844: case 14848: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 14834: case 14836: case 14838: case 14840: case 14842: case 14844: case 14846: case 14848: return false; + default: return true; + } + } + } + namespace Lever + { + short Lever() + { + return 3792; + } + enum Face Face(short ID) + { + switch (ID) + { + case 3799: case 3801: case 3803: case 3805: case 3800: case 3802: case 3804: case 3806: return Face::Ceiling; + case 3784: case 3786: case 3788: case 3790: case 3783: case 3785: case 3787: case 3789: return Face::Floor; + default: return Face::Wall; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 3795: case 3803: case 3788: case 3796: case 3804: case 3787: return eBlockFace::BLOCK_FACE_XM; + case 3797: case 3805: case 3790: case 3798: case 3806: case 3789: return eBlockFace::BLOCK_FACE_XP; + case 3799: case 3784: case 3792: case 3800: case 3783: case 3791: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 3784: case 3786: case 3788: case 3790: case 3792: case 3794: case 3796: case 3798: case 3800: case 3802: case 3804: case 3806: return false; + default: return true; + } + } + } + namespace LightBlueBanner + { + short LightBlueBanner() + { + return 7945; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 7945: return 0; + case 7946: return 1; + case 7955: return 10; + case 7956: return 11; + case 7957: return 12; + case 7958: return 13; + case 7959: return 14; + case 7960: return 15; + case 7947: return 2; + case 7948: return 3; + case 7949: return 4; + case 7950: return 5; + case 7951: return 6; + case 7952: return 7; + case 7953: return 8; + default: return 9; + } + } + } + namespace LightBlueBed + { + short LightBlueBed() + { + return 1100; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1107: case 1108: case 1105: case 1106: return eBlockFace::BLOCK_FACE_XM; + case 1111: case 1109: case 1110: case 1112: return eBlockFace::BLOCK_FACE_XP; + case 1100: case 1097: case 1098: case 1099: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1107: case 1111: case 1100: case 1104: case 1108: case 1099: case 1103: case 1112: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1100: case 1104: case 1108: case 1098: case 1102: case 1106: case 1110: case 1112: return Part::Foot; + default: return Part::Head; + } + } + } + namespace LightBlueCarpet + { + } + namespace LightBlueConcrete + { + } + namespace LightBlueConcretePowder + { + } + namespace LightBlueGlazedTerracotta + { + short LightBlueGlazedTerracotta() + { + return 9386; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9388: return eBlockFace::BLOCK_FACE_XM; + case 9389: return eBlockFace::BLOCK_FACE_XP; + case 9386: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace LightBlueShulkerBox + { + short LightBlueShulkerBox() + { + return 9300; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9299: return eBlockFace::BLOCK_FACE_XM; + case 9297: return eBlockFace::BLOCK_FACE_XP; + case 9301: return eBlockFace::BLOCK_FACE_YM; + case 9300: return eBlockFace::BLOCK_FACE_YP; + case 9296: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace LightBlueStainedGlass + { + } + namespace LightBlueStainedGlassPane + { + short LightBlueStainedGlassPane() + { + return 6990; + } + bool East(short ID) + { + switch (ID) + { + case 6978: case 6982: case 6986: case 6975: case 6979: case 6983: case 6987: case 6976: case 6980: case 6984: case 6988: case 6977: case 6981: case 6985: case 6989: case 6990: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 6970: case 6974: case 6986: case 6967: case 6971: case 6983: case 6987: case 6968: case 6972: case 6984: case 6988: case 6969: case 6973: case 6985: case 6989: case 6990: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 6966: case 6974: case 6982: case 6963: case 6971: case 6979: case 6987: case 6964: case 6972: case 6980: case 6988: case 6965: case 6973: case 6981: case 6989: case 6990: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 6962: case 6966: case 6970: case 6974: case 6978: case 6982: case 6986: case 6961: case 6965: case 6969: case 6973: case 6977: case 6981: case 6985: case 6989: case 6990: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 6962: case 6966: case 6970: case 6974: case 6978: case 6982: case 6986: case 6960: case 6964: case 6968: case 6972: case 6976: case 6980: case 6984: case 6988: case 6990: return false; + default: return true; + } + } + } + namespace LightBlueTerracotta + { + } + namespace LightBlueWallBanner + { + short LightBlueWallBanner() + { + return 8165; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8167: return eBlockFace::BLOCK_FACE_XM; + case 8168: return eBlockFace::BLOCK_FACE_XP; + case 8165: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace LightBlueWool + { + } + namespace LightGrayBanner + { + short LightGrayBanner() + { + return 8025; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 8025: return 0; + case 8026: return 1; + case 8035: return 10; + case 8036: return 11; + case 8037: return 12; + case 8038: return 13; + case 8039: return 14; + case 8040: return 15; + case 8027: return 2; + case 8028: return 3; + case 8029: return 4; + case 8030: return 5; + case 8031: return 6; + case 8032: return 7; + case 8033: return 8; + default: return 9; + } + } + } + namespace LightGrayBed + { + short LightGrayBed() + { + return 1180; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1186: case 1187: case 1188: case 1185: return eBlockFace::BLOCK_FACE_XM; + case 1190: case 1191: case 1189: case 1192: return eBlockFace::BLOCK_FACE_XP; + case 1179: case 1180: case 1177: case 1178: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1179: case 1183: case 1187: case 1191: case 1180: case 1184: case 1188: case 1192: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1182: case 1186: case 1190: case 1180: case 1184: case 1188: case 1178: case 1192: return Part::Foot; + default: return Part::Head; + } + } + } + namespace LightGrayCarpet + { + } + namespace LightGrayConcrete + { + } + namespace LightGrayConcretePowder + { + } + namespace LightGrayGlazedTerracotta + { + short LightGrayGlazedTerracotta() + { + return 9406; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9408: return eBlockFace::BLOCK_FACE_XM; + case 9409: return eBlockFace::BLOCK_FACE_XP; + case 9406: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace LightGrayShulkerBox + { + short LightGrayShulkerBox() + { + return 9330; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9329: return eBlockFace::BLOCK_FACE_XM; + case 9327: return eBlockFace::BLOCK_FACE_XP; + case 9331: return eBlockFace::BLOCK_FACE_YM; + case 9330: return eBlockFace::BLOCK_FACE_YP; + case 9326: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace LightGrayStainedGlass + { + } + namespace LightGrayStainedGlassPane + { + short LightGrayStainedGlassPane() + { + return 7150; + } + bool East(short ID) + { + switch (ID) + { + case 7148: case 7137: case 7141: case 7145: case 7149: case 7138: case 7142: case 7146: case 7135: case 7139: case 7143: case 7147: case 7136: case 7140: case 7144: case 7150: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 7148: case 7129: case 7133: case 7145: case 7149: case 7130: case 7134: case 7146: case 7127: case 7131: case 7143: case 7147: case 7128: case 7132: case 7144: case 7150: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 7148: case 7125: case 7133: case 7141: case 7149: case 7126: case 7134: case 7142: case 7123: case 7131: case 7139: case 7147: case 7124: case 7132: case 7140: case 7150: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7121: case 7125: case 7129: case 7133: case 7137: case 7141: case 7145: case 7149: case 7122: case 7126: case 7130: case 7134: case 7138: case 7142: case 7146: case 7150: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 7148: case 7122: case 7126: case 7130: case 7134: case 7138: case 7142: case 7146: case 7120: case 7124: case 7128: case 7132: case 7136: case 7140: case 7144: case 7150: return false; + default: return true; + } + } + } + namespace LightGrayTerracotta + { + } + namespace LightGrayWallBanner + { + short LightGrayWallBanner() + { + return 8185; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8187: return eBlockFace::BLOCK_FACE_XM; + case 8188: return eBlockFace::BLOCK_FACE_XP; + case 8185: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace LightGrayWool + { + } + namespace LightWeightedPressurePlate + { + short LightWeightedPressurePlate() + { + return 6646; + } + unsigned char Power(short ID) + { + switch (ID) + { + case 6646: return 0; + case 6647: return 1; + case 6656: return 10; + case 6657: return 11; + case 6658: return 12; + case 6659: return 13; + case 6660: return 14; + case 6661: return 15; + case 6648: return 2; + case 6649: return 3; + case 6650: return 4; + case 6651: return 5; + case 6652: return 6; + case 6653: return 7; + case 6654: return 8; + default: return 9; + } + } + } + namespace Lilac + { + short Lilac() + { + return 7888; + } + enum Half Half(short ID) + { + switch (ID) + { + case 7888: return Half::Lower; + default: return Half::Upper; + } + } + } + namespace LilyOfTheValley + { + } + namespace LilyPad + { + } + namespace LimeBanner + { + short LimeBanner() + { + return 7977; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 7977: return 0; + case 7978: return 1; + case 7987: return 10; + case 7988: return 11; + case 7989: return 12; + case 7990: return 13; + case 7991: return 14; + case 7992: return 15; + case 7979: return 2; + case 7980: return 3; + case 7981: return 4; + case 7982: return 5; + case 7983: return 6; + case 7984: return 7; + case 7985: return 8; + default: return 9; + } + } + } + namespace LimeBed + { + short LimeBed() + { + return 1132; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1137: case 1138: case 1139: case 1140: return eBlockFace::BLOCK_FACE_XM; + case 1141: case 1142: case 1143: case 1144: return eBlockFace::BLOCK_FACE_XP; + case 1130: case 1131: case 1132: case 1129: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1131: case 1135: case 1139: case 1143: case 1132: case 1136: case 1140: case 1144: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1130: case 1134: case 1138: case 1142: case 1132: case 1136: case 1140: case 1144: return Part::Foot; + default: return Part::Head; + } + } + } + namespace LimeCarpet + { + } + namespace LimeConcrete + { + } + namespace LimeConcretePowder + { + } + namespace LimeGlazedTerracotta + { + short LimeGlazedTerracotta() + { + return 9394; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9396: return eBlockFace::BLOCK_FACE_XM; + case 9397: return eBlockFace::BLOCK_FACE_XP; + case 9394: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace LimeShulkerBox + { + short LimeShulkerBox() + { + return 9312; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9311: return eBlockFace::BLOCK_FACE_XM; + case 9309: return eBlockFace::BLOCK_FACE_XP; + case 9313: return eBlockFace::BLOCK_FACE_YM; + case 9312: return eBlockFace::BLOCK_FACE_YP; + case 9308: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace LimeStainedGlass + { + } + namespace LimeStainedGlassPane + { + short LimeStainedGlassPane() + { + return 7054; + } + bool East(short ID) + { + switch (ID) + { + case 7040: case 7044: case 7048: case 7052: case 7041: case 7045: case 7049: case 7053: case 7042: case 7046: case 7050: case 7039: case 7043: case 7047: case 7051: case 7054: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 7032: case 7036: case 7048: case 7052: case 7033: case 7037: case 7049: case 7053: case 7034: case 7038: case 7050: case 7031: case 7035: case 7047: case 7051: case 7054: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 7028: case 7036: case 7044: case 7052: case 7029: case 7037: case 7045: case 7053: case 7030: case 7038: case 7046: case 7027: case 7035: case 7043: case 7051: case 7054: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7025: case 7029: case 7033: case 7037: case 7041: case 7045: case 7049: case 7053: case 7026: case 7030: case 7034: case 7038: case 7042: case 7046: case 7050: case 7054: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 7024: case 7028: case 7032: case 7036: case 7040: case 7044: case 7048: case 7052: case 7026: case 7030: case 7034: case 7038: case 7042: case 7046: case 7050: case 7054: return false; + default: return true; + } + } + } + namespace LimeTerracotta + { + } + namespace LimeWallBanner + { + short LimeWallBanner() + { + return 8173; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8175: return eBlockFace::BLOCK_FACE_XM; + case 8176: return eBlockFace::BLOCK_FACE_XP; + case 8173: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace LimeWool + { + } + namespace Lodestone + { + } + namespace Loom + { + short Loom() + { + return 14787; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 14789: return eBlockFace::BLOCK_FACE_XM; + case 14790: return eBlockFace::BLOCK_FACE_XP; + case 14787: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace MagentaBanner + { + short MagentaBanner() + { + return 7929; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 7929: return 0; + case 7930: return 1; + case 7939: return 10; + case 7940: return 11; + case 7941: return 12; + case 7942: return 13; + case 7943: return 14; + case 7944: return 15; + case 7931: return 2; + case 7932: return 3; + case 7933: return 4; + case 7934: return 5; + case 7935: return 6; + case 7936: return 7; + case 7937: return 8; + default: return 9; + } + } + } + namespace MagentaBed + { + short MagentaBed() + { + return 1084; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1092: case 1089: case 1090: case 1091: return eBlockFace::BLOCK_FACE_XM; + case 1093: case 1094: case 1095: case 1096: return eBlockFace::BLOCK_FACE_XP; + case 1081: case 1082: case 1083: case 1084: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1092: case 1083: case 1087: case 1091: case 1095: case 1084: case 1088: case 1096: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1092: case 1082: case 1086: case 1090: case 1094: case 1084: case 1088: case 1096: return Part::Foot; + default: return Part::Head; + } + } + } + namespace MagentaCarpet + { + } + namespace MagentaConcrete + { + } + namespace MagentaConcretePowder + { + } + namespace MagentaGlazedTerracotta + { + short MagentaGlazedTerracotta() + { + return 9382; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9384: return eBlockFace::BLOCK_FACE_XM; + case 9385: return eBlockFace::BLOCK_FACE_XP; + case 9382: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace MagentaShulkerBox + { + short MagentaShulkerBox() + { + return 9294; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9293: return eBlockFace::BLOCK_FACE_XM; + case 9291: return eBlockFace::BLOCK_FACE_XP; + case 9295: return eBlockFace::BLOCK_FACE_YM; + case 9294: return eBlockFace::BLOCK_FACE_YP; + case 9290: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace MagentaStainedGlass + { + } + namespace MagentaStainedGlassPane + { + short MagentaStainedGlassPane() + { + return 6958; + } + bool East(short ID) + { + switch (ID) + { + case 6943: case 6947: case 6951: case 6955: case 6944: case 6948: case 6952: case 6956: case 6945: case 6949: case 6953: case 6957: case 6946: case 6950: case 6954: case 6958: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 6935: case 6939: case 6951: case 6955: case 6936: case 6940: case 6952: case 6956: case 6937: case 6941: case 6953: case 6957: case 6938: case 6942: case 6954: case 6958: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 6931: case 6939: case 6947: case 6955: case 6932: case 6940: case 6948: case 6956: case 6933: case 6941: case 6949: case 6957: case 6934: case 6942: case 6950: case 6958: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 6929: case 6933: case 6937: case 6941: case 6945: case 6949: case 6953: case 6957: case 6930: case 6934: case 6938: case 6942: case 6946: case 6950: case 6954: case 6958: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 6928: case 6932: case 6936: case 6940: case 6944: case 6948: case 6952: case 6956: case 6930: case 6934: case 6938: case 6942: case 6946: case 6950: case 6954: case 6958: return false; + default: return true; + } + } + } + namespace MagentaTerracotta + { + } + namespace MagentaWallBanner + { + short MagentaWallBanner() + { + return 8161; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8163: return eBlockFace::BLOCK_FACE_XM; + case 8164: return eBlockFace::BLOCK_FACE_XP; + case 8161: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace MagentaWool + { + } + namespace MagmaBlock + { + } + namespace Melon + { + } + namespace MelonStem + { + short MelonStem() + { + return 4780; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 4780: return 0; + case 4781: return 1; + case 4782: return 2; + case 4783: return 3; + case 4784: return 4; + case 4785: return 5; + case 4786: return 6; + default: return 7; + } + } + } + namespace MossyCobblestone + { + } + namespace MossyCobblestoneSlab + { + short MossyCobblestoneSlab() + { + return 10816; + } + enum Type Type(short ID) + { + switch (ID) + { + case 10815: case 10816: return Type::Bottom; + case 10817: case 10818: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10814: case 10818: case 10816: return false; + default: return true; + } + } + } + namespace MossyCobblestoneStairs + { + short MossyCobblestoneStairs() + { + return 10000; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 10029: case 10030: case 10031: case 10032: case 10033: case 10034: case 10035: case 10036: case 10037: case 10038: case 10039: case 10040: case 10041: case 10042: case 10043: case 10044: case 10045: case 10046: case 10047: case 10048: return eBlockFace::BLOCK_FACE_XM; + case 10049: case 10050: case 10051: case 10052: case 10053: case 10054: case 10055: case 10056: case 10057: case 10058: case 10059: case 10060: case 10061: case 10062: case 10063: case 10064: case 10065: case 10066: case 10067: case 10068: return eBlockFace::BLOCK_FACE_XP; + case 9989: case 9990: case 9991: case 9992: case 9993: case 9994: case 9995: case 9996: case 9997: case 9998: case 9999: case 10000: case 10001: case 10002: case 10003: case 10004: case 10005: case 10006: case 10007: case 10008: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 9999: case 10000: case 10001: case 10002: case 10003: case 10004: case 10005: case 10006: case 10007: case 10008: case 10019: case 10020: case 10021: case 10022: case 10023: case 10024: case 10025: case 10026: case 10027: case 10028: case 10039: case 10040: case 10041: case 10042: case 10043: case 10044: case 10045: case 10046: case 10047: case 10048: case 10059: case 10060: case 10061: case 10062: case 10063: case 10064: case 10065: case 10066: case 10067: case 10068: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 9991: case 9992: case 10001: case 10002: case 10011: case 10012: case 10021: case 10022: case 10031: case 10032: case 10041: case 10042: case 10051: case 10052: case 10061: case 10062: return Shape::InnerLeft; + case 9993: case 9994: case 10003: case 10004: case 10013: case 10014: case 10023: case 10024: case 10033: case 10034: case 10043: case 10044: case 10053: case 10054: case 10063: case 10064: return Shape::InnerRight; + case 9995: case 9996: case 10005: case 10006: case 10015: case 10016: case 10025: case 10026: case 10035: case 10036: case 10045: case 10046: case 10055: case 10056: case 10065: case 10066: return Shape::OuterLeft; + case 9997: case 9998: case 10007: case 10008: case 10017: case 10018: case 10027: case 10028: case 10037: case 10038: case 10047: case 10048: case 10057: case 10058: case 10067: case 10068: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9990: case 9992: case 9994: case 9996: case 9998: case 10000: case 10002: case 10004: case 10006: case 10008: case 10010: case 10012: case 10014: case 10016: case 10018: case 10020: case 10022: case 10024: case 10026: case 10028: case 10030: case 10032: case 10034: case 10036: case 10038: case 10040: case 10042: case 10044: case 10046: case 10048: case 10050: case 10052: case 10054: case 10056: case 10058: case 10060: case 10062: case 10064: case 10066: case 10068: return false; + default: return true; + } + } + } + namespace MossyCobblestoneWall + { + short MossyCobblestoneWall() + { + return 5984; + } + enum East East(short ID) + { + switch (ID) + { + case 6090: case 6092: case 6094: case 6096: case 6098: case 6100: case 6102: case 6104: case 6106: case 6108: case 6110: case 6112: case 6114: case 6116: case 6118: case 6120: case 6122: case 6124: case 6126: case 6128: case 6130: case 6132: case 6134: case 6136: case 6138: case 6140: case 6142: case 6144: case 6146: case 6148: case 6150: case 6152: case 6154: case 6156: case 6158: case 6160: case 6162: case 6164: case 6166: case 6168: case 6170: case 6172: case 6174: case 6176: case 6178: case 6180: case 6182: case 6184: case 6186: case 6188: case 6190: case 6192: case 6194: case 6196: case 6089: case 6091: case 6093: case 6095: case 6097: case 6099: case 6101: case 6103: case 6105: case 6107: case 6109: case 6111: case 6113: case 6115: case 6117: case 6119: case 6121: case 6123: case 6125: case 6127: case 6129: case 6131: case 6133: case 6135: case 6137: case 6139: case 6141: case 6143: case 6145: case 6147: case 6149: case 6151: case 6153: case 6155: case 6157: case 6159: case 6161: case 6163: case 6165: case 6167: case 6169: case 6171: case 6173: case 6175: case 6177: case 6179: case 6181: case 6183: case 6185: case 6187: case 6189: case 6191: case 6193: case 6195: return East::Low; + case 6036: case 6038: case 6040: case 6042: case 6044: case 6046: case 6048: case 6050: case 6052: case 6054: case 6056: case 6058: case 6060: case 6062: case 6064: case 6066: case 6068: case 6070: case 6072: case 6074: case 6076: case 6078: case 6080: case 6082: case 6084: case 6086: case 6088: case 5981: case 5983: case 5985: case 5987: case 5989: case 5991: case 5993: case 5995: case 5997: case 5999: case 6001: case 6003: case 6005: case 6007: case 6009: case 6011: case 6013: case 6015: case 6017: case 6019: case 6021: case 6023: case 6025: case 6027: case 6029: case 6031: case 6033: case 6035: case 6037: case 6039: case 6041: case 6043: case 6045: case 6047: case 6049: case 6051: case 6053: case 6055: case 6057: case 6059: case 6061: case 6063: case 6065: case 6067: case 6069: case 6071: case 6073: case 6075: case 6077: case 6079: case 6081: case 6083: case 6085: case 6087: case 5982: case 5984: case 5986: case 5988: case 5990: case 5992: case 5994: case 5996: case 5998: case 6000: case 6002: case 6004: case 6006: case 6008: case 6010: case 6012: case 6014: case 6016: case 6018: case 6020: case 6022: case 6024: case 6026: case 6028: case 6030: case 6032: case 6034: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 6036: case 6038: case 6040: case 6042: case 6044: case 6046: case 6048: case 6050: case 6052: case 6126: case 6128: case 6130: case 6132: case 6134: case 6136: case 6138: case 6140: case 6142: case 6144: case 6146: case 6148: case 6150: case 6152: case 6154: case 6156: case 6158: case 6160: case 6234: case 6236: case 6238: case 6240: case 6242: case 6244: case 6246: case 6248: case 6250: case 6252: case 6254: case 6256: case 6258: case 6260: case 6262: case 6264: case 6266: case 6268: case 6017: case 6019: case 6021: case 6023: case 6025: case 6027: case 6029: case 6031: case 6033: case 6035: case 6037: case 6039: case 6041: case 6043: case 6045: case 6047: case 6049: case 6051: case 6125: case 6127: case 6129: case 6131: case 6133: case 6135: case 6137: case 6139: case 6141: case 6143: case 6145: case 6147: case 6149: case 6151: case 6153: case 6155: case 6157: case 6159: case 6233: case 6235: case 6237: case 6239: case 6241: case 6243: case 6245: case 6247: case 6249: case 6251: case 6253: case 6255: case 6257: case 6259: case 6261: case 6263: case 6265: case 6267: case 6018: case 6020: case 6022: case 6024: case 6026: case 6028: case 6030: case 6032: case 6034: return North::Low; + case 6090: case 6092: case 6094: case 6096: case 6098: case 6100: case 6102: case 6104: case 6106: case 6108: case 6110: case 6112: case 6114: case 6116: case 6118: case 6120: case 6122: case 6124: case 6198: case 6200: case 6202: case 6204: case 6206: case 6208: case 6210: case 6212: case 6214: case 6216: case 6218: case 6220: case 6222: case 6224: case 6226: case 6228: case 6230: case 6232: case 5981: case 5983: case 5985: case 5987: case 5989: case 5991: case 5993: case 5995: case 5997: case 5999: case 6001: case 6003: case 6005: case 6007: case 6009: case 6011: case 6013: case 6015: case 6089: case 6091: case 6093: case 6095: case 6097: case 6099: case 6101: case 6103: case 6105: case 6107: case 6109: case 6111: case 6113: case 6115: case 6117: case 6119: case 6121: case 6123: case 6197: case 6199: case 6201: case 6203: case 6205: case 6207: case 6209: case 6211: case 6213: case 6215: case 6217: case 6219: case 6221: case 6223: case 6225: case 6227: case 6229: case 6231: case 5982: case 5984: case 5986: case 5988: case 5990: case 5992: case 5994: case 5996: case 5998: case 6000: case 6002: case 6004: case 6006: case 6008: case 6010: case 6012: case 6014: case 6016: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 6036: case 6038: case 6040: case 6066: case 6068: case 6070: case 6072: case 6074: case 6076: case 6102: case 6104: case 6106: case 6108: case 6110: case 6112: case 6138: case 6140: case 6142: case 6144: case 6146: case 6148: case 6174: case 6176: case 6178: case 6180: case 6182: case 6184: case 6210: case 6212: case 6214: case 6216: case 6218: case 6220: case 6246: case 6248: case 6250: case 6252: case 6254: case 6256: case 6282: case 6284: case 6286: case 6288: case 6290: case 6292: case 5993: case 5995: case 5997: case 5999: case 6001: case 6003: case 6029: case 6031: case 6033: case 6035: case 6037: case 6039: case 6065: case 6067: case 6069: case 6071: case 6073: case 6075: case 6101: case 6103: case 6105: case 6107: case 6109: case 6111: case 6137: case 6139: case 6141: case 6143: case 6145: case 6147: case 6173: case 6175: case 6177: case 6179: case 6181: case 6183: case 6209: case 6211: case 6213: case 6215: case 6217: case 6219: case 6245: case 6247: case 6249: case 6251: case 6253: case 6255: case 6281: case 6283: case 6285: case 6287: case 6289: case 6291: case 5994: case 5996: case 5998: case 6000: case 6002: case 6004: case 6030: case 6032: case 6034: return South::Low; + case 6054: case 6056: case 6058: case 6060: case 6062: case 6064: case 6090: case 6092: case 6094: case 6096: case 6098: case 6100: case 6126: case 6128: case 6130: case 6132: case 6134: case 6136: case 6162: case 6164: case 6166: case 6168: case 6170: case 6172: case 6198: case 6200: case 6202: case 6204: case 6206: case 6208: case 6234: case 6236: case 6238: case 6240: case 6242: case 6244: case 6270: case 6272: case 6274: case 6276: case 6278: case 6280: case 5981: case 5983: case 5985: case 5987: case 5989: case 5991: case 6017: case 6019: case 6021: case 6023: case 6025: case 6027: case 6053: case 6055: case 6057: case 6059: case 6061: case 6063: case 6089: case 6091: case 6093: case 6095: case 6097: case 6099: case 6125: case 6127: case 6129: case 6131: case 6133: case 6135: case 6161: case 6163: case 6165: case 6167: case 6169: case 6171: case 6197: case 6199: case 6201: case 6203: case 6205: case 6207: case 6233: case 6235: case 6237: case 6239: case 6241: case 6243: case 6269: case 6271: case 6273: case 6275: case 6277: case 6279: case 5982: case 5984: case 5986: case 5988: case 5990: case 5992: case 6018: case 6020: case 6022: case 6024: case 6026: case 6028: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 6036: case 6038: case 6040: case 6048: case 6050: case 6052: case 6060: case 6062: case 6064: case 6072: case 6074: case 6076: case 6084: case 6086: case 6088: case 6096: case 6098: case 6100: case 6108: case 6110: case 6112: case 6120: case 6122: case 6124: case 6132: case 6134: case 6136: case 6144: case 6146: case 6148: case 6156: case 6158: case 6160: case 6168: case 6170: case 6172: case 6180: case 6182: case 6184: case 6192: case 6194: case 6196: case 6204: case 6206: case 6208: case 6216: case 6218: case 6220: case 6228: case 6230: case 6232: case 6240: case 6242: case 6244: case 6252: case 6254: case 6256: case 6264: case 6266: case 6268: case 6276: case 6278: case 6280: case 6288: case 6290: case 6292: case 6300: case 6302: case 6304: case 5987: case 5989: case 5991: case 5999: case 6001: case 6003: case 6011: case 6013: case 6015: case 6023: case 6025: case 6027: case 6035: case 6037: case 6039: case 6047: case 6049: case 6051: case 6059: case 6061: case 6063: case 6071: case 6073: case 6075: case 6083: case 6085: case 6087: case 6095: case 6097: case 6099: case 6107: case 6109: case 6111: case 6119: case 6121: case 6123: case 6131: case 6133: case 6135: case 6143: case 6145: case 6147: case 6155: case 6157: case 6159: case 6167: case 6169: case 6171: case 6179: case 6181: case 6183: case 6191: case 6193: case 6195: case 6203: case 6205: case 6207: case 6215: case 6217: case 6219: case 6227: case 6229: case 6231: case 6239: case 6241: case 6243: case 6251: case 6253: case 6255: case 6263: case 6265: case 6267: case 6275: case 6277: case 6279: case 6287: case 6289: case 6291: case 6299: case 6301: case 6303: case 5988: case 5990: case 5992: case 6000: case 6002: case 6004: case 6012: case 6014: case 6016: case 6024: case 6026: case 6028: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 6038: case 6040: case 6044: case 6046: case 6050: case 6052: case 6056: case 6058: case 6062: case 6064: case 6068: case 6070: case 6074: case 6076: case 6080: case 6082: case 6086: case 6088: case 6092: case 6094: case 6098: case 6100: case 6104: case 6106: case 6110: case 6112: case 6116: case 6118: case 6122: case 6124: case 6128: case 6130: case 6134: case 6136: case 6140: case 6142: case 6146: case 6148: case 6152: case 6154: case 6158: case 6160: case 6164: case 6166: case 6170: case 6172: case 6176: case 6178: case 6182: case 6184: case 6188: case 6190: case 6194: case 6196: case 6200: case 6202: case 6206: case 6208: case 6212: case 6214: case 6218: case 6220: case 6224: case 6226: case 6230: case 6232: case 6236: case 6238: case 6242: case 6244: case 6248: case 6250: case 6254: case 6256: case 6260: case 6262: case 6266: case 6268: case 6272: case 6274: case 6278: case 6280: case 6284: case 6286: case 6290: case 6292: case 6296: case 6298: case 6302: case 6304: case 5985: case 5991: case 5997: case 6003: case 6009: case 6015: case 6021: case 6027: case 6033: case 6039: case 6045: case 6051: case 6057: case 6063: case 6069: case 6075: case 6081: case 6087: case 6093: case 6099: case 6105: case 6111: case 6117: case 6123: case 6129: case 6135: case 6141: case 6147: case 6153: case 6159: case 6165: case 6171: case 6177: case 6183: case 6189: case 6195: case 6201: case 6207: case 6213: case 6219: case 6225: case 6231: case 6237: case 6243: case 6249: case 6255: case 6261: case 6267: case 6273: case 6279: case 6285: case 6291: case 6297: case 6303: case 5984: case 5986: case 5990: case 5992: case 5996: case 5998: case 6002: case 6004: case 6008: case 6010: case 6014: case 6016: case 6020: case 6022: case 6026: case 6028: case 6032: case 6034: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 6036: case 6042: case 6048: case 6054: case 6060: case 6066: case 6072: case 6078: case 6084: case 6090: case 6096: case 6102: case 6108: case 6114: case 6120: case 6126: case 6132: case 6138: case 6144: case 6150: case 6156: case 6162: case 6168: case 6174: case 6180: case 6186: case 6192: case 6198: case 6204: case 6210: case 6216: case 6222: case 6228: case 6234: case 6240: case 6246: case 6252: case 6258: case 6264: case 6270: case 6276: case 6282: case 6288: case 6294: case 6300: case 5985: case 5991: case 5997: case 6003: case 6009: case 6015: case 6021: case 6027: case 6033: case 6039: case 6045: case 6051: case 6057: case 6063: case 6069: case 6075: case 6081: case 6087: case 6093: case 6099: case 6105: case 6111: case 6117: case 6123: case 6129: case 6135: case 6141: case 6147: case 6153: case 6159: case 6165: case 6171: case 6177: case 6183: case 6189: case 6195: case 6201: case 6207: case 6213: case 6219: case 6225: case 6231: case 6237: case 6243: case 6249: case 6255: case 6261: case 6267: case 6273: case 6279: case 6285: case 6291: case 6297: case 6303: case 5982: case 5988: case 5994: case 6000: case 6006: case 6012: case 6018: case 6024: case 6030: return West::Low; + case 6038: case 6044: case 6050: case 6056: case 6062: case 6068: case 6074: case 6080: case 6086: case 6092: case 6098: case 6104: case 6110: case 6116: case 6122: case 6128: case 6134: case 6140: case 6146: case 6152: case 6158: case 6164: case 6170: case 6176: case 6182: case 6188: case 6194: case 6200: case 6206: case 6212: case 6218: case 6224: case 6230: case 6236: case 6242: case 6248: case 6254: case 6260: case 6266: case 6272: case 6278: case 6284: case 6290: case 6296: case 6302: case 5981: case 5987: case 5993: case 5999: case 6005: case 6011: case 6017: case 6023: case 6029: case 6035: case 6041: case 6047: case 6053: case 6059: case 6065: case 6071: case 6077: case 6083: case 6089: case 6095: case 6101: case 6107: case 6113: case 6119: case 6125: case 6131: case 6137: case 6143: case 6149: case 6155: case 6161: case 6167: case 6173: case 6179: case 6185: case 6191: case 6197: case 6203: case 6209: case 6215: case 6221: case 6227: case 6233: case 6239: case 6245: case 6251: case 6257: case 6263: case 6269: case 6275: case 6281: case 6287: case 6293: case 6299: case 5984: case 5990: case 5996: case 6002: case 6008: case 6014: case 6020: case 6026: case 6032: return West::None; + default: return West::Tall; + } + } + } + namespace MossyStoneBrickSlab + { + short MossyStoneBrickSlab() + { + return 10804; + } + enum Type Type(short ID) + { + switch (ID) + { + case 10803: case 10804: return Type::Bottom; + case 10805: case 10806: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10804: case 10802: case 10806: return false; + default: return true; + } + } + } + namespace MossyStoneBrickStairs + { + short MossyStoneBrickStairs() + { + return 9840; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9869: case 9870: case 9871: case 9872: case 9873: case 9874: case 9875: case 9876: case 9877: case 9878: case 9879: case 9880: case 9881: case 9882: case 9883: case 9884: case 9885: case 9886: case 9887: case 9888: return eBlockFace::BLOCK_FACE_XM; + case 9889: case 9890: case 9891: case 9892: case 9893: case 9894: case 9895: case 9896: case 9897: case 9898: case 9899: case 9900: case 9901: case 9902: case 9903: case 9904: case 9905: case 9906: case 9907: case 9908: return eBlockFace::BLOCK_FACE_XP; + case 9833: case 9834: case 9835: case 9836: case 9837: case 9838: case 9839: case 9840: case 9841: case 9842: case 9843: case 9844: case 9845: case 9846: case 9847: case 9848: case 9829: case 9830: case 9831: case 9832: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 9839: case 9840: case 9841: case 9842: case 9843: case 9844: case 9845: case 9846: case 9847: case 9848: case 9859: case 9860: case 9861: case 9862: case 9863: case 9864: case 9865: case 9866: case 9867: case 9868: case 9879: case 9880: case 9881: case 9882: case 9883: case 9884: case 9885: case 9886: case 9887: case 9888: case 9899: case 9900: case 9901: case 9902: case 9903: case 9904: case 9905: case 9906: case 9907: case 9908: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 9841: case 9842: case 9851: case 9852: case 9861: case 9862: case 9871: case 9872: case 9881: case 9882: case 9891: case 9892: case 9901: case 9902: case 9831: case 9832: return Shape::InnerLeft; + case 9833: case 9834: case 9843: case 9844: case 9853: case 9854: case 9863: case 9864: case 9873: case 9874: case 9883: case 9884: case 9893: case 9894: case 9903: case 9904: return Shape::InnerRight; + case 9835: case 9836: case 9845: case 9846: case 9855: case 9856: case 9865: case 9866: case 9875: case 9876: case 9885: case 9886: case 9895: case 9896: case 9905: case 9906: return Shape::OuterLeft; + case 9837: case 9838: case 9847: case 9848: case 9857: case 9858: case 9867: case 9868: case 9877: case 9878: case 9887: case 9888: case 9897: case 9898: case 9907: case 9908: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9834: case 9836: case 9838: case 9840: case 9842: case 9844: case 9846: case 9848: case 9850: case 9852: case 9854: case 9856: case 9858: case 9860: case 9862: case 9864: case 9866: case 9868: case 9870: case 9872: case 9874: case 9876: case 9878: case 9880: case 9882: case 9884: case 9886: case 9888: case 9890: case 9892: case 9894: case 9896: case 9898: case 9900: case 9902: case 9904: case 9906: case 9908: case 9830: case 9832: return false; + default: return true; + } + } + } + namespace MossyStoneBrickWall + { + short MossyStoneBrickWall() + { + return 11842; + } + enum East East(short ID) + { + switch (ID) + { + case 11949: case 11953: case 11957: case 11961: case 11965: case 11969: case 11973: case 11977: case 11981: case 11985: case 11989: case 11993: case 11997: case 12001: case 12005: case 12009: case 12013: case 12017: case 12021: case 12025: case 12029: case 12033: case 12037: case 12041: case 12045: case 12049: case 12053: case 11950: case 11954: case 11958: case 11962: case 11966: case 11970: case 11974: case 11978: case 11982: case 11986: case 11990: case 11994: case 11998: case 12002: case 12006: case 12010: case 12014: case 12018: case 12022: case 12026: case 12030: case 12034: case 12038: case 12042: case 12046: case 12050: case 12054: case 11947: case 11951: case 11955: case 11959: case 11963: case 11967: case 11971: case 11975: case 11979: case 11983: case 11987: case 11991: case 11995: case 11999: case 12003: case 12007: case 12011: case 12015: case 12019: case 12023: case 12027: case 12031: case 12035: case 12039: case 12043: case 12047: case 12051: case 11948: case 11952: case 11956: case 11960: case 11964: case 11968: case 11972: case 11976: case 11980: case 11984: case 11988: case 11992: case 11996: case 12000: case 12004: case 12008: case 12012: case 12016: case 12020: case 12024: case 12028: case 12032: case 12036: case 12040: case 12044: case 12048: case 12052: return East::Low; + case 11841: case 11845: case 11849: case 11853: case 11857: case 11861: case 11865: case 11869: case 11873: case 11877: case 11881: case 11885: case 11889: case 11893: case 11897: case 11901: case 11905: case 11909: case 11913: case 11917: case 11921: case 11925: case 11929: case 11933: case 11937: case 11941: case 11945: case 11842: case 11846: case 11850: case 11854: case 11858: case 11862: case 11866: case 11870: case 11874: case 11878: case 11882: case 11886: case 11890: case 11894: case 11898: case 11902: case 11906: case 11910: case 11914: case 11918: case 11922: case 11926: case 11930: case 11934: case 11938: case 11942: case 11946: case 11839: case 11843: case 11847: case 11851: case 11855: case 11859: case 11863: case 11867: case 11871: case 11875: case 11879: case 11883: case 11887: case 11891: case 11895: case 11899: case 11903: case 11907: case 11911: case 11915: case 11919: case 11923: case 11927: case 11931: case 11935: case 11939: case 11943: case 11840: case 11844: case 11848: case 11852: case 11856: case 11860: case 11864: case 11868: case 11872: case 11876: case 11880: case 11884: case 11888: case 11892: case 11896: case 11900: case 11904: case 11908: case 11912: case 11916: case 11920: case 11924: case 11928: case 11932: case 11936: case 11940: case 11944: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 12092: case 12096: case 12100: case 12104: case 12108: case 12112: case 12116: case 12120: case 12124: case 11877: case 11881: case 11885: case 11889: case 11893: case 11897: case 11901: case 11905: case 11909: case 11985: case 11989: case 11993: case 11997: case 12001: case 12005: case 12009: case 12013: case 12017: case 12093: case 12097: case 12101: case 12105: case 12109: case 12113: case 12117: case 12121: case 12125: case 11878: case 11882: case 11886: case 11890: case 11894: case 11898: case 11902: case 11906: case 11910: case 11986: case 11990: case 11994: case 11998: case 12002: case 12006: case 12010: case 12014: case 12018: case 12094: case 12098: case 12102: case 12106: case 12110: case 12114: case 12118: case 12122: case 12126: case 11875: case 11879: case 11883: case 11887: case 11891: case 11895: case 11899: case 11903: case 11907: case 11983: case 11987: case 11991: case 11995: case 11999: case 12003: case 12007: case 12011: case 12015: case 12091: case 12095: case 12099: case 12103: case 12107: case 12111: case 12115: case 12119: case 12123: case 11876: case 11880: case 11884: case 11888: case 11892: case 11896: case 11900: case 11904: case 11908: case 11984: case 11988: case 11992: case 11996: case 12000: case 12004: case 12008: case 12012: case 12016: return North::Low; + case 12056: case 12060: case 12064: case 12068: case 12072: case 12076: case 12080: case 12084: case 12088: case 11841: case 11845: case 11849: case 11853: case 11857: case 11861: case 11865: case 11869: case 11873: case 11949: case 11953: case 11957: case 11961: case 11965: case 11969: case 11973: case 11977: case 11981: case 12057: case 12061: case 12065: case 12069: case 12073: case 12077: case 12081: case 12085: case 12089: case 11842: case 11846: case 11850: case 11854: case 11858: case 11862: case 11866: case 11870: case 11874: case 11950: case 11954: case 11958: case 11962: case 11966: case 11970: case 11974: case 11978: case 11982: case 12058: case 12062: case 12066: case 12070: case 12074: case 12078: case 12082: case 12086: case 12090: case 11839: case 11843: case 11847: case 11851: case 11855: case 11859: case 11863: case 11867: case 11871: case 11947: case 11951: case 11955: case 11959: case 11963: case 11967: case 11971: case 11975: case 11979: case 12055: case 12059: case 12063: case 12067: case 12071: case 12075: case 12079: case 12083: case 12087: case 11840: case 11844: case 11848: case 11852: case 11856: case 11860: case 11864: case 11868: case 11872: case 11948: case 11952: case 11956: case 11960: case 11964: case 11968: case 11972: case 11976: case 11980: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 12068: case 12072: case 12076: case 12104: case 12108: case 12112: case 12140: case 12144: case 12148: case 11853: case 11857: case 11861: case 11889: case 11893: case 11897: case 11925: case 11929: case 11933: case 11961: case 11965: case 11969: case 11997: case 12001: case 12005: case 12033: case 12037: case 12041: case 12069: case 12073: case 12077: case 12105: case 12109: case 12113: case 12141: case 12145: case 12149: case 11854: case 11858: case 11862: case 11890: case 11894: case 11898: case 11926: case 11930: case 11934: case 11962: case 11966: case 11970: case 11998: case 12002: case 12006: case 12034: case 12038: case 12042: case 12070: case 12074: case 12078: case 12106: case 12110: case 12114: case 12142: case 12146: case 12150: case 11851: case 11855: case 11859: case 11887: case 11891: case 11895: case 11923: case 11927: case 11931: case 11959: case 11963: case 11967: case 11995: case 11999: case 12003: case 12031: case 12035: case 12039: case 12067: case 12071: case 12075: case 12103: case 12107: case 12111: case 12139: case 12143: case 12147: case 11852: case 11856: case 11860: case 11888: case 11892: case 11896: case 11924: case 11928: case 11932: case 11960: case 11964: case 11968: case 11996: case 12000: case 12004: case 12032: case 12036: case 12040: return South::Low; + case 12056: case 12060: case 12064: case 12092: case 12096: case 12100: case 12128: case 12132: case 12136: case 11841: case 11845: case 11849: case 11877: case 11881: case 11885: case 11913: case 11917: case 11921: case 11949: case 11953: case 11957: case 11985: case 11989: case 11993: case 12021: case 12025: case 12029: case 12057: case 12061: case 12065: case 12093: case 12097: case 12101: case 12129: case 12133: case 12137: case 11842: case 11846: case 11850: case 11878: case 11882: case 11886: case 11914: case 11918: case 11922: case 11950: case 11954: case 11958: case 11986: case 11990: case 11994: case 12022: case 12026: case 12030: case 12058: case 12062: case 12066: case 12094: case 12098: case 12102: case 12130: case 12134: case 12138: case 11839: case 11843: case 11847: case 11875: case 11879: case 11883: case 11911: case 11915: case 11919: case 11947: case 11951: case 11955: case 11983: case 11987: case 11991: case 12019: case 12023: case 12027: case 12055: case 12059: case 12063: case 12091: case 12095: case 12099: case 12127: case 12131: case 12135: case 11840: case 11844: case 11848: case 11876: case 11880: case 11884: case 11912: case 11916: case 11920: case 11948: case 11952: case 11956: case 11984: case 11988: case 11992: case 12020: case 12024: case 12028: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 12064: case 12076: case 12088: case 12100: case 12112: case 12124: case 12136: case 12148: case 12160: case 11845: case 11849: case 11857: case 11861: case 11869: case 11873: case 11881: case 11885: case 11893: case 11897: case 11905: case 11909: case 11917: case 11921: case 11929: case 11933: case 11941: case 11945: case 11953: case 11957: case 11965: case 11969: case 11977: case 11981: case 11989: case 11993: case 12001: case 12005: case 12013: case 12017: case 12025: case 12029: case 12037: case 12041: case 12049: case 12053: case 12061: case 12065: case 12073: case 12077: case 12085: case 12089: case 12097: case 12101: case 12109: case 12113: case 12121: case 12125: case 12133: case 12137: case 12145: case 12149: case 12157: case 12161: case 11846: case 11850: case 11858: case 11862: case 11870: case 11874: case 11882: case 11886: case 11894: case 11898: case 11906: case 11910: case 11918: case 11922: case 11930: case 11934: case 11942: case 11946: case 11954: case 11958: case 11966: case 11970: case 11978: case 11982: case 11990: case 11994: case 12002: case 12006: case 12014: case 12018: case 12026: case 12030: case 12038: case 12042: case 12050: case 12054: case 12062: case 12066: case 12074: case 12078: case 12086: case 12090: case 12098: case 12102: case 12110: case 12114: case 12122: case 12126: case 12134: case 12138: case 12146: case 12150: case 12158: case 12162: case 11847: case 11859: case 11871: case 11883: case 11895: case 11907: case 11919: case 11931: case 11943: case 11955: case 11967: case 11979: case 11991: case 12003: case 12015: case 12027: case 12039: case 12051: case 12063: case 12075: case 12087: case 12099: case 12111: case 12123: case 12135: case 12147: case 12159: case 11848: case 11860: case 11872: case 11884: case 11896: case 11908: case 11920: case 11932: case 11944: case 11956: case 11968: case 11980: case 11992: case 12004: case 12016: case 12028: case 12040: case 12052: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 12060: case 12064: case 12072: case 12076: case 12084: case 12088: case 12096: case 12100: case 12108: case 12112: case 12120: case 12124: case 12132: case 12136: case 12144: case 12148: case 12156: case 12160: case 11849: case 11861: case 11873: case 11885: case 11897: case 11909: case 11921: case 11933: case 11945: case 11957: case 11969: case 11981: case 11993: case 12005: case 12017: case 12029: case 12041: case 12053: case 12065: case 12077: case 12089: case 12101: case 12113: case 12125: case 12137: case 12149: case 12161: case 11842: case 11850: case 11854: case 11862: case 11866: case 11874: case 11878: case 11886: case 11890: case 11898: case 11902: case 11910: case 11914: case 11922: case 11926: case 11934: case 11938: case 11946: case 11950: case 11958: case 11962: case 11970: case 11974: case 11982: case 11986: case 11994: case 11998: case 12006: case 12010: case 12018: case 12022: case 12030: case 12034: case 12042: case 12046: case 12054: case 12058: case 12066: case 12070: case 12078: case 12082: case 12090: case 12094: case 12102: case 12106: case 12114: case 12118: case 12126: case 12130: case 12138: case 12142: case 12150: case 12154: case 12162: case 11843: case 11855: case 11867: case 11879: case 11891: case 11903: case 11915: case 11927: case 11939: case 11951: case 11963: case 11975: case 11987: case 11999: case 12011: case 12023: case 12035: case 12047: case 12059: case 12071: case 12083: case 12095: case 12107: case 12119: case 12131: case 12143: case 12155: case 11844: case 11848: case 11856: case 11860: case 11868: case 11872: case 11880: case 11884: case 11892: case 11896: case 11904: case 11908: case 11916: case 11920: case 11928: case 11932: case 11940: case 11944: case 11952: case 11956: case 11964: case 11968: case 11976: case 11980: case 11988: case 11992: case 12000: case 12004: case 12012: case 12016: case 12024: case 12028: case 12036: case 12040: case 12048: case 12052: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 12056: case 12068: case 12080: case 12092: case 12104: case 12116: case 12128: case 12140: case 12152: case 11849: case 11861: case 11873: case 11885: case 11897: case 11909: case 11921: case 11933: case 11945: case 11957: case 11969: case 11981: case 11993: case 12005: case 12017: case 12029: case 12041: case 12053: case 12065: case 12077: case 12089: case 12101: case 12113: case 12125: case 12137: case 12149: case 12161: case 11846: case 11858: case 11870: case 11882: case 11894: case 11906: case 11918: case 11930: case 11942: case 11954: case 11966: case 11978: case 11990: case 12002: case 12014: case 12026: case 12038: case 12050: case 12062: case 12074: case 12086: case 12098: case 12110: case 12122: case 12134: case 12146: case 12158: case 11843: case 11855: case 11867: case 11879: case 11891: case 11903: case 11915: case 11927: case 11939: case 11951: case 11963: case 11975: case 11987: case 11999: case 12011: case 12023: case 12035: case 12047: case 12059: case 12071: case 12083: case 12095: case 12107: case 12119: case 12131: case 12143: case 12155: case 11840: case 11852: case 11864: case 11876: case 11888: case 11900: case 11912: case 11924: case 11936: case 11948: case 11960: case 11972: case 11984: case 11996: case 12008: case 12020: case 12032: case 12044: return West::Low; + case 12064: case 12076: case 12088: case 12100: case 12112: case 12124: case 12136: case 12148: case 12160: case 11845: case 11857: case 11869: case 11881: case 11893: case 11905: case 11917: case 11929: case 11941: case 11953: case 11965: case 11977: case 11989: case 12001: case 12013: case 12025: case 12037: case 12049: case 12061: case 12073: case 12085: case 12097: case 12109: case 12121: case 12133: case 12145: case 12157: case 11842: case 11854: case 11866: case 11878: case 11890: case 11902: case 11914: case 11926: case 11938: case 11950: case 11962: case 11974: case 11986: case 11998: case 12010: case 12022: case 12034: case 12046: case 12058: case 12070: case 12082: case 12094: case 12106: case 12118: case 12130: case 12142: case 12154: case 11839: case 11851: case 11863: case 11875: case 11887: case 11899: case 11911: case 11923: case 11935: case 11947: case 11959: case 11971: case 11983: case 11995: case 12007: case 12019: case 12031: case 12043: case 12055: case 12067: case 12079: case 12091: case 12103: case 12115: case 12127: case 12139: case 12151: case 11848: case 11860: case 11872: case 11884: case 11896: case 11908: case 11920: case 11932: case 11944: case 11956: case 11968: case 11980: case 11992: case 12004: case 12016: case 12028: case 12040: case 12052: return West::None; + default: return West::Tall; + } + } + } + namespace MossyStoneBricks + { + } + namespace MovingPiston + { + short MovingPiston() + { + return 1400; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1407: case 1406: return eBlockFace::BLOCK_FACE_XM; + case 1402: case 1403: return eBlockFace::BLOCK_FACE_XP; + case 1411: case 1410: return eBlockFace::BLOCK_FACE_YM; + case 1408: case 1409: return eBlockFace::BLOCK_FACE_YP; + case 1400: case 1401: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Type Type(short ID) + { + switch (ID) + { + case 1400: case 1404: case 1408: case 1402: case 1406: case 1410: return Type::Normal; + default: return Type::Sticky; + } + } + } + namespace MushroomStem + { + short MushroomStem() + { + return 4633; + } + bool Down(short ID) + { + switch (ID) + { + case 4668: case 4684: case 4669: case 4685: case 4670: case 4686: case 4671: case 4687: case 4672: case 4688: case 4673: case 4689: case 4674: case 4690: case 4675: case 4691: case 4676: case 4692: case 4677: case 4693: case 4678: case 4694: case 4679: case 4695: case 4680: case 4665: case 4681: case 4666: case 4682: case 4667: case 4683: case 4696: return false; + default: return true; + } + } + bool East(short ID) + { + switch (ID) + { + case 4652: case 4684: case 4653: case 4685: case 4654: case 4686: case 4655: case 4687: case 4656: case 4688: case 4657: case 4689: case 4658: case 4690: case 4659: case 4691: case 4660: case 4692: case 4661: case 4693: case 4662: case 4694: case 4663: case 4695: case 4664: case 4649: case 4681: case 4650: case 4682: case 4651: case 4683: case 4696: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 4641: case 4657: case 4673: case 4689: case 4642: case 4658: case 4674: case 4690: case 4643: case 4659: case 4675: case 4691: case 4644: case 4660: case 4676: case 4692: case 4645: case 4661: case 4677: case 4693: case 4646: case 4662: case 4678: case 4694: case 4647: case 4663: case 4679: case 4695: case 4648: case 4664: case 4680: case 4696: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 4637: case 4653: case 4669: case 4685: case 4638: case 4654: case 4670: case 4686: case 4639: case 4655: case 4671: case 4687: case 4640: case 4656: case 4672: case 4688: case 4645: case 4661: case 4677: case 4693: case 4646: case 4662: case 4678: case 4694: case 4647: case 4663: case 4679: case 4695: case 4648: case 4664: case 4680: case 4696: return false; + default: return true; + } + } + bool Up(short ID) + { + switch (ID) + { + case 4636: case 4652: case 4668: case 4684: case 4639: case 4655: case 4671: case 4687: case 4640: case 4656: case 4672: case 4688: case 4643: case 4659: case 4675: case 4691: case 4644: case 4660: case 4676: case 4692: case 4647: case 4663: case 4679: case 4695: case 4648: case 4664: case 4680: case 4635: case 4651: case 4667: case 4683: case 4696: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 4636: case 4652: case 4668: case 4684: case 4638: case 4654: case 4670: case 4686: case 4640: case 4656: case 4672: case 4688: case 4642: case 4658: case 4674: case 4690: case 4644: case 4660: case 4676: case 4692: case 4646: case 4662: case 4678: case 4694: case 4648: case 4664: case 4680: case 4634: case 4650: case 4666: case 4682: case 4696: return false; + default: return true; + } + } + } + namespace Mycelium + { + short Mycelium() + { + return 5013; + } + bool Snowy(short ID) + { + switch (ID) + { + case 5013: return false; + default: return true; + } + } + } + namespace NetherBrickFence + { + short NetherBrickFence() + { + return 5047; + } + bool East(short ID) + { + switch (ID) + { + case 5040: case 5044: case 5033: case 5037: case 5041: case 5045: case 5034: case 5038: case 5042: case 5046: case 5035: case 5039: case 5043: case 5032: case 5036: case 5047: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 5040: case 5044: case 5025: case 5029: case 5041: case 5045: case 5026: case 5030: case 5042: case 5046: case 5027: case 5031: case 5043: case 5024: case 5028: case 5047: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 5044: case 5021: case 5029: case 5037: case 5045: case 5022: case 5030: case 5038: case 5046: case 5023: case 5031: case 5039: case 5020: case 5028: case 5036: case 5047: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 5018: case 5022: case 5026: case 5030: case 5034: case 5038: case 5042: case 5046: case 5019: case 5023: case 5027: case 5031: case 5035: case 5039: case 5043: case 5047: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 5017: case 5021: case 5025: case 5029: case 5033: case 5037: case 5041: case 5045: case 5019: case 5023: case 5027: case 5031: case 5035: case 5039: case 5043: case 5047: return false; + default: return true; + } + } + } + namespace NetherBrickSlab + { + short NetherBrickSlab() + { + return 8387; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8386: case 8387: return Type::Bottom; + case 8388: case 8389: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8385: case 8389: case 8387: return false; + default: return true; + } + } + } + namespace NetherBrickStairs + { + short NetherBrickStairs() + { + return 5059; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 5088: case 5089: case 5090: case 5091: case 5092: case 5093: case 5094: case 5095: case 5096: case 5097: case 5098: case 5099: case 5100: case 5101: case 5102: case 5103: case 5104: case 5105: case 5106: case 5107: return eBlockFace::BLOCK_FACE_XM; + case 5108: case 5109: case 5110: case 5111: case 5112: case 5113: case 5114: case 5115: case 5116: case 5117: case 5118: case 5119: case 5120: case 5121: case 5122: case 5123: case 5124: case 5125: case 5126: case 5127: return eBlockFace::BLOCK_FACE_XP; + case 5048: case 5049: case 5050: case 5051: case 5052: case 5053: case 5054: case 5055: case 5056: case 5057: case 5058: case 5059: case 5060: case 5061: case 5062: case 5063: case 5064: case 5065: case 5066: case 5067: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 5078: case 5079: case 5080: case 5081: case 5082: case 5083: case 5084: case 5085: case 5086: case 5087: case 5098: case 5099: case 5100: case 5101: case 5102: case 5103: case 5104: case 5105: case 5106: case 5107: case 5118: case 5119: case 5120: case 5121: case 5058: case 5122: case 5059: case 5123: case 5060: case 5124: case 5061: case 5125: case 5062: case 5126: case 5063: case 5127: case 5064: case 5065: case 5066: case 5067: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 5080: case 5081: case 5090: case 5091: case 5100: case 5101: case 5110: case 5111: case 5050: case 5051: case 5120: case 5121: case 5060: case 5061: case 5070: case 5071: return Shape::InnerLeft; + case 5082: case 5083: case 5092: case 5093: case 5102: case 5103: case 5112: case 5113: case 5052: case 5053: case 5122: case 5123: case 5062: case 5063: case 5072: case 5073: return Shape::InnerRight; + case 5084: case 5085: case 5094: case 5095: case 5104: case 5105: case 5114: case 5115: case 5054: case 5055: case 5124: case 5125: case 5064: case 5065: case 5074: case 5075: return Shape::OuterLeft; + case 5076: case 5077: case 5086: case 5087: case 5096: case 5097: case 5106: case 5107: case 5116: case 5117: case 5056: case 5057: case 5126: case 5127: case 5066: case 5067: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 5077: case 5079: case 5081: case 5083: case 5085: case 5087: case 5089: case 5091: case 5093: case 5095: case 5097: case 5099: case 5101: case 5103: case 5105: case 5107: case 5109: case 5111: case 5049: case 5113: case 5051: case 5115: case 5053: case 5117: case 5055: case 5119: case 5057: case 5121: case 5059: case 5123: case 5061: case 5125: case 5063: case 5127: case 5065: case 5067: case 5069: case 5071: case 5073: case 5075: return false; + default: return true; + } + } + } + namespace NetherBrickWall + { + short NetherBrickWall() + { + return 12814; + } + enum East East(short ID) + { + switch (ID) + { + case 12919: case 12923: case 12927: case 12931: case 12935: case 12939: case 12943: case 12947: case 12951: case 12955: case 12959: case 12963: case 12967: case 12971: case 12975: case 12979: case 12983: case 12987: case 12991: case 12995: case 12999: case 13003: case 13007: case 13011: case 13015: case 13019: case 13023: case 12920: case 12924: case 12928: case 12932: case 12936: case 12940: case 12944: case 12948: case 12952: case 12956: case 12960: case 12964: case 12968: case 12972: case 12976: case 12980: case 12984: case 12988: case 12992: case 12996: case 13000: case 13004: case 13008: case 13012: case 13016: case 13020: case 13024: case 12921: case 12925: case 12929: case 12933: case 12937: case 12941: case 12945: case 12949: case 12953: case 12957: case 12961: case 12965: case 12969: case 12973: case 12977: case 12981: case 12985: case 12989: case 12993: case 12997: case 13001: case 13005: case 13009: case 13013: case 13017: case 13021: case 13025: case 12922: case 12926: case 12930: case 12934: case 12938: case 12942: case 12946: case 12950: case 12954: case 12958: case 12962: case 12966: case 12970: case 12974: case 12978: case 12982: case 12986: case 12990: case 12994: case 12998: case 13002: case 13006: case 13010: case 13014: case 13018: case 13022: case 13026: return East::Low; + case 12811: case 12815: case 12819: case 12823: case 12827: case 12831: case 12835: case 12839: case 12843: case 12847: case 12851: case 12855: case 12859: case 12863: case 12867: case 12871: case 12875: case 12879: case 12883: case 12887: case 12891: case 12895: case 12899: case 12903: case 12907: case 12911: case 12915: case 12812: case 12816: case 12820: case 12824: case 12828: case 12832: case 12836: case 12840: case 12844: case 12848: case 12852: case 12856: case 12860: case 12864: case 12868: case 12872: case 12876: case 12880: case 12884: case 12888: case 12892: case 12896: case 12900: case 12904: case 12908: case 12912: case 12916: case 12813: case 12817: case 12821: case 12825: case 12829: case 12833: case 12837: case 12841: case 12845: case 12849: case 12853: case 12857: case 12861: case 12865: case 12869: case 12873: case 12877: case 12881: case 12885: case 12889: case 12893: case 12897: case 12901: case 12905: case 12909: case 12913: case 12917: case 12814: case 12818: case 12822: case 12826: case 12830: case 12834: case 12838: case 12842: case 12846: case 12850: case 12854: case 12858: case 12862: case 12866: case 12870: case 12874: case 12878: case 12882: case 12886: case 12890: case 12894: case 12898: case 12902: case 12906: case 12910: case 12914: case 12918: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 13078: case 13082: case 13086: case 13090: case 13094: case 13098: case 12847: case 12851: case 12855: case 12859: case 12863: case 12867: case 12871: case 12875: case 12879: case 12955: case 12959: case 12963: case 12967: case 12971: case 12975: case 12979: case 12983: case 12987: case 13063: case 13067: case 13071: case 13075: case 13079: case 13083: case 13087: case 13091: case 13095: case 12848: case 12852: case 12856: case 12860: case 12864: case 12868: case 12872: case 12876: case 12880: case 12956: case 12960: case 12964: case 12968: case 12972: case 12976: case 12980: case 12984: case 12988: case 13064: case 13068: case 13072: case 13076: case 13080: case 13084: case 13088: case 13092: case 13096: case 12849: case 12853: case 12857: case 12861: case 12865: case 12869: case 12873: case 12877: case 12881: case 12957: case 12961: case 12965: case 12969: case 12973: case 12977: case 12981: case 12985: case 12989: case 13065: case 13069: case 13073: case 13077: case 13081: case 13085: case 13089: case 13093: case 13097: case 12850: case 12854: case 12858: case 12862: case 12866: case 12870: case 12874: case 12878: case 12882: case 12958: case 12962: case 12966: case 12970: case 12974: case 12978: case 12982: case 12986: case 12990: case 13066: case 13070: case 13074: return North::Low; + case 12811: case 12815: case 12819: case 12823: case 12827: case 12831: case 12835: case 12839: case 12843: case 12919: case 12923: case 12927: case 12931: case 12935: case 12939: case 12943: case 12947: case 12951: case 13027: case 13031: case 13035: case 13039: case 13043: case 13047: case 13051: case 13055: case 13059: case 12812: case 12816: case 12820: case 12824: case 12828: case 12832: case 12836: case 12840: case 12844: case 12920: case 12924: case 12928: case 12932: case 12936: case 12940: case 12944: case 12948: case 12952: case 13028: case 13032: case 13036: case 13040: case 13044: case 13048: case 13052: case 13056: case 13060: case 12813: case 12817: case 12821: case 12825: case 12829: case 12833: case 12837: case 12841: case 12845: case 12921: case 12925: case 12929: case 12933: case 12937: case 12941: case 12945: case 12949: case 12953: case 13029: case 13033: case 13037: case 13041: case 13045: case 13049: case 13053: case 13057: case 13061: case 12814: case 12818: case 12822: case 12826: case 12830: case 12834: case 12838: case 12842: case 12846: case 12922: case 12926: case 12930: case 12934: case 12938: case 12942: case 12946: case 12950: case 12954: case 13030: case 13034: case 13038: case 13042: case 13046: case 13050: case 13054: case 13058: case 13062: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 13078: case 13082: case 13086: case 13114: case 13118: case 13122: case 12823: case 12827: case 12831: case 12859: case 12863: case 12867: case 12895: case 12899: case 12903: case 12931: case 12935: case 12939: case 12967: case 12971: case 12975: case 13003: case 13007: case 13011: case 13039: case 13043: case 13047: case 13075: case 13079: case 13083: case 13111: case 13115: case 13119: case 12824: case 12828: case 12832: case 12860: case 12864: case 12868: case 12896: case 12900: case 12904: case 12932: case 12936: case 12940: case 12968: case 12972: case 12976: case 13004: case 13008: case 13012: case 13040: case 13044: case 13048: case 13076: case 13080: case 13084: case 13112: case 13116: case 13120: case 12825: case 12829: case 12833: case 12861: case 12865: case 12869: case 12897: case 12901: case 12905: case 12933: case 12937: case 12941: case 12969: case 12973: case 12977: case 13005: case 13009: case 13013: case 13041: case 13045: case 13049: case 13077: case 13081: case 13085: case 13113: case 13117: case 13121: case 12826: case 12830: case 12834: case 12862: case 12866: case 12870: case 12898: case 12902: case 12906: case 12934: case 12938: case 12942: case 12970: case 12974: case 12978: case 13006: case 13010: case 13014: case 13042: case 13046: case 13050: return South::Low; + case 13102: case 13106: case 13110: case 12811: case 12815: case 12819: case 12847: case 12851: case 12855: case 12883: case 12887: case 12891: case 12919: case 12923: case 12927: case 12955: case 12959: case 12963: case 12991: case 12995: case 12999: case 13027: case 13031: case 13035: case 13063: case 13067: case 13071: case 13099: case 13103: case 13107: case 12812: case 12816: case 12820: case 12848: case 12852: case 12856: case 12884: case 12888: case 12892: case 12920: case 12924: case 12928: case 12956: case 12960: case 12964: case 12992: case 12996: case 13000: case 13028: case 13032: case 13036: case 13064: case 13068: case 13072: case 13100: case 13104: case 13108: case 12813: case 12817: case 12821: case 12849: case 12853: case 12857: case 12885: case 12889: case 12893: case 12921: case 12925: case 12929: case 12957: case 12961: case 12965: case 12993: case 12997: case 13001: case 13029: case 13033: case 13037: case 13065: case 13069: case 13073: case 13101: case 13105: case 13109: case 12814: case 12818: case 12822: case 12850: case 12854: case 12858: case 12886: case 12890: case 12894: case 12922: case 12926: case 12930: case 12958: case 12962: case 12966: case 12994: case 12998: case 13002: case 13030: case 13034: case 13038: case 13066: case 13070: case 13074: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 13082: case 13086: case 13094: case 13098: case 13106: case 13110: case 13118: case 13122: case 13130: case 13134: case 12819: case 12831: case 12843: case 12855: case 12867: case 12879: case 12891: case 12903: case 12915: case 12927: case 12939: case 12951: case 12963: case 12975: case 12987: case 12999: case 13011: case 13023: case 13035: case 13047: case 13059: case 13071: case 13083: case 13095: case 13107: case 13119: case 13131: case 12820: case 12832: case 12844: case 12856: case 12868: case 12880: case 12892: case 12904: case 12916: case 12928: case 12940: case 12952: case 12964: case 12976: case 12988: case 13000: case 13012: case 13024: case 13036: case 13048: case 13060: case 13072: case 13084: case 13096: case 13108: case 13120: case 13132: case 12817: case 12821: case 12829: case 12833: case 12841: case 12845: case 12853: case 12857: case 12865: case 12869: case 12877: case 12881: case 12889: case 12893: case 12901: case 12905: case 12913: case 12917: case 12925: case 12929: case 12937: case 12941: case 12949: case 12953: case 12961: case 12965: case 12973: case 12977: case 12985: case 12989: case 12997: case 13001: case 13009: case 13013: case 13021: case 13025: case 13033: case 13037: case 13045: case 13049: case 13057: case 13061: case 13069: case 13073: case 13081: case 13085: case 13093: case 13097: case 13105: case 13109: case 13117: case 13121: case 13129: case 13133: case 12818: case 12822: case 12830: case 12834: case 12842: case 12846: case 12854: case 12858: case 12866: case 12870: case 12878: case 12882: case 12890: case 12894: case 12902: case 12906: case 12914: case 12918: case 12926: case 12930: case 12938: case 12942: case 12950: case 12954: case 12962: case 12966: case 12974: case 12978: case 12986: case 12990: case 12998: case 13002: case 13010: case 13014: case 13022: case 13026: case 13034: case 13038: case 13046: case 13050: case 13058: case 13062: case 13070: case 13074: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 13078: case 13086: case 13090: case 13098: case 13102: case 13110: case 13114: case 13122: case 13126: case 13134: case 12815: case 12827: case 12839: case 12851: case 12863: case 12875: case 12887: case 12899: case 12911: case 12923: case 12935: case 12947: case 12959: case 12971: case 12983: case 12995: case 13007: case 13019: case 13031: case 13043: case 13055: case 13067: case 13079: case 13091: case 13103: case 13115: case 13127: case 12816: case 12820: case 12828: case 12832: case 12840: case 12844: case 12852: case 12856: case 12864: case 12868: case 12876: case 12880: case 12888: case 12892: case 12900: case 12904: case 12912: case 12916: case 12924: case 12928: case 12936: case 12940: case 12948: case 12952: case 12960: case 12964: case 12972: case 12976: case 12984: case 12988: case 12996: case 13000: case 13008: case 13012: case 13020: case 13024: case 13032: case 13036: case 13044: case 13048: case 13056: case 13060: case 13068: case 13072: case 13080: case 13084: case 13092: case 13096: case 13104: case 13108: case 13116: case 13120: case 13128: case 13132: case 12821: case 12833: case 12845: case 12857: case 12869: case 12881: case 12893: case 12905: case 12917: case 12929: case 12941: case 12953: case 12965: case 12977: case 12989: case 13001: case 13013: case 13025: case 13037: case 13049: case 13061: case 13073: case 13085: case 13097: case 13109: case 13121: case 13133: case 12814: case 12822: case 12826: case 12834: case 12838: case 12846: case 12850: case 12858: case 12862: case 12870: case 12874: case 12882: case 12886: case 12894: case 12898: case 12906: case 12910: case 12918: case 12922: case 12930: case 12934: case 12942: case 12946: case 12954: case 12958: case 12966: case 12970: case 12978: case 12982: case 12990: case 12994: case 13002: case 13006: case 13014: case 13018: case 13026: case 13030: case 13038: case 13042: case 13050: case 13054: case 13062: case 13066: case 13074: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 13082: case 13094: case 13106: case 13118: case 13130: case 12815: case 12827: case 12839: case 12851: case 12863: case 12875: case 12887: case 12899: case 12911: case 12923: case 12935: case 12947: case 12959: case 12971: case 12983: case 12995: case 13007: case 13019: case 13031: case 13043: case 13055: case 13067: case 13079: case 13091: case 13103: case 13115: case 13127: case 12812: case 12824: case 12836: case 12848: case 12860: case 12872: case 12884: case 12896: case 12908: case 12920: case 12932: case 12944: case 12956: case 12968: case 12980: case 12992: case 13004: case 13016: case 13028: case 13040: case 13052: case 13064: case 13076: case 13088: case 13100: case 13112: case 13124: case 12821: case 12833: case 12845: case 12857: case 12869: case 12881: case 12893: case 12905: case 12917: case 12929: case 12941: case 12953: case 12965: case 12977: case 12989: case 13001: case 13013: case 13025: case 13037: case 13049: case 13061: case 13073: case 13085: case 13097: case 13109: case 13121: case 13133: case 12818: case 12830: case 12842: case 12854: case 12866: case 12878: case 12890: case 12902: case 12914: case 12926: case 12938: case 12950: case 12962: case 12974: case 12986: case 12998: case 13010: case 13022: case 13034: case 13046: case 13058: case 13070: return West::Low; + case 13078: case 13090: case 13102: case 13114: case 13126: case 12811: case 12823: case 12835: case 12847: case 12859: case 12871: case 12883: case 12895: case 12907: case 12919: case 12931: case 12943: case 12955: case 12967: case 12979: case 12991: case 13003: case 13015: case 13027: case 13039: case 13051: case 13063: case 13075: case 13087: case 13099: case 13111: case 13123: case 12820: case 12832: case 12844: case 12856: case 12868: case 12880: case 12892: case 12904: case 12916: case 12928: case 12940: case 12952: case 12964: case 12976: case 12988: case 13000: case 13012: case 13024: case 13036: case 13048: case 13060: case 13072: case 13084: case 13096: case 13108: case 13120: case 13132: case 12817: case 12829: case 12841: case 12853: case 12865: case 12877: case 12889: case 12901: case 12913: case 12925: case 12937: case 12949: case 12961: case 12973: case 12985: case 12997: case 13009: case 13021: case 13033: case 13045: case 13057: case 13069: case 13081: case 13093: case 13105: case 13117: case 13129: case 12814: case 12826: case 12838: case 12850: case 12862: case 12874: case 12886: case 12898: case 12910: case 12922: case 12934: case 12946: case 12958: case 12970: case 12982: case 12994: case 13006: case 13018: case 13030: case 13042: case 13054: case 13066: return West::None; + default: return West::Tall; + } + } + } + namespace NetherBricks + { + } + namespace NetherGoldOre + { + } + namespace NetherPortal + { + short NetherPortal() + { + return 4014; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 4014: return Axis::X; + default: return Axis::Z; + } + } + } + namespace NetherQuartzOre + { + } + namespace NetherSprouts + { + } + namespace NetherWart + { + short NetherWart() + { + return 5128; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 5128: return 0; + case 5129: return 1; + case 5130: return 2; + default: return 3; + } + } + } + namespace NetherWartBlock + { + } + namespace NetheriteBlock + { + } + namespace Netherrack + { + } + namespace NoteBlock + { + short NoteBlock() + { + return 250; + } + enum Instrument Instrument(short ID) + { + switch (ID) + { + case 949: case 950: case 951: case 952: case 953: case 954: case 955: case 956: case 957: case 958: case 959: case 960: case 961: case 962: case 963: case 964: case 965: case 966: case 967: case 968: case 969: case 970: case 971: case 972: case 973: case 974: case 975: case 976: case 977: case 978: case 979: case 980: case 981: case 982: case 983: case 984: case 985: case 986: case 987: case 988: case 989: case 990: case 991: case 992: case 993: case 994: case 995: case 996: case 997: case 998: return Instrument::Banjo; + case 299: case 300: case 301: case 302: case 303: case 304: case 305: case 306: case 307: case 308: case 309: case 310: case 311: case 312: case 313: case 314: case 315: case 316: case 317: case 318: case 319: case 320: case 321: case 322: case 323: case 324: case 325: case 326: case 327: case 328: case 329: case 330: case 331: case 332: case 333: case 334: case 335: case 336: case 337: case 338: case 339: case 340: case 341: case 342: case 343: case 344: case 345: case 346: case 347: case 348: return Instrument::Basedrum; + case 449: case 450: case 451: case 452: case 453: case 454: case 455: case 456: case 457: case 458: case 459: case 460: case 461: case 462: case 463: case 464: case 465: case 466: case 467: case 468: case 469: case 470: case 471: case 472: case 473: case 474: case 475: case 476: case 477: case 478: case 479: case 480: case 481: case 482: case 483: case 484: case 485: case 486: case 487: case 488: case 489: case 490: case 491: case 492: case 493: case 494: case 495: case 496: case 497: case 498: return Instrument::Bass; + case 549: case 550: case 551: case 552: case 553: case 554: case 555: case 556: case 557: case 558: case 559: case 560: case 561: case 562: case 563: case 564: case 565: case 566: case 567: case 568: case 569: case 570: case 571: case 572: case 573: case 574: case 575: case 576: case 577: case 578: case 579: case 580: case 581: case 582: case 583: case 584: case 585: case 586: case 587: case 588: case 589: case 590: case 591: case 592: case 593: case 594: case 595: case 596: case 597: case 598: return Instrument::Bell; + case 899: case 900: case 901: case 902: case 903: case 904: case 905: case 906: case 907: case 908: case 909: case 910: case 911: case 912: case 913: case 914: case 915: case 916: case 917: case 918: case 919: case 920: case 921: case 922: case 923: case 924: case 925: case 926: case 927: case 928: case 929: case 930: case 931: case 932: case 933: case 934: case 935: case 936: case 937: case 938: case 939: case 940: case 941: case 942: case 943: case 944: case 945: case 946: case 947: case 948: return Instrument::Bit; + case 649: case 650: case 651: case 652: case 653: case 654: case 655: case 656: case 657: case 658: case 659: case 660: case 661: case 662: case 663: case 664: case 665: case 666: case 667: case 668: case 669: case 670: case 671: case 672: case 673: case 674: case 675: case 676: case 677: case 678: case 679: case 680: case 681: case 682: case 683: case 684: case 685: case 686: case 687: case 688: case 689: case 690: case 691: case 692: case 693: case 694: case 695: case 696: case 697: case 698: return Instrument::Chime; + case 799: case 800: case 801: case 802: case 803: case 804: case 805: case 806: case 807: case 808: case 809: case 810: case 811: case 812: case 813: case 814: case 815: case 816: case 817: case 818: case 819: case 820: case 821: case 822: case 823: case 824: case 825: case 826: case 827: case 828: case 829: case 830: case 831: case 832: case 833: case 834: case 835: case 836: case 837: case 838: case 839: case 840: case 841: case 842: case 843: case 844: case 845: case 846: case 847: case 848: return Instrument::CowBell; + case 849: case 850: case 851: case 852: case 853: case 854: case 855: case 856: case 857: case 858: case 859: case 860: case 861: case 862: case 863: case 864: case 865: case 866: case 867: case 868: case 869: case 870: case 871: case 872: case 873: case 874: case 875: case 876: case 877: case 878: case 879: case 880: case 881: case 882: case 883: case 884: case 885: case 886: case 887: case 888: case 889: case 890: case 891: case 892: case 893: case 894: case 895: case 896: case 897: case 898: return Instrument::Didgeridoo; + case 499: case 500: case 501: case 502: case 503: case 504: case 505: case 506: case 507: case 508: case 509: case 510: case 511: case 512: case 513: case 514: case 515: case 516: case 517: case 518: case 519: case 520: case 521: case 522: case 523: case 524: case 525: case 526: case 527: case 528: case 529: case 530: case 531: case 532: case 533: case 534: case 535: case 536: case 537: case 538: case 539: case 540: case 541: case 542: case 543: case 544: case 545: case 546: case 547: case 548: return Instrument::Flute; + case 599: case 600: case 601: case 602: case 603: case 604: case 605: case 606: case 607: case 608: case 609: case 610: case 611: case 612: case 613: case 614: case 615: case 616: case 617: case 618: case 619: case 620: case 621: case 622: case 623: case 624: case 625: case 626: case 627: case 628: case 629: case 630: case 631: case 632: case 633: case 634: case 635: case 636: case 637: case 638: case 639: case 640: case 641: case 642: case 643: case 644: case 645: case 646: case 647: case 648: return Instrument::Guitar; + case 249: case 250: case 251: case 252: case 253: case 254: case 255: case 256: case 257: case 258: case 259: case 260: case 261: case 262: case 263: case 264: case 265: case 266: case 267: case 268: case 269: case 270: case 271: case 272: case 273: case 274: case 275: case 276: case 277: case 278: case 279: case 280: case 281: case 282: case 283: case 284: case 285: case 286: case 287: case 288: case 289: case 290: case 291: case 292: case 293: case 294: case 295: case 296: case 297: case 298: return Instrument::Harp; + case 399: case 400: case 401: case 402: case 403: case 404: case 405: case 406: case 407: case 408: case 409: case 410: case 411: case 412: case 413: case 414: case 415: case 416: case 417: case 418: case 419: case 420: case 421: case 422: case 423: case 424: case 425: case 426: case 427: case 428: case 429: case 430: case 431: case 432: case 433: case 434: case 435: case 436: case 437: case 438: case 439: case 440: case 441: case 442: case 443: case 444: case 445: case 446: case 447: case 448: return Instrument::Hat; + case 749: case 750: case 751: case 752: case 753: case 754: case 755: case 756: case 757: case 758: case 759: case 760: case 761: case 762: case 763: case 764: case 765: case 766: case 767: case 768: case 769: case 770: case 771: case 772: case 773: case 774: case 775: case 776: case 777: case 778: case 779: case 780: case 781: case 782: case 783: case 784: case 785: case 786: case 787: case 788: case 789: case 790: case 791: case 792: case 793: case 794: case 795: case 796: case 797: case 798: return Instrument::IronXylophone; + case 999: case 1000: case 1001: case 1002: case 1003: case 1004: case 1005: case 1006: case 1007: case 1008: case 1009: case 1010: case 1011: case 1012: case 1013: case 1014: case 1015: case 1016: case 1017: case 1018: case 1019: case 1020: case 1021: case 1022: case 1023: case 1024: case 1045: case 1046: case 1047: case 1048: case 1025: case 1026: case 1027: case 1028: case 1029: case 1030: case 1031: case 1032: case 1033: case 1034: case 1035: case 1036: case 1037: case 1038: case 1039: case 1040: case 1041: case 1042: case 1043: case 1044: return Instrument::Pling; + case 349: case 350: case 351: case 352: case 353: case 354: case 355: case 356: case 357: case 358: case 359: case 360: case 361: case 362: case 363: case 364: case 365: case 366: case 367: case 368: case 369: case 370: case 371: case 372: case 373: case 374: case 375: case 376: case 377: case 378: case 379: case 380: case 381: case 382: case 383: case 384: case 385: case 386: case 387: case 388: case 389: case 390: case 391: case 392: case 393: case 394: case 395: case 396: case 397: case 398: return Instrument::Snare; + default: return Instrument::Xylophone; + } + } + unsigned char Note(short ID) + { + switch (ID) + { + case 249: case 250: case 299: case 300: case 349: case 350: case 399: case 400: case 449: case 450: case 499: case 500: case 549: case 550: case 599: case 600: case 649: case 650: case 699: case 700: case 749: case 750: case 799: case 800: case 849: case 850: case 899: case 900: case 949: case 950: case 999: case 1000: return 0; + case 251: case 252: case 301: case 302: case 351: case 352: case 401: case 402: case 451: case 452: case 501: case 502: case 551: case 552: case 601: case 602: case 651: case 652: case 701: case 702: case 751: case 752: case 801: case 802: case 851: case 852: case 901: case 902: case 951: case 952: case 1001: case 1002: return 1; + case 269: case 270: case 319: case 320: case 369: case 370: case 419: case 420: case 469: case 470: case 519: case 520: case 569: case 570: case 619: case 620: case 669: case 670: case 719: case 720: case 769: case 770: case 819: case 820: case 869: case 870: case 919: case 920: case 969: case 970: case 1019: case 1020: return 10; + case 271: case 272: case 321: case 322: case 371: case 372: case 421: case 422: case 471: case 472: case 521: case 522: case 571: case 572: case 621: case 622: case 671: case 672: case 721: case 722: case 771: case 772: case 821: case 822: case 871: case 872: case 921: case 922: case 971: case 972: case 1021: case 1022: return 11; + case 273: case 274: case 323: case 324: case 373: case 374: case 423: case 424: case 473: case 474: case 523: case 524: case 573: case 574: case 623: case 624: case 673: case 674: case 723: case 724: case 773: case 774: case 823: case 824: case 873: case 874: case 923: case 924: case 973: case 974: case 1023: case 1024: return 12; + case 275: case 276: case 325: case 326: case 375: case 376: case 425: case 426: case 475: case 476: case 525: case 526: case 575: case 576: case 625: case 626: case 675: case 676: case 725: case 726: case 775: case 776: case 825: case 826: case 875: case 876: case 925: case 926: case 975: case 976: case 1025: case 1026: return 13; + case 277: case 278: case 327: case 328: case 377: case 378: case 427: case 428: case 477: case 478: case 527: case 528: case 577: case 578: case 627: case 628: case 677: case 678: case 727: case 728: case 777: case 778: case 827: case 828: case 877: case 878: case 927: case 928: case 977: case 978: case 1027: case 1028: return 14; + case 279: case 280: case 329: case 330: case 379: case 380: case 429: case 430: case 479: case 480: case 529: case 530: case 579: case 580: case 629: case 630: case 679: case 680: case 729: case 730: case 779: case 780: case 829: case 830: case 879: case 880: case 929: case 930: case 979: case 980: case 1029: case 1030: return 15; + case 281: case 282: case 331: case 332: case 381: case 382: case 431: case 432: case 481: case 482: case 531: case 532: case 581: case 582: case 631: case 632: case 681: case 682: case 731: case 732: case 781: case 782: case 831: case 832: case 881: case 882: case 931: case 932: case 981: case 982: case 1031: case 1032: return 16; + case 283: case 284: case 333: case 334: case 383: case 384: case 433: case 434: case 483: case 484: case 533: case 534: case 583: case 584: case 633: case 634: case 683: case 684: case 733: case 734: case 783: case 784: case 833: case 834: case 883: case 884: case 933: case 934: case 983: case 984: case 1033: case 1034: return 17; + case 285: case 286: case 335: case 336: case 385: case 386: case 435: case 436: case 485: case 486: case 535: case 536: case 585: case 586: case 635: case 636: case 685: case 686: case 735: case 736: case 785: case 786: case 835: case 836: case 885: case 886: case 935: case 936: case 985: case 986: case 1035: case 1036: return 18; + case 287: case 288: case 337: case 338: case 387: case 388: case 437: case 438: case 487: case 488: case 537: case 538: case 587: case 588: case 637: case 638: case 687: case 688: case 737: case 738: case 787: case 788: case 837: case 838: case 887: case 888: case 937: case 938: case 987: case 988: case 1037: case 1038: return 19; + case 253: case 254: case 303: case 304: case 353: case 354: case 403: case 404: case 453: case 454: case 503: case 504: case 553: case 554: case 603: case 604: case 653: case 654: case 703: case 704: case 753: case 754: case 803: case 804: case 853: case 854: case 903: case 904: case 953: case 954: case 1003: case 1004: return 2; + case 289: case 290: case 339: case 340: case 389: case 390: case 439: case 440: case 489: case 490: case 539: case 540: case 589: case 590: case 639: case 640: case 689: case 690: case 739: case 740: case 789: case 790: case 839: case 840: case 889: case 890: case 939: case 940: case 989: case 990: case 1039: case 1040: return 20; + case 291: case 292: case 341: case 342: case 391: case 392: case 441: case 442: case 491: case 492: case 541: case 542: case 591: case 592: case 641: case 642: case 691: case 692: case 741: case 742: case 791: case 792: case 841: case 842: case 891: case 892: case 941: case 942: case 991: case 992: case 1041: case 1042: return 21; + case 293: case 294: case 343: case 344: case 393: case 394: case 443: case 444: case 493: case 494: case 543: case 544: case 593: case 594: case 643: case 644: case 693: case 694: case 743: case 744: case 793: case 794: case 843: case 844: case 893: case 894: case 943: case 944: case 993: case 994: case 1043: case 1044: return 22; + case 295: case 296: case 345: case 346: case 395: case 396: case 445: case 446: case 495: case 496: case 545: case 546: case 595: case 596: case 645: case 646: case 695: case 696: case 745: case 746: case 795: case 796: case 845: case 846: case 895: case 896: case 945: case 946: case 995: case 996: case 1045: case 1046: return 23; + case 297: case 298: case 347: case 348: case 397: case 398: case 447: case 448: case 497: case 498: case 547: case 548: case 597: case 598: case 647: case 648: case 697: case 698: case 747: case 748: case 797: case 798: case 847: case 848: case 897: case 898: case 947: case 948: case 997: case 998: case 1047: case 1048: return 24; + case 255: case 256: case 305: case 306: case 355: case 356: case 405: case 406: case 455: case 456: case 505: case 506: case 555: case 556: case 605: case 606: case 655: case 656: case 705: case 706: case 755: case 756: case 805: case 806: case 855: case 856: case 905: case 906: case 955: case 956: case 1005: case 1006: return 3; + case 257: case 258: case 307: case 308: case 357: case 358: case 407: case 408: case 457: case 458: case 507: case 508: case 557: case 558: case 607: case 608: case 657: case 658: case 707: case 708: case 757: case 758: case 807: case 808: case 857: case 858: case 907: case 908: case 957: case 958: case 1007: case 1008: return 4; + case 259: case 260: case 309: case 310: case 359: case 360: case 409: case 410: case 459: case 460: case 509: case 510: case 559: case 560: case 609: case 610: case 659: case 660: case 709: case 710: case 759: case 760: case 809: case 810: case 859: case 860: case 909: case 910: case 959: case 960: case 1009: case 1010: return 5; + case 261: case 262: case 311: case 312: case 361: case 362: case 411: case 412: case 461: case 462: case 511: case 512: case 561: case 562: case 611: case 612: case 661: case 662: case 711: case 712: case 761: case 762: case 811: case 812: case 861: case 862: case 911: case 912: case 961: case 962: case 1011: case 1012: return 6; + case 263: case 264: case 313: case 314: case 363: case 364: case 413: case 414: case 463: case 464: case 513: case 514: case 563: case 564: case 613: case 614: case 663: case 664: case 713: case 714: case 763: case 764: case 813: case 814: case 863: case 864: case 913: case 914: case 963: case 964: case 1013: case 1014: return 7; + case 265: case 266: case 315: case 316: case 365: case 366: case 415: case 416: case 465: case 466: case 515: case 516: case 565: case 566: case 615: case 616: case 665: case 666: case 715: case 716: case 765: case 766: case 815: case 816: case 865: case 866: case 915: case 916: case 965: case 966: case 1015: case 1016: return 8; + default: return 9; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 250: case 252: case 254: case 256: case 258: case 260: case 262: case 264: case 266: case 268: case 270: case 272: case 274: case 276: case 278: case 280: case 282: case 284: case 286: case 288: case 290: case 292: case 294: case 296: case 298: case 300: case 302: case 304: case 306: case 308: case 310: case 312: case 314: case 316: case 318: case 320: case 322: case 324: case 326: case 328: case 330: case 332: case 334: case 336: case 338: case 340: case 342: case 344: case 346: case 348: case 350: case 352: case 354: case 356: case 358: case 360: case 362: case 364: case 366: case 368: case 370: case 372: case 374: case 376: case 378: case 380: case 382: case 384: case 386: case 388: case 390: case 392: case 394: case 396: case 398: case 400: case 402: case 404: case 406: case 408: case 410: case 412: case 414: case 416: case 418: case 420: case 422: case 424: case 426: case 428: case 430: case 432: case 434: case 436: case 438: case 440: case 442: case 444: case 446: case 448: case 450: case 452: case 454: case 456: case 458: case 460: case 462: case 464: case 466: case 468: case 470: case 472: case 474: case 476: case 478: case 480: case 482: case 484: case 486: case 488: case 490: case 492: case 494: case 496: case 498: case 500: case 502: case 504: case 506: case 508: case 510: case 512: case 514: case 516: case 518: case 520: case 522: case 524: case 526: case 528: case 530: case 532: case 534: case 536: case 538: case 540: case 542: case 544: case 546: case 548: case 550: case 552: case 554: case 556: case 558: case 560: case 562: case 564: case 566: case 568: case 570: case 572: case 574: case 576: case 578: case 580: case 582: case 584: case 586: case 588: case 590: case 592: case 594: case 596: case 598: case 600: case 602: case 604: case 606: case 608: case 610: case 612: case 614: case 616: case 618: case 620: case 622: case 624: case 626: case 628: case 630: case 632: case 634: case 636: case 638: case 640: case 642: case 644: case 646: case 648: case 650: case 652: case 654: case 656: case 658: case 660: case 662: case 664: case 666: case 668: case 670: case 672: case 674: case 676: case 678: case 680: case 682: case 684: case 686: case 688: case 690: case 692: case 694: case 696: case 698: case 700: case 702: case 704: case 706: case 708: case 710: case 712: case 714: case 716: case 718: case 720: case 722: case 724: case 726: case 728: case 730: case 732: case 734: case 736: case 738: case 740: case 742: case 744: case 746: case 748: case 750: case 752: case 754: case 756: case 758: case 760: case 762: case 764: case 766: case 768: case 770: case 772: case 774: case 776: case 778: case 780: case 782: case 784: case 786: case 788: case 790: case 792: case 794: case 796: case 798: case 800: case 802: case 804: case 806: case 808: case 810: case 812: case 814: case 816: case 818: case 820: case 822: case 824: case 826: case 828: case 830: case 832: case 834: case 836: case 838: case 840: case 842: case 844: case 846: case 848: case 850: case 852: case 854: case 856: case 858: case 860: case 862: case 864: case 866: case 868: case 870: case 872: case 874: case 876: case 878: case 880: case 882: case 884: case 886: case 888: case 890: case 892: case 894: case 896: case 898: case 900: case 902: case 904: case 906: case 908: case 910: case 912: case 914: case 916: case 918: case 920: case 922: case 924: case 926: case 928: case 930: case 932: case 934: case 936: case 938: case 940: case 942: case 944: case 946: case 948: case 950: case 952: case 954: case 956: case 958: case 960: case 962: case 964: case 966: case 968: case 970: case 972: case 974: case 976: case 978: case 980: case 982: case 984: case 986: case 988: case 990: case 992: case 994: case 996: case 998: case 1000: case 1002: case 1004: case 1006: case 1008: case 1010: case 1012: case 1014: case 1016: case 1018: case 1020: case 1022: case 1024: case 1046: case 1048: case 1026: case 1028: case 1030: case 1032: case 1034: case 1036: case 1038: case 1040: case 1042: case 1044: return false; + default: return true; + } + } + } + namespace OakButton + { + short OakButton() + { + return 6355; + } + enum Face Face(short ID) + { + switch (ID) + { + case 6362: case 6366: case 6363: case 6367: case 6364: case 6368: case 6365: case 6369: return Face::Ceiling; + case 6346: case 6350: case 6347: case 6351: case 6348: case 6352: case 6349: case 6353: return Face::Floor; + default: return Face::Wall; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6350: case 6358: case 6366: case 6351: case 6359: case 6367: return eBlockFace::BLOCK_FACE_XM; + case 6352: case 6360: case 6368: case 6353: case 6361: case 6369: return eBlockFace::BLOCK_FACE_XP; + case 6346: case 6354: case 6362: case 6347: case 6355: case 6363: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 6347: case 6351: case 6355: case 6359: case 6363: case 6367: case 6349: case 6353: case 6357: case 6361: case 6365: case 6369: return false; + default: return true; + } + } + } + namespace OakDoor + { + short OakDoor() + { + return 3584; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 3610: case 3618: case 3611: case 3619: case 3612: case 3620: case 3605: case 3613: case 3606: case 3614: case 3607: case 3615: case 3608: case 3616: case 3609: case 3617: return eBlockFace::BLOCK_FACE_XM; + case 3626: case 3634: case 3627: case 3635: case 3628: case 3621: case 3629: case 3622: case 3630: case 3623: case 3631: case 3624: case 3632: case 3625: case 3633: case 3636: return eBlockFace::BLOCK_FACE_XP; + case 3579: case 3587: case 3580: case 3588: case 3573: case 3581: case 3574: case 3582: case 3575: case 3583: case 3576: case 3584: case 3577: case 3585: case 3578: case 3586: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 3618: case 3634: case 3587: case 3603: case 3619: case 3635: case 3588: case 3604: case 3620: case 3581: case 3597: case 3613: case 3629: case 3582: case 3598: case 3614: case 3630: case 3583: case 3599: case 3615: case 3631: case 3584: case 3600: case 3616: case 3632: case 3585: case 3601: case 3617: case 3633: case 3586: case 3602: case 3636: return Half::Lower; + default: return Half::Upper; + } + } + enum Hinge Hinge(short ID) + { + switch (ID) + { + case 3573: case 3581: case 3589: case 3597: case 3605: case 3613: case 3621: case 3629: case 3574: case 3582: case 3590: case 3598: case 3606: case 3614: case 3622: case 3630: case 3575: case 3583: case 3591: case 3599: case 3607: case 3615: case 3623: case 3631: case 3576: case 3584: case 3592: case 3600: case 3608: case 3616: case 3624: case 3632: return Hinge::Left; + default: return Hinge::Right; + } + } + bool Open(short ID) + { + switch (ID) + { + case 3579: case 3587: case 3595: case 3603: case 3611: case 3619: case 3627: case 3635: case 3580: case 3588: case 3596: case 3604: case 3612: case 3620: case 3628: case 3575: case 3583: case 3591: case 3599: case 3607: case 3615: case 3623: case 3631: case 3576: case 3584: case 3592: case 3600: case 3608: case 3616: case 3624: case 3632: case 3636: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 3610: case 3618: case 3626: case 3634: case 3580: case 3588: case 3596: case 3604: case 3612: case 3620: case 3628: case 3574: case 3582: case 3590: case 3598: case 3606: case 3614: case 3622: case 3630: case 3576: case 3584: case 3592: case 3600: case 3608: case 3616: case 3624: case 3632: case 3578: case 3586: case 3594: case 3602: case 3636: return false; + default: return true; + } + } + } + namespace OakFence + { + short OakFence() + { + return 3997; + } + bool East(short ID) + { + switch (ID) + { + case 3983: case 3985: case 3987: case 3989: case 3991: case 3993: case 3995: case 3982: case 3984: case 3986: case 3988: case 3990: case 3992: case 3994: case 3996: case 3997: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 3979: case 3981: case 3991: case 3993: case 3995: case 3974: case 3976: case 3978: case 3980: case 3990: case 3992: case 3994: case 3996: case 3975: case 3977: case 3997: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 3979: case 3981: case 3987: case 3989: case 3995: case 3970: case 3972: case 3978: case 3980: case 3986: case 3988: case 3994: case 3996: case 3971: case 3973: case 3997: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 3981: case 3985: case 3989: case 3993: case 3968: case 3972: case 3976: case 3980: case 3984: case 3988: case 3992: case 3996: case 3969: case 3973: case 3977: case 3997: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 3979: case 3981: case 3983: case 3985: case 3987: case 3989: case 3991: case 3993: case 3995: case 3967: case 3969: case 3971: case 3973: case 3975: case 3977: case 3997: return false; + default: return true; + } + } + } + namespace OakFenceGate + { + short OakFenceGate() + { + return 4827; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 4839: case 4843: case 4836: case 4840: case 4837: case 4841: case 4838: case 4842: return eBlockFace::BLOCK_FACE_XM; + case 4847: case 4844: case 4848: case 4845: case 4849: case 4846: case 4850: case 4851: return eBlockFace::BLOCK_FACE_XP; + case 4823: case 4827: case 4820: case 4824: case 4821: case 4825: case 4822: case 4826: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool InWall(short ID) + { + switch (ID) + { + case 4827: case 4835: case 4843: case 4824: case 4832: case 4840: case 4848: case 4825: case 4833: case 4841: case 4849: case 4826: case 4834: case 4842: case 4850: case 4851: return false; + default: return true; + } + } + bool Open(short ID) + { + switch (ID) + { + case 4823: case 4827: case 4831: case 4835: case 4839: case 4843: case 4847: case 4822: case 4826: case 4830: case 4834: case 4838: case 4842: case 4846: case 4850: case 4851: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 4823: case 4827: case 4831: case 4835: case 4839: case 4843: case 4847: case 4821: case 4825: case 4829: case 4833: case 4837: case 4841: case 4845: case 4849: case 4851: return false; + default: return true; + } + } + } + namespace OakLeaves + { + short OakLeaves() + { + return 158; + } + unsigned char Distance(short ID) + { + switch (ID) + { + case 146: case 145: return 1; + case 147: case 148: return 2; + case 149: case 150: return 3; + case 151: case 152: return 4; + case 153: case 154: return 5; + case 155: case 156: return 6; + default: return 7; + } + } + bool Persistent(short ID) + { + switch (ID) + { + case 146: case 154: case 148: case 156: case 150: case 158: case 152: return false; + default: return true; + } + } + } + namespace OakLog + { + short OakLog() + { + return 74; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 73: return Axis::X; + case 74: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace OakPlanks + { + } + namespace OakPressurePlate + { + short OakPressurePlate() + { + return 3874; + } + bool Powered(short ID) + { + switch (ID) + { + case 3874: return false; + default: return true; + } + } + } + namespace OakSapling + { + short OakSapling() + { + return 21; + } + unsigned char Stage(short ID) + { + switch (ID) + { + case 21: return 0; + default: return 1; + } + } + } + namespace OakSign + { + short OakSign() + { + return 3382; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 3381: case 3382: return 0; + case 3383: case 3384: return 1; + case 3402: case 3401: return 10; + case 3404: case 3403: return 11; + case 3406: case 3405: return 12; + case 3408: case 3407: return 13; + case 3410: case 3409: return 14; + case 3411: case 3412: return 15; + case 3385: case 3386: return 2; + case 3387: case 3388: return 3; + case 3390: case 3389: return 4; + case 3392: case 3391: return 5; + case 3394: case 3393: return 6; + case 3396: case 3395: return 7; + case 3398: case 3397: return 8; + default: return 9; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 3390: case 3392: case 3394: case 3396: case 3398: case 3400: case 3402: case 3404: case 3406: case 3408: case 3410: case 3382: case 3384: case 3386: case 3388: case 3412: return false; + default: return true; + } + } + } + namespace OakSlab + { + short OakSlab() + { + return 8303; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8302: case 8303: return Type::Bottom; + case 8304: case 8305: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8301: case 8305: case 8303: return false; + default: return true; + } + } + } + namespace OakStairs + { + short OakStairs() + { + return 1965; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 2000: case 2001: case 2002: case 2003: case 2004: case 2005: case 2006: case 2007: case 2008: case 2009: case 1994: case 2010: case 1995: case 2011: case 1996: case 2012: case 1997: case 2013: case 1998: case 1999: return eBlockFace::BLOCK_FACE_XM; + case 2031: case 2016: case 2032: case 2017: case 2033: case 2018: case 2019: case 2020: case 2021: case 2022: case 2023: case 2024: case 2025: case 2026: case 2027: case 2028: case 2029: case 2014: case 2030: case 2015: return eBlockFace::BLOCK_FACE_XP; + case 1968: case 1969: case 1954: case 1970: case 1955: case 1971: case 1956: case 1972: case 1957: case 1973: case 1958: case 1959: case 1960: case 1961: case 1962: case 1963: case 1964: case 1965: case 1966: case 1967: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 2031: case 1968: case 1984: case 2032: case 1969: case 1985: case 2033: case 1970: case 1986: case 1971: case 1987: case 1972: case 1988: case 2004: case 1973: case 1989: case 2005: case 1990: case 2006: case 1991: case 2007: case 1992: case 2008: case 2024: case 1993: case 2009: case 2025: case 2010: case 2026: case 2011: case 2027: case 1964: case 2012: case 2028: case 1965: case 2013: case 2029: case 1966: case 2030: case 1967: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 2016: case 2017: case 1986: case 1987: case 1956: case 1957: case 2006: case 2007: case 1976: case 1977: case 2026: case 2027: case 1996: case 1997: case 1966: case 1967: return Shape::InnerLeft; + case 1968: case 1969: case 2018: case 2019: case 1988: case 1989: case 1958: case 1959: case 2008: case 2009: case 1978: case 1979: case 2028: case 2029: case 1998: case 1999: return Shape::InnerRight; + case 2031: case 2000: case 2001: case 1970: case 1971: case 2020: case 2021: case 1990: case 1991: case 1960: case 1961: case 2010: case 2011: case 1980: case 1981: case 2030: return Shape::OuterLeft; + case 2032: case 2033: case 2002: case 2003: case 1972: case 1973: case 2022: case 2023: case 1992: case 1993: case 1962: case 1963: case 2012: case 2013: case 1982: case 1983: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 2031: case 1969: case 1985: case 2001: case 2017: case 2033: case 1955: case 1971: case 1987: case 2003: case 2019: case 1957: case 1973: case 1989: case 2005: case 2021: case 1959: case 1975: case 1991: case 2007: case 2023: case 1961: case 1977: case 1993: case 2009: case 2025: case 1963: case 1979: case 1995: case 2011: case 2027: case 1965: case 1981: case 1997: case 2013: case 2029: case 1967: case 1983: case 1999: case 2015: return false; + default: return true; + } + } + } + namespace OakTrapdoor + { + short OakTrapdoor() + { + return 4126; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 4148: case 4149: case 4150: case 4151: case 4152: case 4153: case 4154: case 4155: case 4156: case 4157: case 4158: case 4143: case 4144: case 4145: case 4146: case 4147: return eBlockFace::BLOCK_FACE_XM; + case 4164: case 4165: case 4166: case 4167: case 4168: case 4169: case 4170: case 4171: case 4172: case 4173: case 4159: case 4160: case 4161: case 4162: case 4163: case 4174: return eBlockFace::BLOCK_FACE_XP; + case 4117: case 4118: case 4119: case 4120: case 4121: case 4122: case 4123: case 4124: case 4125: case 4126: case 4111: case 4112: case 4113: case 4114: case 4115: case 4116: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 4119: case 4135: case 4151: case 4167: case 4120: case 4136: case 4152: case 4168: case 4121: case 4137: case 4153: case 4169: case 4122: case 4138: case 4154: case 4170: case 4123: case 4139: case 4155: case 4171: case 4124: case 4140: case 4156: case 4172: case 4125: case 4141: case 4157: case 4173: case 4126: case 4142: case 4158: case 4174: return Half::Bottom; + default: return Half::Top; + } + } + bool Open(short ID) + { + switch (ID) + { + case 4132: case 4148: case 4164: case 4117: case 4133: case 4149: case 4165: case 4118: case 4134: case 4150: case 4166: case 4123: case 4139: case 4155: case 4171: case 4124: case 4140: case 4156: case 4172: case 4125: case 4141: case 4157: case 4173: case 4126: case 4142: case 4158: case 4115: case 4131: case 4147: case 4163: case 4116: case 4174: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 4117: case 4133: case 4149: case 4165: case 4118: case 4134: case 4150: case 4166: case 4121: case 4137: case 4153: case 4169: case 4122: case 4138: case 4154: case 4170: case 4125: case 4141: case 4157: case 4173: case 4126: case 4142: case 4158: case 4113: case 4129: case 4145: case 4161: case 4114: case 4130: case 4146: case 4162: case 4174: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 4132: case 4148: case 4164: case 4118: case 4134: case 4150: case 4166: case 4120: case 4136: case 4152: case 4168: case 4122: case 4138: case 4154: case 4170: case 4124: case 4140: case 4156: case 4172: case 4126: case 4142: case 4158: case 4112: case 4128: case 4144: case 4160: case 4114: case 4130: case 4146: case 4162: case 4116: case 4174: return false; + default: return true; + } + } + } + namespace OakWallSign + { + short OakWallSign() + { + return 3736; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 3739: case 3740: return eBlockFace::BLOCK_FACE_XM; + case 3741: case 3742: return eBlockFace::BLOCK_FACE_XP; + case 3736: case 3735: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 3736: case 3738: case 3740: case 3742: return false; + default: return true; + } + } + } + namespace OakWood + { + short OakWood() + { + return 110; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 109: return Axis::X; + case 110: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace Observer + { + short Observer() + { + return 9265; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9267: case 9266: return eBlockFace::BLOCK_FACE_XM; + case 9263: case 9262: return eBlockFace::BLOCK_FACE_XP; + case 9270: case 9271: return eBlockFace::BLOCK_FACE_YM; + case 9269: case 9268: return eBlockFace::BLOCK_FACE_YP; + case 9261: case 9260: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 9261: case 9263: case 9265: case 9267: case 9269: case 9271: return false; + default: return true; + } + } + } + namespace Obsidian + { + } + namespace OrangeBanner + { + short OrangeBanner() + { + return 7913; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 7913: return 0; + case 7914: return 1; + case 7923: return 10; + case 7924: return 11; + case 7925: return 12; + case 7926: return 13; + case 7927: return 14; + case 7928: return 15; + case 7915: return 2; + case 7916: return 3; + case 7917: return 4; + case 7918: return 5; + case 7919: return 6; + case 7920: return 7; + case 7921: return 8; + default: return 9; + } + } + } + namespace OrangeBed + { + short OrangeBed() + { + return 1068; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1074: case 1075: case 1076: case 1073: return eBlockFace::BLOCK_FACE_XM; + case 1077: case 1078: case 1079: case 1080: return eBlockFace::BLOCK_FACE_XP; + case 1066: case 1067: case 1068: case 1065: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1067: case 1071: case 1075: case 1079: case 1068: case 1072: case 1076: case 1080: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1066: case 1070: case 1074: case 1078: case 1068: case 1072: case 1076: case 1080: return Part::Foot; + default: return Part::Head; + } + } + } + namespace OrangeCarpet + { + } + namespace OrangeConcrete + { + } + namespace OrangeConcretePowder + { + } + namespace OrangeGlazedTerracotta + { + short OrangeGlazedTerracotta() + { + return 9378; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9380: return eBlockFace::BLOCK_FACE_XM; + case 9381: return eBlockFace::BLOCK_FACE_XP; + case 9378: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace OrangeShulkerBox + { + short OrangeShulkerBox() + { + return 9288; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9287: return eBlockFace::BLOCK_FACE_XM; + case 9285: return eBlockFace::BLOCK_FACE_XP; + case 9289: return eBlockFace::BLOCK_FACE_YM; + case 9288: return eBlockFace::BLOCK_FACE_YP; + case 9284: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace OrangeStainedGlass + { + } + namespace OrangeStainedGlassPane + { + short OrangeStainedGlassPane() + { + return 6926; + } + bool East(short ID) + { + switch (ID) + { + case 6912: case 6916: case 6920: case 6924: case 6913: case 6917: case 6921: case 6925: case 6914: case 6918: case 6922: case 6911: case 6915: case 6919: case 6923: case 6926: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 6904: case 6908: case 6920: case 6924: case 6905: case 6909: case 6921: case 6925: case 6906: case 6910: case 6922: case 6903: case 6907: case 6919: case 6923: case 6926: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 6900: case 6908: case 6916: case 6924: case 6901: case 6909: case 6917: case 6925: case 6902: case 6910: case 6918: case 6899: case 6907: case 6915: case 6923: case 6926: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 6897: case 6901: case 6905: case 6909: case 6913: case 6917: case 6921: case 6925: case 6898: case 6902: case 6906: case 6910: case 6914: case 6918: case 6922: case 6926: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 6900: case 6904: case 6908: case 6912: case 6916: case 6920: case 6924: case 6898: case 6902: case 6906: case 6910: case 6914: case 6918: case 6922: case 6896: case 6926: return false; + default: return true; + } + } + } + namespace OrangeTerracotta + { + } + namespace OrangeTulip + { + } + namespace OrangeWallBanner + { + short OrangeWallBanner() + { + return 8157; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8159: return eBlockFace::BLOCK_FACE_XM; + case 8160: return eBlockFace::BLOCK_FACE_XP; + case 8157: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace OrangeWool + { + } + namespace OxeyeDaisy + { + } + namespace PackedIce + { + } + namespace Peony + { + short Peony() + { + return 7892; + } + enum Half Half(short ID) + { + switch (ID) + { + case 7892: return Half::Lower; + default: return Half::Upper; + } + } + } + namespace PetrifiedOakSlab + { + short PetrifiedOakSlab() + { + return 8363; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8362: case 8363: return Type::Bottom; + case 8364: case 8365: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8361: case 8365: case 8363: return false; + default: return true; + } + } + } + namespace PinkBanner + { + short PinkBanner() + { + return 7993; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 7993: return 0; + case 7994: return 1; + case 8003: return 10; + case 8004: return 11; + case 8005: return 12; + case 8006: return 13; + case 8007: return 14; + case 8008: return 15; + case 7995: return 2; + case 7996: return 3; + case 7997: return 4; + case 7998: return 5; + case 7999: return 6; + case 8000: return 7; + case 8001: return 8; + default: return 9; + } + } + } + namespace PinkBed + { + short PinkBed() + { + return 1148; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1156: case 1153: case 1154: case 1155: return eBlockFace::BLOCK_FACE_XM; + case 1157: case 1158: case 1159: case 1160: return eBlockFace::BLOCK_FACE_XP; + case 1145: case 1146: case 1147: case 1148: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1152: case 1156: case 1147: case 1151: case 1155: case 1159: case 1148: case 1160: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1152: case 1156: case 1146: case 1150: case 1154: case 1158: case 1148: case 1160: return Part::Foot; + default: return Part::Head; + } + } + } + namespace PinkCarpet + { + } + namespace PinkConcrete + { + } + namespace PinkConcretePowder + { + } + namespace PinkGlazedTerracotta + { + short PinkGlazedTerracotta() + { + return 9398; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9400: return eBlockFace::BLOCK_FACE_XM; + case 9401: return eBlockFace::BLOCK_FACE_XP; + case 9398: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace PinkShulkerBox + { + short PinkShulkerBox() + { + return 9318; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9317: return eBlockFace::BLOCK_FACE_XM; + case 9315: return eBlockFace::BLOCK_FACE_XP; + case 9319: return eBlockFace::BLOCK_FACE_YM; + case 9318: return eBlockFace::BLOCK_FACE_YP; + case 9314: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace PinkStainedGlass + { + } + namespace PinkStainedGlassPane + { + short PinkStainedGlassPane() + { + return 7086; + } + bool East(short ID) + { + switch (ID) + { + case 7071: case 7075: case 7079: case 7083: case 7072: case 7076: case 7080: case 7084: case 7073: case 7077: case 7081: case 7085: case 7074: case 7078: case 7082: case 7086: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 7063: case 7067: case 7079: case 7083: case 7064: case 7068: case 7080: case 7084: case 7065: case 7069: case 7081: case 7085: case 7066: case 7070: case 7082: case 7086: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 7059: case 7067: case 7075: case 7083: case 7060: case 7068: case 7076: case 7084: case 7061: case 7069: case 7077: case 7085: case 7062: case 7070: case 7078: case 7086: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7057: case 7061: case 7065: case 7069: case 7073: case 7077: case 7081: case 7085: case 7058: case 7062: case 7066: case 7070: case 7074: case 7078: case 7082: case 7086: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 7056: case 7060: case 7064: case 7068: case 7072: case 7076: case 7080: case 7084: case 7058: case 7062: case 7066: case 7070: case 7074: case 7078: case 7082: case 7086: return false; + default: return true; + } + } + } + namespace PinkTerracotta + { + } + namespace PinkTulip + { + } + namespace PinkWallBanner + { + short PinkWallBanner() + { + return 8177; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8179: return eBlockFace::BLOCK_FACE_XM; + case 8180: return eBlockFace::BLOCK_FACE_XP; + case 8177: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace PinkWool + { + } + namespace Piston + { + short Piston() + { + return 1354; + } + bool Extended(short ID) + { + switch (ID) + { + case 1355: case 1359: case 1356: case 1357: case 1354: case 1358: return false; + default: return true; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1351: case 1357: return eBlockFace::BLOCK_FACE_XM; + case 1355: case 1349: return eBlockFace::BLOCK_FACE_XP; + case 1359: case 1353: return eBlockFace::BLOCK_FACE_YM; + case 1352: case 1358: return eBlockFace::BLOCK_FACE_YP; + case 1348: case 1354: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace PistonHead + { + short PistonHead() + { + return 1362; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1372: case 1373: case 1374: case 1375: return eBlockFace::BLOCK_FACE_XM; + case 1364: case 1365: case 1366: case 1367: return eBlockFace::BLOCK_FACE_XP; + case 1380: case 1381: case 1382: case 1383: return eBlockFace::BLOCK_FACE_YM; + case 1376: case 1377: case 1378: case 1379: return eBlockFace::BLOCK_FACE_YP; + case 1360: case 1361: case 1362: case 1363: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Short(short ID) + { + switch (ID) + { + case 1362: case 1363: case 1366: case 1367: case 1370: case 1371: case 1374: case 1375: case 1378: case 1379: case 1382: case 1383: return false; + default: return true; + } + } + enum Type Type(short ID) + { + switch (ID) + { + case 1360: case 1362: case 1364: case 1366: case 1368: case 1370: case 1372: case 1374: case 1376: case 1378: case 1380: case 1382: return Type::Normal; + default: return Type::Sticky; + } + } + } + namespace PlayerHead + { + short PlayerHead() + { + return 6550; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 6550: return 0; + case 6551: return 1; + case 6560: return 10; + case 6561: return 11; + case 6562: return 12; + case 6563: return 13; + case 6564: return 14; + case 6565: return 15; + case 6552: return 2; + case 6553: return 3; + case 6554: return 4; + case 6555: return 5; + case 6556: return 6; + case 6557: return 7; + case 6558: return 8; + default: return 9; + } + } + } + namespace PlayerWallHead + { + short PlayerWallHead() + { + return 6566; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6568: return eBlockFace::BLOCK_FACE_XM; + case 6569: return eBlockFace::BLOCK_FACE_XP; + case 6566: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace Podzol + { + short Podzol() + { + return 13; + } + bool Snowy(short ID) + { + switch (ID) + { + case 13: return false; + default: return true; + } + } + } + namespace PolishedAndesite + { + } + namespace PolishedAndesiteSlab + { + short PolishedAndesiteSlab() + { + return 10858; + } + enum Type Type(short ID) + { + switch (ID) + { + case 10857: case 10858: return Type::Bottom; + case 10859: case 10860: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10856: case 10860: case 10858: return false; + default: return true; + } + } + } + namespace PolishedAndesiteStairs + { + short PolishedAndesiteStairs() + { + return 10640; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 10669: case 10670: case 10671: case 10672: case 10673: case 10674: case 10675: case 10676: case 10677: case 10678: case 10679: case 10680: case 10681: case 10682: case 10683: case 10684: case 10685: case 10686: case 10687: case 10688: return eBlockFace::BLOCK_FACE_XM; + case 10689: case 10690: case 10691: case 10692: case 10693: case 10694: case 10695: case 10696: case 10697: case 10698: case 10699: case 10700: case 10701: case 10702: case 10703: case 10704: case 10705: case 10706: case 10707: case 10708: return eBlockFace::BLOCK_FACE_XP; + case 10629: case 10630: case 10631: case 10632: case 10633: case 10634: case 10635: case 10636: case 10637: case 10638: case 10639: case 10640: case 10641: case 10642: case 10643: case 10644: case 10645: case 10646: case 10647: case 10648: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 10639: case 10640: case 10641: case 10642: case 10643: case 10644: case 10645: case 10646: case 10647: case 10648: case 10659: case 10660: case 10661: case 10662: case 10663: case 10664: case 10665: case 10666: case 10667: case 10668: case 10679: case 10680: case 10681: case 10682: case 10683: case 10684: case 10685: case 10686: case 10687: case 10688: case 10699: case 10700: case 10701: case 10702: case 10703: case 10704: case 10705: case 10706: case 10707: case 10708: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 10631: case 10632: case 10641: case 10642: case 10651: case 10652: case 10661: case 10662: case 10671: case 10672: case 10681: case 10682: case 10691: case 10692: case 10701: case 10702: return Shape::InnerLeft; + case 10633: case 10634: case 10643: case 10644: case 10653: case 10654: case 10663: case 10664: case 10673: case 10674: case 10683: case 10684: case 10693: case 10694: case 10703: case 10704: return Shape::InnerRight; + case 10635: case 10636: case 10645: case 10646: case 10655: case 10656: case 10665: case 10666: case 10675: case 10676: case 10685: case 10686: case 10695: case 10696: case 10705: case 10706: return Shape::OuterLeft; + case 10637: case 10638: case 10647: case 10648: case 10657: case 10658: case 10667: case 10668: case 10677: case 10678: case 10687: case 10688: case 10697: case 10698: case 10707: case 10708: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10630: case 10632: case 10634: case 10636: case 10638: case 10640: case 10642: case 10644: case 10646: case 10648: case 10650: case 10652: case 10654: case 10656: case 10658: case 10660: case 10662: case 10664: case 10666: case 10668: case 10670: case 10672: case 10674: case 10676: case 10678: case 10680: case 10682: case 10684: case 10686: case 10688: case 10690: case 10692: case 10694: case 10696: case 10698: case 10700: case 10702: case 10704: case 10706: case 10708: return false; + default: return true; + } + } + } + namespace PolishedBasalt + { + short PolishedBasalt() + { + return 4006; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 4005: return Axis::X; + case 4006: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace PolishedBlackstone + { + } + namespace PolishedBlackstoneBrickSlab + { + short PolishedBlackstoneBrickSlab() + { + return 16257; + } + enum Type Type(short ID) + { + switch (ID) + { + case 16256: case 16257: return Type::Bottom; + case 16258: case 16259: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 16257: case 16255: case 16259: return false; + default: return true; + } + } + } + namespace PolishedBlackstoneBrickStairs + { + short PolishedBlackstoneBrickStairs() + { + return 16271; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 16310: case 16311: case 16312: case 16313: case 16314: case 16315: case 16316: case 16317: case 16318: case 16319: case 16300: case 16301: case 16302: case 16303: case 16304: case 16305: case 16306: case 16307: case 16308: case 16309: return eBlockFace::BLOCK_FACE_XM; + case 16320: case 16321: case 16322: case 16323: case 16324: case 16325: case 16326: case 16327: case 16328: case 16329: case 16330: case 16331: case 16332: case 16333: case 16334: case 16335: case 16336: case 16337: case 16338: case 16339: return eBlockFace::BLOCK_FACE_XP; + case 16260: case 16261: case 16262: case 16263: case 16264: case 16265: case 16266: case 16267: case 16268: case 16269: case 16270: case 16271: case 16272: case 16273: case 16274: case 16275: case 16276: case 16277: case 16278: case 16279: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 16310: case 16311: case 16312: case 16313: case 16314: case 16315: case 16316: case 16317: case 16318: case 16319: case 16330: case 16331: case 16332: case 16333: case 16334: case 16335: case 16336: case 16337: case 16338: case 16339: case 16270: case 16271: case 16272: case 16273: case 16274: case 16275: case 16276: case 16277: case 16278: case 16279: case 16290: case 16291: case 16292: case 16293: case 16294: case 16295: case 16296: case 16297: case 16298: case 16299: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 16312: case 16313: case 16322: case 16323: case 16332: case 16333: case 16262: case 16263: case 16272: case 16273: case 16282: case 16283: case 16292: case 16293: case 16302: case 16303: return Shape::InnerLeft; + case 16314: case 16315: case 16324: case 16325: case 16334: case 16335: case 16264: case 16265: case 16274: case 16275: case 16284: case 16285: case 16294: case 16295: case 16304: case 16305: return Shape::InnerRight; + case 16316: case 16317: case 16326: case 16327: case 16336: case 16337: case 16266: case 16267: case 16276: case 16277: case 16286: case 16287: case 16296: case 16297: case 16306: case 16307: return Shape::OuterLeft; + case 16318: case 16319: case 16328: case 16329: case 16338: case 16339: case 16268: case 16269: case 16278: case 16279: case 16288: case 16289: case 16298: case 16299: case 16308: case 16309: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 16311: case 16313: case 16315: case 16317: case 16319: case 16321: case 16323: case 16325: case 16327: case 16329: case 16331: case 16333: case 16335: case 16337: case 16339: case 16261: case 16263: case 16265: case 16267: case 16269: case 16271: case 16273: case 16275: case 16277: case 16279: case 16281: case 16283: case 16285: case 16287: case 16289: case 16291: case 16293: case 16295: case 16297: case 16299: case 16301: case 16303: case 16305: case 16307: case 16309: return false; + default: return true; + } + } + } + namespace PolishedBlackstoneBrickWall + { + short PolishedBlackstoneBrickWall() + { + return 16343; + } + enum East East(short ID) + { + switch (ID) + { + case 16455: case 16463: case 16471: case 16479: case 16487: case 16495: case 16503: case 16511: case 16519: case 16527: case 16535: case 16543: case 16551: case 16448: case 16456: case 16464: case 16472: case 16480: case 16488: case 16496: case 16504: case 16512: case 16520: case 16528: case 16536: case 16544: case 16552: case 16449: case 16457: case 16465: case 16473: case 16481: case 16489: case 16497: case 16505: case 16513: case 16521: case 16529: case 16537: case 16545: case 16553: case 16450: case 16458: case 16466: case 16474: case 16482: case 16490: case 16498: case 16506: case 16514: case 16522: case 16530: case 16538: case 16546: case 16554: case 16451: case 16459: case 16467: case 16475: case 16483: case 16491: case 16499: case 16507: case 16515: case 16523: case 16531: case 16539: case 16547: case 16555: case 16452: case 16460: case 16468: case 16476: case 16484: case 16492: case 16500: case 16508: case 16516: case 16524: case 16532: case 16540: case 16548: case 16453: case 16461: case 16469: case 16477: case 16485: case 16493: case 16501: case 16509: case 16517: case 16525: case 16533: case 16541: case 16549: case 16454: case 16462: case 16470: case 16478: case 16486: case 16494: case 16502: case 16510: case 16518: case 16526: case 16534: case 16542: case 16550: return East::Low; + case 16415: case 16423: case 16431: case 16439: case 16447: case 16340: case 16344: case 16348: case 16352: case 16356: case 16360: case 16364: case 16368: case 16372: case 16376: case 16380: case 16384: case 16392: case 16400: case 16408: case 16416: case 16424: case 16432: case 16440: case 16385: case 16393: case 16401: case 16409: case 16417: case 16425: case 16433: case 16441: case 16341: case 16345: case 16349: case 16353: case 16357: case 16361: case 16365: case 16369: case 16373: case 16377: case 16381: case 16386: case 16394: case 16402: case 16410: case 16418: case 16426: case 16434: case 16442: case 16387: case 16395: case 16403: case 16411: case 16419: case 16427: case 16435: case 16443: case 16342: case 16346: case 16350: case 16354: case 16358: case 16362: case 16366: case 16370: case 16374: case 16378: case 16382: case 16388: case 16396: case 16404: case 16412: case 16420: case 16428: case 16436: case 16444: case 16389: case 16397: case 16405: case 16413: case 16421: case 16429: case 16437: case 16445: case 16343: case 16347: case 16351: case 16355: case 16359: case 16363: case 16367: case 16371: case 16375: case 16379: case 16383: case 16390: case 16398: case 16406: case 16414: case 16422: case 16430: case 16438: case 16446: case 16391: case 16399: case 16407: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 16487: case 16495: case 16503: case 16511: case 16519: case 16599: case 16607: case 16615: case 16623: case 16376: case 16380: case 16384: case 16392: case 16400: case 16408: case 16488: case 16496: case 16504: case 16512: case 16592: case 16600: case 16608: case 16616: case 16624: case 16385: case 16393: case 16401: case 16409: case 16489: case 16497: case 16505: case 16513: case 16593: case 16601: case 16609: case 16617: case 16625: case 16377: case 16381: case 16386: case 16394: case 16402: case 16410: case 16490: case 16498: case 16506: case 16514: case 16594: case 16602: case 16610: case 16618: case 16626: case 16387: case 16395: case 16403: case 16411: case 16491: case 16499: case 16507: case 16515: case 16595: case 16603: case 16611: case 16619: case 16627: case 16378: case 16382: case 16388: case 16396: case 16404: case 16484: case 16492: case 16500: case 16508: case 16516: case 16596: case 16604: case 16612: case 16620: case 16389: case 16397: case 16405: case 16485: case 16493: case 16501: case 16509: case 16517: case 16597: case 16605: case 16613: case 16621: case 16379: case 16383: case 16390: case 16398: case 16406: case 16486: case 16494: case 16502: case 16510: case 16518: case 16598: case 16606: case 16614: case 16622: case 16391: case 16399: case 16407: return North::Low; + case 16455: case 16463: case 16471: case 16479: case 16559: case 16567: case 16575: case 16583: case 16591: case 16340: case 16344: case 16348: case 16352: case 16356: case 16360: case 16364: case 16368: case 16372: case 16448: case 16456: case 16464: case 16472: case 16480: case 16560: case 16568: case 16576: case 16584: case 16449: case 16457: case 16465: case 16473: case 16481: case 16561: case 16569: case 16577: case 16585: case 16341: case 16345: case 16349: case 16353: case 16357: case 16361: case 16365: case 16369: case 16373: case 16450: case 16458: case 16466: case 16474: case 16482: case 16562: case 16570: case 16578: case 16586: case 16451: case 16459: case 16467: case 16475: case 16483: case 16563: case 16571: case 16579: case 16587: case 16342: case 16346: case 16350: case 16354: case 16358: case 16362: case 16366: case 16370: case 16374: case 16452: case 16460: case 16468: case 16476: case 16556: case 16564: case 16572: case 16580: case 16588: case 16453: case 16461: case 16469: case 16477: case 16557: case 16565: case 16573: case 16581: case 16589: case 16343: case 16347: case 16351: case 16355: case 16359: case 16363: case 16367: case 16371: case 16375: case 16454: case 16462: case 16470: case 16478: case 16558: case 16566: case 16574: case 16582: case 16590: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 16431: case 16463: case 16471: case 16503: case 16535: case 16543: case 16575: case 16607: case 16615: case 16647: case 16352: case 16356: case 16360: case 16392: case 16424: case 16432: case 16464: case 16496: case 16504: case 16536: case 16568: case 16576: case 16608: case 16640: case 16648: case 16393: case 16425: case 16433: case 16465: case 16497: case 16505: case 16537: case 16569: case 16577: case 16609: case 16641: case 16649: case 16353: case 16357: case 16361: case 16394: case 16426: case 16434: case 16466: case 16498: case 16506: case 16538: case 16570: case 16578: case 16610: case 16642: case 16650: case 16395: case 16427: case 16435: case 16467: case 16499: case 16507: case 16539: case 16571: case 16579: case 16611: case 16643: case 16651: case 16354: case 16358: case 16362: case 16388: case 16396: case 16428: case 16460: case 16468: case 16500: case 16532: case 16540: case 16572: case 16604: case 16612: case 16644: case 16389: case 16397: case 16429: case 16461: case 16469: case 16501: case 16533: case 16541: case 16573: case 16605: case 16613: case 16645: case 16355: case 16359: case 16363: case 16390: case 16398: case 16430: case 16462: case 16470: case 16502: case 16534: case 16542: case 16574: case 16606: case 16614: case 16646: case 16391: case 16399: return South::Low; + case 16415: case 16423: case 16455: case 16487: case 16495: case 16527: case 16559: case 16567: case 16599: case 16631: case 16639: case 16340: case 16344: case 16348: case 16376: case 16380: case 16384: case 16416: case 16448: case 16456: case 16488: case 16520: case 16528: case 16560: case 16592: case 16600: case 16632: case 16385: case 16417: case 16449: case 16457: case 16489: case 16521: case 16529: case 16561: case 16593: case 16601: case 16633: case 16341: case 16345: case 16349: case 16377: case 16381: case 16386: case 16418: case 16450: case 16458: case 16490: case 16522: case 16530: case 16562: case 16594: case 16602: case 16634: case 16387: case 16419: case 16451: case 16459: case 16491: case 16523: case 16531: case 16563: case 16595: case 16603: case 16635: case 16342: case 16346: case 16350: case 16378: case 16382: case 16412: case 16420: case 16452: case 16484: case 16492: case 16524: case 16556: case 16564: case 16596: case 16628: case 16636: case 16413: case 16421: case 16453: case 16485: case 16493: case 16525: case 16557: case 16565: case 16597: case 16629: case 16637: case 16343: case 16347: case 16351: case 16379: case 16383: case 16414: case 16422: case 16454: case 16486: case 16494: case 16526: case 16558: case 16566: case 16598: case 16630: case 16638: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 16423: case 16431: case 16447: case 16455: case 16471: case 16479: case 16495: case 16503: case 16519: case 16527: case 16543: case 16551: case 16567: case 16575: case 16591: case 16599: case 16615: case 16623: case 16639: case 16647: case 16663: case 16348: case 16360: case 16372: case 16384: case 16408: case 16432: case 16456: case 16480: case 16504: case 16528: case 16552: case 16576: case 16600: case 16624: case 16648: case 16385: case 16409: case 16433: case 16457: case 16481: case 16505: case 16529: case 16553: case 16577: case 16601: case 16625: case 16649: case 16349: case 16361: case 16373: case 16386: case 16394: case 16410: case 16418: case 16434: case 16442: case 16458: case 16466: case 16482: case 16490: case 16506: case 16514: case 16530: case 16538: case 16554: case 16562: case 16578: case 16586: case 16602: case 16610: case 16626: case 16634: case 16650: case 16658: case 16387: case 16395: case 16411: case 16419: case 16435: case 16443: case 16459: case 16467: case 16483: case 16491: case 16507: case 16515: case 16531: case 16539: case 16555: case 16563: case 16579: case 16587: case 16603: case 16611: case 16627: case 16635: case 16651: case 16659: case 16346: case 16350: case 16358: case 16362: case 16370: case 16374: case 16382: case 16396: case 16420: case 16444: case 16468: case 16492: case 16516: case 16540: case 16564: case 16588: case 16612: case 16636: case 16660: case 16397: case 16421: case 16445: case 16469: case 16493: case 16517: case 16541: case 16565: case 16589: case 16613: case 16637: case 16661: case 16347: case 16351: case 16359: case 16363: case 16371: case 16375: case 16383: case 16398: case 16406: case 16422: case 16430: case 16446: case 16454: case 16470: case 16478: case 16494: case 16502: case 16518: case 16526: case 16542: case 16550: case 16566: case 16574: case 16590: case 16598: case 16614: case 16622: case 16638: case 16646: case 16662: case 16399: case 16407: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 16415: case 16423: case 16439: case 16447: case 16463: case 16471: case 16487: case 16495: case 16511: case 16519: case 16535: case 16543: case 16559: case 16567: case 16583: case 16591: case 16607: case 16615: case 16631: case 16639: case 16655: case 16663: case 16344: case 16356: case 16368: case 16380: case 16392: case 16416: case 16440: case 16464: case 16488: case 16512: case 16536: case 16560: case 16584: case 16608: case 16632: case 16656: case 16385: case 16393: case 16409: case 16417: case 16433: case 16441: case 16457: case 16465: case 16481: case 16489: case 16505: case 16513: case 16529: case 16537: case 16553: case 16561: case 16577: case 16585: case 16601: case 16609: case 16625: case 16633: case 16649: case 16657: case 16345: case 16349: case 16357: case 16361: case 16369: case 16373: case 16381: case 16386: case 16410: case 16434: case 16458: case 16482: case 16506: case 16530: case 16554: case 16578: case 16602: case 16626: case 16650: case 16387: case 16403: case 16411: case 16427: case 16435: case 16451: case 16459: case 16475: case 16483: case 16499: case 16507: case 16523: case 16531: case 16547: case 16555: case 16571: case 16579: case 16595: case 16603: case 16619: case 16627: case 16643: case 16651: case 16350: case 16362: case 16374: case 16404: case 16428: case 16452: case 16476: case 16500: case 16524: case 16548: case 16572: case 16596: case 16620: case 16644: case 16397: case 16405: case 16421: case 16429: case 16445: case 16453: case 16469: case 16477: case 16493: case 16501: case 16517: case 16525: case 16541: case 16549: case 16565: case 16573: case 16589: case 16597: case 16613: case 16621: case 16637: case 16645: case 16661: case 16343: case 16351: case 16355: case 16363: case 16367: case 16375: case 16379: case 16398: case 16422: case 16446: case 16470: case 16494: case 16518: case 16542: case 16566: case 16590: case 16614: case 16638: case 16662: case 16391: case 16399: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 16431: case 16455: case 16479: case 16503: case 16527: case 16551: case 16575: case 16599: case 16623: case 16647: case 16344: case 16356: case 16368: case 16380: case 16392: case 16416: case 16440: case 16464: case 16488: case 16512: case 16536: case 16560: case 16584: case 16608: case 16632: case 16656: case 16401: case 16425: case 16449: case 16473: case 16497: case 16521: case 16545: case 16569: case 16593: case 16617: case 16641: case 16341: case 16353: case 16365: case 16377: case 16386: case 16410: case 16434: case 16458: case 16482: case 16506: case 16530: case 16554: case 16578: case 16602: case 16626: case 16650: case 16395: case 16419: case 16443: case 16467: case 16491: case 16515: case 16539: case 16563: case 16587: case 16611: case 16635: case 16659: case 16350: case 16362: case 16374: case 16404: case 16428: case 16452: case 16476: case 16500: case 16524: case 16548: case 16572: case 16596: case 16620: case 16644: case 16389: case 16413: case 16437: case 16461: case 16485: case 16509: case 16533: case 16557: case 16581: case 16605: case 16629: case 16653: case 16347: case 16359: case 16371: case 16383: case 16398: case 16422: case 16446: case 16470: case 16494: case 16518: case 16542: case 16566: case 16590: case 16614: case 16638: case 16662: case 16407: return West::Low; + case 16415: case 16439: case 16463: case 16487: case 16511: case 16535: case 16559: case 16583: case 16607: case 16631: case 16655: case 16340: case 16352: case 16364: case 16376: case 16400: case 16424: case 16448: case 16472: case 16496: case 16520: case 16544: case 16568: case 16592: case 16616: case 16640: case 16385: case 16409: case 16433: case 16457: case 16481: case 16505: case 16529: case 16553: case 16577: case 16601: case 16625: case 16649: case 16349: case 16361: case 16373: case 16394: case 16418: case 16442: case 16466: case 16490: case 16514: case 16538: case 16562: case 16586: case 16610: case 16634: case 16658: case 16403: case 16427: case 16451: case 16475: case 16499: case 16523: case 16547: case 16571: case 16595: case 16619: case 16643: case 16346: case 16358: case 16370: case 16382: case 16388: case 16412: case 16436: case 16460: case 16484: case 16508: case 16532: case 16556: case 16580: case 16604: case 16628: case 16652: case 16397: case 16421: case 16445: case 16469: case 16493: case 16517: case 16541: case 16565: case 16589: case 16613: case 16637: case 16661: case 16343: case 16355: case 16367: case 16379: case 16406: case 16430: case 16454: case 16478: case 16502: case 16526: case 16550: case 16574: case 16598: case 16622: case 16646: case 16391: return West::None; + default: return West::Tall; + } + } + } + namespace PolishedBlackstoneBricks + { + } + namespace PolishedBlackstoneButton + { + short PolishedBlackstoneButton() + { + return 16762; + } + enum Face Face(short ID) + { + switch (ID) + { + case 16769: case 16770: case 16771: case 16772: case 16773: case 16774: case 16775: case 16776: return Face::Ceiling; + case 16753: case 16754: case 16755: case 16756: case 16757: case 16758: case 16759: case 16760: return Face::Floor; + default: return Face::Wall; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 16765: case 16766: case 16757: case 16773: case 16758: case 16774: return eBlockFace::BLOCK_FACE_XM; + case 16767: case 16768: case 16759: case 16775: case 16760: case 16776: return eBlockFace::BLOCK_FACE_XP; + case 16753: case 16769: case 16754: case 16770: case 16761: case 16762: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 16766: case 16768: case 16754: case 16770: case 16756: case 16772: case 16758: case 16774: case 16760: case 16776: case 16762: case 16764: return false; + default: return true; + } + } + } + namespace PolishedBlackstonePressurePlate + { + short PolishedBlackstonePressurePlate() + { + return 16752; + } + bool Powered(short ID) + { + switch (ID) + { + case 16752: return false; + default: return true; + } + } + } + namespace PolishedBlackstoneSlab + { + short PolishedBlackstoneSlab() + { + return 16748; + } + enum Type Type(short ID) + { + switch (ID) + { + case 16747: case 16748: return Type::Bottom; + case 16749: case 16750: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 16746: case 16748: case 16750: return false; + default: return true; + } + } + } + namespace PolishedBlackstoneStairs + { + short PolishedBlackstoneStairs() + { + return 16676; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 16705: case 16707: case 16709: case 16711: case 16713: case 16715: case 16717: case 16719: case 16721: case 16723: case 16706: case 16708: case 16710: case 16712: case 16714: case 16716: case 16718: case 16720: case 16722: case 16724: return eBlockFace::BLOCK_FACE_XM; + case 16744: case 16725: case 16727: case 16729: case 16731: case 16733: case 16735: case 16737: case 16739: case 16741: case 16743: case 16726: case 16728: case 16730: case 16732: case 16734: case 16736: case 16738: case 16740: case 16742: return eBlockFace::BLOCK_FACE_XP; + case 16665: case 16667: case 16669: case 16671: case 16673: case 16675: case 16677: case 16679: case 16681: case 16683: case 16666: case 16668: case 16670: case 16672: case 16674: case 16676: case 16678: case 16680: case 16682: case 16684: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 16744: case 16675: case 16677: case 16679: case 16681: case 16683: case 16695: case 16697: case 16699: case 16701: case 16703: case 16715: case 16717: case 16719: case 16721: case 16723: case 16735: case 16737: case 16739: case 16741: case 16743: case 16676: case 16678: case 16680: case 16682: case 16684: case 16696: case 16698: case 16700: case 16702: case 16704: case 16716: case 16718: case 16720: case 16722: case 16724: case 16736: case 16738: case 16740: case 16742: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 16667: case 16677: case 16687: case 16697: case 16707: case 16717: case 16727: case 16737: case 16668: case 16678: case 16688: case 16698: case 16708: case 16718: case 16728: case 16738: return Shape::InnerLeft; + case 16669: case 16679: case 16689: case 16699: case 16709: case 16719: case 16729: case 16739: case 16670: case 16680: case 16690: case 16700: case 16710: case 16720: case 16730: case 16740: return Shape::InnerRight; + case 16671: case 16681: case 16691: case 16701: case 16711: case 16721: case 16731: case 16741: case 16672: case 16682: case 16692: case 16702: case 16712: case 16722: case 16732: case 16742: return Shape::OuterLeft; + case 16744: case 16673: case 16683: case 16693: case 16703: case 16713: case 16723: case 16733: case 16743: case 16674: case 16684: case 16694: case 16704: case 16714: case 16724: case 16734: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 16744: case 16666: case 16668: case 16670: case 16672: case 16674: case 16676: case 16678: case 16680: case 16682: case 16684: case 16686: case 16688: case 16690: case 16692: case 16694: case 16696: case 16698: case 16700: case 16702: case 16704: case 16706: case 16708: case 16710: case 16712: case 16714: case 16716: case 16718: case 16720: case 16722: case 16724: case 16726: case 16728: case 16730: case 16732: case 16734: case 16736: case 16738: case 16740: case 16742: return false; + default: return true; + } + } + } + namespace PolishedBlackstoneWall + { + short PolishedBlackstoneWall() + { + return 16780; + } + enum East East(short ID) + { + switch (ID) + { + case 16926: case 16934: case 16942: case 16950: case 16958: case 16966: case 16974: case 16982: case 16990: case 16887: case 16895: case 16903: case 16911: case 16919: case 16927: case 16935: case 16943: case 16951: case 16959: case 16967: case 16975: case 16983: case 16991: case 16888: case 16896: case 16904: case 16912: case 16920: case 16928: case 16936: case 16944: case 16952: case 16960: case 16968: case 16976: case 16984: case 16992: case 16889: case 16897: case 16905: case 16913: case 16921: case 16929: case 16937: case 16945: case 16953: case 16961: case 16969: case 16977: case 16985: case 16890: case 16898: case 16906: case 16914: case 16922: case 16930: case 16938: case 16946: case 16954: case 16962: case 16970: case 16978: case 16986: case 16891: case 16899: case 16907: case 16915: case 16923: case 16931: case 16939: case 16947: case 16955: case 16963: case 16971: case 16979: case 16987: case 16892: case 16900: case 16908: case 16916: case 16924: case 16932: case 16940: case 16948: case 16956: case 16964: case 16972: case 16980: case 16988: case 16885: case 16893: case 16901: case 16909: case 16917: case 16925: case 16933: case 16941: case 16949: case 16957: case 16965: case 16973: case 16981: case 16989: case 16886: case 16894: case 16902: case 16910: case 16918: return East::Low; + case 16783: case 16791: case 16799: case 16807: case 16815: case 16823: case 16831: case 16839: case 16847: case 16855: case 16863: case 16871: case 16879: case 16784: case 16792: case 16800: case 16808: case 16816: case 16824: case 16832: case 16840: case 16848: case 16856: case 16864: case 16872: case 16880: case 16777: case 16785: case 16793: case 16801: case 16809: case 16817: case 16825: case 16833: case 16841: case 16849: case 16857: case 16865: case 16873: case 16881: case 16778: case 16786: case 16794: case 16802: case 16810: case 16818: case 16826: case 16834: case 16842: case 16850: case 16858: case 16866: case 16874: case 16882: case 16779: case 16787: case 16795: case 16803: case 16811: case 16819: case 16827: case 16835: case 16843: case 16851: case 16859: case 16867: case 16875: case 16883: case 16780: case 16788: case 16796: case 16804: case 16812: case 16820: case 16828: case 16836: case 16844: case 16852: case 16860: case 16868: case 16876: case 16884: case 16781: case 16789: case 16797: case 16805: case 16813: case 16821: case 16829: case 16837: case 16845: case 16853: case 16861: case 16869: case 16877: case 16782: case 16790: case 16798: case 16806: case 16814: case 16822: case 16830: case 16838: case 16846: case 16854: case 16862: case 16870: case 16878: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 16926: case 16934: case 16942: case 16950: case 17030: case 17038: case 17046: case 17054: case 17062: case 16815: case 16823: case 16831: case 16839: case 16847: case 16927: case 16935: case 16943: case 16951: case 17031: case 17039: case 17047: case 17055: case 17063: case 16816: case 16824: case 16832: case 16840: case 16848: case 16928: case 16936: case 16944: case 16952: case 17032: case 17040: case 17048: case 17056: case 17064: case 16817: case 16825: case 16833: case 16841: case 16921: case 16929: case 16937: case 16945: case 16953: case 17033: case 17041: case 17049: case 17057: case 16818: case 16826: case 16834: case 16842: case 16922: case 16930: case 16938: case 16946: case 16954: case 17034: case 17042: case 17050: case 17058: case 16819: case 16827: case 16835: case 16843: case 16923: case 16931: case 16939: case 16947: case 16955: case 17035: case 17043: case 17051: case 17059: case 16820: case 16828: case 16836: case 16844: case 16924: case 16932: case 16940: case 16948: case 16956: case 17036: case 17044: case 17052: case 17060: case 16813: case 16821: case 16829: case 16837: case 16845: case 16925: case 16933: case 16941: case 16949: case 17029: case 17037: case 17045: case 17053: case 17061: case 16814: case 16822: case 16830: case 16838: case 16846: return North::Low; + case 16998: case 17006: case 17014: case 17022: case 16783: case 16791: case 16799: case 16807: case 16887: case 16895: case 16903: case 16911: case 16919: case 16999: case 17007: case 17015: case 17023: case 16784: case 16792: case 16800: case 16808: case 16888: case 16896: case 16904: case 16912: case 16920: case 17000: case 17008: case 17016: case 17024: case 16777: case 16785: case 16793: case 16801: case 16809: case 16889: case 16897: case 16905: case 16913: case 16993: case 17001: case 17009: case 17017: case 17025: case 16778: case 16786: case 16794: case 16802: case 16810: case 16890: case 16898: case 16906: case 16914: case 16994: case 17002: case 17010: case 17018: case 17026: case 16779: case 16787: case 16795: case 16803: case 16811: case 16891: case 16899: case 16907: case 16915: case 16995: case 17003: case 17011: case 17019: case 17027: case 16780: case 16788: case 16796: case 16804: case 16812: case 16892: case 16900: case 16908: case 16916: case 16996: case 17004: case 17012: case 17020: case 17028: case 16781: case 16789: case 16797: case 16805: case 16885: case 16893: case 16901: case 16909: case 16917: case 16997: case 17005: case 17013: case 17021: case 16782: case 16790: case 16798: case 16806: case 16886: case 16894: case 16902: case 16910: case 16918: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 16934: case 16942: case 16974: case 17006: case 17014: case 17046: case 17078: case 17086: case 16791: case 16799: case 16831: case 16863: case 16871: case 16903: case 16935: case 16943: case 16975: case 17007: case 17015: case 17047: case 17079: case 17087: case 16792: case 16800: case 16832: case 16864: case 16872: case 16904: case 16936: case 16944: case 16976: case 17008: case 17016: case 17048: case 17080: case 17088: case 16793: case 16825: case 16833: case 16865: case 16897: case 16905: case 16937: case 16969: case 16977: case 17009: case 17041: case 17049: case 17081: case 16794: case 16826: case 16834: case 16866: case 16898: case 16906: case 16938: case 16970: case 16978: case 17010: case 17042: case 17050: case 17082: case 16795: case 16827: case 16835: case 16867: case 16899: case 16907: case 16939: case 16971: case 16979: case 17011: case 17043: case 17051: case 17083: case 16796: case 16828: case 16836: case 16868: case 16900: case 16908: case 16940: case 16972: case 16980: case 17012: case 17044: case 17052: case 17084: case 16789: case 16797: case 16829: case 16861: case 16869: case 16901: case 16933: case 16941: case 16973: case 17005: case 17013: case 17045: case 17077: case 17085: case 16790: case 16798: case 16830: case 16862: case 16870: case 16902: return South::Low; + case 16926: case 16958: case 16966: case 16998: case 17030: case 17038: case 17070: case 16783: case 16815: case 16823: case 16855: case 16887: case 16895: case 16927: case 16959: case 16967: case 16999: case 17031: case 17039: case 17071: case 16784: case 16816: case 16824: case 16856: case 16888: case 16896: case 16928: case 16960: case 16968: case 17000: case 17032: case 17040: case 17072: case 16777: case 16785: case 16817: case 16849: case 16857: case 16889: case 16921: case 16929: case 16961: case 16993: case 17001: case 17033: case 17065: case 17073: case 16778: case 16786: case 16818: case 16850: case 16858: case 16890: case 16922: case 16930: case 16962: case 16994: case 17002: case 17034: case 17066: case 17074: case 16779: case 16787: case 16819: case 16851: case 16859: case 16891: case 16923: case 16931: case 16963: case 16995: case 17003: case 17035: case 17067: case 17075: case 16780: case 16788: case 16820: case 16852: case 16860: case 16892: case 16924: case 16932: case 16964: case 16996: case 17004: case 17036: case 17068: case 17076: case 16781: case 16813: case 16821: case 16853: case 16885: case 16893: case 16925: case 16957: case 16965: case 16997: case 17029: case 17037: case 17069: case 16782: case 16814: case 16822: case 16854: case 16886: case 16894: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 16942: case 16966: case 16990: case 17014: case 17038: case 17062: case 17086: case 16783: case 16799: case 16807: case 16823: case 16831: case 16847: case 16855: case 16871: case 16879: case 16895: case 16903: case 16919: case 16927: case 16943: case 16951: case 16967: case 16975: case 16991: case 16999: case 17015: case 17023: case 17039: case 17047: case 17063: case 17071: case 17087: case 17095: case 16784: case 16800: case 16808: case 16824: case 16832: case 16848: case 16856: case 16872: case 16880: case 16896: case 16904: case 16920: case 16928: case 16944: case 16952: case 16968: case 16976: case 16992: case 17000: case 17016: case 17024: case 17040: case 17048: case 17064: case 17072: case 17088: case 17096: case 16785: case 16809: case 16833: case 16857: case 16881: case 16905: case 16929: case 16953: case 16977: case 17001: case 17025: case 17049: case 17073: case 17097: case 16786: case 16810: case 16834: case 16858: case 16882: case 16906: case 16930: case 16954: case 16978: case 17002: case 17026: case 17050: case 17074: case 17098: case 16787: case 16795: case 16811: case 16819: case 16835: case 16843: case 16859: case 16867: case 16883: case 16891: case 16907: case 16915: case 16931: case 16939: case 16955: case 16963: case 16979: case 16987: case 17003: case 17011: case 17027: case 17035: case 17051: case 17059: case 17075: case 17083: case 17099: case 16788: case 16796: case 16812: case 16820: case 16836: case 16844: case 16860: case 16868: case 16884: case 16892: case 16908: case 16916: case 16932: case 16940: case 16956: case 16964: case 16980: case 16988: case 17004: case 17012: case 17028: case 17036: case 17052: case 17060: case 17076: case 17084: case 17100: case 16797: case 16821: case 16845: case 16869: case 16893: case 16917: case 16941: case 16965: case 16989: case 17013: case 17037: case 17061: case 17085: case 16798: case 16822: case 16846: case 16870: case 16894: case 16918: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 16926: case 16942: case 16950: case 16966: case 16974: case 16990: case 16998: case 17014: case 17022: case 17038: case 17046: case 17062: case 17070: case 17086: case 17094: case 16799: case 16823: case 16847: case 16871: case 16895: case 16919: case 16943: case 16967: case 16991: case 17015: case 17039: case 17063: case 17087: case 16792: case 16800: case 16816: case 16824: case 16840: case 16848: case 16864: case 16872: case 16888: case 16896: case 16912: case 16920: case 16936: case 16944: case 16960: case 16968: case 16984: case 16992: case 17008: case 17016: case 17032: case 17040: case 17056: case 17064: case 17080: case 17088: case 16793: case 16817: case 16841: case 16865: case 16889: case 16913: case 16937: case 16961: case 16985: case 17009: case 17033: case 17057: case 17081: case 16786: case 16794: case 16810: case 16818: case 16834: case 16842: case 16858: case 16866: case 16882: case 16890: case 16906: case 16914: case 16930: case 16938: case 16954: case 16962: case 16978: case 16986: case 17002: case 17010: case 17026: case 17034: case 17050: case 17058: case 17074: case 17082: case 17098: case 16787: case 16811: case 16835: case 16859: case 16883: case 16907: case 16931: case 16955: case 16979: case 17003: case 17027: case 17051: case 17075: case 17099: case 16780: case 16788: case 16804: case 16812: case 16828: case 16836: case 16852: case 16860: case 16876: case 16884: case 16900: case 16908: case 16924: case 16932: case 16948: case 16956: case 16972: case 16980: case 16996: case 17004: case 17020: case 17028: case 17044: case 17052: case 17068: case 17076: case 17092: case 17100: case 16781: case 16805: case 16829: case 16853: case 16877: case 16901: case 16925: case 16949: case 16973: case 16997: case 17021: case 17045: case 17069: case 17093: case 16782: case 16798: case 16806: case 16822: case 16830: case 16846: case 16854: case 16870: case 16878: case 16894: case 16902: case 16918: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 16934: case 16958: case 16982: case 17006: case 17030: case 17054: case 17078: case 16799: case 16823: case 16847: case 16871: case 16895: case 16919: case 16943: case 16967: case 16991: case 17015: case 17039: case 17063: case 17087: case 16784: case 16808: case 16832: case 16856: case 16880: case 16904: case 16928: case 16952: case 16976: case 17000: case 17024: case 17048: case 17072: case 17096: case 16793: case 16817: case 16841: case 16865: case 16889: case 16913: case 16937: case 16961: case 16985: case 17009: case 17033: case 17057: case 17081: case 16778: case 16802: case 16826: case 16850: case 16874: case 16898: case 16922: case 16946: case 16970: case 16994: case 17018: case 17042: case 17066: case 17090: case 16787: case 16811: case 16835: case 16859: case 16883: case 16907: case 16931: case 16955: case 16979: case 17003: case 17027: case 17051: case 17075: case 17099: case 16796: case 16820: case 16844: case 16868: case 16892: case 16916: case 16940: case 16964: case 16988: case 17012: case 17036: case 17060: case 17084: case 16781: case 16805: case 16829: case 16853: case 16877: case 16901: case 16925: case 16949: case 16973: case 16997: case 17021: case 17045: case 17069: case 17093: case 16790: case 16814: case 16838: case 16862: case 16886: case 16910: return West::Low; + case 16942: case 16966: case 16990: case 17014: case 17038: case 17062: case 17086: case 16783: case 16807: case 16831: case 16855: case 16879: case 16903: case 16927: case 16951: case 16975: case 16999: case 17023: case 17047: case 17071: case 17095: case 16792: case 16816: case 16840: case 16864: case 16888: case 16912: case 16936: case 16960: case 16984: case 17008: case 17032: case 17056: case 17080: case 16777: case 16801: case 16825: case 16849: case 16873: case 16897: case 16921: case 16945: case 16969: case 16993: case 17017: case 17041: case 17065: case 17089: case 16786: case 16810: case 16834: case 16858: case 16882: case 16906: case 16930: case 16954: case 16978: case 17002: case 17026: case 17050: case 17074: case 17098: case 16795: case 16819: case 16843: case 16867: case 16891: case 16915: case 16939: case 16963: case 16987: case 17011: case 17035: case 17059: case 17083: case 16780: case 16804: case 16828: case 16852: case 16876: case 16900: case 16924: case 16948: case 16972: case 16996: case 17020: case 17044: case 17068: case 17092: case 16789: case 16813: case 16837: case 16861: case 16885: case 16909: case 16933: case 16957: case 16981: case 17005: case 17029: case 17053: case 17077: case 16798: case 16822: case 16846: case 16870: case 16894: case 16918: return West::None; + default: return West::Tall; + } + } + } + namespace PolishedDiorite + { + } + namespace PolishedDioriteSlab + { + short PolishedDioriteSlab() + { + return 10810; + } + enum Type Type(short ID) + { + switch (ID) + { + case 10810: case 10809: return Type::Bottom; + case 10811: case 10812: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10810: case 10808: case 10812: return false; + default: return true; + } + } + } + namespace PolishedDioriteStairs + { + short PolishedDioriteStairs() + { + return 9920; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9960: case 9961: case 9962: case 9963: case 9964: case 9965: case 9966: case 9967: case 9968: case 9949: case 9950: case 9951: case 9952: case 9953: case 9954: case 9955: case 9956: case 9957: case 9958: case 9959: return eBlockFace::BLOCK_FACE_XM; + case 9969: case 9970: case 9971: case 9972: case 9973: case 9974: case 9975: case 9976: case 9977: case 9978: case 9979: case 9980: case 9981: case 9982: case 9983: case 9984: case 9985: case 9986: case 9987: case 9988: return eBlockFace::BLOCK_FACE_XP; + case 9909: case 9910: case 9911: case 9912: case 9913: case 9914: case 9915: case 9916: case 9917: case 9918: case 9919: case 9920: case 9921: case 9922: case 9923: case 9924: case 9925: case 9926: case 9927: case 9928: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 9960: case 9961: case 9962: case 9963: case 9964: case 9965: case 9966: case 9967: case 9968: case 9979: case 9980: case 9981: case 9982: case 9983: case 9984: case 9985: case 9986: case 9987: case 9988: case 9919: case 9920: case 9921: case 9922: case 9923: case 9924: case 9925: case 9926: case 9927: case 9928: case 9939: case 9940: case 9941: case 9942: case 9943: case 9944: case 9945: case 9946: case 9947: case 9948: case 9959: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 9961: case 9962: case 9971: case 9972: case 9981: case 9982: case 9911: case 9912: case 9921: case 9922: case 9931: case 9932: case 9941: case 9942: case 9951: case 9952: return Shape::InnerLeft; + case 9963: case 9964: case 9973: case 9974: case 9983: case 9984: case 9913: case 9914: case 9923: case 9924: case 9933: case 9934: case 9943: case 9944: case 9953: case 9954: return Shape::InnerRight; + case 9965: case 9966: case 9975: case 9976: case 9985: case 9986: case 9915: case 9916: case 9925: case 9926: case 9935: case 9936: case 9945: case 9946: case 9955: case 9956: return Shape::OuterLeft; + case 9967: case 9968: case 9977: case 9978: case 9987: case 9988: case 9917: case 9918: case 9927: case 9928: case 9937: case 9938: case 9947: case 9948: case 9957: case 9958: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9960: case 9962: case 9964: case 9966: case 9968: case 9970: case 9972: case 9974: case 9976: case 9978: case 9980: case 9982: case 9984: case 9986: case 9988: case 9910: case 9912: case 9914: case 9916: case 9918: case 9920: case 9922: case 9924: case 9926: case 9928: case 9930: case 9932: case 9934: case 9936: case 9938: case 9940: case 9942: case 9944: case 9946: case 9948: case 9950: case 9952: case 9954: case 9956: case 9958: return false; + default: return true; + } + } + } + namespace PolishedGranite + { + } + namespace PolishedGraniteSlab + { + short PolishedGraniteSlab() + { + return 10792; + } + enum Type Type(short ID) + { + switch (ID) + { + case 10791: case 10792: return Type::Bottom; + case 10793: case 10794: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10790: case 10794: case 10792: return false; + default: return true; + } + } + } + namespace PolishedGraniteStairs + { + short PolishedGraniteStairs() + { + return 9680; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9709: case 9710: case 9711: case 9712: case 9713: case 9714: case 9715: case 9716: case 9717: case 9718: case 9719: case 9720: case 9721: case 9722: case 9723: case 9724: case 9725: case 9726: case 9727: case 9728: return eBlockFace::BLOCK_FACE_XM; + case 9729: case 9730: case 9731: case 9732: case 9733: case 9734: case 9735: case 9736: case 9737: case 9738: case 9739: case 9740: case 9741: case 9742: case 9743: case 9744: case 9745: case 9746: case 9747: case 9748: return eBlockFace::BLOCK_FACE_XP; + case 9669: case 9670: case 9671: case 9672: case 9673: case 9674: case 9675: case 9676: case 9677: case 9678: case 9679: case 9680: case 9681: case 9682: case 9683: case 9684: case 9685: case 9686: case 9687: case 9688: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 9706: case 9707: case 9708: case 9719: case 9720: case 9721: case 9722: case 9723: case 9724: case 9725: case 9726: case 9727: case 9728: case 9739: case 9740: case 9741: case 9742: case 9743: case 9744: case 9745: case 9746: case 9747: case 9748: case 9679: case 9680: case 9681: case 9682: case 9683: case 9684: case 9685: case 9686: case 9687: case 9688: case 9699: case 9700: case 9701: case 9702: case 9703: case 9704: case 9705: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 9711: case 9712: case 9721: case 9722: case 9731: case 9732: case 9741: case 9742: case 9671: case 9672: case 9681: case 9682: case 9691: case 9692: case 9701: case 9702: return Shape::InnerLeft; + case 9713: case 9714: case 9723: case 9724: case 9733: case 9734: case 9743: case 9744: case 9673: case 9674: case 9683: case 9684: case 9693: case 9694: case 9703: case 9704: return Shape::InnerRight; + case 9706: case 9715: case 9716: case 9725: case 9726: case 9735: case 9736: case 9745: case 9746: case 9675: case 9676: case 9685: case 9686: case 9695: case 9696: case 9705: return Shape::OuterLeft; + case 9707: case 9708: case 9717: case 9718: case 9727: case 9728: case 9737: case 9738: case 9747: case 9748: case 9677: case 9678: case 9687: case 9688: case 9697: case 9698: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9706: case 9708: case 9710: case 9712: case 9714: case 9716: case 9718: case 9720: case 9722: case 9724: case 9726: case 9728: case 9730: case 9732: case 9734: case 9736: case 9738: case 9740: case 9742: case 9744: case 9746: case 9748: case 9670: case 9672: case 9674: case 9676: case 9678: case 9680: case 9682: case 9684: case 9686: case 9688: case 9690: case 9692: case 9694: case 9696: case 9698: case 9700: case 9702: case 9704: return false; + default: return true; + } + } + } + namespace Poppy + { + } + namespace Potatoes + { + short Potatoes() + { + return 6338; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 6338: return 0; + case 6339: return 1; + case 6340: return 2; + case 6341: return 3; + case 6342: return 4; + case 6343: return 5; + case 6344: return 6; + default: return 7; + } + } + } + namespace PottedAcaciaSapling + { + } + namespace PottedAllium + { + } + namespace PottedAzureBluet + { + } + namespace PottedBamboo + { + } + namespace PottedBirchSapling + { + } + namespace PottedBlueOrchid + { + } + namespace PottedBrownMushroom + { + } + namespace PottedCactus + { + } + namespace PottedCornflower + { + } + namespace PottedCrimsonFungus + { + } + namespace PottedCrimsonRoots + { + } + namespace PottedDandelion + { + } + namespace PottedDarkOakSapling + { + } + namespace PottedDeadBush + { + } + namespace PottedFern + { + } + namespace PottedJungleSapling + { + } + namespace PottedLilyOfTheValley + { + } + namespace PottedOakSapling + { + } + namespace PottedOrangeTulip + { + } + namespace PottedOxeyeDaisy + { + } + namespace PottedPinkTulip + { + } + namespace PottedPoppy + { + } + namespace PottedRedMushroom + { + } + namespace PottedRedTulip + { + } + namespace PottedSpruceSapling + { + } + namespace PottedWarpedFungus + { + } + namespace PottedWarpedRoots + { + } + namespace PottedWhiteTulip + { + } + namespace PottedWitherRose + { + } + namespace PoweredRail + { + short PoweredRail() + { + return 1311; + } + bool Powered(short ID) + { + switch (ID) + { + case 1314: case 1311: case 1315: case 1312: case 1316: case 1313: return false; + default: return true; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 1307: case 1313: return Shape::AscendingEast; + case 1315: case 1309: return Shape::AscendingNorth; + case 1310: case 1316: return Shape::AscendingSouth; + case 1314: case 1308: return Shape::AscendingWest; + case 1306: case 1312: return Shape::EastWest; + default: return Shape::NorthSouth; + } + } + } + namespace Prismarine + { + } + namespace PrismarineBrickSlab + { + short PrismarineBrickSlab() + { + return 7853; + } + enum Type Type(short ID) + { + switch (ID) + { + case 7853: case 7852: return Type::Bottom; + case 7855: case 7854: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7851: case 7853: case 7855: return false; + default: return true; + } + } + } + namespace PrismarineBrickStairs + { + short PrismarineBrickStairs() + { + return 7695; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 7743: case 7724: case 7725: case 7726: case 7727: case 7728: case 7729: case 7730: case 7731: case 7732: case 7733: case 7734: case 7735: case 7736: case 7737: case 7738: case 7739: case 7740: case 7741: case 7742: return eBlockFace::BLOCK_FACE_XM; + case 7744: case 7745: case 7746: case 7747: case 7748: case 7749: case 7750: case 7751: case 7752: case 7753: case 7754: case 7755: case 7756: case 7757: case 7758: case 7759: case 7760: case 7761: case 7762: case 7763: return eBlockFace::BLOCK_FACE_XP; + case 7684: case 7685: case 7686: case 7687: case 7688: case 7689: case 7690: case 7691: case 7692: case 7693: case 7694: case 7695: case 7696: case 7697: case 7698: case 7699: case 7700: case 7701: case 7702: case 7703: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 7743: case 7754: case 7755: case 7756: case 7757: case 7694: case 7758: case 7695: case 7759: case 7696: case 7760: case 7697: case 7761: case 7698: case 7762: case 7699: case 7763: case 7700: case 7701: case 7702: case 7703: case 7714: case 7715: case 7716: case 7717: case 7718: case 7719: case 7720: case 7721: case 7722: case 7723: case 7734: case 7735: case 7736: case 7737: case 7738: case 7739: case 7740: case 7741: case 7742: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 7746: case 7747: case 7686: case 7687: case 7756: case 7757: case 7696: case 7697: case 7706: case 7707: case 7716: case 7717: case 7726: case 7727: case 7736: case 7737: return Shape::InnerLeft; + case 7748: case 7749: case 7688: case 7689: case 7758: case 7759: case 7698: case 7699: case 7708: case 7709: case 7718: case 7719: case 7728: case 7729: case 7738: case 7739: return Shape::InnerRight; + case 7750: case 7751: case 7690: case 7691: case 7760: case 7761: case 7700: case 7701: case 7710: case 7711: case 7720: case 7721: case 7730: case 7731: case 7740: case 7741: return Shape::OuterLeft; + case 7743: case 7752: case 7753: case 7692: case 7693: case 7762: case 7763: case 7702: case 7703: case 7712: case 7713: case 7722: case 7723: case 7732: case 7733: case 7742: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7743: case 7745: case 7747: case 7685: case 7749: case 7687: case 7751: case 7689: case 7753: case 7691: case 7755: case 7693: case 7757: case 7695: case 7759: case 7697: case 7761: case 7699: case 7763: case 7701: case 7703: case 7705: case 7707: case 7709: case 7711: case 7713: case 7715: case 7717: case 7719: case 7721: case 7723: case 7725: case 7727: case 7729: case 7731: case 7733: case 7735: case 7737: case 7739: case 7741: return false; + default: return true; + } + } + } + namespace PrismarineBricks + { + } + namespace PrismarineSlab + { + short PrismarineSlab() + { + return 7847; + } + enum Type Type(short ID) + { + switch (ID) + { + case 7846: case 7847: return Type::Bottom; + case 7849: case 7848: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7849: case 7845: case 7847: return false; + default: return true; + } + } + } + namespace PrismarineStairs + { + short PrismarineStairs() + { + return 7615; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 7644: case 7645: case 7646: case 7647: case 7648: case 7649: case 7650: case 7651: case 7652: case 7653: case 7654: case 7655: case 7656: case 7657: case 7658: case 7659: case 7660: case 7661: case 7662: case 7663: return eBlockFace::BLOCK_FACE_XM; + case 7679: case 7680: case 7681: case 7682: case 7683: case 7664: case 7665: case 7666: case 7667: case 7668: case 7669: case 7670: case 7671: case 7672: case 7673: case 7674: case 7675: case 7676: case 7677: case 7678: return eBlockFace::BLOCK_FACE_XP; + case 7616: case 7617: case 7618: case 7619: case 7620: case 7621: case 7622: case 7623: case 7604: case 7605: case 7606: case 7607: case 7608: case 7609: case 7610: case 7611: case 7612: case 7613: case 7614: case 7615: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 7679: case 7616: case 7680: case 7617: case 7681: case 7618: case 7682: case 7619: case 7683: case 7620: case 7621: case 7622: case 7623: case 7634: case 7635: case 7636: case 7637: case 7638: case 7639: case 7640: case 7641: case 7642: case 7643: case 7654: case 7655: case 7656: case 7657: case 7658: case 7659: case 7660: case 7661: case 7662: case 7663: case 7674: case 7675: case 7676: case 7677: case 7614: case 7678: case 7615: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 7616: case 7617: case 7626: case 7627: case 7636: case 7637: case 7646: case 7647: case 7656: case 7657: case 7666: case 7667: case 7606: case 7607: case 7676: case 7677: return Shape::InnerLeft; + case 7679: case 7618: case 7619: case 7628: case 7629: case 7638: case 7639: case 7648: case 7649: case 7658: case 7659: case 7668: case 7669: case 7608: case 7609: case 7678: return Shape::InnerRight; + case 7680: case 7681: case 7620: case 7621: case 7630: case 7631: case 7640: case 7641: case 7650: case 7651: case 7660: case 7661: case 7670: case 7671: case 7610: case 7611: return Shape::OuterLeft; + case 7682: case 7683: case 7622: case 7623: case 7632: case 7633: case 7642: case 7643: case 7652: case 7653: case 7662: case 7663: case 7672: case 7673: case 7612: case 7613: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7679: case 7617: case 7681: case 7619: case 7683: case 7621: case 7623: case 7625: case 7627: case 7629: case 7631: case 7633: case 7635: case 7637: case 7639: case 7641: case 7643: case 7645: case 7647: case 7649: case 7651: case 7653: case 7655: case 7657: case 7659: case 7661: case 7663: case 7665: case 7667: case 7605: case 7669: case 7607: case 7671: case 7609: case 7673: case 7611: case 7675: case 7613: case 7677: case 7615: return false; + default: return true; + } + } + } + namespace PrismarineWall + { + short PrismarineWall() + { + return 11194; + } + enum East East(short ID) + { + switch (ID) + { + case 11302: case 11306: case 11310: case 11314: case 11318: case 11322: case 11326: case 11330: case 11334: case 11338: case 11342: case 11346: case 11350: case 11354: case 11358: case 11362: case 11366: case 11370: case 11374: case 11378: case 11382: case 11386: case 11390: case 11394: case 11398: case 11402: case 11406: case 11299: case 11303: case 11307: case 11311: case 11315: case 11319: case 11323: case 11327: case 11331: case 11335: case 11339: case 11343: case 11347: case 11351: case 11355: case 11359: case 11363: case 11367: case 11371: case 11375: case 11379: case 11383: case 11387: case 11391: case 11395: case 11399: case 11403: case 11300: case 11304: case 11308: case 11312: case 11316: case 11320: case 11324: case 11328: case 11332: case 11336: case 11340: case 11344: case 11348: case 11352: case 11356: case 11360: case 11364: case 11368: case 11372: case 11376: case 11380: case 11384: case 11388: case 11392: case 11396: case 11400: case 11404: case 11301: case 11305: case 11309: case 11313: case 11317: case 11321: case 11325: case 11329: case 11333: case 11337: case 11341: case 11345: case 11349: case 11353: case 11357: case 11361: case 11365: case 11369: case 11373: case 11377: case 11381: case 11385: case 11389: case 11393: case 11397: case 11401: case 11405: return East::Low; + case 11194: case 11198: case 11202: case 11206: case 11210: case 11214: case 11218: case 11222: case 11226: case 11230: case 11234: case 11238: case 11242: case 11246: case 11250: case 11254: case 11258: case 11262: case 11266: case 11270: case 11274: case 11278: case 11282: case 11286: case 11290: case 11294: case 11298: case 11191: case 11195: case 11199: case 11203: case 11207: case 11211: case 11215: case 11219: case 11223: case 11227: case 11231: case 11235: case 11239: case 11243: case 11247: case 11251: case 11255: case 11259: case 11263: case 11267: case 11271: case 11275: case 11279: case 11283: case 11287: case 11291: case 11295: case 11192: case 11196: case 11200: case 11204: case 11208: case 11212: case 11216: case 11220: case 11224: case 11228: case 11232: case 11236: case 11240: case 11244: case 11248: case 11252: case 11256: case 11260: case 11264: case 11268: case 11272: case 11276: case 11280: case 11284: case 11288: case 11292: case 11296: case 11193: case 11197: case 11201: case 11205: case 11209: case 11213: case 11217: case 11221: case 11225: case 11229: case 11233: case 11237: case 11241: case 11245: case 11249: case 11253: case 11257: case 11261: case 11265: case 11269: case 11273: case 11277: case 11281: case 11285: case 11289: case 11293: case 11297: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 11230: case 11234: case 11238: case 11242: case 11246: case 11250: case 11254: case 11258: case 11262: case 11338: case 11342: case 11346: case 11350: case 11354: case 11358: case 11362: case 11366: case 11370: case 11446: case 11450: case 11454: case 11458: case 11462: case 11466: case 11470: case 11474: case 11478: case 11227: case 11231: case 11235: case 11239: case 11243: case 11247: case 11251: case 11255: case 11259: case 11335: case 11339: case 11343: case 11347: case 11351: case 11355: case 11359: case 11363: case 11367: case 11443: case 11447: case 11451: case 11455: case 11459: case 11463: case 11467: case 11471: case 11475: case 11228: case 11232: case 11236: case 11240: case 11244: case 11248: case 11252: case 11256: case 11260: case 11336: case 11340: case 11344: case 11348: case 11352: case 11356: case 11360: case 11364: case 11368: case 11444: case 11448: case 11452: case 11456: case 11460: case 11464: case 11468: case 11472: case 11476: case 11229: case 11233: case 11237: case 11241: case 11245: case 11249: case 11253: case 11257: case 11261: case 11337: case 11341: case 11345: case 11349: case 11353: case 11357: case 11361: case 11365: case 11369: case 11445: case 11449: case 11453: case 11457: case 11461: case 11465: case 11469: case 11473: case 11477: return North::Low; + case 11194: case 11198: case 11202: case 11206: case 11210: case 11214: case 11218: case 11222: case 11226: case 11302: case 11306: case 11310: case 11314: case 11318: case 11322: case 11326: case 11330: case 11334: case 11410: case 11414: case 11418: case 11422: case 11426: case 11430: case 11434: case 11438: case 11442: case 11191: case 11195: case 11199: case 11203: case 11207: case 11211: case 11215: case 11219: case 11223: case 11299: case 11303: case 11307: case 11311: case 11315: case 11319: case 11323: case 11327: case 11331: case 11407: case 11411: case 11415: case 11419: case 11423: case 11427: case 11431: case 11435: case 11439: case 11192: case 11196: case 11200: case 11204: case 11208: case 11212: case 11216: case 11220: case 11224: case 11300: case 11304: case 11308: case 11312: case 11316: case 11320: case 11324: case 11328: case 11332: case 11408: case 11412: case 11416: case 11420: case 11424: case 11428: case 11432: case 11436: case 11440: case 11193: case 11197: case 11201: case 11205: case 11209: case 11213: case 11217: case 11221: case 11225: case 11301: case 11305: case 11309: case 11313: case 11317: case 11321: case 11325: case 11329: case 11333: case 11409: case 11413: case 11417: case 11421: case 11425: case 11429: case 11433: case 11437: case 11441: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 11206: case 11210: case 11214: case 11242: case 11246: case 11250: case 11278: case 11282: case 11286: case 11314: case 11318: case 11322: case 11350: case 11354: case 11358: case 11386: case 11390: case 11394: case 11422: case 11426: case 11430: case 11458: case 11462: case 11466: case 11494: case 11498: case 11502: case 11203: case 11207: case 11211: case 11239: case 11243: case 11247: case 11275: case 11279: case 11283: case 11311: case 11315: case 11319: case 11347: case 11351: case 11355: case 11383: case 11387: case 11391: case 11419: case 11423: case 11427: case 11455: case 11459: case 11463: case 11491: case 11495: case 11499: case 11204: case 11208: case 11212: case 11240: case 11244: case 11248: case 11276: case 11280: case 11284: case 11312: case 11316: case 11320: case 11348: case 11352: case 11356: case 11384: case 11388: case 11392: case 11420: case 11424: case 11428: case 11456: case 11460: case 11464: case 11492: case 11496: case 11500: case 11205: case 11209: case 11213: case 11241: case 11245: case 11249: case 11277: case 11281: case 11285: case 11313: case 11317: case 11321: case 11349: case 11353: case 11357: case 11385: case 11389: case 11393: case 11421: case 11425: case 11429: case 11457: case 11461: case 11465: case 11493: case 11497: case 11501: return South::Low; + case 11194: case 11198: case 11202: case 11230: case 11234: case 11238: case 11266: case 11270: case 11274: case 11302: case 11306: case 11310: case 11338: case 11342: case 11346: case 11374: case 11378: case 11382: case 11410: case 11414: case 11418: case 11446: case 11450: case 11454: case 11482: case 11486: case 11490: case 11191: case 11195: case 11199: case 11227: case 11231: case 11235: case 11263: case 11267: case 11271: case 11299: case 11303: case 11307: case 11335: case 11339: case 11343: case 11371: case 11375: case 11379: case 11407: case 11411: case 11415: case 11443: case 11447: case 11451: case 11479: case 11483: case 11487: case 11192: case 11196: case 11200: case 11228: case 11232: case 11236: case 11264: case 11268: case 11272: case 11300: case 11304: case 11308: case 11336: case 11340: case 11344: case 11372: case 11376: case 11380: case 11408: case 11412: case 11416: case 11444: case 11448: case 11452: case 11480: case 11484: case 11488: case 11193: case 11197: case 11201: case 11229: case 11233: case 11237: case 11265: case 11269: case 11273: case 11301: case 11305: case 11309: case 11337: case 11341: case 11345: case 11373: case 11377: case 11381: case 11409: case 11413: case 11417: case 11445: case 11449: case 11453: case 11481: case 11485: case 11489: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 11198: case 11202: case 11210: case 11214: case 11222: case 11226: case 11234: case 11238: case 11246: case 11250: case 11258: case 11262: case 11270: case 11274: case 11282: case 11286: case 11294: case 11298: case 11306: case 11310: case 11318: case 11322: case 11330: case 11334: case 11342: case 11346: case 11354: case 11358: case 11366: case 11370: case 11378: case 11382: case 11390: case 11394: case 11402: case 11406: case 11414: case 11418: case 11426: case 11430: case 11438: case 11442: case 11450: case 11454: case 11462: case 11466: case 11474: case 11478: case 11486: case 11490: case 11498: case 11502: case 11510: case 11514: case 11199: case 11211: case 11223: case 11235: case 11247: case 11259: case 11271: case 11283: case 11295: case 11307: case 11319: case 11331: case 11343: case 11355: case 11367: case 11379: case 11391: case 11403: case 11415: case 11427: case 11439: case 11451: case 11463: case 11475: case 11487: case 11499: case 11511: case 11200: case 11212: case 11224: case 11236: case 11248: case 11260: case 11272: case 11284: case 11296: case 11308: case 11320: case 11332: case 11344: case 11356: case 11368: case 11380: case 11392: case 11404: case 11416: case 11428: case 11440: case 11452: case 11464: case 11476: case 11488: case 11500: case 11512: case 11197: case 11201: case 11209: case 11213: case 11221: case 11225: case 11233: case 11237: case 11245: case 11249: case 11257: case 11261: case 11269: case 11273: case 11281: case 11285: case 11293: case 11297: case 11305: case 11309: case 11317: case 11321: case 11329: case 11333: case 11341: case 11345: case 11353: case 11357: case 11365: case 11369: case 11377: case 11381: case 11389: case 11393: case 11401: case 11405: case 11413: case 11417: case 11425: case 11429: case 11437: case 11441: case 11449: case 11453: case 11461: case 11465: case 11473: case 11477: case 11485: case 11489: case 11497: case 11501: case 11509: case 11513: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 11194: case 11202: case 11206: case 11214: case 11218: case 11226: case 11230: case 11238: case 11242: case 11250: case 11254: case 11262: case 11266: case 11274: case 11278: case 11286: case 11290: case 11298: case 11302: case 11310: case 11314: case 11322: case 11326: case 11334: case 11338: case 11346: case 11350: case 11358: case 11362: case 11370: case 11374: case 11382: case 11386: case 11394: case 11398: case 11406: case 11410: case 11418: case 11422: case 11430: case 11434: case 11442: case 11446: case 11454: case 11458: case 11466: case 11470: case 11478: case 11482: case 11490: case 11494: case 11502: case 11506: case 11514: case 11195: case 11207: case 11219: case 11231: case 11243: case 11255: case 11267: case 11279: case 11291: case 11303: case 11315: case 11327: case 11339: case 11351: case 11363: case 11375: case 11387: case 11399: case 11411: case 11423: case 11435: case 11447: case 11459: case 11471: case 11483: case 11495: case 11507: case 11196: case 11200: case 11208: case 11212: case 11220: case 11224: case 11232: case 11236: case 11244: case 11248: case 11256: case 11260: case 11268: case 11272: case 11280: case 11284: case 11292: case 11296: case 11304: case 11308: case 11316: case 11320: case 11328: case 11332: case 11340: case 11344: case 11352: case 11356: case 11364: case 11368: case 11376: case 11380: case 11388: case 11392: case 11400: case 11404: case 11412: case 11416: case 11424: case 11428: case 11436: case 11440: case 11448: case 11452: case 11460: case 11464: case 11472: case 11476: case 11484: case 11488: case 11496: case 11500: case 11508: case 11512: case 11201: case 11213: case 11225: case 11237: case 11249: case 11261: case 11273: case 11285: case 11297: case 11309: case 11321: case 11333: case 11345: case 11357: case 11369: case 11381: case 11393: case 11405: case 11417: case 11429: case 11441: case 11453: case 11465: case 11477: case 11489: case 11501: case 11513: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 11198: case 11210: case 11222: case 11234: case 11246: case 11258: case 11270: case 11282: case 11294: case 11306: case 11318: case 11330: case 11342: case 11354: case 11366: case 11378: case 11390: case 11402: case 11414: case 11426: case 11438: case 11450: case 11462: case 11474: case 11486: case 11498: case 11510: case 11195: case 11207: case 11219: case 11231: case 11243: case 11255: case 11267: case 11279: case 11291: case 11303: case 11315: case 11327: case 11339: case 11351: case 11363: case 11375: case 11387: case 11399: case 11411: case 11423: case 11435: case 11447: case 11459: case 11471: case 11483: case 11495: case 11507: case 11192: case 11204: case 11216: case 11228: case 11240: case 11252: case 11264: case 11276: case 11288: case 11300: case 11312: case 11324: case 11336: case 11348: case 11360: case 11372: case 11384: case 11396: case 11408: case 11420: case 11432: case 11444: case 11456: case 11468: case 11480: case 11492: case 11504: case 11201: case 11213: case 11225: case 11237: case 11249: case 11261: case 11273: case 11285: case 11297: case 11309: case 11321: case 11333: case 11345: case 11357: case 11369: case 11381: case 11393: case 11405: case 11417: case 11429: case 11441: case 11453: case 11465: case 11477: case 11489: case 11501: case 11513: return West::Low; + case 11194: case 11206: case 11218: case 11230: case 11242: case 11254: case 11266: case 11278: case 11290: case 11302: case 11314: case 11326: case 11338: case 11350: case 11362: case 11374: case 11386: case 11398: case 11410: case 11422: case 11434: case 11446: case 11458: case 11470: case 11482: case 11494: case 11506: case 11191: case 11203: case 11215: case 11227: case 11239: case 11251: case 11263: case 11275: case 11287: case 11299: case 11311: case 11323: case 11335: case 11347: case 11359: case 11371: case 11383: case 11395: case 11407: case 11419: case 11431: case 11443: case 11455: case 11467: case 11479: case 11491: case 11503: case 11200: case 11212: case 11224: case 11236: case 11248: case 11260: case 11272: case 11284: case 11296: case 11308: case 11320: case 11332: case 11344: case 11356: case 11368: case 11380: case 11392: case 11404: case 11416: case 11428: case 11440: case 11452: case 11464: case 11476: case 11488: case 11500: case 11512: case 11197: case 11209: case 11221: case 11233: case 11245: case 11257: case 11269: case 11281: case 11293: case 11305: case 11317: case 11329: case 11341: case 11353: case 11365: case 11377: case 11389: case 11401: case 11413: case 11425: case 11437: case 11449: case 11461: case 11473: case 11485: case 11497: case 11509: return West::None; + default: return West::Tall; + } + } + } + namespace Pumpkin + { + } + namespace PumpkinStem + { + short PumpkinStem() + { + return 4772; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 4772: return 0; + case 4773: return 1; + case 4774: return 2; + case 4775: return 3; + case 4776: return 4; + case 4777: return 5; + case 4778: return 6; + default: return 7; + } + } + } + namespace PurpleBanner + { + short PurpleBanner() + { + return 8057; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 8057: return 0; + case 8058: return 1; + case 8067: return 10; + case 8068: return 11; + case 8069: return 12; + case 8070: return 13; + case 8071: return 14; + case 8072: return 15; + case 8059: return 2; + case 8060: return 3; + case 8061: return 4; + case 8062: return 5; + case 8063: return 6; + case 8064: return 7; + case 8065: return 8; + default: return 9; + } + } + } + namespace PurpleBed + { + short PurpleBed() + { + return 1212; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1220: case 1217: case 1218: case 1219: return eBlockFace::BLOCK_FACE_XM; + case 1221: case 1222: case 1223: case 1224: return eBlockFace::BLOCK_FACE_XP; + case 1212: case 1209: case 1210: case 1211: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1212: case 1216: case 1220: case 1211: case 1215: case 1219: case 1223: case 1224: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1212: case 1216: case 1220: case 1210: case 1214: case 1218: case 1222: case 1224: return Part::Foot; + default: return Part::Head; + } + } + } + namespace PurpleCarpet + { + } + namespace PurpleConcrete + { + } + namespace PurpleConcretePowder + { + } + namespace PurpleGlazedTerracotta + { + short PurpleGlazedTerracotta() + { + return 9414; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9416: return eBlockFace::BLOCK_FACE_XM; + case 9417: return eBlockFace::BLOCK_FACE_XP; + case 9414: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace PurpleShulkerBox + { + short PurpleShulkerBox() + { + return 9342; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9341: return eBlockFace::BLOCK_FACE_XM; + case 9339: return eBlockFace::BLOCK_FACE_XP; + case 9343: return eBlockFace::BLOCK_FACE_YM; + case 9342: return eBlockFace::BLOCK_FACE_YP; + case 9338: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace PurpleStainedGlass + { + } + namespace PurpleStainedGlassPane + { + short PurpleStainedGlassPane() + { + return 7214; + } + bool East(short ID) + { + switch (ID) + { + case 7210: case 7199: case 7203: case 7207: case 7211: case 7200: case 7204: case 7208: case 7212: case 7201: case 7205: case 7209: case 7213: case 7202: case 7206: case 7214: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 7210: case 7191: case 7195: case 7207: case 7211: case 7192: case 7196: case 7208: case 7212: case 7193: case 7197: case 7209: case 7213: case 7194: case 7198: case 7214: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 7187: case 7195: case 7203: case 7211: case 7188: case 7196: case 7204: case 7212: case 7189: case 7197: case 7205: case 7213: case 7190: case 7198: case 7206: case 7214: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7210: case 7185: case 7189: case 7193: case 7197: case 7201: case 7205: case 7209: case 7213: case 7186: case 7190: case 7194: case 7198: case 7202: case 7206: case 7214: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 7210: case 7184: case 7188: case 7192: case 7196: case 7200: case 7204: case 7208: case 7212: case 7186: case 7190: case 7194: case 7198: case 7202: case 7206: case 7214: return false; + default: return true; + } + } + } + namespace PurpleTerracotta + { + } + namespace PurpleWallBanner + { + short PurpleWallBanner() + { + return 8193; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8195: return eBlockFace::BLOCK_FACE_XM; + case 8196: return eBlockFace::BLOCK_FACE_XP; + case 8193: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace PurpleWool + { + } + namespace PurpurBlock + { + } + namespace PurpurPillar + { + short PurpurPillar() + { + return 9136; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 9135: return Axis::X; + case 9136: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace PurpurSlab + { + short PurpurSlab() + { + return 8411; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8410: case 8411: return Type::Bottom; + case 8413: case 8412: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8409: case 8413: case 8411: return false; + default: return true; + } + } + } + namespace PurpurStairs + { + short PurpurStairs() + { + return 9149; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9178: case 9179: case 9180: case 9181: case 9182: case 9183: case 9184: case 9185: case 9186: case 9187: case 9188: case 9189: case 9190: case 9191: case 9192: case 9193: case 9194: case 9195: case 9196: case 9197: return eBlockFace::BLOCK_FACE_XM; + case 9198: case 9199: case 9200: case 9201: case 9202: case 9203: case 9204: case 9205: case 9206: case 9207: case 9208: case 9209: case 9210: case 9211: case 9212: case 9213: case 9214: case 9215: case 9216: case 9217: return eBlockFace::BLOCK_FACE_XP; + case 9138: case 9139: case 9140: case 9141: case 9142: case 9143: case 9144: case 9145: case 9146: case 9147: case 9148: case 9149: case 9150: case 9151: case 9152: case 9153: case 9154: case 9155: case 9156: case 9157: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 9208: case 9209: case 9210: case 9211: case 9212: case 9213: case 9214: case 9215: case 9216: case 9217: case 9148: case 9149: case 9150: case 9151: case 9152: case 9153: case 9154: case 9155: case 9156: case 9157: case 9168: case 9169: case 9170: case 9171: case 9172: case 9173: case 9174: case 9175: case 9176: case 9177: case 9188: case 9189: case 9190: case 9191: case 9192: case 9193: case 9194: case 9195: case 9196: case 9197: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 9200: case 9201: case 9210: case 9211: case 9140: case 9141: case 9150: case 9151: case 9160: case 9161: case 9170: case 9171: case 9180: case 9181: case 9190: case 9191: return Shape::InnerLeft; + case 9202: case 9203: case 9212: case 9213: case 9142: case 9143: case 9152: case 9153: case 9162: case 9163: case 9172: case 9173: case 9182: case 9183: case 9192: case 9193: return Shape::InnerRight; + case 9204: case 9205: case 9214: case 9215: case 9144: case 9145: case 9154: case 9155: case 9164: case 9165: case 9174: case 9175: case 9184: case 9185: case 9194: case 9195: return Shape::OuterLeft; + case 9206: case 9207: case 9216: case 9217: case 9146: case 9147: case 9156: case 9157: case 9166: case 9167: case 9176: case 9177: case 9186: case 9187: case 9196: case 9197: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9199: case 9201: case 9203: case 9205: case 9207: case 9209: case 9211: case 9213: case 9215: case 9217: case 9139: case 9141: case 9143: case 9145: case 9147: case 9149: case 9151: case 9153: case 9155: case 9157: case 9159: case 9161: case 9163: case 9165: case 9167: case 9169: case 9171: case 9173: case 9175: case 9177: case 9179: case 9181: case 9183: case 9185: case 9187: case 9189: case 9191: case 9193: case 9195: case 9197: return false; + default: return true; + } + } + } + namespace QuartzBlock + { + } + namespace QuartzBricks + { + } + namespace QuartzPillar + { + short QuartzPillar() + { + return 6741; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 6740: return Axis::X; + case 6741: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace QuartzSlab + { + short QuartzSlab() + { + return 8393; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8392: case 8393: return Type::Bottom; + case 8395: case 8394: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8395: case 8393: case 8391: return false; + default: return true; + } + } + } + namespace QuartzStairs + { + short QuartzStairs() + { + return 6754; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6790: case 6791: case 6792: case 6793: case 6794: case 6795: case 6796: case 6797: case 6798: case 6799: case 6800: case 6801: case 6802: case 6783: case 6784: case 6785: case 6786: case 6787: case 6788: case 6789: return eBlockFace::BLOCK_FACE_XM; + case 6803: case 6804: case 6805: case 6806: case 6807: case 6808: case 6809: case 6810: case 6811: case 6812: case 6813: case 6814: case 6815: case 6816: case 6817: case 6818: case 6819: case 6820: case 6821: case 6822: return eBlockFace::BLOCK_FACE_XP; + case 6743: case 6744: case 6745: case 6746: case 6747: case 6748: case 6749: case 6750: case 6751: case 6752: case 6753: case 6754: case 6755: case 6756: case 6757: case 6758: case 6759: case 6760: case 6761: case 6762: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 6793: case 6794: case 6795: case 6796: case 6797: case 6798: case 6799: case 6800: case 6801: case 6802: case 6813: case 6814: case 6815: case 6816: case 6753: case 6817: case 6754: case 6818: case 6755: case 6819: case 6756: case 6820: case 6757: case 6821: case 6758: case 6822: case 6759: case 6760: case 6761: case 6762: case 6773: case 6774: case 6775: case 6776: case 6777: case 6778: case 6779: case 6780: case 6781: case 6782: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 6795: case 6796: case 6805: case 6806: case 6745: case 6746: case 6815: case 6816: case 6755: case 6756: case 6765: case 6766: case 6775: case 6776: case 6785: case 6786: return Shape::InnerLeft; + case 6797: case 6798: case 6807: case 6808: case 6747: case 6748: case 6817: case 6818: case 6757: case 6758: case 6767: case 6768: case 6777: case 6778: case 6787: case 6788: return Shape::InnerRight; + case 6790: case 6799: case 6800: case 6809: case 6810: case 6749: case 6750: case 6819: case 6820: case 6759: case 6760: case 6769: case 6770: case 6779: case 6780: case 6789: return Shape::OuterLeft; + case 6791: case 6792: case 6801: case 6802: case 6811: case 6812: case 6751: case 6752: case 6821: case 6822: case 6761: case 6762: case 6771: case 6772: case 6781: case 6782: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 6790: case 6792: case 6794: case 6796: case 6798: case 6800: case 6802: case 6804: case 6806: case 6744: case 6808: case 6746: case 6810: case 6748: case 6812: case 6750: case 6814: case 6752: case 6816: case 6754: case 6818: case 6756: case 6820: case 6758: case 6822: case 6760: case 6762: case 6764: case 6766: case 6768: case 6770: case 6772: case 6774: case 6776: case 6778: case 6780: case 6782: case 6784: case 6786: case 6788: return false; + default: return true; + } + } + } + namespace Rail + { + short Rail() + { + return 3645; + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 3647: return Shape::AscendingEast; + case 3649: return Shape::AscendingNorth; + case 3650: return Shape::AscendingSouth; + case 3648: return Shape::AscendingWest; + case 3646: return Shape::EastWest; + case 3654: return Shape::NorthEast; + case 3645: return Shape::NorthSouth; + case 3653: return Shape::NorthWest; + case 3651: return Shape::SouthEast; + default: return Shape::SouthWest; + } + } + } + namespace RedBanner + { + short RedBanner() + { + return 8121; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 8121: return 0; + case 8122: return 1; + case 8131: return 10; + case 8132: return 11; + case 8133: return 12; + case 8134: return 13; + case 8135: return 14; + case 8136: return 15; + case 8123: return 2; + case 8124: return 3; + case 8125: return 4; + case 8126: return 5; + case 8127: return 6; + case 8128: return 7; + case 8129: return 8; + default: return 9; + } + } + } + namespace RedBed + { + short RedBed() + { + return 1276; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1284: case 1281: case 1282: case 1283: return eBlockFace::BLOCK_FACE_XM; + case 1287: case 1285: case 1286: case 1288: return eBlockFace::BLOCK_FACE_XP; + case 1276: case 1273: case 1274: case 1275: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1287: case 1276: case 1280: case 1284: case 1275: case 1279: case 1283: case 1288: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1276: case 1280: case 1284: case 1274: case 1278: case 1282: case 1286: case 1288: return Part::Foot; + default: return Part::Head; + } + } + } + namespace RedCarpet + { + } + namespace RedConcrete + { + } + namespace RedConcretePowder + { + } + namespace RedGlazedTerracotta + { + short RedGlazedTerracotta() + { + return 9430; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9432: return eBlockFace::BLOCK_FACE_XM; + case 9433: return eBlockFace::BLOCK_FACE_XP; + case 9430: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace RedMushroom + { + } + namespace RedMushroomBlock + { + short RedMushroomBlock() + { + return 4569; + } + bool Down(short ID) + { + switch (ID) + { + case 4605: case 4621: case 4606: case 4622: case 4607: case 4623: case 4608: case 4624: case 4609: case 4625: case 4610: case 4626: case 4611: case 4627: case 4612: case 4628: case 4613: case 4629: case 4614: case 4630: case 4615: case 4631: case 4616: case 4601: case 4617: case 4602: case 4618: case 4603: case 4619: case 4604: case 4620: case 4632: return false; + default: return true; + } + } + bool East(short ID) + { + switch (ID) + { + case 4589: case 4621: case 4590: case 4622: case 4591: case 4623: case 4592: case 4624: case 4593: case 4625: case 4594: case 4626: case 4595: case 4627: case 4596: case 4628: case 4597: case 4629: case 4598: case 4630: case 4599: case 4631: case 4600: case 4585: case 4617: case 4586: case 4618: case 4587: case 4619: case 4588: case 4620: case 4632: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 4577: case 4593: case 4609: case 4625: case 4578: case 4594: case 4610: case 4626: case 4579: case 4595: case 4611: case 4627: case 4580: case 4596: case 4612: case 4628: case 4581: case 4597: case 4613: case 4629: case 4582: case 4598: case 4614: case 4630: case 4583: case 4599: case 4615: case 4631: case 4584: case 4600: case 4616: case 4632: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 4573: case 4589: case 4605: case 4621: case 4574: case 4590: case 4606: case 4622: case 4575: case 4591: case 4607: case 4623: case 4576: case 4592: case 4608: case 4624: case 4581: case 4597: case 4613: case 4629: case 4582: case 4598: case 4614: case 4630: case 4583: case 4599: case 4615: case 4631: case 4584: case 4600: case 4616: case 4632: return false; + default: return true; + } + } + bool Up(short ID) + { + switch (ID) + { + case 4575: case 4591: case 4607: case 4623: case 4576: case 4592: case 4608: case 4624: case 4579: case 4595: case 4611: case 4627: case 4580: case 4596: case 4612: case 4628: case 4583: case 4599: case 4615: case 4631: case 4584: case 4600: case 4616: case 4571: case 4587: case 4603: case 4619: case 4572: case 4588: case 4604: case 4620: case 4632: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 4574: case 4590: case 4606: case 4622: case 4576: case 4592: case 4608: case 4624: case 4578: case 4594: case 4610: case 4626: case 4580: case 4596: case 4612: case 4628: case 4582: case 4598: case 4614: case 4630: case 4584: case 4600: case 4616: case 4570: case 4586: case 4602: case 4618: case 4572: case 4588: case 4604: case 4620: case 4632: return false; + default: return true; + } + } + } + namespace RedNetherBrickSlab + { + short RedNetherBrickSlab() + { + return 10852; + } + enum Type Type(short ID) + { + switch (ID) + { + case 10852: case 10851: return Type::Bottom; + case 10853: case 10854: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10852: case 10850: case 10854: return false; + default: return true; + } + } + } + namespace RedNetherBrickStairs + { + short RedNetherBrickStairs() + { + return 10560; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 10595: case 10596: case 10597: case 10598: case 10599: case 10600: case 10601: case 10602: case 10603: case 10604: case 10605: case 10606: case 10607: case 10608: case 10589: case 10590: case 10591: case 10592: case 10593: case 10594: return eBlockFace::BLOCK_FACE_XM; + case 10609: case 10610: case 10611: case 10612: case 10613: case 10614: case 10615: case 10616: case 10617: case 10618: case 10619: case 10620: case 10621: case 10622: case 10623: case 10624: case 10625: case 10626: case 10627: case 10628: return eBlockFace::BLOCK_FACE_XP; + case 10549: case 10550: case 10551: case 10552: case 10553: case 10554: case 10555: case 10556: case 10557: case 10558: case 10559: case 10560: case 10561: case 10562: case 10563: case 10564: case 10565: case 10566: case 10567: case 10568: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 10599: case 10600: case 10601: case 10602: case 10603: case 10604: case 10605: case 10606: case 10607: case 10608: case 10619: case 10620: case 10621: case 10622: case 10623: case 10624: case 10625: case 10626: case 10627: case 10628: case 10559: case 10560: case 10561: case 10562: case 10563: case 10564: case 10565: case 10566: case 10567: case 10568: case 10579: case 10580: case 10581: case 10582: case 10583: case 10584: case 10585: case 10586: case 10587: case 10588: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 10601: case 10602: case 10611: case 10612: case 10621: case 10622: case 10551: case 10552: case 10561: case 10562: case 10571: case 10572: case 10581: case 10582: case 10591: case 10592: return Shape::InnerLeft; + case 10603: case 10604: case 10613: case 10614: case 10623: case 10624: case 10553: case 10554: case 10563: case 10564: case 10573: case 10574: case 10583: case 10584: case 10593: case 10594: return Shape::InnerRight; + case 10595: case 10596: case 10605: case 10606: case 10615: case 10616: case 10625: case 10626: case 10555: case 10556: case 10565: case 10566: case 10575: case 10576: case 10585: case 10586: return Shape::OuterLeft; + case 10597: case 10598: case 10607: case 10608: case 10617: case 10618: case 10627: case 10628: case 10557: case 10558: case 10567: case 10568: case 10577: case 10578: case 10587: case 10588: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10596: case 10598: case 10600: case 10602: case 10604: case 10606: case 10608: case 10610: case 10612: case 10614: case 10616: case 10618: case 10620: case 10622: case 10624: case 10626: case 10628: case 10550: case 10552: case 10554: case 10556: case 10558: case 10560: case 10562: case 10564: case 10566: case 10568: case 10570: case 10572: case 10574: case 10576: case 10578: case 10580: case 10582: case 10584: case 10586: case 10588: case 10590: case 10592: case 10594: return false; + default: return true; + } + } + } + namespace RedNetherBrickWall + { + short RedNetherBrickWall() + { + return 13462; + } + enum East East(short ID) + { + switch (ID) + { + case 13589: case 13593: case 13597: case 13601: case 13605: case 13609: case 13613: case 13617: case 13621: case 13625: case 13629: case 13633: case 13637: case 13641: case 13645: case 13649: case 13653: case 13657: case 13661: case 13665: case 13669: case 13673: case 13570: case 13574: case 13578: case 13582: case 13586: case 13590: case 13594: case 13598: case 13602: case 13606: case 13610: case 13614: case 13618: case 13622: case 13626: case 13630: case 13634: case 13638: case 13642: case 13646: case 13650: case 13654: case 13658: case 13662: case 13666: case 13670: case 13674: case 13567: case 13571: case 13575: case 13579: case 13583: case 13587: case 13591: case 13595: case 13599: case 13603: case 13607: case 13611: case 13615: case 13619: case 13623: case 13627: case 13631: case 13635: case 13639: case 13643: case 13647: case 13651: case 13655: case 13659: case 13663: case 13667: case 13671: case 13568: case 13572: case 13576: case 13580: case 13584: case 13588: case 13592: case 13596: case 13600: case 13604: case 13608: case 13612: case 13616: case 13620: case 13624: case 13628: case 13632: case 13636: case 13640: case 13644: case 13648: case 13652: case 13656: case 13660: case 13664: case 13668: case 13672: case 13569: case 13573: case 13577: case 13581: case 13585: return East::Low; + case 13462: case 13466: case 13470: case 13474: case 13478: case 13482: case 13486: case 13490: case 13494: case 13498: case 13502: case 13506: case 13510: case 13514: case 13518: case 13522: case 13526: case 13530: case 13534: case 13538: case 13542: case 13546: case 13550: case 13554: case 13558: case 13562: case 13566: case 13459: case 13463: case 13467: case 13471: case 13475: case 13479: case 13483: case 13487: case 13491: case 13495: case 13499: case 13503: case 13507: case 13511: case 13515: case 13519: case 13523: case 13527: case 13531: case 13535: case 13539: case 13543: case 13547: case 13551: case 13555: case 13559: case 13563: case 13460: case 13464: case 13468: case 13472: case 13476: case 13480: case 13484: case 13488: case 13492: case 13496: case 13500: case 13504: case 13508: case 13512: case 13516: case 13520: case 13524: case 13528: case 13532: case 13536: case 13540: case 13544: case 13548: case 13552: case 13556: case 13560: case 13564: case 13461: case 13465: case 13469: case 13473: case 13477: case 13481: case 13485: case 13489: case 13493: case 13497: case 13501: case 13505: case 13509: case 13513: case 13517: case 13521: case 13525: case 13529: case 13533: case 13537: case 13541: case 13545: case 13549: case 13553: case 13557: case 13561: case 13565: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 13605: case 13609: case 13613: case 13617: case 13621: case 13625: case 13629: case 13633: case 13637: case 13713: case 13717: case 13721: case 13725: case 13729: case 13733: case 13737: case 13741: case 13745: case 13498: case 13502: case 13506: case 13510: case 13514: case 13518: case 13522: case 13526: case 13530: case 13606: case 13610: case 13614: case 13618: case 13622: case 13626: case 13630: case 13634: case 13638: case 13714: case 13718: case 13722: case 13726: case 13730: case 13734: case 13738: case 13742: case 13746: case 13495: case 13499: case 13503: case 13507: case 13511: case 13515: case 13519: case 13523: case 13527: case 13603: case 13607: case 13611: case 13615: case 13619: case 13623: case 13627: case 13631: case 13635: case 13711: case 13715: case 13719: case 13723: case 13727: case 13731: case 13735: case 13739: case 13743: case 13496: case 13500: case 13504: case 13508: case 13512: case 13516: case 13520: case 13524: case 13528: case 13604: case 13608: case 13612: case 13616: case 13620: case 13624: case 13628: case 13632: case 13636: case 13712: case 13716: case 13720: case 13724: case 13728: case 13732: case 13736: case 13740: case 13744: case 13497: case 13501: case 13505: case 13509: case 13513: case 13517: case 13521: case 13525: case 13529: return North::Low; + case 13589: case 13593: case 13597: case 13601: case 13677: case 13681: case 13685: case 13689: case 13693: case 13697: case 13701: case 13705: case 13709: case 13462: case 13466: case 13470: case 13474: case 13478: case 13482: case 13486: case 13490: case 13494: case 13570: case 13574: case 13578: case 13582: case 13586: case 13590: case 13594: case 13598: case 13602: case 13678: case 13682: case 13686: case 13690: case 13694: case 13698: case 13702: case 13706: case 13710: case 13459: case 13463: case 13467: case 13471: case 13475: case 13479: case 13483: case 13487: case 13491: case 13567: case 13571: case 13575: case 13579: case 13583: case 13587: case 13591: case 13595: case 13599: case 13675: case 13679: case 13683: case 13687: case 13691: case 13695: case 13699: case 13703: case 13707: case 13460: case 13464: case 13468: case 13472: case 13476: case 13480: case 13484: case 13488: case 13492: case 13568: case 13572: case 13576: case 13580: case 13584: case 13588: case 13592: case 13596: case 13600: case 13676: case 13680: case 13684: case 13688: case 13692: case 13696: case 13700: case 13704: case 13708: case 13461: case 13465: case 13469: case 13473: case 13477: case 13481: case 13485: case 13489: case 13493: case 13569: case 13573: case 13577: case 13581: case 13585: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 13589: case 13617: case 13621: case 13625: case 13653: case 13657: case 13661: case 13689: case 13693: case 13697: case 13725: case 13729: case 13733: case 13761: case 13765: case 13769: case 13474: case 13478: case 13482: case 13510: case 13514: case 13518: case 13546: case 13550: case 13554: case 13582: case 13586: case 13590: case 13618: case 13622: case 13626: case 13654: case 13658: case 13662: case 13690: case 13694: case 13698: case 13726: case 13730: case 13734: case 13762: case 13766: case 13770: case 13471: case 13475: case 13479: case 13507: case 13511: case 13515: case 13543: case 13547: case 13551: case 13579: case 13583: case 13587: case 13615: case 13619: case 13623: case 13651: case 13655: case 13659: case 13687: case 13691: case 13695: case 13723: case 13727: case 13731: case 13759: case 13763: case 13767: case 13472: case 13476: case 13480: case 13508: case 13512: case 13516: case 13544: case 13548: case 13552: case 13580: case 13584: case 13588: case 13616: case 13620: case 13624: case 13652: case 13656: case 13660: case 13688: case 13692: case 13696: case 13724: case 13728: case 13732: case 13760: case 13764: case 13768: case 13473: case 13477: case 13481: case 13509: case 13513: case 13517: case 13545: case 13549: case 13553: case 13581: case 13585: return South::Low; + case 13605: case 13609: case 13613: case 13641: case 13645: case 13649: case 13677: case 13681: case 13685: case 13713: case 13717: case 13721: case 13749: case 13753: case 13757: case 13462: case 13466: case 13470: case 13498: case 13502: case 13506: case 13534: case 13538: case 13542: case 13570: case 13574: case 13578: case 13606: case 13610: case 13614: case 13642: case 13646: case 13650: case 13678: case 13682: case 13686: case 13714: case 13718: case 13722: case 13750: case 13754: case 13758: case 13459: case 13463: case 13467: case 13495: case 13499: case 13503: case 13531: case 13535: case 13539: case 13567: case 13571: case 13575: case 13603: case 13607: case 13611: case 13639: case 13643: case 13647: case 13675: case 13679: case 13683: case 13711: case 13715: case 13719: case 13747: case 13751: case 13755: case 13460: case 13464: case 13468: case 13496: case 13500: case 13504: case 13532: case 13536: case 13540: case 13568: case 13572: case 13576: case 13604: case 13608: case 13612: case 13640: case 13644: case 13648: case 13676: case 13680: case 13684: case 13712: case 13716: case 13720: case 13748: case 13752: case 13756: case 13461: case 13465: case 13469: case 13497: case 13501: case 13505: case 13533: case 13537: case 13541: case 13569: case 13573: case 13577: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 13589: case 13597: case 13601: case 13609: case 13613: case 13621: case 13625: case 13633: case 13637: case 13645: case 13649: case 13657: case 13661: case 13669: case 13673: case 13681: case 13685: case 13693: case 13697: case 13705: case 13709: case 13717: case 13721: case 13729: case 13733: case 13741: case 13745: case 13753: case 13757: case 13765: case 13769: case 13777: case 13781: case 13466: case 13470: case 13478: case 13482: case 13490: case 13494: case 13502: case 13506: case 13514: case 13518: case 13526: case 13530: case 13538: case 13542: case 13550: case 13554: case 13562: case 13566: case 13574: case 13578: case 13586: case 13590: case 13598: case 13602: case 13610: case 13614: case 13622: case 13626: case 13634: case 13638: case 13646: case 13650: case 13658: case 13662: case 13670: case 13674: case 13682: case 13686: case 13694: case 13698: case 13706: case 13710: case 13718: case 13722: case 13730: case 13734: case 13742: case 13746: case 13754: case 13758: case 13766: case 13770: case 13778: case 13782: case 13467: case 13479: case 13491: case 13503: case 13515: case 13527: case 13539: case 13551: case 13563: case 13575: case 13587: case 13599: case 13611: case 13623: case 13635: case 13647: case 13659: case 13671: case 13683: case 13695: case 13707: case 13719: case 13731: case 13743: case 13755: case 13767: case 13779: case 13468: case 13480: case 13492: case 13504: case 13516: case 13528: case 13540: case 13552: case 13564: case 13576: case 13588: case 13600: case 13612: case 13624: case 13636: case 13648: case 13660: case 13672: case 13684: case 13696: case 13708: case 13720: case 13732: case 13744: case 13756: case 13768: case 13780: case 13465: case 13469: case 13477: case 13481: case 13489: case 13493: case 13501: case 13505: case 13513: case 13517: case 13525: case 13529: case 13537: case 13541: case 13549: case 13553: case 13561: case 13565: case 13573: case 13577: case 13585: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 13589: case 13601: case 13613: case 13625: case 13637: case 13649: case 13661: case 13673: case 13685: case 13697: case 13709: case 13721: case 13733: case 13745: case 13757: case 13769: case 13781: case 13462: case 13470: case 13474: case 13482: case 13486: case 13494: case 13498: case 13506: case 13510: case 13518: case 13522: case 13530: case 13534: case 13542: case 13546: case 13554: case 13558: case 13566: case 13570: case 13578: case 13582: case 13590: case 13594: case 13602: case 13606: case 13614: case 13618: case 13626: case 13630: case 13638: case 13642: case 13650: case 13654: case 13662: case 13666: case 13674: case 13678: case 13686: case 13690: case 13698: case 13702: case 13710: case 13714: case 13722: case 13726: case 13734: case 13738: case 13746: case 13750: case 13758: case 13762: case 13770: case 13774: case 13782: case 13463: case 13475: case 13487: case 13499: case 13511: case 13523: case 13535: case 13547: case 13559: case 13571: case 13583: case 13595: case 13607: case 13619: case 13631: case 13643: case 13655: case 13667: case 13679: case 13691: case 13703: case 13715: case 13727: case 13739: case 13751: case 13763: case 13775: case 13464: case 13468: case 13476: case 13480: case 13488: case 13492: case 13500: case 13504: case 13512: case 13516: case 13524: case 13528: case 13536: case 13540: case 13548: case 13552: case 13560: case 13564: case 13572: case 13576: case 13584: case 13588: case 13596: case 13600: case 13608: case 13612: case 13620: case 13624: case 13632: case 13636: case 13644: case 13648: case 13656: case 13660: case 13668: case 13672: case 13680: case 13684: case 13692: case 13696: case 13704: case 13708: case 13716: case 13720: case 13728: case 13732: case 13740: case 13744: case 13752: case 13756: case 13764: case 13768: case 13776: case 13780: case 13469: case 13481: case 13493: case 13505: case 13517: case 13529: case 13541: case 13553: case 13565: case 13577: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 13589: case 13601: case 13613: case 13625: case 13637: case 13649: case 13661: case 13673: case 13685: case 13697: case 13709: case 13721: case 13733: case 13745: case 13757: case 13769: case 13781: case 13466: case 13478: case 13490: case 13502: case 13514: case 13526: case 13538: case 13550: case 13562: case 13574: case 13586: case 13598: case 13610: case 13622: case 13634: case 13646: case 13658: case 13670: case 13682: case 13694: case 13706: case 13718: case 13730: case 13742: case 13754: case 13766: case 13778: case 13463: case 13475: case 13487: case 13499: case 13511: case 13523: case 13535: case 13547: case 13559: case 13571: case 13583: case 13595: case 13607: case 13619: case 13631: case 13643: case 13655: case 13667: case 13679: case 13691: case 13703: case 13715: case 13727: case 13739: case 13751: case 13763: case 13775: case 13460: case 13472: case 13484: case 13496: case 13508: case 13520: case 13532: case 13544: case 13556: case 13568: case 13580: case 13592: case 13604: case 13616: case 13628: case 13640: case 13652: case 13664: case 13676: case 13688: case 13700: case 13712: case 13724: case 13736: case 13748: case 13760: case 13772: case 13469: case 13481: case 13493: case 13505: case 13517: case 13529: case 13541: case 13553: case 13565: case 13577: return West::Low; + case 13597: case 13609: case 13621: case 13633: case 13645: case 13657: case 13669: case 13681: case 13693: case 13705: case 13717: case 13729: case 13741: case 13753: case 13765: case 13777: case 13462: case 13474: case 13486: case 13498: case 13510: case 13522: case 13534: case 13546: case 13558: case 13570: case 13582: case 13594: case 13606: case 13618: case 13630: case 13642: case 13654: case 13666: case 13678: case 13690: case 13702: case 13714: case 13726: case 13738: case 13750: case 13762: case 13774: case 13459: case 13471: case 13483: case 13495: case 13507: case 13519: case 13531: case 13543: case 13555: case 13567: case 13579: case 13591: case 13603: case 13615: case 13627: case 13639: case 13651: case 13663: case 13675: case 13687: case 13699: case 13711: case 13723: case 13735: case 13747: case 13759: case 13771: case 13468: case 13480: case 13492: case 13504: case 13516: case 13528: case 13540: case 13552: case 13564: case 13576: case 13588: case 13600: case 13612: case 13624: case 13636: case 13648: case 13660: case 13672: case 13684: case 13696: case 13708: case 13720: case 13732: case 13744: case 13756: case 13768: case 13780: case 13465: case 13477: case 13489: case 13501: case 13513: case 13525: case 13537: case 13549: case 13561: case 13573: case 13585: return West::None; + default: return West::Tall; + } + } + } + namespace RedNetherBricks + { + } + namespace RedSand + { + } + namespace RedSandstone + { + } + namespace RedSandstoneSlab + { + short RedSandstoneSlab() + { + return 8399; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8399: case 8398: return Type::Bottom; + case 8400: case 8401: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8399: case 8397: case 8401: return false; + default: return true; + } + } + } + namespace RedSandstoneStairs + { + short RedSandstoneStairs() + { + return 8231; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8260: case 8261: case 8262: case 8263: case 8264: case 8265: case 8266: case 8267: case 8268: case 8269: case 8270: case 8271: case 8272: case 8273: case 8274: case 8275: case 8276: case 8277: case 8278: case 8279: return eBlockFace::BLOCK_FACE_XM; + case 8280: case 8281: case 8282: case 8283: case 8284: case 8285: case 8286: case 8287: case 8288: case 8289: case 8290: case 8291: case 8292: case 8293: case 8294: case 8295: case 8296: case 8297: case 8298: case 8299: return eBlockFace::BLOCK_FACE_XP; + case 8220: case 8221: case 8222: case 8223: case 8224: case 8225: case 8226: case 8227: case 8228: case 8229: case 8230: case 8231: case 8232: case 8233: case 8234: case 8235: case 8236: case 8237: case 8238: case 8239: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 8230: case 8231: case 8232: case 8233: case 8234: case 8235: case 8236: case 8237: case 8238: case 8239: case 8250: case 8251: case 8252: case 8253: case 8254: case 8255: case 8256: case 8257: case 8258: case 8259: case 8270: case 8271: case 8272: case 8273: case 8274: case 8275: case 8276: case 8277: case 8278: case 8279: case 8290: case 8291: case 8292: case 8293: case 8294: case 8295: case 8296: case 8297: case 8298: case 8299: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 8222: case 8223: case 8232: case 8233: case 8242: case 8243: case 8252: case 8253: case 8262: case 8263: case 8272: case 8273: case 8282: case 8283: case 8292: case 8293: return Shape::InnerLeft; + case 8224: case 8225: case 8234: case 8235: case 8244: case 8245: case 8254: case 8255: case 8264: case 8265: case 8274: case 8275: case 8284: case 8285: case 8294: case 8295: return Shape::InnerRight; + case 8226: case 8227: case 8236: case 8237: case 8246: case 8247: case 8256: case 8257: case 8266: case 8267: case 8276: case 8277: case 8286: case 8287: case 8296: case 8297: return Shape::OuterLeft; + case 8228: case 8229: case 8238: case 8239: case 8248: case 8249: case 8258: case 8259: case 8268: case 8269: case 8278: case 8279: case 8288: case 8289: case 8298: case 8299: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8221: case 8223: case 8225: case 8227: case 8229: case 8231: case 8233: case 8235: case 8237: case 8239: case 8241: case 8243: case 8245: case 8247: case 8249: case 8251: case 8253: case 8255: case 8257: case 8259: case 8261: case 8263: case 8265: case 8267: case 8269: case 8271: case 8273: case 8275: case 8277: case 8279: case 8281: case 8283: case 8285: case 8287: case 8289: case 8291: case 8293: case 8295: case 8297: case 8299: return false; + default: return true; + } + } + } + namespace RedSandstoneWall + { + short RedSandstoneWall() + { + return 11518; + } + enum East East(short ID) + { + switch (ID) + { + case 11625: case 11629: case 11633: case 11637: case 11641: case 11645: case 11649: case 11653: case 11657: case 11661: case 11665: case 11669: case 11673: case 11677: case 11681: case 11685: case 11689: case 11693: case 11697: case 11701: case 11705: case 11709: case 11713: case 11717: case 11721: case 11725: case 11729: case 11626: case 11630: case 11634: case 11638: case 11642: case 11646: case 11650: case 11654: case 11658: case 11662: case 11666: case 11670: case 11674: case 11678: case 11682: case 11686: case 11690: case 11694: case 11698: case 11702: case 11706: case 11710: case 11714: case 11718: case 11722: case 11726: case 11730: case 11623: case 11627: case 11631: case 11635: case 11639: case 11643: case 11647: case 11651: case 11655: case 11659: case 11663: case 11667: case 11671: case 11675: case 11679: case 11683: case 11687: case 11691: case 11695: case 11699: case 11703: case 11707: case 11711: case 11715: case 11719: case 11723: case 11727: case 11624: case 11628: case 11632: case 11636: case 11640: case 11644: case 11648: case 11652: case 11656: case 11660: case 11664: case 11668: case 11672: case 11676: case 11680: case 11684: case 11688: case 11692: case 11696: case 11700: case 11704: case 11708: case 11712: case 11716: case 11720: case 11724: case 11728: return East::Low; + case 11545: case 11549: case 11553: case 11557: case 11561: case 11565: case 11569: case 11573: case 11577: case 11581: case 11585: case 11589: case 11593: case 11597: case 11601: case 11605: case 11609: case 11613: case 11617: case 11621: case 11518: case 11522: case 11526: case 11530: case 11534: case 11538: case 11542: case 11546: case 11550: case 11554: case 11558: case 11562: case 11566: case 11570: case 11574: case 11578: case 11582: case 11586: case 11590: case 11594: case 11598: case 11602: case 11606: case 11610: case 11614: case 11618: case 11622: case 11515: case 11519: case 11523: case 11527: case 11531: case 11535: case 11539: case 11543: case 11547: case 11551: case 11555: case 11559: case 11563: case 11567: case 11571: case 11575: case 11579: case 11583: case 11587: case 11591: case 11595: case 11599: case 11603: case 11607: case 11611: case 11615: case 11619: case 11516: case 11520: case 11524: case 11528: case 11532: case 11536: case 11540: case 11544: case 11548: case 11552: case 11556: case 11560: case 11564: case 11568: case 11572: case 11576: case 11580: case 11584: case 11588: case 11592: case 11596: case 11600: case 11604: case 11608: case 11612: case 11616: case 11620: case 11517: case 11521: case 11525: case 11529: case 11533: case 11537: case 11541: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 11553: case 11557: case 11561: case 11565: case 11569: case 11573: case 11577: case 11581: case 11585: case 11661: case 11665: case 11669: case 11673: case 11677: case 11681: case 11685: case 11689: case 11693: case 11769: case 11773: case 11777: case 11781: case 11785: case 11789: case 11793: case 11797: case 11801: case 11554: case 11558: case 11562: case 11566: case 11570: case 11574: case 11578: case 11582: case 11586: case 11662: case 11666: case 11670: case 11674: case 11678: case 11682: case 11686: case 11690: case 11694: case 11770: case 11774: case 11778: case 11782: case 11786: case 11790: case 11794: case 11798: case 11802: case 11551: case 11555: case 11559: case 11563: case 11567: case 11571: case 11575: case 11579: case 11583: case 11659: case 11663: case 11667: case 11671: case 11675: case 11679: case 11683: case 11687: case 11691: case 11767: case 11771: case 11775: case 11779: case 11783: case 11787: case 11791: case 11795: case 11799: case 11552: case 11556: case 11560: case 11564: case 11568: case 11572: case 11576: case 11580: case 11584: case 11660: case 11664: case 11668: case 11672: case 11676: case 11680: case 11684: case 11688: case 11692: case 11768: case 11772: case 11776: case 11780: case 11784: case 11788: case 11792: case 11796: case 11800: return North::Low; + case 11545: case 11549: case 11625: case 11629: case 11633: case 11637: case 11641: case 11645: case 11649: case 11653: case 11657: case 11733: case 11737: case 11741: case 11745: case 11749: case 11753: case 11757: case 11761: case 11765: case 11518: case 11522: case 11526: case 11530: case 11534: case 11538: case 11542: case 11546: case 11550: case 11626: case 11630: case 11634: case 11638: case 11642: case 11646: case 11650: case 11654: case 11658: case 11734: case 11738: case 11742: case 11746: case 11750: case 11754: case 11758: case 11762: case 11766: case 11515: case 11519: case 11523: case 11527: case 11531: case 11535: case 11539: case 11543: case 11547: case 11623: case 11627: case 11631: case 11635: case 11639: case 11643: case 11647: case 11651: case 11655: case 11731: case 11735: case 11739: case 11743: case 11747: case 11751: case 11755: case 11759: case 11763: case 11516: case 11520: case 11524: case 11528: case 11532: case 11536: case 11540: case 11544: case 11548: case 11624: case 11628: case 11632: case 11636: case 11640: case 11644: case 11648: case 11652: case 11656: case 11732: case 11736: case 11740: case 11744: case 11748: case 11752: case 11756: case 11760: case 11764: case 11517: case 11521: case 11525: case 11529: case 11533: case 11537: case 11541: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 11565: case 11569: case 11573: case 11601: case 11605: case 11609: case 11637: case 11641: case 11645: case 11673: case 11677: case 11681: case 11709: case 11713: case 11717: case 11745: case 11749: case 11753: case 11781: case 11785: case 11789: case 11817: case 11821: case 11825: case 11530: case 11534: case 11538: case 11566: case 11570: case 11574: case 11602: case 11606: case 11610: case 11638: case 11642: case 11646: case 11674: case 11678: case 11682: case 11710: case 11714: case 11718: case 11746: case 11750: case 11754: case 11782: case 11786: case 11790: case 11818: case 11822: case 11826: case 11527: case 11531: case 11535: case 11563: case 11567: case 11571: case 11599: case 11603: case 11607: case 11635: case 11639: case 11643: case 11671: case 11675: case 11679: case 11707: case 11711: case 11715: case 11743: case 11747: case 11751: case 11779: case 11783: case 11787: case 11815: case 11819: case 11823: case 11528: case 11532: case 11536: case 11564: case 11568: case 11572: case 11600: case 11604: case 11608: case 11636: case 11640: case 11644: case 11672: case 11676: case 11680: case 11708: case 11712: case 11716: case 11744: case 11748: case 11752: case 11780: case 11784: case 11788: case 11816: case 11820: case 11824: case 11529: case 11533: case 11537: return South::Low; + case 11553: case 11557: case 11561: case 11589: case 11593: case 11597: case 11625: case 11629: case 11633: case 11661: case 11665: case 11669: case 11697: case 11701: case 11705: case 11733: case 11737: case 11741: case 11769: case 11773: case 11777: case 11805: case 11809: case 11813: case 11518: case 11522: case 11526: case 11554: case 11558: case 11562: case 11590: case 11594: case 11598: case 11626: case 11630: case 11634: case 11662: case 11666: case 11670: case 11698: case 11702: case 11706: case 11734: case 11738: case 11742: case 11770: case 11774: case 11778: case 11806: case 11810: case 11814: case 11515: case 11519: case 11523: case 11551: case 11555: case 11559: case 11587: case 11591: case 11595: case 11623: case 11627: case 11631: case 11659: case 11663: case 11667: case 11695: case 11699: case 11703: case 11731: case 11735: case 11739: case 11767: case 11771: case 11775: case 11803: case 11807: case 11811: case 11516: case 11520: case 11524: case 11552: case 11556: case 11560: case 11588: case 11592: case 11596: case 11624: case 11628: case 11632: case 11660: case 11664: case 11668: case 11696: case 11700: case 11704: case 11732: case 11736: case 11740: case 11768: case 11772: case 11776: case 11804: case 11808: case 11812: case 11517: case 11521: case 11525: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 11545: case 11549: case 11557: case 11561: case 11569: case 11573: case 11581: case 11585: case 11593: case 11597: case 11605: case 11609: case 11617: case 11621: case 11629: case 11633: case 11641: case 11645: case 11653: case 11657: case 11665: case 11669: case 11677: case 11681: case 11689: case 11693: case 11701: case 11705: case 11713: case 11717: case 11725: case 11729: case 11737: case 11741: case 11749: case 11753: case 11761: case 11765: case 11773: case 11777: case 11785: case 11789: case 11797: case 11801: case 11809: case 11813: case 11821: case 11825: case 11833: case 11837: case 11522: case 11526: case 11534: case 11538: case 11546: case 11550: case 11558: case 11562: case 11570: case 11574: case 11582: case 11586: case 11594: case 11598: case 11606: case 11610: case 11618: case 11622: case 11630: case 11634: case 11642: case 11646: case 11654: case 11658: case 11666: case 11670: case 11678: case 11682: case 11690: case 11694: case 11702: case 11706: case 11714: case 11718: case 11726: case 11730: case 11738: case 11742: case 11750: case 11754: case 11762: case 11766: case 11774: case 11778: case 11786: case 11790: case 11798: case 11802: case 11810: case 11814: case 11822: case 11826: case 11834: case 11838: case 11523: case 11535: case 11547: case 11559: case 11571: case 11583: case 11595: case 11607: case 11619: case 11631: case 11643: case 11655: case 11667: case 11679: case 11691: case 11703: case 11715: case 11727: case 11739: case 11751: case 11763: case 11775: case 11787: case 11799: case 11811: case 11823: case 11835: case 11524: case 11536: case 11548: case 11560: case 11572: case 11584: case 11596: case 11608: case 11620: case 11632: case 11644: case 11656: case 11668: case 11680: case 11692: case 11704: case 11716: case 11728: case 11740: case 11752: case 11764: case 11776: case 11788: case 11800: case 11812: case 11824: case 11836: case 11521: case 11525: case 11533: case 11537: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 11549: case 11561: case 11573: case 11585: case 11597: case 11609: case 11621: case 11633: case 11645: case 11657: case 11669: case 11681: case 11693: case 11705: case 11717: case 11729: case 11741: case 11753: case 11765: case 11777: case 11789: case 11801: case 11813: case 11825: case 11837: case 11518: case 11526: case 11530: case 11538: case 11542: case 11550: case 11554: case 11562: case 11566: case 11574: case 11578: case 11586: case 11590: case 11598: case 11602: case 11610: case 11614: case 11622: case 11626: case 11634: case 11638: case 11646: case 11650: case 11658: case 11662: case 11670: case 11674: case 11682: case 11686: case 11694: case 11698: case 11706: case 11710: case 11718: case 11722: case 11730: case 11734: case 11742: case 11746: case 11754: case 11758: case 11766: case 11770: case 11778: case 11782: case 11790: case 11794: case 11802: case 11806: case 11814: case 11818: case 11826: case 11830: case 11838: case 11519: case 11531: case 11543: case 11555: case 11567: case 11579: case 11591: case 11603: case 11615: case 11627: case 11639: case 11651: case 11663: case 11675: case 11687: case 11699: case 11711: case 11723: case 11735: case 11747: case 11759: case 11771: case 11783: case 11795: case 11807: case 11819: case 11831: case 11520: case 11524: case 11532: case 11536: case 11544: case 11548: case 11556: case 11560: case 11568: case 11572: case 11580: case 11584: case 11592: case 11596: case 11604: case 11608: case 11616: case 11620: case 11628: case 11632: case 11640: case 11644: case 11652: case 11656: case 11664: case 11668: case 11676: case 11680: case 11688: case 11692: case 11700: case 11704: case 11712: case 11716: case 11724: case 11728: case 11736: case 11740: case 11748: case 11752: case 11760: case 11764: case 11772: case 11776: case 11784: case 11788: case 11796: case 11800: case 11808: case 11812: case 11820: case 11824: case 11832: case 11836: case 11525: case 11537: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 11549: case 11561: case 11573: case 11585: case 11597: case 11609: case 11621: case 11633: case 11645: case 11657: case 11669: case 11681: case 11693: case 11705: case 11717: case 11729: case 11741: case 11753: case 11765: case 11777: case 11789: case 11801: case 11813: case 11825: case 11837: case 11522: case 11534: case 11546: case 11558: case 11570: case 11582: case 11594: case 11606: case 11618: case 11630: case 11642: case 11654: case 11666: case 11678: case 11690: case 11702: case 11714: case 11726: case 11738: case 11750: case 11762: case 11774: case 11786: case 11798: case 11810: case 11822: case 11834: case 11519: case 11531: case 11543: case 11555: case 11567: case 11579: case 11591: case 11603: case 11615: case 11627: case 11639: case 11651: case 11663: case 11675: case 11687: case 11699: case 11711: case 11723: case 11735: case 11747: case 11759: case 11771: case 11783: case 11795: case 11807: case 11819: case 11831: case 11516: case 11528: case 11540: case 11552: case 11564: case 11576: case 11588: case 11600: case 11612: case 11624: case 11636: case 11648: case 11660: case 11672: case 11684: case 11696: case 11708: case 11720: case 11732: case 11744: case 11756: case 11768: case 11780: case 11792: case 11804: case 11816: case 11828: case 11525: case 11537: return West::Low; + case 11545: case 11557: case 11569: case 11581: case 11593: case 11605: case 11617: case 11629: case 11641: case 11653: case 11665: case 11677: case 11689: case 11701: case 11713: case 11725: case 11737: case 11749: case 11761: case 11773: case 11785: case 11797: case 11809: case 11821: case 11833: case 11518: case 11530: case 11542: case 11554: case 11566: case 11578: case 11590: case 11602: case 11614: case 11626: case 11638: case 11650: case 11662: case 11674: case 11686: case 11698: case 11710: case 11722: case 11734: case 11746: case 11758: case 11770: case 11782: case 11794: case 11806: case 11818: case 11830: case 11515: case 11527: case 11539: case 11551: case 11563: case 11575: case 11587: case 11599: case 11611: case 11623: case 11635: case 11647: case 11659: case 11671: case 11683: case 11695: case 11707: case 11719: case 11731: case 11743: case 11755: case 11767: case 11779: case 11791: case 11803: case 11815: case 11827: case 11524: case 11536: case 11548: case 11560: case 11572: case 11584: case 11596: case 11608: case 11620: case 11632: case 11644: case 11656: case 11668: case 11680: case 11692: case 11704: case 11716: case 11728: case 11740: case 11752: case 11764: case 11776: case 11788: case 11800: case 11812: case 11824: case 11836: case 11521: case 11533: return West::None; + default: return West::Tall; + } + } + } + namespace RedShulkerBox + { + short RedShulkerBox() + { + return 9366; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9365: return eBlockFace::BLOCK_FACE_XM; + case 9363: return eBlockFace::BLOCK_FACE_XP; + case 9367: return eBlockFace::BLOCK_FACE_YM; + case 9366: return eBlockFace::BLOCK_FACE_YP; + case 9362: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace RedStainedGlass + { + } + namespace RedStainedGlassPane + { + short RedStainedGlassPane() + { + return 7342; + } + bool East(short ID) + { + switch (ID) + { + case 7334: case 7338: case 7327: case 7331: case 7335: case 7339: case 7328: case 7332: case 7336: case 7340: case 7329: case 7333: case 7337: case 7341: case 7330: case 7342: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 7338: case 7319: case 7323: case 7335: case 7339: case 7320: case 7324: case 7336: case 7340: case 7321: case 7325: case 7337: case 7341: case 7322: case 7326: case 7342: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 7334: case 7315: case 7323: case 7331: case 7339: case 7316: case 7324: case 7332: case 7340: case 7317: case 7325: case 7333: case 7341: case 7318: case 7326: case 7342: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 7334: case 7338: case 7313: case 7317: case 7321: case 7325: case 7329: case 7333: case 7337: case 7341: case 7314: case 7318: case 7322: case 7326: case 7330: case 7342: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 7334: case 7338: case 7312: case 7316: case 7320: case 7324: case 7328: case 7332: case 7336: case 7340: case 7314: case 7318: case 7322: case 7326: case 7330: case 7342: return false; + default: return true; + } + } + } + namespace RedTerracotta + { + } + namespace RedTulip + { + } + namespace RedWallBanner + { + short RedWallBanner() + { + return 8209; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8211: return eBlockFace::BLOCK_FACE_XM; + case 8212: return eBlockFace::BLOCK_FACE_XP; + case 8209: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace RedWool + { + } + namespace RedstoneBlock + { + } + namespace RedstoneLamp + { + short RedstoneLamp() + { + return 5157; + } + bool Lit(short ID) + { + switch (ID) + { + case 5157: return false; + default: return true; + } + } + } + namespace RedstoneOre + { + short RedstoneOre() + { + return 3886; + } + bool Lit(short ID) + { + switch (ID) + { + case 3886: return false; + default: return true; + } + } + } + namespace RedstoneTorch + { + short RedstoneTorch() + { + return 3887; + } + bool Lit(short ID) + { + switch (ID) + { + case 3888: return false; + default: return true; + } + } + } + namespace RedstoneWallTorch + { + short RedstoneWallTorch() + { + return 3889; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 3893: case 3894: return eBlockFace::BLOCK_FACE_XM; + case 3895: case 3896: return eBlockFace::BLOCK_FACE_XP; + case 3890: case 3889: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Lit(short ID) + { + switch (ID) + { + case 3890: case 3892: case 3894: case 3896: return false; + default: return true; + } + } + } + namespace RedstoneWire + { + short RedstoneWire() + { + return 3218; + } + enum East East(short ID) + { + switch (ID) + { + case 3061: case 3065: case 3069: case 3073: case 3077: case 3081: case 3085: case 3089: case 3093: case 3097: case 3101: case 3105: case 3109: case 3113: case 3117: case 3121: case 3125: case 3129: case 3133: case 3137: case 3141: case 3145: case 3149: case 3153: case 3157: case 3161: case 3165: case 3169: case 3173: case 3177: case 3181: case 3185: case 3189: case 3193: case 3197: case 3201: case 3205: case 3209: case 3213: case 3217: case 3221: case 3225: case 3229: case 3233: case 3237: case 3241: case 3245: case 3249: case 3253: case 3257: case 3261: case 3265: case 3269: case 3273: case 3277: case 3281: case 3285: case 3289: case 3293: case 3297: case 3301: case 3305: case 3309: case 3313: case 3317: case 3321: case 3325: case 3329: case 3333: case 3337: case 3341: case 3345: case 3349: case 3353: case 2922: case 2926: case 2930: case 2934: case 2938: case 2942: case 2946: case 2950: case 2954: case 2958: case 2962: case 2966: case 2970: case 2974: case 2978: case 2982: case 2986: case 2990: case 2994: case 2998: case 3002: case 3006: case 3010: case 3014: case 3018: case 3022: case 3026: case 3030: case 3034: case 3038: case 3042: case 3046: case 3050: case 3054: case 3058: case 3062: case 3066: case 3070: case 3074: case 3078: case 3082: case 3086: case 3090: case 3094: case 3098: case 3102: case 3106: case 3110: case 3114: case 3118: case 3122: case 3126: case 3130: case 3134: case 3138: case 3142: case 3146: case 3150: case 3154: case 3158: case 3162: case 3166: case 3170: case 3174: case 3178: case 3182: case 3186: case 3190: case 3194: case 3198: case 3202: case 3206: case 3210: case 3214: case 3218: case 3222: case 3226: case 3230: case 3234: case 3238: case 3242: case 3246: case 3250: case 3254: case 3258: case 3262: case 3266: case 3270: case 3274: case 3278: case 3282: case 3286: case 3290: case 3294: case 3298: case 3302: case 3306: case 3310: case 3314: case 3318: case 3322: case 3326: case 3330: case 3334: case 3338: case 3342: case 3346: case 3350: case 2923: case 2927: case 2931: case 2935: case 2939: case 2943: case 2947: case 2951: case 2955: case 2959: case 2963: case 2967: case 2971: case 2975: case 2979: case 2983: case 2987: case 2991: case 2995: case 2999: case 3003: case 3007: case 3011: case 3015: case 3019: case 3023: case 3027: case 3031: case 3035: case 3039: case 3043: case 3047: case 3051: case 3055: case 3059: case 3063: case 3067: case 3071: case 3075: case 3079: case 3083: case 3087: case 3091: case 3095: case 3099: case 3103: case 3107: case 3111: case 3115: case 3119: case 3123: case 3127: case 3131: case 3135: case 3139: case 3143: case 3147: case 3151: case 3155: case 3159: case 3163: case 3167: case 3171: case 3175: case 3179: case 3183: case 3187: case 3191: case 3195: case 3199: case 3203: case 3207: case 3211: case 3215: case 3219: case 3223: case 3227: case 3231: case 3235: case 3239: case 3243: case 3247: case 3251: case 3255: case 3259: case 3263: case 3267: case 3271: case 3275: case 3279: case 3283: case 3287: case 3291: case 3295: case 3299: case 3303: case 3307: case 3311: case 3315: case 3319: case 3323: case 3327: case 3331: case 3335: case 3339: case 3343: case 3347: case 3351: case 2924: case 2928: case 2932: case 2936: case 2940: case 2944: case 2948: case 2952: case 2956: case 2960: case 2964: case 2968: case 2972: case 2976: case 2980: case 2984: case 2988: case 2992: case 2996: case 3000: case 3004: case 3008: case 3012: case 3016: case 3020: case 3024: case 3028: case 3032: case 3036: case 3040: case 3044: case 3048: case 3052: case 3056: case 3060: case 3064: case 3068: case 3072: case 3076: case 3080: case 3084: case 3088: case 3092: case 3096: case 3100: case 3104: case 3108: case 3112: case 3116: case 3120: case 3124: case 3128: case 3132: case 3136: case 3140: case 3144: case 3148: case 3152: case 3156: case 3160: case 3164: case 3168: case 3172: case 3176: case 3180: case 3184: case 3188: case 3192: case 3196: case 3200: case 3204: case 3208: case 3212: case 3216: case 3220: case 3224: case 3228: case 3232: case 3236: case 3240: case 3244: case 3248: case 3252: case 3256: case 3260: case 3264: case 3268: case 3272: case 3276: case 3280: case 3284: case 3288: case 3292: case 3296: case 3300: case 3304: case 3308: case 3312: case 3316: case 3320: case 3324: case 3328: case 3332: case 3336: case 3340: case 3344: case 3348: case 3352: case 2925: case 2929: case 2933: case 2937: case 2941: case 2945: case 2949: case 2953: case 2957: case 2961: case 2965: case 2969: case 2973: case 2977: case 2981: case 2985: case 2989: case 2993: case 2997: case 3001: case 3005: case 3009: case 3013: case 3017: case 3021: case 3025: case 3029: case 3033: case 3037: case 3041: case 3045: case 3049: case 3053: case 3057: return East::None; + case 2490: case 2494: case 2498: case 2502: case 2506: case 2510: case 2514: case 2518: case 2522: case 2526: case 2530: case 2534: case 2538: case 2542: case 2546: case 2550: case 2554: case 2558: case 2562: case 2566: case 2570: case 2574: case 2578: case 2582: case 2586: case 2590: case 2594: case 2598: case 2602: case 2606: case 2610: case 2614: case 2618: case 2622: case 2626: case 2630: case 2634: case 2638: case 2642: case 2646: case 2650: case 2654: case 2658: case 2662: case 2666: case 2670: case 2674: case 2678: case 2682: case 2686: case 2690: case 2694: case 2698: case 2702: case 2706: case 2710: case 2714: case 2718: case 2722: case 2726: case 2730: case 2734: case 2738: case 2742: case 2746: case 2750: case 2754: case 2758: case 2762: case 2766: case 2770: case 2774: case 2778: case 2782: case 2786: case 2790: case 2794: case 2798: case 2802: case 2806: case 2810: case 2814: case 2818: case 2822: case 2826: case 2830: case 2834: case 2838: case 2842: case 2846: case 2850: case 2854: case 2858: case 2862: case 2866: case 2870: case 2874: case 2878: case 2882: case 2886: case 2890: case 2894: case 2898: case 2902: case 2906: case 2910: case 2914: case 2918: case 2491: case 2495: case 2499: case 2503: case 2507: case 2511: case 2515: case 2519: case 2523: case 2527: case 2531: case 2535: case 2539: case 2543: case 2547: case 2551: case 2555: case 2559: case 2563: case 2567: case 2571: case 2575: case 2579: case 2583: case 2587: case 2591: case 2595: case 2599: case 2603: case 2607: case 2611: case 2615: case 2619: case 2623: case 2627: case 2631: case 2635: case 2639: case 2643: case 2647: case 2651: case 2655: case 2659: case 2663: case 2667: case 2671: case 2675: case 2679: case 2683: case 2687: case 2691: case 2695: case 2699: case 2703: case 2707: case 2711: case 2715: case 2719: case 2723: case 2727: case 2731: case 2735: case 2739: case 2743: case 2747: case 2751: case 2755: case 2759: case 2763: case 2767: case 2771: case 2775: case 2779: case 2783: case 2787: case 2791: case 2795: case 2799: case 2803: case 2807: case 2811: case 2815: case 2819: case 2823: case 2827: case 2831: case 2835: case 2839: case 2843: case 2847: case 2851: case 2855: case 2859: case 2863: case 2867: case 2871: case 2875: case 2879: case 2883: case 2887: case 2891: case 2895: case 2899: case 2903: case 2907: case 2911: case 2915: case 2919: case 2492: case 2496: case 2500: case 2504: case 2508: case 2512: case 2516: case 2520: case 2524: case 2528: case 2532: case 2536: case 2540: case 2544: case 2548: case 2552: case 2556: case 2560: case 2564: case 2568: case 2572: case 2576: case 2580: case 2584: case 2588: case 2592: case 2596: case 2600: case 2604: case 2608: case 2612: case 2616: case 2620: case 2624: case 2628: case 2632: case 2636: case 2640: case 2644: case 2648: case 2652: case 2656: case 2660: case 2664: case 2668: case 2672: case 2676: case 2680: case 2684: case 2688: case 2692: case 2696: case 2700: case 2704: case 2708: case 2712: case 2716: case 2720: case 2724: case 2728: case 2732: case 2736: case 2740: case 2744: case 2748: case 2752: case 2756: case 2760: case 2764: case 2768: case 2772: case 2776: case 2780: case 2784: case 2788: case 2792: case 2796: case 2800: case 2804: case 2808: case 2812: case 2816: case 2820: case 2824: case 2828: case 2832: case 2836: case 2840: case 2844: case 2848: case 2852: case 2856: case 2860: case 2864: case 2868: case 2872: case 2876: case 2880: case 2884: case 2888: case 2892: case 2896: case 2900: case 2904: case 2908: case 2912: case 2916: case 2920: case 2493: case 2497: case 2501: case 2505: case 2509: case 2513: case 2517: case 2521: case 2525: case 2529: case 2533: case 2537: case 2541: case 2545: case 2549: case 2553: case 2557: case 2561: case 2565: case 2569: case 2573: case 2577: case 2581: case 2585: case 2589: case 2593: case 2597: case 2601: case 2605: case 2609: case 2613: case 2617: case 2621: case 2625: case 2629: case 2633: case 2637: case 2641: case 2645: case 2649: case 2653: case 2657: case 2661: case 2665: case 2669: case 2673: case 2677: case 2681: case 2685: case 2689: case 2693: case 2697: case 2701: case 2705: case 2709: case 2713: case 2717: case 2721: case 2725: case 2729: case 2733: case 2737: case 2741: case 2745: case 2749: case 2753: case 2757: case 2761: case 2765: case 2769: case 2773: case 2777: case 2781: case 2785: case 2789: case 2793: case 2797: case 2801: case 2805: case 2809: case 2813: case 2817: case 2821: case 2825: case 2829: case 2833: case 2837: case 2841: case 2845: case 2849: case 2853: case 2857: case 2861: case 2865: case 2869: case 2873: case 2877: case 2881: case 2885: case 2889: case 2893: case 2897: case 2901: case 2905: case 2909: case 2913: case 2917: case 2921: return East::Side; + default: return East::Up; + } + } + enum North North(short ID) + { + switch (ID) + { + case 3213: case 3217: case 3221: case 3225: case 3229: case 3233: case 3237: case 3241: case 3245: case 3249: case 3253: case 3257: case 3261: case 3265: case 3269: case 3273: case 3277: case 3281: case 3285: case 3289: case 3293: case 3297: case 3301: case 3305: case 3309: case 3313: case 3317: case 3321: case 3325: case 3329: case 3333: case 3337: case 3341: case 3345: case 3349: case 3353: case 2346: case 2350: case 2354: case 2358: case 2362: case 2366: case 2370: case 2374: case 2378: case 2382: case 2386: case 2390: case 2394: case 2398: case 2402: case 2406: case 2410: case 2414: case 2418: case 2422: case 2426: case 2430: case 2434: case 2438: case 2442: case 2446: case 2450: case 2454: case 2458: case 2462: case 2466: case 2470: case 2474: case 2478: case 2482: case 2486: case 2778: case 2782: case 2786: case 2790: case 2794: case 2798: case 2802: case 2806: case 2810: case 2814: case 2818: case 2822: case 2826: case 2830: case 2834: case 2838: case 2842: case 2846: case 2850: case 2854: case 2858: case 2862: case 2866: case 2870: case 2874: case 2878: case 2882: case 2886: case 2890: case 2894: case 2898: case 2902: case 2906: case 2910: case 2914: case 2918: case 3210: case 3214: case 3218: case 3222: case 3226: case 3230: case 3234: case 3238: case 3242: case 3246: case 3250: case 3254: case 3258: case 3262: case 3266: case 3270: case 3274: case 3278: case 3282: case 3286: case 3290: case 3294: case 3298: case 3302: case 3306: case 3310: case 3314: case 3318: case 3322: case 3326: case 3330: case 3334: case 3338: case 3342: case 3346: case 3350: case 2347: case 2351: case 2355: case 2359: case 2363: case 2367: case 2371: case 2375: case 2379: case 2383: case 2387: case 2391: case 2395: case 2399: case 2403: case 2407: case 2411: case 2415: case 2419: case 2423: case 2427: case 2431: case 2435: case 2439: case 2443: case 2447: case 2451: case 2455: case 2459: case 2463: case 2467: case 2471: case 2475: case 2479: case 2483: case 2487: case 2779: case 2783: case 2787: case 2791: case 2795: case 2799: case 2803: case 2807: case 2811: case 2815: case 2819: case 2823: case 2827: case 2831: case 2835: case 2839: case 2843: case 2847: case 2851: case 2855: case 2859: case 2863: case 2867: case 2871: case 2875: case 2879: case 2883: case 2887: case 2891: case 2895: case 2899: case 2903: case 2907: case 2911: case 2915: case 2919: case 3211: case 3215: case 3219: case 3223: case 3227: case 3231: case 3235: case 3239: case 3243: case 3247: case 3251: case 3255: case 3259: case 3263: case 3267: case 3271: case 3275: case 3279: case 3283: case 3287: case 3291: case 3295: case 3299: case 3303: case 3307: case 3311: case 3315: case 3319: case 3323: case 3327: case 3331: case 3335: case 3339: case 3343: case 3347: case 3351: case 2348: case 2352: case 2356: case 2360: case 2364: case 2368: case 2372: case 2376: case 2380: case 2384: case 2388: case 2392: case 2396: case 2400: case 2404: case 2408: case 2412: case 2416: case 2420: case 2424: case 2428: case 2432: case 2436: case 2440: case 2444: case 2448: case 2452: case 2456: case 2460: case 2464: case 2468: case 2472: case 2476: case 2480: case 2484: case 2488: case 2780: case 2784: case 2788: case 2792: case 2796: case 2800: case 2804: case 2808: case 2812: case 2816: case 2820: case 2824: case 2828: case 2832: case 2836: case 2840: case 2844: case 2848: case 2852: case 2856: case 2860: case 2864: case 2868: case 2872: case 2876: case 2880: case 2884: case 2888: case 2892: case 2896: case 2900: case 2904: case 2908: case 2912: case 2916: case 2920: case 3212: case 3216: case 3220: case 3224: case 3228: case 3232: case 3236: case 3240: case 3244: case 3248: case 3252: case 3256: case 3260: case 3264: case 3268: case 3272: case 3276: case 3280: case 3284: case 3288: case 3292: case 3296: case 3300: case 3304: case 3308: case 3312: case 3316: case 3320: case 3324: case 3328: case 3332: case 3336: case 3340: case 3344: case 3348: case 3352: case 2349: case 2353: case 2357: case 2361: case 2365: case 2369: case 2373: case 2377: case 2381: case 2385: case 2389: case 2393: case 2397: case 2401: case 2405: case 2409: case 2413: case 2417: case 2421: case 2425: case 2429: case 2433: case 2437: case 2441: case 2445: case 2449: case 2453: case 2457: case 2461: case 2465: case 2469: case 2473: case 2477: case 2481: case 2485: case 2489: case 2781: case 2785: case 2789: case 2793: case 2797: case 2801: case 2805: case 2809: case 2813: case 2817: case 2821: case 2825: case 2829: case 2833: case 2837: case 2841: case 2845: case 2849: case 2853: case 2857: case 2861: case 2865: case 2869: case 2873: case 2877: case 2881: case 2885: case 2889: case 2893: case 2897: case 2901: case 2905: case 2909: case 2913: case 2917: case 2921: return North::None; + case 3069: case 3073: case 3077: case 3081: case 3085: case 3089: case 3093: case 3097: case 3101: case 3105: case 3109: case 3113: case 3117: case 3121: case 3125: case 3129: case 3133: case 3137: case 3141: case 3145: case 3149: case 3153: case 3157: case 3161: case 3165: case 3169: case 3173: case 3177: case 3181: case 3185: case 3189: case 3193: case 3197: case 3201: case 3205: case 3209: case 2202: case 2206: case 2210: case 2214: case 2218: case 2222: case 2226: case 2230: case 2234: case 2238: case 2242: case 2246: case 2250: case 2254: case 2258: case 2262: case 2266: case 2270: case 2274: case 2278: case 2282: case 2286: case 2290: case 2294: case 2298: case 2302: case 2306: case 2310: case 2314: case 2318: case 2322: case 2326: case 2330: case 2334: case 2338: case 2342: case 2634: case 2638: case 2642: case 2646: case 2650: case 2654: case 2658: case 2662: case 2666: case 2670: case 2674: case 2678: case 2682: case 2686: case 2690: case 2694: case 2698: case 2702: case 2706: case 2710: case 2714: case 2718: case 2722: case 2726: case 2730: case 2734: case 2738: case 2742: case 2746: case 2750: case 2754: case 2758: case 2762: case 2766: case 2770: case 2774: case 3066: case 3070: case 3074: case 3078: case 3082: case 3086: case 3090: case 3094: case 3098: case 3102: case 3106: case 3110: case 3114: case 3118: case 3122: case 3126: case 3130: case 3134: case 3138: case 3142: case 3146: case 3150: case 3154: case 3158: case 3162: case 3166: case 3170: case 3174: case 3178: case 3182: case 3186: case 3190: case 3194: case 3198: case 3202: case 3206: case 2203: case 2207: case 2211: case 2215: case 2219: case 2223: case 2227: case 2231: case 2235: case 2239: case 2243: case 2247: case 2251: case 2255: case 2259: case 2263: case 2267: case 2271: case 2275: case 2279: case 2283: case 2287: case 2291: case 2295: case 2299: case 2303: case 2307: case 2311: case 2315: case 2319: case 2323: case 2327: case 2331: case 2335: case 2339: case 2343: case 2635: case 2639: case 2643: case 2647: case 2651: case 2655: case 2659: case 2663: case 2667: case 2671: case 2675: case 2679: case 2683: case 2687: case 2691: case 2695: case 2699: case 2703: case 2707: case 2711: case 2715: case 2719: case 2723: case 2727: case 2731: case 2735: case 2739: case 2743: case 2747: case 2751: case 2755: case 2759: case 2763: case 2767: case 2771: case 2775: case 3067: case 3071: case 3075: case 3079: case 3083: case 3087: case 3091: case 3095: case 3099: case 3103: case 3107: case 3111: case 3115: case 3119: case 3123: case 3127: case 3131: case 3135: case 3139: case 3143: case 3147: case 3151: case 3155: case 3159: case 3163: case 3167: case 3171: case 3175: case 3179: case 3183: case 3187: case 3191: case 3195: case 3199: case 3203: case 3207: case 2204: case 2208: case 2212: case 2216: case 2220: case 2224: case 2228: case 2232: case 2236: case 2240: case 2244: case 2248: case 2252: case 2256: case 2260: case 2264: case 2268: case 2272: case 2276: case 2280: case 2284: case 2288: case 2292: case 2296: case 2300: case 2304: case 2308: case 2312: case 2316: case 2320: case 2324: case 2328: case 2332: case 2336: case 2340: case 2344: case 2636: case 2640: case 2644: case 2648: case 2652: case 2656: case 2660: case 2664: case 2668: case 2672: case 2676: case 2680: case 2684: case 2688: case 2692: case 2696: case 2700: case 2704: case 2708: case 2712: case 2716: case 2720: case 2724: case 2728: case 2732: case 2736: case 2740: case 2744: case 2748: case 2752: case 2756: case 2760: case 2764: case 2768: case 2772: case 2776: case 3068: case 3072: case 3076: case 3080: case 3084: case 3088: case 3092: case 3096: case 3100: case 3104: case 3108: case 3112: case 3116: case 3120: case 3124: case 3128: case 3132: case 3136: case 3140: case 3144: case 3148: case 3152: case 3156: case 3160: case 3164: case 3168: case 3172: case 3176: case 3180: case 3184: case 3188: case 3192: case 3196: case 3200: case 3204: case 3208: case 2205: case 2209: case 2213: case 2217: case 2221: case 2225: case 2229: case 2233: case 2237: case 2241: case 2245: case 2249: case 2253: case 2257: case 2261: case 2265: case 2269: case 2273: case 2277: case 2281: case 2285: case 2289: case 2293: case 2297: case 2301: case 2305: case 2309: case 2313: case 2317: case 2321: case 2325: case 2329: case 2333: case 2337: case 2341: case 2345: case 2637: case 2641: case 2645: case 2649: case 2653: case 2657: case 2661: case 2665: case 2669: case 2673: case 2677: case 2681: case 2685: case 2689: case 2693: case 2697: case 2701: case 2705: case 2709: case 2713: case 2717: case 2721: case 2725: case 2729: case 2733: case 2737: case 2741: case 2745: case 2749: case 2753: case 2757: case 2761: case 2765: case 2769: case 2773: case 2777: return North::Side; + default: return North::Up; + } + } + unsigned char Power(short ID) + { + switch (ID) + { + case 3069: case 3073: case 3213: case 3217: case 2058: case 2062: case 2066: case 2202: case 2206: case 2210: case 2346: case 2350: case 2354: case 2490: case 2494: case 2498: case 2634: case 2638: case 2642: case 2778: case 2782: case 2786: case 2922: case 2926: case 2930: case 3066: case 3070: case 3074: case 3210: case 3214: case 3218: case 2059: case 2063: case 2203: case 2207: case 2347: case 2351: case 2491: case 2495: case 2635: case 2639: case 2779: case 2783: case 2923: case 2927: case 3067: case 3071: case 3211: case 3215: case 2060: case 2064: case 2204: case 2208: case 2348: case 2352: case 2492: case 2496: case 2636: case 2640: case 2780: case 2784: case 2924: case 2928: case 3068: case 3072: case 3212: case 3216: case 2061: case 2065: case 2205: case 2209: case 2349: case 2353: case 2493: case 2497: case 2637: case 2641: case 2781: case 2785: case 2925: case 2929: return 0; + case 3077: case 3081: case 3221: case 3225: case 2070: case 2074: case 2214: case 2218: case 2358: case 2362: case 2502: case 2506: case 2646: case 2650: case 2790: case 2794: case 2934: case 2938: case 3078: case 3082: case 3222: case 3226: case 2067: case 2071: case 2075: case 2211: case 2215: case 2219: case 2355: case 2359: case 2363: case 2499: case 2503: case 2507: case 2643: case 2647: case 2651: case 2787: case 2791: case 2795: case 2931: case 2935: case 2939: case 3075: case 3079: case 3083: case 3219: case 3223: case 3227: case 2068: case 2072: case 2212: case 2216: case 2356: case 2360: case 2500: case 2504: case 2644: case 2648: case 2788: case 2792: case 2932: case 2936: case 3076: case 3080: case 3220: case 3224: case 2069: case 2073: case 2213: case 2217: case 2357: case 2361: case 2501: case 2505: case 2645: case 2649: case 2789: case 2793: case 2933: case 2937: return 1; + case 3157: case 3161: case 3301: case 3305: case 2150: case 2154: case 2294: case 2298: case 2438: case 2442: case 2582: case 2586: case 2726: case 2730: case 2870: case 2874: case 3014: case 3018: case 3158: case 3162: case 3302: case 3306: case 2151: case 2155: case 2295: case 2299: case 2439: case 2443: case 2583: case 2587: case 2727: case 2731: case 2871: case 2875: case 3015: case 3019: case 3159: case 3163: case 3303: case 3307: case 2148: case 2152: case 2156: case 2292: case 2296: case 2300: case 2436: case 2440: case 2444: case 2580: case 2584: case 2588: case 2724: case 2728: case 2732: case 2868: case 2872: case 2876: case 3012: case 3016: case 3020: case 3156: case 3160: case 3164: case 3300: case 3304: case 3308: case 2149: case 2153: case 2293: case 2297: case 2437: case 2441: case 2581: case 2585: case 2725: case 2729: case 2869: case 2873: case 3013: case 3017: return 10; + case 3165: case 3169: case 3173: case 3309: case 3313: case 3317: case 2158: case 2162: case 2302: case 2306: case 2446: case 2450: case 2590: case 2594: case 2734: case 2738: case 2878: case 2882: case 3022: case 3026: case 3166: case 3170: case 3310: case 3314: case 2159: case 2163: case 2303: case 2307: case 2447: case 2451: case 2591: case 2595: case 2735: case 2739: case 2879: case 2883: case 3023: case 3027: case 3167: case 3171: case 3311: case 3315: case 2160: case 2164: case 2304: case 2308: case 2448: case 2452: case 2592: case 2596: case 2736: case 2740: case 2880: case 2884: case 3024: case 3028: case 3168: case 3172: case 3312: case 3316: case 2157: case 2161: case 2165: case 2301: case 2305: case 2309: case 2445: case 2449: case 2453: case 2589: case 2593: case 2597: case 2733: case 2737: case 2741: case 2877: case 2881: case 2885: case 3021: case 3025: case 3029: return 11; + case 3177: case 3181: case 3321: case 3325: case 2166: case 2170: case 2174: case 2310: case 2314: case 2318: case 2454: case 2458: case 2462: case 2598: case 2602: case 2606: case 2742: case 2746: case 2750: case 2886: case 2890: case 2894: case 3030: case 3034: case 3038: case 3174: case 3178: case 3182: case 3318: case 3322: case 3326: case 2167: case 2171: case 2311: case 2315: case 2455: case 2459: case 2599: case 2603: case 2743: case 2747: case 2887: case 2891: case 3031: case 3035: case 3175: case 3179: case 3319: case 3323: case 2168: case 2172: case 2312: case 2316: case 2456: case 2460: case 2600: case 2604: case 2744: case 2748: case 2888: case 2892: case 3032: case 3036: case 3176: case 3180: case 3320: case 3324: case 2169: case 2173: case 2313: case 2317: case 2457: case 2461: case 2601: case 2605: case 2745: case 2749: case 2889: case 2893: case 3033: case 3037: return 12; + case 3185: case 3189: case 3329: case 3333: case 2178: case 2182: case 2322: case 2326: case 2466: case 2470: case 2610: case 2614: case 2754: case 2758: case 2898: case 2902: case 3042: case 3046: case 3186: case 3190: case 3330: case 3334: case 2175: case 2179: case 2183: case 2319: case 2323: case 2327: case 2463: case 2467: case 2471: case 2607: case 2611: case 2615: case 2751: case 2755: case 2759: case 2895: case 2899: case 2903: case 3039: case 3043: case 3047: case 3183: case 3187: case 3191: case 3327: case 3331: case 3335: case 2176: case 2180: case 2320: case 2324: case 2464: case 2468: case 2608: case 2612: case 2752: case 2756: case 2896: case 2900: case 3040: case 3044: case 3184: case 3188: case 3328: case 3332: case 2177: case 2181: case 2321: case 2325: case 2465: case 2469: case 2609: case 2613: case 2753: case 2757: case 2897: case 2901: case 3041: case 3045: return 13; + case 3193: case 3197: case 3337: case 3341: case 2186: case 2190: case 2330: case 2334: case 2474: case 2478: case 2618: case 2622: case 2762: case 2766: case 2906: case 2910: case 3050: case 3054: case 3194: case 3198: case 3338: case 3342: case 2187: case 2191: case 2331: case 2335: case 2475: case 2479: case 2619: case 2623: case 2763: case 2767: case 2907: case 2911: case 3051: case 3055: case 3195: case 3199: case 3339: case 3343: case 2184: case 2188: case 2192: case 2328: case 2332: case 2336: case 2472: case 2476: case 2480: case 2616: case 2620: case 2624: case 2760: case 2764: case 2768: case 2904: case 2908: case 2912: case 3048: case 3052: case 3056: case 3192: case 3196: case 3200: case 3336: case 3340: case 3344: case 2185: case 2189: case 2329: case 2333: case 2473: case 2477: case 2617: case 2621: case 2761: case 2765: case 2905: case 2909: case 3049: case 3053: return 14; + case 3061: case 3065: case 3201: case 3205: case 3209: case 3345: case 3349: case 3353: case 2194: case 2198: case 2338: case 2342: case 2482: case 2486: case 2626: case 2630: case 2770: case 2774: case 2914: case 2918: case 3058: case 3062: case 3202: case 3206: case 3346: case 3350: case 2195: case 2199: case 2339: case 2343: case 2483: case 2487: case 2627: case 2631: case 2771: case 2775: case 2915: case 2919: case 3059: case 3063: case 3203: case 3207: case 3347: case 3351: case 2196: case 2200: case 2340: case 2344: case 2484: case 2488: case 2628: case 2632: case 2772: case 2776: case 2916: case 2920: case 3060: case 3064: case 3204: case 3208: case 3348: case 3352: case 2193: case 2197: case 2201: case 2337: case 2341: case 2345: case 2481: case 2485: case 2489: case 2625: case 2629: case 2633: case 2769: case 2773: case 2777: case 2913: case 2917: case 2921: case 3057: return 15; + case 3085: case 3089: case 3229: case 3233: case 2078: case 2082: case 2222: case 2226: case 2366: case 2370: case 2510: case 2514: case 2654: case 2658: case 2798: case 2802: case 2942: case 2946: case 3086: case 3090: case 3230: case 3234: case 2079: case 2083: case 2223: case 2227: case 2367: case 2371: case 2511: case 2515: case 2655: case 2659: case 2799: case 2803: case 2943: case 2947: case 3087: case 3091: case 3231: case 3235: case 2076: case 2080: case 2084: case 2220: case 2224: case 2228: case 2364: case 2368: case 2372: case 2508: case 2512: case 2516: case 2652: case 2656: case 2660: case 2796: case 2800: case 2804: case 2940: case 2944: case 2948: case 3084: case 3088: case 3092: case 3228: case 3232: case 3236: case 2077: case 2081: case 2221: case 2225: case 2365: case 2369: case 2509: case 2513: case 2653: case 2657: case 2797: case 2801: case 2941: case 2945: return 2; + case 3093: case 3097: case 3101: case 3237: case 3241: case 3245: case 2086: case 2090: case 2230: case 2234: case 2374: case 2378: case 2518: case 2522: case 2662: case 2666: case 2806: case 2810: case 2950: case 2954: case 3094: case 3098: case 3238: case 3242: case 2087: case 2091: case 2231: case 2235: case 2375: case 2379: case 2519: case 2523: case 2663: case 2667: case 2807: case 2811: case 2951: case 2955: case 3095: case 3099: case 3239: case 3243: case 2088: case 2092: case 2232: case 2236: case 2376: case 2380: case 2520: case 2524: case 2664: case 2668: case 2808: case 2812: case 2952: case 2956: case 3096: case 3100: case 3240: case 3244: case 2085: case 2089: case 2093: case 2229: case 2233: case 2237: case 2373: case 2377: case 2381: case 2517: case 2521: case 2525: case 2661: case 2665: case 2669: case 2805: case 2809: case 2813: case 2949: case 2953: case 2957: return 3; + case 3105: case 3109: case 3249: case 3253: case 2094: case 2098: case 2102: case 2238: case 2242: case 2246: case 2382: case 2386: case 2390: case 2526: case 2530: case 2534: case 2670: case 2674: case 2678: case 2814: case 2818: case 2822: case 2958: case 2962: case 2966: case 3102: case 3106: case 3110: case 3246: case 3250: case 3254: case 2095: case 2099: case 2239: case 2243: case 2383: case 2387: case 2527: case 2531: case 2671: case 2675: case 2815: case 2819: case 2959: case 2963: case 3103: case 3107: case 3247: case 3251: case 2096: case 2100: case 2240: case 2244: case 2384: case 2388: case 2528: case 2532: case 2672: case 2676: case 2816: case 2820: case 2960: case 2964: case 3104: case 3108: case 3248: case 3252: case 2097: case 2101: case 2241: case 2245: case 2385: case 2389: case 2529: case 2533: case 2673: case 2677: case 2817: case 2821: case 2961: case 2965: return 4; + case 3113: case 3117: case 3257: case 3261: case 2106: case 2110: case 2250: case 2254: case 2394: case 2398: case 2538: case 2542: case 2682: case 2686: case 2826: case 2830: case 2970: case 2974: case 3114: case 3118: case 3258: case 3262: case 2103: case 2107: case 2111: case 2247: case 2251: case 2255: case 2391: case 2395: case 2399: case 2535: case 2539: case 2543: case 2679: case 2683: case 2687: case 2823: case 2827: case 2831: case 2967: case 2971: case 2975: case 3111: case 3115: case 3119: case 3255: case 3259: case 3263: case 2104: case 2108: case 2248: case 2252: case 2392: case 2396: case 2536: case 2540: case 2680: case 2684: case 2824: case 2828: case 2968: case 2972: case 3112: case 3116: case 3256: case 3260: case 2105: case 2109: case 2249: case 2253: case 2393: case 2397: case 2537: case 2541: case 2681: case 2685: case 2825: case 2829: case 2969: case 2973: return 5; + case 3121: case 3125: case 3265: case 3269: case 2114: case 2118: case 2258: case 2262: case 2402: case 2406: case 2546: case 2550: case 2690: case 2694: case 2834: case 2838: case 2978: case 2982: case 3122: case 3126: case 3266: case 3270: case 2115: case 2119: case 2259: case 2263: case 2403: case 2407: case 2547: case 2551: case 2691: case 2695: case 2835: case 2839: case 2979: case 2983: case 3123: case 3127: case 3267: case 3271: case 2112: case 2116: case 2120: case 2256: case 2260: case 2264: case 2400: case 2404: case 2408: case 2544: case 2548: case 2552: case 2688: case 2692: case 2696: case 2832: case 2836: case 2840: case 2976: case 2980: case 2984: case 3120: case 3124: case 3128: case 3264: case 3268: case 3272: case 2113: case 2117: case 2257: case 2261: case 2401: case 2405: case 2545: case 2549: case 2689: case 2693: case 2833: case 2837: case 2977: case 2981: return 6; + case 3129: case 3133: case 3137: case 3273: case 3277: case 3281: case 2122: case 2126: case 2266: case 2270: case 2410: case 2414: case 2554: case 2558: case 2698: case 2702: case 2842: case 2846: case 2986: case 2990: case 3130: case 3134: case 3274: case 3278: case 2123: case 2127: case 2267: case 2271: case 2411: case 2415: case 2555: case 2559: case 2699: case 2703: case 2843: case 2847: case 2987: case 2991: case 3131: case 3135: case 3275: case 3279: case 2124: case 2128: case 2268: case 2272: case 2412: case 2416: case 2556: case 2560: case 2700: case 2704: case 2844: case 2848: case 2988: case 2992: case 3132: case 3136: case 3276: case 3280: case 2121: case 2125: case 2129: case 2265: case 2269: case 2273: case 2409: case 2413: case 2417: case 2553: case 2557: case 2561: case 2697: case 2701: case 2705: case 2841: case 2845: case 2849: case 2985: case 2989: case 2993: return 7; + case 3141: case 3145: case 3285: case 3289: case 2130: case 2134: case 2138: case 2274: case 2278: case 2282: case 2418: case 2422: case 2426: case 2562: case 2566: case 2570: case 2706: case 2710: case 2714: case 2850: case 2854: case 2858: case 2994: case 2998: case 3002: case 3138: case 3142: case 3146: case 3282: case 3286: case 3290: case 2131: case 2135: case 2275: case 2279: case 2419: case 2423: case 2563: case 2567: case 2707: case 2711: case 2851: case 2855: case 2995: case 2999: case 3139: case 3143: case 3283: case 3287: case 2132: case 2136: case 2276: case 2280: case 2420: case 2424: case 2564: case 2568: case 2708: case 2712: case 2852: case 2856: case 2996: case 3000: case 3140: case 3144: case 3284: case 3288: case 2133: case 2137: case 2277: case 2281: case 2421: case 2425: case 2565: case 2569: case 2709: case 2713: case 2853: case 2857: case 2997: case 3001: return 8; + default: return 9; + } + } + enum South South(short ID) + { + switch (ID) + { + case 3065: case 3073: case 3081: case 3101: case 3109: case 3117: case 3137: case 3145: case 3153: case 3173: case 3181: case 3189: case 3209: case 3217: case 3225: case 3245: case 3253: case 3261: case 3281: case 3289: case 3297: case 3317: case 3325: case 3333: case 3353: case 2066: case 2074: case 2082: case 2102: case 2110: case 2118: case 2138: case 2146: case 2154: case 2174: case 2182: case 2190: case 2210: case 2218: case 2226: case 2246: case 2254: case 2262: case 2282: case 2290: case 2298: case 2318: case 2326: case 2334: case 2354: case 2362: case 2370: case 2390: case 2398: case 2406: case 2426: case 2434: case 2442: case 2462: case 2470: case 2478: case 2498: case 2506: case 2514: case 2534: case 2542: case 2550: case 2570: case 2578: case 2586: case 2606: case 2614: case 2622: case 2642: case 2650: case 2658: case 2678: case 2686: case 2694: case 2714: case 2722: case 2730: case 2750: case 2758: case 2766: case 2786: case 2794: case 2802: case 2822: case 2830: case 2838: case 2858: case 2866: case 2874: case 2894: case 2902: case 2910: case 2930: case 2938: case 2946: case 2966: case 2974: case 2982: case 3002: case 3010: case 3018: case 3038: case 3046: case 3054: case 3074: case 3082: case 3090: case 3110: case 3118: case 3126: case 3146: case 3154: case 3162: case 3182: case 3190: case 3198: case 3218: case 3226: case 3234: case 3254: case 3262: case 3270: case 3290: case 3298: case 3306: case 3326: case 3334: case 3342: case 2075: case 2083: case 2091: case 2111: case 2119: case 2127: case 2147: case 2155: case 2163: case 2183: case 2191: case 2199: case 2219: case 2227: case 2235: case 2255: case 2263: case 2271: case 2291: case 2299: case 2307: case 2327: case 2335: case 2343: case 2363: case 2371: case 2379: case 2399: case 2407: case 2415: case 2435: case 2443: case 2451: case 2471: case 2479: case 2487: case 2507: case 2515: case 2523: case 2543: case 2551: case 2559: case 2579: case 2587: case 2595: case 2615: case 2623: case 2631: case 2651: case 2659: case 2667: case 2687: case 2695: case 2703: case 2723: case 2731: case 2739: case 2759: case 2767: case 2775: case 2795: case 2803: case 2811: case 2831: case 2839: case 2847: case 2867: case 2875: case 2883: case 2903: case 2911: case 2919: case 2939: case 2947: case 2955: case 2975: case 2983: case 2991: case 3011: case 3019: case 3027: case 3047: case 3055: case 3063: case 3083: case 3091: case 3099: case 3119: case 3127: case 3135: case 3155: case 3163: case 3171: case 3191: case 3199: case 3207: case 3227: case 3235: case 3243: case 3263: case 3271: case 3279: case 3299: case 3307: case 3315: case 3335: case 3343: case 3351: case 2064: case 2084: case 2092: case 2100: case 2120: case 2128: case 2136: case 2156: case 2164: case 2172: case 2192: case 2200: case 2208: case 2228: case 2236: case 2244: case 2264: case 2272: case 2280: case 2300: case 2308: case 2316: case 2336: case 2344: case 2352: case 2372: case 2380: case 2388: case 2408: case 2416: case 2424: case 2444: case 2452: case 2460: case 2480: case 2488: case 2496: case 2516: case 2524: case 2532: case 2552: case 2560: case 2568: case 2588: case 2596: case 2604: case 2624: case 2632: case 2640: case 2660: case 2668: case 2676: case 2696: case 2704: case 2712: case 2732: case 2740: case 2748: case 2768: case 2776: case 2784: case 2804: case 2812: case 2820: case 2840: case 2848: case 2856: case 2876: case 2884: case 2892: case 2912: case 2920: case 2928: case 2948: case 2956: case 2964: case 2984: case 2992: case 3000: case 3020: case 3028: case 3036: case 3056: case 3064: case 3072: case 3092: case 3100: case 3108: case 3128: case 3136: case 3144: case 3164: case 3172: case 3180: case 3200: case 3208: case 3216: case 3236: case 3244: case 3252: case 3272: case 3280: case 3288: case 3308: case 3316: case 3324: case 3344: case 3352: case 2065: case 2073: case 2093: case 2101: case 2109: case 2129: case 2137: case 2145: case 2165: case 2173: case 2181: case 2201: case 2209: case 2217: case 2237: case 2245: case 2253: case 2273: case 2281: case 2289: case 2309: case 2317: case 2325: case 2345: case 2353: case 2361: case 2381: case 2389: case 2397: case 2417: case 2425: case 2433: case 2453: case 2461: case 2469: case 2489: case 2497: case 2505: case 2525: case 2533: case 2541: case 2561: case 2569: case 2577: case 2597: case 2605: case 2613: case 2633: case 2641: case 2649: case 2669: case 2677: case 2685: case 2705: case 2713: case 2721: case 2741: case 2749: case 2757: case 2777: case 2785: case 2793: case 2813: case 2821: case 2829: case 2849: case 2857: case 2865: case 2885: case 2893: case 2901: case 2921: case 2929: case 2937: case 2957: case 2965: case 2973: case 2993: case 3001: case 3009: case 3029: case 3037: case 3045: return South::None; + case 3061: case 3069: case 3089: case 3097: case 3105: case 3125: case 3133: case 3141: case 3161: case 3169: case 3177: case 3197: case 3205: case 3213: case 3233: case 3241: case 3249: case 3269: case 3277: case 3285: case 3305: case 3313: case 3321: case 3341: case 3349: case 2062: case 2070: case 2090: case 2098: case 2106: case 2126: case 2134: case 2142: case 2162: case 2170: case 2178: case 2198: case 2206: case 2214: case 2234: case 2242: case 2250: case 2270: case 2278: case 2286: case 2306: case 2314: case 2322: case 2342: case 2350: case 2358: case 2378: case 2386: case 2394: case 2414: case 2422: case 2430: case 2450: case 2458: case 2466: case 2486: case 2494: case 2502: case 2522: case 2530: case 2538: case 2558: case 2566: case 2574: case 2594: case 2602: case 2610: case 2630: case 2638: case 2646: case 2666: case 2674: case 2682: case 2702: case 2710: case 2718: case 2738: case 2746: case 2754: case 2774: case 2782: case 2790: case 2810: case 2818: case 2826: case 2846: case 2854: case 2862: case 2882: case 2890: case 2898: case 2918: case 2926: case 2934: case 2954: case 2962: case 2970: case 2990: case 2998: case 3006: case 3026: case 3034: case 3042: case 3062: case 3070: case 3078: case 3098: case 3106: case 3114: case 3134: case 3142: case 3150: case 3170: case 3178: case 3186: case 3206: case 3214: case 3222: case 3242: case 3250: case 3258: case 3278: case 3286: case 3294: case 3314: case 3322: case 3330: case 3350: case 2063: case 2071: case 2079: case 2099: case 2107: case 2115: case 2135: case 2143: case 2151: case 2171: case 2179: case 2187: case 2207: case 2215: case 2223: case 2243: case 2251: case 2259: case 2279: case 2287: case 2295: case 2315: case 2323: case 2331: case 2351: case 2359: case 2367: case 2387: case 2395: case 2403: case 2423: case 2431: case 2439: case 2459: case 2467: case 2475: case 2495: case 2503: case 2511: case 2531: case 2539: case 2547: case 2567: case 2575: case 2583: case 2603: case 2611: case 2619: case 2639: case 2647: case 2655: case 2675: case 2683: case 2691: case 2711: case 2719: case 2727: case 2747: case 2755: case 2763: case 2783: case 2791: case 2799: case 2819: case 2827: case 2835: case 2855: case 2863: case 2871: case 2891: case 2899: case 2907: case 2927: case 2935: case 2943: case 2963: case 2971: case 2979: case 2999: case 3007: case 3015: case 3035: case 3043: case 3051: case 3071: case 3079: case 3087: case 3107: case 3115: case 3123: case 3143: case 3151: case 3159: case 3179: case 3187: case 3195: case 3215: case 3223: case 3231: case 3251: case 3259: case 3267: case 3287: case 3295: case 3303: case 3323: case 3331: case 3339: case 2072: case 2080: case 2088: case 2108: case 2116: case 2124: case 2144: case 2152: case 2160: case 2180: case 2188: case 2196: case 2216: case 2224: case 2232: case 2252: case 2260: case 2268: case 2288: case 2296: case 2304: case 2324: case 2332: case 2340: case 2360: case 2368: case 2376: case 2396: case 2404: case 2412: case 2432: case 2440: case 2448: case 2468: case 2476: case 2484: case 2504: case 2512: case 2520: case 2540: case 2548: case 2556: case 2576: case 2584: case 2592: case 2612: case 2620: case 2628: case 2648: case 2656: case 2664: case 2684: case 2692: case 2700: case 2720: case 2728: case 2736: case 2756: case 2764: case 2772: case 2792: case 2800: case 2808: case 2828: case 2836: case 2844: case 2864: case 2872: case 2880: case 2900: case 2908: case 2916: case 2936: case 2944: case 2952: case 2972: case 2980: case 2988: case 3008: case 3016: case 3024: case 3044: case 3052: case 3060: case 3080: case 3088: case 3096: case 3116: case 3124: case 3132: case 3152: case 3160: case 3168: case 3188: case 3196: case 3204: case 3224: case 3232: case 3240: case 3260: case 3268: case 3276: case 3296: case 3304: case 3312: case 3332: case 3340: case 3348: case 2061: case 2081: case 2089: case 2097: case 2117: case 2125: case 2133: case 2153: case 2161: case 2169: case 2189: case 2197: case 2205: case 2225: case 2233: case 2241: case 2261: case 2269: case 2277: case 2297: case 2305: case 2313: case 2333: case 2341: case 2349: case 2369: case 2377: case 2385: case 2405: case 2413: case 2421: case 2441: case 2449: case 2457: case 2477: case 2485: case 2493: case 2513: case 2521: case 2529: case 2549: case 2557: case 2565: case 2585: case 2593: case 2601: case 2621: case 2629: case 2637: case 2657: case 2665: case 2673: case 2693: case 2701: case 2709: case 2729: case 2737: case 2745: case 2765: case 2773: case 2781: case 2801: case 2809: case 2817: case 2837: case 2845: case 2853: case 2873: case 2881: case 2889: case 2909: case 2917: case 2925: case 2945: case 2953: case 2961: case 2981: case 2989: case 2997: case 3017: case 3025: case 3033: case 3053: return South::Side; + default: return South::Up; + } + } + enum West West(short ID) + { + switch (ID) + { + case 3065: case 3077: case 3089: case 3101: case 3113: case 3125: case 3137: case 3149: case 3161: case 3173: case 3185: case 3197: case 3209: case 3221: case 3233: case 3245: case 3257: case 3269: case 3281: case 3293: case 3305: case 3317: case 3329: case 3341: case 3353: case 2066: case 2078: case 2090: case 2102: case 2114: case 2126: case 2138: case 2150: case 2162: case 2174: case 2186: case 2198: case 2210: case 2222: case 2234: case 2246: case 2258: case 2270: case 2282: case 2294: case 2306: case 2318: case 2330: case 2342: case 2354: case 2366: case 2378: case 2390: case 2402: case 2414: case 2426: case 2438: case 2450: case 2462: case 2474: case 2486: case 2498: case 2510: case 2522: case 2534: case 2546: case 2558: case 2570: case 2582: case 2594: case 2606: case 2618: case 2630: case 2642: case 2654: case 2666: case 2678: case 2690: case 2702: case 2714: case 2726: case 2738: case 2750: case 2762: case 2774: case 2786: case 2798: case 2810: case 2822: case 2834: case 2846: case 2858: case 2870: case 2882: case 2894: case 2906: case 2918: case 2930: case 2942: case 2954: case 2966: case 2978: case 2990: case 3002: case 3014: case 3026: case 3038: case 3050: case 3062: case 3074: case 3086: case 3098: case 3110: case 3122: case 3134: case 3146: case 3158: case 3170: case 3182: case 3194: case 3206: case 3218: case 3230: case 3242: case 3254: case 3266: case 3278: case 3290: case 3302: case 3314: case 3326: case 3338: case 3350: case 2063: case 2075: case 2087: case 2099: case 2111: case 2123: case 2135: case 2147: case 2159: case 2171: case 2183: case 2195: case 2207: case 2219: case 2231: case 2243: case 2255: case 2267: case 2279: case 2291: case 2303: case 2315: case 2327: case 2339: case 2351: case 2363: case 2375: case 2387: case 2399: case 2411: case 2423: case 2435: case 2447: case 2459: case 2471: case 2483: case 2495: case 2507: case 2519: case 2531: case 2543: case 2555: case 2567: case 2579: case 2591: case 2603: case 2615: case 2627: case 2639: case 2651: case 2663: case 2675: case 2687: case 2699: case 2711: case 2723: case 2735: case 2747: case 2759: case 2771: case 2783: case 2795: case 2807: case 2819: case 2831: case 2843: case 2855: case 2867: case 2879: case 2891: case 2903: case 2915: case 2927: case 2939: case 2951: case 2963: case 2975: case 2987: case 2999: case 3011: case 3023: case 3035: case 3047: case 3059: case 3071: case 3083: case 3095: case 3107: case 3119: case 3131: case 3143: case 3155: case 3167: case 3179: case 3191: case 3203: case 3215: case 3227: case 3239: case 3251: case 3263: case 3275: case 3287: case 3299: case 3311: case 3323: case 3335: case 3347: case 2060: case 2072: case 2084: case 2096: case 2108: case 2120: case 2132: case 2144: case 2156: case 2168: case 2180: case 2192: case 2204: case 2216: case 2228: case 2240: case 2252: case 2264: case 2276: case 2288: case 2300: case 2312: case 2324: case 2336: case 2348: case 2360: case 2372: case 2384: case 2396: case 2408: case 2420: case 2432: case 2444: case 2456: case 2468: case 2480: case 2492: case 2504: case 2516: case 2528: case 2540: case 2552: case 2564: case 2576: case 2588: case 2600: case 2612: case 2624: case 2636: case 2648: case 2660: case 2672: case 2684: case 2696: case 2708: case 2720: case 2732: case 2744: case 2756: case 2768: case 2780: case 2792: case 2804: case 2816: case 2828: case 2840: case 2852: case 2864: case 2876: case 2888: case 2900: case 2912: case 2924: case 2936: case 2948: case 2960: case 2972: case 2984: case 2996: case 3008: case 3020: case 3032: case 3044: case 3056: case 3068: case 3080: case 3092: case 3104: case 3116: case 3128: case 3140: case 3152: case 3164: case 3176: case 3188: case 3200: case 3212: case 3224: case 3236: case 3248: case 3260: case 3272: case 3284: case 3296: case 3308: case 3320: case 3332: case 3344: case 2069: case 2081: case 2093: case 2105: case 2117: case 2129: case 2141: case 2153: case 2165: case 2177: case 2189: case 2201: case 2213: case 2225: case 2237: case 2249: case 2261: case 2273: case 2285: case 2297: case 2309: case 2321: case 2333: case 2345: case 2357: case 2369: case 2381: case 2393: case 2405: case 2417: case 2429: case 2441: case 2453: case 2465: case 2477: case 2489: case 2501: case 2513: case 2525: case 2537: case 2549: case 2561: case 2573: case 2585: case 2597: case 2609: case 2621: case 2633: case 2645: case 2657: case 2669: case 2681: case 2693: case 2705: case 2717: case 2729: case 2741: case 2753: case 2765: case 2777: case 2789: case 2801: case 2813: case 2825: case 2837: case 2849: case 2861: case 2873: case 2885: case 2897: case 2909: case 2921: case 2933: case 2945: case 2957: case 2969: case 2981: case 2993: case 3005: case 3017: case 3029: case 3041: case 3053: return West::None; + case 3061: case 3073: case 3085: case 3097: case 3109: case 3121: case 3133: case 3145: case 3157: case 3169: case 3181: case 3193: case 3205: case 3217: case 3229: case 3241: case 3253: case 3265: case 3277: case 3289: case 3301: case 3313: case 3325: case 3337: case 3349: case 2062: case 2074: case 2086: case 2098: case 2110: case 2122: case 2134: case 2146: case 2158: case 2170: case 2182: case 2194: case 2206: case 2218: case 2230: case 2242: case 2254: case 2266: case 2278: case 2290: case 2302: case 2314: case 2326: case 2338: case 2350: case 2362: case 2374: case 2386: case 2398: case 2410: case 2422: case 2434: case 2446: case 2458: case 2470: case 2482: case 2494: case 2506: case 2518: case 2530: case 2542: case 2554: case 2566: case 2578: case 2590: case 2602: case 2614: case 2626: case 2638: case 2650: case 2662: case 2674: case 2686: case 2698: case 2710: case 2722: case 2734: case 2746: case 2758: case 2770: case 2782: case 2794: case 2806: case 2818: case 2830: case 2842: case 2854: case 2866: case 2878: case 2890: case 2902: case 2914: case 2926: case 2938: case 2950: case 2962: case 2974: case 2986: case 2998: case 3010: case 3022: case 3034: case 3046: case 3058: case 3070: case 3082: case 3094: case 3106: case 3118: case 3130: case 3142: case 3154: case 3166: case 3178: case 3190: case 3202: case 3214: case 3226: case 3238: case 3250: case 3262: case 3274: case 3286: case 3298: case 3310: case 3322: case 3334: case 3346: case 2059: case 2071: case 2083: case 2095: case 2107: case 2119: case 2131: case 2143: case 2155: case 2167: case 2179: case 2191: case 2203: case 2215: case 2227: case 2239: case 2251: case 2263: case 2275: case 2287: case 2299: case 2311: case 2323: case 2335: case 2347: case 2359: case 2371: case 2383: case 2395: case 2407: case 2419: case 2431: case 2443: case 2455: case 2467: case 2479: case 2491: case 2503: case 2515: case 2527: case 2539: case 2551: case 2563: case 2575: case 2587: case 2599: case 2611: case 2623: case 2635: case 2647: case 2659: case 2671: case 2683: case 2695: case 2707: case 2719: case 2731: case 2743: case 2755: case 2767: case 2779: case 2791: case 2803: case 2815: case 2827: case 2839: case 2851: case 2863: case 2875: case 2887: case 2899: case 2911: case 2923: case 2935: case 2947: case 2959: case 2971: case 2983: case 2995: case 3007: case 3019: case 3031: case 3043: case 3055: case 3067: case 3079: case 3091: case 3103: case 3115: case 3127: case 3139: case 3151: case 3163: case 3175: case 3187: case 3199: case 3211: case 3223: case 3235: case 3247: case 3259: case 3271: case 3283: case 3295: case 3307: case 3319: case 3331: case 3343: case 2068: case 2080: case 2092: case 2104: case 2116: case 2128: case 2140: case 2152: case 2164: case 2176: case 2188: case 2200: case 2212: case 2224: case 2236: case 2248: case 2260: case 2272: case 2284: case 2296: case 2308: case 2320: case 2332: case 2344: case 2356: case 2368: case 2380: case 2392: case 2404: case 2416: case 2428: case 2440: case 2452: case 2464: case 2476: case 2488: case 2500: case 2512: case 2524: case 2536: case 2548: case 2560: case 2572: case 2584: case 2596: case 2608: case 2620: case 2632: case 2644: case 2656: case 2668: case 2680: case 2692: case 2704: case 2716: case 2728: case 2740: case 2752: case 2764: case 2776: case 2788: case 2800: case 2812: case 2824: case 2836: case 2848: case 2860: case 2872: case 2884: case 2896: case 2908: case 2920: case 2932: case 2944: case 2956: case 2968: case 2980: case 2992: case 3004: case 3016: case 3028: case 3040: case 3052: case 3064: case 3076: case 3088: case 3100: case 3112: case 3124: case 3136: case 3148: case 3160: case 3172: case 3184: case 3196: case 3208: case 3220: case 3232: case 3244: case 3256: case 3268: case 3280: case 3292: case 3304: case 3316: case 3328: case 3340: case 3352: case 2065: case 2077: case 2089: case 2101: case 2113: case 2125: case 2137: case 2149: case 2161: case 2173: case 2185: case 2197: case 2209: case 2221: case 2233: case 2245: case 2257: case 2269: case 2281: case 2293: case 2305: case 2317: case 2329: case 2341: case 2353: case 2365: case 2377: case 2389: case 2401: case 2413: case 2425: case 2437: case 2449: case 2461: case 2473: case 2485: case 2497: case 2509: case 2521: case 2533: case 2545: case 2557: case 2569: case 2581: case 2593: case 2605: case 2617: case 2629: case 2641: case 2653: case 2665: case 2677: case 2689: case 2701: case 2713: case 2725: case 2737: case 2749: case 2761: case 2773: case 2785: case 2797: case 2809: case 2821: case 2833: case 2845: case 2857: case 2869: case 2881: case 2893: case 2905: case 2917: case 2929: case 2941: case 2953: case 2965: case 2977: case 2989: case 3001: case 3013: case 3025: case 3037: case 3049: return West::Side; + default: return West::Up; + } + } + } + namespace Repeater + { + short Repeater() + { + return 4034; + } + unsigned char Delay(short ID) + { + switch (ID) + { + case 4036: case 4044: case 4037: case 4045: case 4038: case 4046: case 4031: case 4039: case 4032: case 4040: case 4033: case 4041: case 4034: case 4042: case 4035: case 4043: return 1; + case 4051: case 4059: case 4052: case 4060: case 4053: case 4061: case 4054: case 4062: case 4047: case 4055: case 4048: case 4056: case 4049: case 4057: case 4050: case 4058: return 2; + case 4067: case 4075: case 4068: case 4076: case 4069: case 4077: case 4070: case 4078: case 4063: case 4071: case 4064: case 4072: case 4065: case 4073: case 4066: case 4074: return 3; + default: return 4; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 4039: case 4055: case 4071: case 4087: case 4040: case 4056: case 4072: case 4088: case 4041: case 4057: case 4073: case 4089: case 4042: case 4058: case 4074: case 4090: return eBlockFace::BLOCK_FACE_XM; + case 4059: case 4075: case 4091: case 4044: case 4060: case 4076: case 4092: case 4045: case 4061: case 4077: case 4093: case 4046: case 4062: case 4078: case 4043: case 4094: return eBlockFace::BLOCK_FACE_XP; + case 4031: case 4047: case 4063: case 4079: case 4032: case 4048: case 4064: case 4080: case 4033: case 4049: case 4065: case 4081: case 4034: case 4050: case 4066: case 4082: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Locked(short ID) + { + switch (ID) + { + case 4037: case 4045: case 4053: case 4061: case 4069: case 4077: case 4085: case 4093: case 4038: case 4046: case 4054: case 4062: case 4070: case 4078: case 4086: case 4033: case 4041: case 4049: case 4057: case 4065: case 4073: case 4081: case 4089: case 4034: case 4042: case 4050: case 4058: case 4066: case 4074: case 4082: case 4090: case 4094: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 4036: case 4044: case 4052: case 4060: case 4068: case 4076: case 4084: case 4092: case 4038: case 4046: case 4054: case 4062: case 4070: case 4078: case 4086: case 4032: case 4040: case 4048: case 4056: case 4064: case 4072: case 4080: case 4088: case 4034: case 4042: case 4050: case 4058: case 4066: case 4074: case 4082: case 4090: case 4094: return false; + default: return true; + } + } + } + namespace RepeatingCommandBlock + { + short RepeatingCommandBlock() + { + return 9231; + } + bool Conditional(short ID) + { + switch (ID) + { + case 9231: case 9233: case 9235: case 9232: case 9234: case 9236: return false; + default: return true; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9228: case 9234: return eBlockFace::BLOCK_FACE_XM; + case 9226: case 9232: return eBlockFace::BLOCK_FACE_XP; + case 9230: case 9236: return eBlockFace::BLOCK_FACE_YM; + case 9229: case 9235: return eBlockFace::BLOCK_FACE_YP; + case 9225: case 9231: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace RespawnAnchor + { + short RespawnAnchor() + { + return 15829; + } + unsigned char Charges(short ID) + { + switch (ID) + { + case 15829: return 0; + case 15830: return 1; + case 15831: return 2; + case 15832: return 3; + default: return 4; + } + } + } + namespace RoseBush + { + short RoseBush() + { + return 7890; + } + enum Half Half(short ID) + { + switch (ID) + { + case 7890: return Half::Lower; + default: return Half::Upper; + } + } + } + namespace Sand + { + } + namespace Sandstone + { + } + namespace SandstoneSlab + { + short SandstoneSlab() + { + return 8351; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8350: case 8351: return Type::Bottom; + case 8353: case 8352: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8353: case 8351: case 8349: return false; + default: return true; + } + } + } + namespace SandstoneStairs + { + short SandstoneStairs() + { + return 5181; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 5210: case 5211: case 5212: case 5213: case 5214: case 5215: case 5216: case 5217: case 5218: case 5219: case 5220: case 5221: case 5222: case 5223: case 5224: case 5225: case 5226: case 5227: case 5228: case 5229: return eBlockFace::BLOCK_FACE_XM; + case 5230: case 5231: case 5232: case 5233: case 5234: case 5235: case 5236: case 5237: case 5238: case 5239: case 5240: case 5241: case 5242: case 5243: case 5244: case 5245: case 5246: case 5247: case 5248: case 5249: return eBlockFace::BLOCK_FACE_XP; + case 5170: case 5171: case 5172: case 5173: case 5174: case 5175: case 5176: case 5177: case 5178: case 5179: case 5180: case 5181: case 5182: case 5183: case 5184: case 5185: case 5186: case 5187: case 5188: case 5189: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 5203: case 5204: case 5205: case 5206: case 5207: case 5208: case 5209: case 5220: case 5221: case 5222: case 5223: case 5224: case 5225: case 5226: case 5227: case 5228: case 5229: case 5240: case 5241: case 5242: case 5243: case 5180: case 5244: case 5181: case 5245: case 5182: case 5246: case 5183: case 5247: case 5184: case 5248: case 5185: case 5249: case 5186: case 5187: case 5188: case 5189: case 5200: case 5201: case 5202: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 5203: case 5212: case 5213: case 5222: case 5223: case 5232: case 5233: case 5172: case 5173: case 5242: case 5243: case 5182: case 5183: case 5192: case 5193: case 5202: return Shape::InnerLeft; + case 5204: case 5205: case 5214: case 5215: case 5224: case 5225: case 5234: case 5235: case 5174: case 5175: case 5244: case 5245: case 5184: case 5185: case 5194: case 5195: return Shape::InnerRight; + case 5206: case 5207: case 5216: case 5217: case 5226: case 5227: case 5236: case 5237: case 5176: case 5177: case 5246: case 5247: case 5186: case 5187: case 5196: case 5197: return Shape::OuterLeft; + case 5208: case 5209: case 5218: case 5219: case 5228: case 5229: case 5238: case 5239: case 5178: case 5179: case 5248: case 5249: case 5188: case 5189: case 5198: case 5199: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 5203: case 5205: case 5207: case 5209: case 5211: case 5213: case 5215: case 5217: case 5219: case 5221: case 5223: case 5225: case 5227: case 5229: case 5231: case 5233: case 5171: case 5235: case 5173: case 5237: case 5175: case 5239: case 5177: case 5241: case 5179: case 5243: case 5181: case 5245: case 5183: case 5247: case 5185: case 5249: case 5187: case 5189: case 5191: case 5193: case 5195: case 5197: case 5199: case 5201: return false; + default: return true; + } + } + } + namespace SandstoneWall + { + short SandstoneWall() + { + return 13786; + } + enum East East(short ID) + { + switch (ID) + { + case 13893: case 13897: case 13901: case 13905: case 13909: case 13913: case 13917: case 13921: case 13925: case 13929: case 13933: case 13937: case 13941: case 13945: case 13949: case 13953: case 13957: case 13961: case 13965: case 13969: case 13973: case 13977: case 13981: case 13985: case 13989: case 13993: case 13997: case 13894: case 13898: case 13902: case 13906: case 13910: case 13914: case 13918: case 13922: case 13926: case 13930: case 13934: case 13938: case 13942: case 13946: case 13950: case 13954: case 13958: case 13962: case 13966: case 13970: case 13974: case 13978: case 13982: case 13986: case 13990: case 13994: case 13998: case 13891: case 13895: case 13899: case 13903: case 13907: case 13911: case 13915: case 13919: case 13923: case 13927: case 13931: case 13935: case 13939: case 13943: case 13947: case 13951: case 13955: case 13959: case 13963: case 13967: case 13971: case 13975: case 13979: case 13983: case 13987: case 13991: case 13995: case 13892: case 13896: case 13900: case 13904: case 13908: case 13912: case 13916: case 13920: case 13924: case 13928: case 13932: case 13936: case 13940: case 13944: case 13948: case 13952: case 13956: case 13960: case 13964: case 13968: case 13972: case 13976: case 13980: case 13984: case 13988: case 13992: case 13996: return East::Low; + case 13785: case 13789: case 13793: case 13797: case 13801: case 13805: case 13809: case 13813: case 13817: case 13821: case 13825: case 13829: case 13833: case 13837: case 13841: case 13845: case 13849: case 13853: case 13857: case 13861: case 13865: case 13869: case 13873: case 13877: case 13881: case 13885: case 13889: case 13786: case 13790: case 13794: case 13798: case 13802: case 13806: case 13810: case 13814: case 13818: case 13822: case 13826: case 13830: case 13834: case 13838: case 13842: case 13846: case 13850: case 13854: case 13858: case 13862: case 13866: case 13870: case 13874: case 13878: case 13882: case 13886: case 13890: case 13783: case 13787: case 13791: case 13795: case 13799: case 13803: case 13807: case 13811: case 13815: case 13819: case 13823: case 13827: case 13831: case 13835: case 13839: case 13843: case 13847: case 13851: case 13855: case 13859: case 13863: case 13867: case 13871: case 13875: case 13879: case 13883: case 13887: case 13784: case 13788: case 13792: case 13796: case 13800: case 13804: case 13808: case 13812: case 13816: case 13820: case 13824: case 13828: case 13832: case 13836: case 13840: case 13844: case 13848: case 13852: case 13856: case 13860: case 13864: case 13868: case 13872: case 13876: case 13880: case 13884: case 13888: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 13821: case 13825: case 13829: case 13833: case 13837: case 13841: case 13845: case 13849: case 13853: case 13929: case 13933: case 13937: case 13941: case 13945: case 13949: case 13953: case 13957: case 13961: case 14037: case 14041: case 14045: case 14049: case 14053: case 14057: case 14061: case 14065: case 14069: case 13822: case 13826: case 13830: case 13834: case 13838: case 13842: case 13846: case 13850: case 13854: case 13930: case 13934: case 13938: case 13942: case 13946: case 13950: case 13954: case 13958: case 13962: case 14038: case 14042: case 14046: case 14050: case 14054: case 14058: case 14062: case 14066: case 14070: case 13819: case 13823: case 13827: case 13831: case 13835: case 13839: case 13843: case 13847: case 13851: case 13927: case 13931: case 13935: case 13939: case 13943: case 13947: case 13951: case 13955: case 13959: case 14035: case 14039: case 14043: case 14047: case 14051: case 14055: case 14059: case 14063: case 14067: case 13820: case 13824: case 13828: case 13832: case 13836: case 13840: case 13844: case 13848: case 13852: case 13928: case 13932: case 13936: case 13940: case 13944: case 13948: case 13952: case 13956: case 13960: case 14036: case 14040: case 14044: case 14048: case 14052: case 14056: case 14060: case 14064: case 14068: return North::Low; + case 13785: case 13789: case 13793: case 13797: case 13801: case 13805: case 13809: case 13813: case 13817: case 13893: case 13897: case 13901: case 13905: case 13909: case 13913: case 13917: case 13921: case 13925: case 14001: case 14005: case 14009: case 14013: case 14017: case 14021: case 14025: case 14029: case 14033: case 13786: case 13790: case 13794: case 13798: case 13802: case 13806: case 13810: case 13814: case 13818: case 13894: case 13898: case 13902: case 13906: case 13910: case 13914: case 13918: case 13922: case 13926: case 14002: case 14006: case 14010: case 14014: case 14018: case 14022: case 14026: case 14030: case 14034: case 13783: case 13787: case 13791: case 13795: case 13799: case 13803: case 13807: case 13811: case 13815: case 13891: case 13895: case 13899: case 13903: case 13907: case 13911: case 13915: case 13919: case 13923: case 13999: case 14003: case 14007: case 14011: case 14015: case 14019: case 14023: case 14027: case 14031: case 13784: case 13788: case 13792: case 13796: case 13800: case 13804: case 13808: case 13812: case 13816: case 13892: case 13896: case 13900: case 13904: case 13908: case 13912: case 13916: case 13920: case 13924: case 14000: case 14004: case 14008: case 14012: case 14016: case 14020: case 14024: case 14028: case 14032: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 13797: case 13801: case 13805: case 13833: case 13837: case 13841: case 13869: case 13873: case 13877: case 13905: case 13909: case 13913: case 13941: case 13945: case 13949: case 13977: case 13981: case 13985: case 14013: case 14017: case 14021: case 14049: case 14053: case 14057: case 14085: case 14089: case 14093: case 13798: case 13802: case 13806: case 13834: case 13838: case 13842: case 13870: case 13874: case 13878: case 13906: case 13910: case 13914: case 13942: case 13946: case 13950: case 13978: case 13982: case 13986: case 14014: case 14018: case 14022: case 14050: case 14054: case 14058: case 14086: case 14090: case 14094: case 13795: case 13799: case 13803: case 13831: case 13835: case 13839: case 13867: case 13871: case 13875: case 13903: case 13907: case 13911: case 13939: case 13943: case 13947: case 13975: case 13979: case 13983: case 14011: case 14015: case 14019: case 14047: case 14051: case 14055: case 14083: case 14087: case 14091: case 13796: case 13800: case 13804: case 13832: case 13836: case 13840: case 13868: case 13872: case 13876: case 13904: case 13908: case 13912: case 13940: case 13944: case 13948: case 13976: case 13980: case 13984: case 14012: case 14016: case 14020: case 14048: case 14052: case 14056: case 14084: case 14088: case 14092: return South::Low; + case 13785: case 13789: case 13793: case 13821: case 13825: case 13829: case 13857: case 13861: case 13865: case 13893: case 13897: case 13901: case 13929: case 13933: case 13937: case 13965: case 13969: case 13973: case 14001: case 14005: case 14009: case 14037: case 14041: case 14045: case 14073: case 14077: case 14081: case 13786: case 13790: case 13794: case 13822: case 13826: case 13830: case 13858: case 13862: case 13866: case 13894: case 13898: case 13902: case 13930: case 13934: case 13938: case 13966: case 13970: case 13974: case 14002: case 14006: case 14010: case 14038: case 14042: case 14046: case 14074: case 14078: case 14082: case 13783: case 13787: case 13791: case 13819: case 13823: case 13827: case 13855: case 13859: case 13863: case 13891: case 13895: case 13899: case 13927: case 13931: case 13935: case 13963: case 13967: case 13971: case 13999: case 14003: case 14007: case 14035: case 14039: case 14043: case 14071: case 14075: case 14079: case 13784: case 13788: case 13792: case 13820: case 13824: case 13828: case 13856: case 13860: case 13864: case 13892: case 13896: case 13900: case 13928: case 13932: case 13936: case 13964: case 13968: case 13972: case 14000: case 14004: case 14008: case 14036: case 14040: case 14044: case 14072: case 14076: case 14080: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 14104: case 13789: case 13793: case 13801: case 13805: case 13813: case 13817: case 13825: case 13829: case 13837: case 13841: case 13849: case 13853: case 13861: case 13865: case 13873: case 13877: case 13885: case 13889: case 13897: case 13901: case 13909: case 13913: case 13921: case 13925: case 13933: case 13937: case 13945: case 13949: case 13957: case 13961: case 13969: case 13973: case 13981: case 13985: case 13993: case 13997: case 14005: case 14009: case 14017: case 14021: case 14029: case 14033: case 14041: case 14045: case 14053: case 14057: case 14065: case 14069: case 14077: case 14081: case 14089: case 14093: case 14101: case 14105: case 13790: case 13794: case 13802: case 13806: case 13814: case 13818: case 13826: case 13830: case 13838: case 13842: case 13850: case 13854: case 13862: case 13866: case 13874: case 13878: case 13886: case 13890: case 13898: case 13902: case 13910: case 13914: case 13922: case 13926: case 13934: case 13938: case 13946: case 13950: case 13958: case 13962: case 13970: case 13974: case 13982: case 13986: case 13994: case 13998: case 14006: case 14010: case 14018: case 14022: case 14030: case 14034: case 14042: case 14046: case 14054: case 14058: case 14066: case 14070: case 14078: case 14082: case 14090: case 14094: case 14102: case 14106: case 13791: case 13803: case 13815: case 13827: case 13839: case 13851: case 13863: case 13875: case 13887: case 13899: case 13911: case 13923: case 13935: case 13947: case 13959: case 13971: case 13983: case 13995: case 14007: case 14019: case 14031: case 14043: case 14055: case 14067: case 14079: case 14091: case 14103: case 13792: case 13804: case 13816: case 13828: case 13840: case 13852: case 13864: case 13876: case 13888: case 13900: case 13912: case 13924: case 13936: case 13948: case 13960: case 13972: case 13984: case 13996: case 14008: case 14020: case 14032: case 14044: case 14056: case 14068: case 14080: case 14092: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 14100: case 14104: case 13793: case 13805: case 13817: case 13829: case 13841: case 13853: case 13865: case 13877: case 13889: case 13901: case 13913: case 13925: case 13937: case 13949: case 13961: case 13973: case 13985: case 13997: case 14009: case 14021: case 14033: case 14045: case 14057: case 14069: case 14081: case 14093: case 14105: case 13786: case 13794: case 13798: case 13806: case 13810: case 13818: case 13822: case 13830: case 13834: case 13842: case 13846: case 13854: case 13858: case 13866: case 13870: case 13878: case 13882: case 13890: case 13894: case 13902: case 13906: case 13914: case 13918: case 13926: case 13930: case 13938: case 13942: case 13950: case 13954: case 13962: case 13966: case 13974: case 13978: case 13986: case 13990: case 13998: case 14002: case 14010: case 14014: case 14022: case 14026: case 14034: case 14038: case 14046: case 14050: case 14058: case 14062: case 14070: case 14074: case 14082: case 14086: case 14094: case 14098: case 14106: case 13787: case 13799: case 13811: case 13823: case 13835: case 13847: case 13859: case 13871: case 13883: case 13895: case 13907: case 13919: case 13931: case 13943: case 13955: case 13967: case 13979: case 13991: case 14003: case 14015: case 14027: case 14039: case 14051: case 14063: case 14075: case 14087: case 14099: case 13788: case 13792: case 13800: case 13804: case 13812: case 13816: case 13824: case 13828: case 13836: case 13840: case 13848: case 13852: case 13860: case 13864: case 13872: case 13876: case 13884: case 13888: case 13896: case 13900: case 13908: case 13912: case 13920: case 13924: case 13932: case 13936: case 13944: case 13948: case 13956: case 13960: case 13968: case 13972: case 13980: case 13984: case 13992: case 13996: case 14004: case 14008: case 14016: case 14020: case 14028: case 14032: case 14040: case 14044: case 14052: case 14056: case 14064: case 14068: case 14076: case 14080: case 14088: case 14092: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 13793: case 13805: case 13817: case 13829: case 13841: case 13853: case 13865: case 13877: case 13889: case 13901: case 13913: case 13925: case 13937: case 13949: case 13961: case 13973: case 13985: case 13997: case 14009: case 14021: case 14033: case 14045: case 14057: case 14069: case 14081: case 14093: case 14105: case 13790: case 13802: case 13814: case 13826: case 13838: case 13850: case 13862: case 13874: case 13886: case 13898: case 13910: case 13922: case 13934: case 13946: case 13958: case 13970: case 13982: case 13994: case 14006: case 14018: case 14030: case 14042: case 14054: case 14066: case 14078: case 14090: case 14102: case 13787: case 13799: case 13811: case 13823: case 13835: case 13847: case 13859: case 13871: case 13883: case 13895: case 13907: case 13919: case 13931: case 13943: case 13955: case 13967: case 13979: case 13991: case 14003: case 14015: case 14027: case 14039: case 14051: case 14063: case 14075: case 14087: case 14099: case 13784: case 13796: case 13808: case 13820: case 13832: case 13844: case 13856: case 13868: case 13880: case 13892: case 13904: case 13916: case 13928: case 13940: case 13952: case 13964: case 13976: case 13988: case 14000: case 14012: case 14024: case 14036: case 14048: case 14060: case 14072: case 14084: case 14096: return West::Low; + case 14104: case 13789: case 13801: case 13813: case 13825: case 13837: case 13849: case 13861: case 13873: case 13885: case 13897: case 13909: case 13921: case 13933: case 13945: case 13957: case 13969: case 13981: case 13993: case 14005: case 14017: case 14029: case 14041: case 14053: case 14065: case 14077: case 14089: case 14101: case 13786: case 13798: case 13810: case 13822: case 13834: case 13846: case 13858: case 13870: case 13882: case 13894: case 13906: case 13918: case 13930: case 13942: case 13954: case 13966: case 13978: case 13990: case 14002: case 14014: case 14026: case 14038: case 14050: case 14062: case 14074: case 14086: case 14098: case 13783: case 13795: case 13807: case 13819: case 13831: case 13843: case 13855: case 13867: case 13879: case 13891: case 13903: case 13915: case 13927: case 13939: case 13951: case 13963: case 13975: case 13987: case 13999: case 14011: case 14023: case 14035: case 14047: case 14059: case 14071: case 14083: case 14095: case 13792: case 13804: case 13816: case 13828: case 13840: case 13852: case 13864: case 13876: case 13888: case 13900: case 13912: case 13924: case 13936: case 13948: case 13960: case 13972: case 13984: case 13996: case 14008: case 14020: case 14032: case 14044: case 14056: case 14068: case 14080: case 14092: return West::None; + default: return West::Tall; + } + } + } + namespace Scaffolding + { + short Scaffolding() + { + return 14786; + } + bool Bottom(short ID) + { + switch (ID) + { + case 14784: case 14777: case 14785: case 14778: case 14771: case 14779: case 14772: case 14780: case 14773: case 14781: case 14774: case 14782: case 14775: case 14783: case 14776: case 14786: return false; + default: return true; + } + } + unsigned char Distance(short ID) + { + switch (ID) + { + case 14755: case 14771: case 14756: case 14772: return 0; + case 14757: case 14773: case 14758: case 14774: return 1; + case 14759: case 14775: case 14760: case 14776: return 2; + case 14761: case 14777: case 14762: case 14778: return 3; + case 14763: case 14779: case 14764: case 14780: return 4; + case 14765: case 14781: case 14766: case 14782: return 5; + case 14784: case 14767: case 14783: case 14768: return 6; + default: return 7; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 14784: case 14762: case 14770: case 14778: case 14756: case 14764: case 14772: case 14780: case 14758: case 14766: case 14774: case 14782: case 14760: case 14768: case 14776: case 14786: return false; + default: return true; + } + } + } + namespace SeaLantern + { + } + namespace SeaPickle + { + short SeaPickle() + { + return 9640; + } + unsigned char Pickles(short ID) + { + switch (ID) + { + case 9641: case 9640: return 1; + case 9642: case 9643: return 2; + case 9645: case 9644: return 3; + default: return 4; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9641: case 9645: case 9643: case 9647: return false; + default: return true; + } + } + } + namespace Seagrass + { + } + namespace Shroomlight + { + } + namespace ShulkerBox + { + short ShulkerBox() + { + return 9276; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9275: return eBlockFace::BLOCK_FACE_XM; + case 9273: return eBlockFace::BLOCK_FACE_XP; + case 9277: return eBlockFace::BLOCK_FACE_YM; + case 9276: return eBlockFace::BLOCK_FACE_YP; + case 9272: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace SkeletonSkull + { + short SkeletonSkull() + { + return 6490; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 6490: return 0; + case 6491: return 1; + case 6500: return 10; + case 6501: return 11; + case 6502: return 12; + case 6503: return 13; + case 6504: return 14; + case 6505: return 15; + case 6492: return 2; + case 6493: return 3; + case 6494: return 4; + case 6495: return 5; + case 6496: return 6; + case 6497: return 7; + case 6498: return 8; + default: return 9; + } + } + } + namespace SkeletonWallSkull + { + short SkeletonWallSkull() + { + return 6506; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6508: return eBlockFace::BLOCK_FACE_XM; + case 6509: return eBlockFace::BLOCK_FACE_XP; + case 6506: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace SlimeBlock + { + } + namespace SmithingTable + { + } + namespace Smoker + { + short Smoker() + { + return 14804; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 14807: case 14808: return eBlockFace::BLOCK_FACE_XM; + case 14809: case 14810: return eBlockFace::BLOCK_FACE_XP; + case 14804: case 14803: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Lit(short ID) + { + switch (ID) + { + case 14804: case 14808: case 14806: case 14810: return false; + default: return true; + } + } + } + namespace SmoothQuartz + { + } + namespace SmoothQuartzSlab + { + short SmoothQuartzSlab() + { + return 10834; + } + enum Type Type(short ID) + { + switch (ID) + { + case 10833: case 10834: return Type::Bottom; + case 10835: case 10836: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10832: case 10836: case 10834: return false; + default: return true; + } + } + } + namespace SmoothQuartzStairs + { + short SmoothQuartzStairs() + { + return 10320; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 10349: case 10350: case 10351: case 10352: case 10353: case 10354: case 10355: case 10356: case 10357: case 10358: case 10359: case 10360: case 10361: case 10362: case 10363: case 10364: case 10365: case 10366: case 10367: case 10368: return eBlockFace::BLOCK_FACE_XM; + case 10369: case 10370: case 10371: case 10372: case 10373: case 10374: case 10375: case 10376: case 10377: case 10378: case 10379: case 10380: case 10381: case 10382: case 10383: case 10384: case 10385: case 10386: case 10387: case 10388: return eBlockFace::BLOCK_FACE_XP; + case 10309: case 10310: case 10311: case 10312: case 10313: case 10314: case 10315: case 10316: case 10317: case 10318: case 10319: case 10320: case 10321: case 10322: case 10323: case 10324: case 10325: case 10326: case 10327: case 10328: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 10341: case 10342: case 10343: case 10344: case 10345: case 10346: case 10347: case 10348: case 10359: case 10360: case 10361: case 10362: case 10363: case 10364: case 10365: case 10366: case 10367: case 10368: case 10379: case 10380: case 10381: case 10382: case 10383: case 10384: case 10385: case 10386: case 10387: case 10388: case 10319: case 10320: case 10321: case 10322: case 10323: case 10324: case 10325: case 10326: case 10327: case 10328: case 10339: case 10340: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 10341: case 10342: case 10351: case 10352: case 10361: case 10362: case 10371: case 10372: case 10381: case 10382: case 10311: case 10312: case 10321: case 10322: case 10331: case 10332: return Shape::InnerLeft; + case 10343: case 10344: case 10353: case 10354: case 10363: case 10364: case 10373: case 10374: case 10383: case 10384: case 10313: case 10314: case 10323: case 10324: case 10333: case 10334: return Shape::InnerRight; + case 10345: case 10346: case 10355: case 10356: case 10365: case 10366: case 10375: case 10376: case 10385: case 10386: case 10315: case 10316: case 10325: case 10326: case 10335: case 10336: return Shape::OuterLeft; + case 10347: case 10348: case 10357: case 10358: case 10367: case 10368: case 10377: case 10378: case 10387: case 10388: case 10317: case 10318: case 10327: case 10328: case 10337: case 10338: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10342: case 10344: case 10346: case 10348: case 10350: case 10352: case 10354: case 10356: case 10358: case 10360: case 10362: case 10364: case 10366: case 10368: case 10370: case 10372: case 10374: case 10376: case 10378: case 10380: case 10382: case 10384: case 10386: case 10388: case 10310: case 10312: case 10314: case 10316: case 10318: case 10320: case 10322: case 10324: case 10326: case 10328: case 10330: case 10332: case 10334: case 10336: case 10338: case 10340: return false; + default: return true; + } + } + } + namespace SmoothRedSandstone + { + } + namespace SmoothRedSandstoneSlab + { + short SmoothRedSandstoneSlab() + { + return 10798; + } + enum Type Type(short ID) + { + switch (ID) + { + case 10797: case 10798: return Type::Bottom; + case 10800: case 10799: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10796: case 10800: case 10798: return false; + default: return true; + } + } + } + namespace SmoothRedSandstoneStairs + { + short SmoothRedSandstoneStairs() + { + return 9760; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9789: case 9790: case 9791: case 9792: case 9793: case 9794: case 9795: case 9796: case 9797: case 9798: case 9799: case 9800: case 9801: case 9802: case 9803: case 9804: case 9805: case 9806: case 9807: case 9808: return eBlockFace::BLOCK_FACE_XM; + case 9809: case 9810: case 9811: case 9812: case 9813: case 9814: case 9815: case 9816: case 9817: case 9818: case 9819: case 9820: case 9821: case 9822: case 9823: case 9824: case 9825: case 9826: case 9827: case 9828: return eBlockFace::BLOCK_FACE_XP; + case 9749: case 9750: case 9751: case 9752: case 9753: case 9754: case 9755: case 9756: case 9757: case 9758: case 9759: case 9760: case 9761: case 9762: case 9763: case 9764: case 9765: case 9766: case 9767: case 9768: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 9759: case 9760: case 9761: case 9762: case 9763: case 9764: case 9765: case 9766: case 9767: case 9768: case 9779: case 9780: case 9781: case 9782: case 9783: case 9784: case 9785: case 9786: case 9787: case 9788: case 9799: case 9800: case 9801: case 9802: case 9803: case 9804: case 9805: case 9806: case 9807: case 9808: case 9819: case 9820: case 9821: case 9822: case 9823: case 9824: case 9825: case 9826: case 9827: case 9828: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 9751: case 9752: case 9761: case 9762: case 9771: case 9772: case 9781: case 9782: case 9791: case 9792: case 9801: case 9802: case 9811: case 9812: case 9821: case 9822: return Shape::InnerLeft; + case 9753: case 9754: case 9763: case 9764: case 9773: case 9774: case 9783: case 9784: case 9793: case 9794: case 9803: case 9804: case 9813: case 9814: case 9823: case 9824: return Shape::InnerRight; + case 9755: case 9756: case 9765: case 9766: case 9775: case 9776: case 9785: case 9786: case 9795: case 9796: case 9805: case 9806: case 9815: case 9816: case 9825: case 9826: return Shape::OuterLeft; + case 9757: case 9758: case 9767: case 9768: case 9777: case 9778: case 9787: case 9788: case 9797: case 9798: case 9807: case 9808: case 9817: case 9818: case 9827: case 9828: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9750: case 9752: case 9754: case 9756: case 9758: case 9760: case 9762: case 9764: case 9766: case 9768: case 9770: case 9772: case 9774: case 9776: case 9778: case 9780: case 9782: case 9784: case 9786: case 9788: case 9790: case 9792: case 9794: case 9796: case 9798: case 9800: case 9802: case 9804: case 9806: case 9808: case 9810: case 9812: case 9814: case 9816: case 9818: case 9820: case 9822: case 9824: case 9826: case 9828: return false; + default: return true; + } + } + } + namespace SmoothSandstone + { + } + namespace SmoothSandstoneSlab + { + short SmoothSandstoneSlab() + { + return 10828; + } + enum Type Type(short ID) + { + switch (ID) + { + case 10828: case 10827: return Type::Bottom; + case 10829: case 10830: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10828: case 10826: case 10830: return false; + default: return true; + } + } + } + namespace SmoothSandstoneStairs + { + short SmoothSandstoneStairs() + { + return 10240; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 10269: case 10270: case 10271: case 10272: case 10273: case 10274: case 10275: case 10276: case 10277: case 10278: case 10279: case 10280: case 10281: case 10282: case 10283: case 10284: case 10285: case 10286: case 10287: case 10288: return eBlockFace::BLOCK_FACE_XM; + case 10289: case 10290: case 10291: case 10292: case 10293: case 10294: case 10295: case 10296: case 10297: case 10298: case 10299: case 10300: case 10301: case 10302: case 10303: case 10304: case 10305: case 10306: case 10307: case 10308: return eBlockFace::BLOCK_FACE_XP; + case 10229: case 10230: case 10231: case 10232: case 10233: case 10234: case 10235: case 10236: case 10237: case 10238: case 10239: case 10240: case 10241: case 10242: case 10243: case 10244: case 10245: case 10246: case 10247: case 10248: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 10239: case 10240: case 10241: case 10242: case 10243: case 10244: case 10245: case 10246: case 10247: case 10248: case 10259: case 10260: case 10261: case 10262: case 10263: case 10264: case 10265: case 10266: case 10267: case 10268: case 10279: case 10280: case 10281: case 10282: case 10283: case 10284: case 10285: case 10286: case 10287: case 10288: case 10299: case 10300: case 10301: case 10302: case 10303: case 10304: case 10305: case 10306: case 10307: case 10308: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 10231: case 10232: case 10241: case 10242: case 10251: case 10252: case 10261: case 10262: case 10271: case 10272: case 10281: case 10282: case 10291: case 10292: case 10301: case 10302: return Shape::InnerLeft; + case 10233: case 10234: case 10243: case 10244: case 10253: case 10254: case 10263: case 10264: case 10273: case 10274: case 10283: case 10284: case 10293: case 10294: case 10303: case 10304: return Shape::InnerRight; + case 10235: case 10236: case 10245: case 10246: case 10255: case 10256: case 10265: case 10266: case 10275: case 10276: case 10285: case 10286: case 10295: case 10296: case 10305: case 10306: return Shape::OuterLeft; + case 10237: case 10238: case 10247: case 10248: case 10257: case 10258: case 10267: case 10268: case 10277: case 10278: case 10287: case 10288: case 10297: case 10298: case 10307: case 10308: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10230: case 10232: case 10234: case 10236: case 10238: case 10240: case 10242: case 10244: case 10246: case 10248: case 10250: case 10252: case 10254: case 10256: case 10258: case 10260: case 10262: case 10264: case 10266: case 10268: case 10270: case 10272: case 10274: case 10276: case 10278: case 10280: case 10282: case 10284: case 10286: case 10288: case 10290: case 10292: case 10294: case 10296: case 10298: case 10300: case 10302: case 10304: case 10306: case 10308: return false; + default: return true; + } + } + } + namespace SmoothStone + { + } + namespace SmoothStoneSlab + { + short SmoothStoneSlab() + { + return 8345; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8344: case 8345: return Type::Bottom; + case 8346: case 8347: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8343: case 8347: case 8345: return false; + default: return true; + } + } + } + namespace Snow + { + short Snow() + { + return 3921; + } + unsigned char Layers(short ID) + { + switch (ID) + { + case 3921: return 1; + case 3922: return 2; + case 3923: return 3; + case 3924: return 4; + case 3925: return 5; + case 3926: return 6; + case 3927: return 7; + default: return 8; + } + } + } + namespace SnowBlock + { + } + namespace SoulCampfire + { + short SoulCampfire() + { + return 14925; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 14939: case 14940: case 14941: case 14942: case 14943: case 14944: case 14945: case 14938: return eBlockFace::BLOCK_FACE_XM; + case 14947: case 14948: case 14949: case 14950: case 14951: case 14952: case 14946: case 14953: return eBlockFace::BLOCK_FACE_XP; + case 14924: case 14925: case 14926: case 14927: case 14928: case 14929: case 14922: case 14923: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Lit(short ID) + { + switch (ID) + { + case 14926: case 14934: case 14942: case 14950: case 14927: case 14935: case 14943: case 14951: case 14928: case 14936: case 14944: case 14952: case 14929: case 14937: case 14945: case 14953: return false; + default: return true; + } + } + bool SignalFire(short ID) + { + switch (ID) + { + case 14924: case 14932: case 14940: case 14948: case 14925: case 14933: case 14941: case 14949: case 14928: case 14936: case 14944: case 14952: case 14929: case 14937: case 14945: case 14953: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 14939: case 14947: case 14925: case 14933: case 14941: case 14949: case 14927: case 14935: case 14943: case 14951: case 14929: case 14937: case 14945: case 14923: case 14931: case 14953: return false; + default: return true; + } + } + } + namespace SoulFire + { + } + namespace SoulLantern + { + short SoulLantern() + { + return 14889; + } + bool Hanging(short ID) + { + switch (ID) + { + case 14889: return false; + default: return true; + } + } + } + namespace SoulSand + { + } + namespace SoulSoil + { + } + namespace SoulTorch + { + } + namespace SoulWallTorch + { + short SoulWallTorch() + { + return 4009; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 4011: return eBlockFace::BLOCK_FACE_XM; + case 4012: return eBlockFace::BLOCK_FACE_XP; + case 4009: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace Spawner + { + } + namespace Sponge + { + } + namespace SpruceButton + { + short SpruceButton() + { + return 6379; + } + enum Face Face(short ID) + { + switch (ID) + { + case 6389: case 6393: case 6386: case 6390: case 6387: case 6391: case 6388: case 6392: return Face::Ceiling; + case 6373: case 6377: case 6370: case 6374: case 6371: case 6375: case 6372: case 6376: return Face::Floor; + default: return Face::Wall; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6374: case 6382: case 6390: case 6375: case 6383: case 6391: return eBlockFace::BLOCK_FACE_XM; + case 6377: case 6385: case 6393: case 6376: case 6384: case 6392: return eBlockFace::BLOCK_FACE_XP; + case 6370: case 6378: case 6386: case 6371: case 6379: case 6387: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 6373: case 6377: case 6381: case 6385: case 6389: case 6393: case 6371: case 6375: case 6379: case 6383: case 6387: case 6391: return false; + default: return true; + } + } + } + namespace SpruceDoor + { + short SpruceDoor() + { + return 8749; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8770: case 8771: case 8772: case 8773: case 8774: case 8775: case 8776: case 8777: case 8778: case 8779: case 8780: case 8781: case 8782: case 8783: case 8784: case 8785: return eBlockFace::BLOCK_FACE_XM; + case 8798: case 8799: case 8800: case 8786: case 8787: case 8788: case 8789: case 8790: case 8791: case 8792: case 8793: case 8794: case 8795: case 8796: case 8797: case 8801: return eBlockFace::BLOCK_FACE_XP; + case 8738: case 8739: case 8740: case 8741: case 8742: case 8743: case 8744: case 8745: case 8746: case 8747: case 8748: case 8749: case 8750: case 8751: case 8752: case 8753: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 8766: case 8798: case 8767: case 8799: case 8768: case 8800: case 8769: case 8746: case 8778: case 8747: case 8779: case 8748: case 8780: case 8749: case 8781: case 8750: case 8782: case 8751: case 8783: case 8752: case 8784: case 8753: case 8785: case 8762: case 8794: case 8763: case 8795: case 8764: case 8796: case 8765: case 8797: case 8801: return Half::Lower; + default: return Half::Upper; + } + } + enum Hinge Hinge(short ID) + { + switch (ID) + { + case 8738: case 8770: case 8739: case 8771: case 8740: case 8772: case 8741: case 8773: case 8746: case 8778: case 8747: case 8779: case 8748: case 8780: case 8749: case 8781: case 8754: case 8786: case 8755: case 8787: case 8756: case 8788: case 8757: case 8789: case 8762: case 8794: case 8763: case 8795: case 8764: case 8796: case 8765: case 8797: return Hinge::Left; + default: return Hinge::Right; + } + } + bool Open(short ID) + { + switch (ID) + { + case 8768: case 8800: case 8769: case 8740: case 8772: case 8741: case 8773: case 8744: case 8776: case 8745: case 8777: case 8748: case 8780: case 8749: case 8781: case 8752: case 8784: case 8753: case 8785: case 8756: case 8788: case 8757: case 8789: case 8760: case 8792: case 8761: case 8793: case 8764: case 8796: case 8765: case 8797: case 8801: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 8767: case 8799: case 8769: case 8739: case 8771: case 8741: case 8773: case 8743: case 8775: case 8745: case 8777: case 8747: case 8779: case 8749: case 8781: case 8751: case 8783: case 8753: case 8785: case 8755: case 8787: case 8757: case 8789: case 8759: case 8791: case 8761: case 8793: case 8763: case 8795: case 8765: case 8797: case 8801: return false; + default: return true; + } + } + } + namespace SpruceFence + { + short SpruceFence() + { + return 8609; + } + bool East(short ID) + { + switch (ID) + { + case 8600: case 8608: case 8601: case 8594: case 8602: case 8595: case 8603: case 8596: case 8604: case 8597: case 8605: case 8598: case 8606: case 8599: case 8607: case 8609: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 8592: case 8608: case 8593: case 8586: case 8602: case 8587: case 8603: case 8588: case 8604: case 8589: case 8605: case 8590: case 8606: case 8591: case 8607: case 8609: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 8584: case 8592: case 8600: case 8608: case 8585: case 8593: case 8601: case 8582: case 8590: case 8598: case 8606: case 8583: case 8591: case 8599: case 8607: case 8609: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8584: case 8592: case 8600: case 8608: case 8585: case 8593: case 8601: case 8580: case 8588: case 8596: case 8604: case 8581: case 8589: case 8597: case 8605: case 8609: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 8585: case 8593: case 8601: case 8579: case 8587: case 8595: case 8603: case 8581: case 8589: case 8597: case 8605: case 8583: case 8591: case 8599: case 8607: case 8609: return false; + default: return true; + } + } + } + namespace SpruceFenceGate + { + short SpruceFenceGate() + { + return 8425; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8437: case 8438: case 8439: case 8440: case 8441: case 8434: case 8435: case 8436: return eBlockFace::BLOCK_FACE_XM; + case 8445: case 8446: case 8447: case 8448: case 8442: case 8443: case 8444: case 8449: return eBlockFace::BLOCK_FACE_XP; + case 8422: case 8423: case 8424: case 8425: case 8418: case 8419: case 8420: case 8421: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool InWall(short ID) + { + switch (ID) + { + case 8422: case 8430: case 8438: case 8446: case 8423: case 8431: case 8439: case 8447: case 8424: case 8432: case 8440: case 8448: case 8425: case 8433: case 8441: case 8449: return false; + default: return true; + } + } + bool Open(short ID) + { + switch (ID) + { + case 8429: case 8437: case 8445: case 8424: case 8432: case 8440: case 8448: case 8425: case 8433: case 8441: case 8420: case 8428: case 8436: case 8444: case 8421: case 8449: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 8429: case 8437: case 8445: case 8423: case 8431: case 8439: case 8447: case 8425: case 8433: case 8441: case 8419: case 8427: case 8435: case 8443: case 8421: case 8449: return false; + default: return true; + } + } + } + namespace SpruceLeaves + { + short SpruceLeaves() + { + return 172; + } + unsigned char Distance(short ID) + { + switch (ID) + { + case 159: case 160: return 1; + case 161: case 162: return 2; + case 163: case 164: return 3; + case 165: case 166: return 4; + case 168: case 167: return 5; + case 169: case 170: return 6; + default: return 7; + } + } + bool Persistent(short ID) + { + switch (ID) + { + case 168: case 162: case 170: case 164: case 172: case 166: case 160: return false; + default: return true; + } + } + } + namespace SpruceLog + { + short SpruceLog() + { + return 77; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 76: return Axis::X; + case 77: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace SprucePlanks + { + } + namespace SprucePressurePlate + { + short SprucePressurePlate() + { + return 3876; + } + bool Powered(short ID) + { + switch (ID) + { + case 3876: return false; + default: return true; + } + } + } + namespace SpruceSapling + { + short SpruceSapling() + { + return 23; + } + unsigned char Stage(short ID) + { + switch (ID) + { + case 23: return 0; + default: return 1; + } + } + } + namespace SpruceSign + { + short SpruceSign() + { + return 3414; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 3414: case 3413: return 0; + case 3416: case 3415: return 1; + case 3433: case 3434: return 10; + case 3435: case 3436: return 11; + case 3437: case 3438: return 12; + case 3439: case 3440: return 13; + case 3441: case 3442: return 14; + case 3443: case 3444: return 15; + case 3418: case 3417: return 2; + case 3420: case 3419: return 3; + case 3421: case 3422: return 4; + case 3423: case 3424: return 5; + case 3425: case 3426: return 6; + case 3427: case 3428: return 7; + case 3429: case 3430: return 8; + default: return 9; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 3414: case 3416: case 3418: case 3420: case 3422: case 3424: case 3426: case 3428: case 3430: case 3432: case 3434: case 3436: case 3438: case 3440: case 3442: case 3444: return false; + default: return true; + } + } + } + namespace SpruceSlab + { + short SpruceSlab() + { + return 8309; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8308: case 8309: return Type::Bottom; + case 8311: case 8310: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8311: case 8309: case 8307: return false; + default: return true; + } + } + } + namespace SpruceStairs + { + short SpruceStairs() + { + return 5415; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 5457: case 5458: case 5459: case 5460: case 5461: case 5462: case 5463: case 5444: case 5445: case 5446: case 5447: case 5448: case 5449: case 5450: case 5451: case 5452: case 5453: case 5454: case 5455: case 5456: return eBlockFace::BLOCK_FACE_XM; + case 5464: case 5465: case 5466: case 5467: case 5468: case 5469: case 5470: case 5471: case 5472: case 5473: case 5474: case 5475: case 5476: case 5477: case 5478: case 5479: case 5480: case 5481: case 5482: case 5483: return eBlockFace::BLOCK_FACE_XP; + case 5404: case 5405: case 5406: case 5407: case 5408: case 5409: case 5410: case 5411: case 5412: case 5413: case 5414: case 5415: case 5416: case 5417: case 5418: case 5419: case 5420: case 5421: case 5422: case 5423: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 5457: case 5458: case 5459: case 5460: case 5461: case 5462: case 5463: case 5474: case 5475: case 5476: case 5477: case 5414: case 5478: case 5415: case 5479: case 5416: case 5480: case 5417: case 5481: case 5418: case 5482: case 5419: case 5483: case 5420: case 5421: case 5422: case 5423: case 5434: case 5435: case 5436: case 5437: case 5438: case 5439: case 5440: case 5441: case 5442: case 5443: case 5454: case 5455: case 5456: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 5457: case 5466: case 5467: case 5406: case 5407: case 5476: case 5477: case 5416: case 5417: case 5426: case 5427: case 5436: case 5437: case 5446: case 5447: case 5456: return Shape::InnerLeft; + case 5458: case 5459: case 5468: case 5469: case 5408: case 5409: case 5478: case 5479: case 5418: case 5419: case 5428: case 5429: case 5438: case 5439: case 5448: case 5449: return Shape::InnerRight; + case 5460: case 5461: case 5470: case 5471: case 5410: case 5411: case 5480: case 5481: case 5420: case 5421: case 5430: case 5431: case 5440: case 5441: case 5450: case 5451: return Shape::OuterLeft; + case 5462: case 5463: case 5472: case 5473: case 5412: case 5413: case 5482: case 5483: case 5422: case 5423: case 5432: case 5433: case 5442: case 5443: case 5452: case 5453: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 5457: case 5459: case 5461: case 5463: case 5465: case 5467: case 5405: case 5469: case 5407: case 5471: case 5409: case 5473: case 5411: case 5475: case 5413: case 5477: case 5415: case 5479: case 5417: case 5481: case 5419: case 5483: case 5421: case 5423: case 5425: case 5427: case 5429: case 5431: case 5433: case 5435: case 5437: case 5439: case 5441: case 5443: case 5445: case 5447: case 5449: case 5451: case 5453: case 5455: return false; + default: return true; + } + } + } + namespace SpruceTrapdoor + { + short SpruceTrapdoor() + { + return 4190; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 4211: case 4212: case 4213: case 4214: case 4215: case 4216: case 4217: case 4218: case 4219: case 4220: case 4221: case 4222: case 4207: case 4208: case 4209: case 4210: return eBlockFace::BLOCK_FACE_XM; + case 4227: case 4228: case 4229: case 4230: case 4231: case 4232: case 4233: case 4234: case 4235: case 4236: case 4237: case 4223: case 4224: case 4225: case 4226: case 4238: return eBlockFace::BLOCK_FACE_XP; + case 4180: case 4181: case 4182: case 4183: case 4184: case 4185: case 4186: case 4187: case 4188: case 4189: case 4190: case 4175: case 4176: case 4177: case 4178: case 4179: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 4183: case 4199: case 4215: case 4231: case 4184: case 4200: case 4216: case 4232: case 4185: case 4201: case 4217: case 4233: case 4186: case 4202: case 4218: case 4234: case 4187: case 4203: case 4219: case 4235: case 4188: case 4204: case 4220: case 4236: case 4189: case 4205: case 4221: case 4237: case 4190: case 4206: case 4222: case 4238: return Half::Bottom; + default: return Half::Top; + } + } + bool Open(short ID) + { + switch (ID) + { + case 4195: case 4211: case 4227: case 4180: case 4196: case 4212: case 4228: case 4181: case 4197: case 4213: case 4229: case 4182: case 4198: case 4214: case 4230: case 4187: case 4203: case 4219: case 4235: case 4188: case 4204: case 4220: case 4236: case 4189: case 4205: case 4221: case 4237: case 4190: case 4206: case 4222: case 4179: case 4238: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 4181: case 4197: case 4213: case 4229: case 4182: case 4198: case 4214: case 4230: case 4185: case 4201: case 4217: case 4233: case 4186: case 4202: case 4218: case 4234: case 4189: case 4205: case 4221: case 4237: case 4190: case 4206: case 4222: case 4177: case 4193: case 4209: case 4225: case 4178: case 4194: case 4210: case 4226: case 4238: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 4180: case 4196: case 4212: case 4228: case 4182: case 4198: case 4214: case 4230: case 4184: case 4200: case 4216: case 4232: case 4186: case 4202: case 4218: case 4234: case 4188: case 4204: case 4220: case 4236: case 4190: case 4206: case 4222: case 4176: case 4192: case 4208: case 4224: case 4178: case 4194: case 4210: case 4226: case 4238: return false; + default: return true; + } + } + } + namespace SpruceWallSign + { + short SpruceWallSign() + { + return 3744; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 3747: case 3748: return eBlockFace::BLOCK_FACE_XM; + case 3749: case 3750: return eBlockFace::BLOCK_FACE_XP; + case 3743: case 3744: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 3744: case 3746: case 3748: case 3750: return false; + default: return true; + } + } + } + namespace SpruceWood + { + short SpruceWood() + { + return 113; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 112: return Axis::X; + case 113: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StickyPiston + { + short StickyPiston() + { + return 1335; + } + bool Extended(short ID) + { + switch (ID) + { + case 1336: case 1340: case 1337: case 1338: case 1335: case 1339: return false; + default: return true; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1332: case 1338: return eBlockFace::BLOCK_FACE_XM; + case 1336: case 1330: return eBlockFace::BLOCK_FACE_XP; + case 1340: case 1334: return eBlockFace::BLOCK_FACE_YM; + case 1333: case 1339: return eBlockFace::BLOCK_FACE_YP; + case 1329: case 1335: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace Stone + { + } + namespace StoneBrickSlab + { + short StoneBrickSlab() + { + return 8381; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8381: case 8380: return Type::Bottom; + case 8382: case 8383: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8381: case 8379: case 8383: return false; + default: return true; + } + } + } + namespace StoneBrickStairs + { + short StoneBrickStairs() + { + return 4943; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 4972: case 4973: case 4974: case 4975: case 4976: case 4977: case 4978: case 4979: case 4980: case 4981: case 4982: case 4983: case 4984: case 4985: case 4986: case 4987: case 4988: case 4989: case 4990: case 4991: return eBlockFace::BLOCK_FACE_XM; + case 4992: case 4993: case 4994: case 4995: case 4996: case 4997: case 4998: case 4999: case 5000: case 5001: case 5002: case 5003: case 5004: case 5005: case 5006: case 5007: case 5008: case 5009: case 5010: case 5011: return eBlockFace::BLOCK_FACE_XP; + case 4949: case 4950: case 4951: case 4932: case 4933: case 4934: case 4935: case 4936: case 4937: case 4938: case 4939: case 4940: case 4941: case 4942: case 4943: case 4944: case 4945: case 4946: case 4947: case 4948: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 4949: case 4950: case 4951: case 4962: case 4963: case 4964: case 4965: case 4966: case 4967: case 4968: case 4969: case 4970: case 4971: case 4982: case 4983: case 4984: case 4985: case 4986: case 4987: case 4988: case 4989: case 4990: case 4991: case 5002: case 5003: case 5004: case 5005: case 4942: case 5006: case 4943: case 5007: case 4944: case 5008: case 4945: case 5009: case 4946: case 5010: case 4947: case 5011: case 4948: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 4954: case 4955: case 4964: case 4965: case 4974: case 4975: case 4984: case 4985: case 4994: case 4995: case 4934: case 4935: case 5004: case 5005: case 4944: case 4945: return Shape::InnerLeft; + case 4956: case 4957: case 4966: case 4967: case 4976: case 4977: case 4986: case 4987: case 4996: case 4997: case 4936: case 4937: case 5006: case 5007: case 4946: case 4947: return Shape::InnerRight; + case 4949: case 4958: case 4959: case 4968: case 4969: case 4978: case 4979: case 4988: case 4989: case 4998: case 4999: case 4938: case 4939: case 5008: case 5009: case 4948: return Shape::OuterLeft; + case 4950: case 4951: case 4960: case 4961: case 4970: case 4971: case 4980: case 4981: case 4990: case 4991: case 5000: case 5001: case 4940: case 4941: case 5010: case 5011: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 4949: case 4951: case 4953: case 4955: case 4957: case 4959: case 4961: case 4963: case 4965: case 4967: case 4969: case 4971: case 4973: case 4975: case 4977: case 4979: case 4981: case 4983: case 4985: case 4987: case 4989: case 4991: case 4993: case 4995: case 4933: case 4997: case 4935: case 4999: case 4937: case 5001: case 4939: case 5003: case 4941: case 5005: case 4943: case 5007: case 4945: case 5009: case 4947: case 5011: return false; + default: return true; + } + } + } + namespace StoneBrickWall + { + short StoneBrickWall() + { + return 12490; + } + enum East East(short ID) + { + switch (ID) + { + case 12595: case 12599: case 12603: case 12607: case 12611: case 12615: case 12619: case 12623: case 12627: case 12631: case 12635: case 12639: case 12643: case 12647: case 12651: case 12655: case 12659: case 12663: case 12667: case 12671: case 12675: case 12679: case 12683: case 12687: case 12691: case 12695: case 12699: case 12596: case 12600: case 12604: case 12608: case 12612: case 12616: case 12620: case 12624: case 12628: case 12632: case 12636: case 12640: case 12644: case 12648: case 12652: case 12656: case 12660: case 12664: case 12668: case 12672: case 12676: case 12680: case 12684: case 12688: case 12692: case 12696: case 12700: case 12597: case 12601: case 12605: case 12609: case 12613: case 12617: case 12621: case 12625: case 12629: case 12633: case 12637: case 12641: case 12645: case 12649: case 12653: case 12657: case 12661: case 12665: case 12669: case 12673: case 12677: case 12681: case 12685: case 12689: case 12693: case 12697: case 12701: case 12598: case 12602: case 12606: case 12610: case 12614: case 12618: case 12622: case 12626: case 12630: case 12634: case 12638: case 12642: case 12646: case 12650: case 12654: case 12658: case 12662: case 12666: case 12670: case 12674: case 12678: case 12682: case 12686: case 12690: case 12694: case 12698: case 12702: return East::Low; + case 12567: case 12571: case 12575: case 12579: case 12583: case 12587: case 12591: case 12488: case 12492: case 12496: case 12500: case 12504: case 12508: case 12512: case 12516: case 12520: case 12524: case 12528: case 12532: case 12536: case 12540: case 12544: case 12548: case 12552: case 12556: case 12560: case 12564: case 12568: case 12572: case 12576: case 12580: case 12584: case 12588: case 12592: case 12489: case 12493: case 12497: case 12501: case 12505: case 12509: case 12513: case 12517: case 12521: case 12525: case 12529: case 12533: case 12537: case 12541: case 12545: case 12549: case 12553: case 12557: case 12561: case 12565: case 12569: case 12573: case 12577: case 12581: case 12585: case 12589: case 12593: case 12490: case 12494: case 12498: case 12502: case 12506: case 12510: case 12514: case 12518: case 12522: case 12526: case 12530: case 12534: case 12538: case 12542: case 12546: case 12550: case 12554: case 12558: case 12562: case 12566: case 12570: case 12574: case 12578: case 12582: case 12586: case 12590: case 12594: case 12487: case 12491: case 12495: case 12499: case 12503: case 12507: case 12511: case 12515: case 12519: case 12523: case 12527: case 12531: case 12535: case 12539: case 12543: case 12547: case 12551: case 12555: case 12559: case 12563: return East::None; + default: return East::Tall; + } + } + enum North North(short ID) + { + switch (ID) + { + case 12631: case 12635: case 12639: case 12643: case 12647: case 12651: case 12655: case 12659: case 12663: case 12739: case 12743: case 12747: case 12751: case 12755: case 12759: case 12763: case 12767: case 12771: case 12524: case 12528: case 12532: case 12536: case 12540: case 12544: case 12548: case 12552: case 12556: case 12632: case 12636: case 12640: case 12644: case 12648: case 12652: case 12656: case 12660: case 12664: case 12740: case 12744: case 12748: case 12752: case 12756: case 12760: case 12764: case 12768: case 12772: case 12525: case 12529: case 12533: case 12537: case 12541: case 12545: case 12549: case 12553: case 12557: case 12633: case 12637: case 12641: case 12645: case 12649: case 12653: case 12657: case 12661: case 12665: case 12741: case 12745: case 12749: case 12753: case 12757: case 12761: case 12765: case 12769: case 12773: case 12526: case 12530: case 12534: case 12538: case 12542: case 12546: case 12550: case 12554: case 12558: case 12634: case 12638: case 12642: case 12646: case 12650: case 12654: case 12658: case 12662: case 12666: case 12742: case 12746: case 12750: case 12754: case 12758: case 12762: case 12766: case 12770: case 12774: case 12523: case 12527: case 12531: case 12535: case 12539: case 12543: case 12547: case 12551: case 12555: return North::Low; + case 12595: case 12599: case 12603: case 12607: case 12611: case 12615: case 12619: case 12623: case 12627: case 12703: case 12707: case 12711: case 12715: case 12719: case 12723: case 12727: case 12731: case 12735: case 12488: case 12492: case 12496: case 12500: case 12504: case 12508: case 12512: case 12516: case 12520: case 12596: case 12600: case 12604: case 12608: case 12612: case 12616: case 12620: case 12624: case 12628: case 12704: case 12708: case 12712: case 12716: case 12720: case 12724: case 12728: case 12732: case 12736: case 12489: case 12493: case 12497: case 12501: case 12505: case 12509: case 12513: case 12517: case 12521: case 12597: case 12601: case 12605: case 12609: case 12613: case 12617: case 12621: case 12625: case 12629: case 12705: case 12709: case 12713: case 12717: case 12721: case 12725: case 12729: case 12733: case 12737: case 12490: case 12494: case 12498: case 12502: case 12506: case 12510: case 12514: case 12518: case 12522: case 12598: case 12602: case 12606: case 12610: case 12614: case 12618: case 12622: case 12626: case 12630: case 12706: case 12710: case 12714: case 12718: case 12722: case 12726: case 12730: case 12734: case 12738: case 12487: case 12491: case 12495: case 12499: case 12503: case 12507: case 12511: case 12515: case 12519: return North::None; + default: return North::Tall; + } + } + enum South South(short ID) + { + switch (ID) + { + case 12571: case 12575: case 12579: case 12607: case 12611: case 12615: case 12643: case 12647: case 12651: case 12679: case 12683: case 12687: case 12715: case 12719: case 12723: case 12751: case 12755: case 12759: case 12787: case 12791: case 12795: case 12500: case 12504: case 12508: case 12536: case 12540: case 12544: case 12572: case 12576: case 12580: case 12608: case 12612: case 12616: case 12644: case 12648: case 12652: case 12680: case 12684: case 12688: case 12716: case 12720: case 12724: case 12752: case 12756: case 12760: case 12788: case 12792: case 12796: case 12501: case 12505: case 12509: case 12537: case 12541: case 12545: case 12573: case 12577: case 12581: case 12609: case 12613: case 12617: case 12645: case 12649: case 12653: case 12681: case 12685: case 12689: case 12717: case 12721: case 12725: case 12753: case 12757: case 12761: case 12789: case 12793: case 12797: case 12502: case 12506: case 12510: case 12538: case 12542: case 12546: case 12574: case 12578: case 12582: case 12610: case 12614: case 12618: case 12646: case 12650: case 12654: case 12682: case 12686: case 12690: case 12718: case 12722: case 12726: case 12754: case 12758: case 12762: case 12790: case 12794: case 12798: case 12499: case 12503: case 12507: case 12535: case 12539: case 12543: return South::Low; + case 12567: case 12595: case 12599: case 12603: case 12631: case 12635: case 12639: case 12667: case 12671: case 12675: case 12703: case 12707: case 12711: case 12739: case 12743: case 12747: case 12775: case 12779: case 12783: case 12488: case 12492: case 12496: case 12524: case 12528: case 12532: case 12560: case 12564: case 12568: case 12596: case 12600: case 12604: case 12632: case 12636: case 12640: case 12668: case 12672: case 12676: case 12704: case 12708: case 12712: case 12740: case 12744: case 12748: case 12776: case 12780: case 12784: case 12489: case 12493: case 12497: case 12525: case 12529: case 12533: case 12561: case 12565: case 12569: case 12597: case 12601: case 12605: case 12633: case 12637: case 12641: case 12669: case 12673: case 12677: case 12705: case 12709: case 12713: case 12741: case 12745: case 12749: case 12777: case 12781: case 12785: case 12490: case 12494: case 12498: case 12526: case 12530: case 12534: case 12562: case 12566: case 12570: case 12598: case 12602: case 12606: case 12634: case 12638: case 12642: case 12670: case 12674: case 12678: case 12706: case 12710: case 12714: case 12742: case 12746: case 12750: case 12778: case 12782: case 12786: case 12487: case 12491: case 12495: case 12523: case 12527: case 12531: case 12559: case 12563: return South::None; + default: return South::Tall; + } + } + bool Up(short ID) + { + switch (ID) + { + case 12567: case 12579: case 12591: case 12603: case 12615: case 12627: case 12639: case 12651: case 12663: case 12675: case 12687: case 12699: case 12711: case 12723: case 12735: case 12747: case 12759: case 12771: case 12783: case 12795: case 12807: case 12496: case 12508: case 12520: case 12532: case 12544: case 12556: case 12568: case 12580: case 12592: case 12604: case 12616: case 12628: case 12640: case 12652: case 12664: case 12676: case 12688: case 12700: case 12712: case 12724: case 12736: case 12748: case 12760: case 12772: case 12784: case 12796: case 12808: case 12493: case 12497: case 12505: case 12509: case 12517: case 12521: case 12529: case 12533: case 12541: case 12545: case 12553: case 12557: case 12565: case 12569: case 12577: case 12581: case 12589: case 12593: case 12601: case 12605: case 12613: case 12617: case 12625: case 12629: case 12637: case 12641: case 12649: case 12653: case 12661: case 12665: case 12673: case 12677: case 12685: case 12689: case 12697: case 12701: case 12709: case 12713: case 12721: case 12725: case 12733: case 12737: case 12745: case 12749: case 12757: case 12761: case 12769: case 12773: case 12781: case 12785: case 12793: case 12797: case 12805: case 12809: case 12494: case 12498: case 12506: case 12510: case 12518: case 12522: case 12530: case 12534: case 12542: case 12546: case 12554: case 12558: case 12566: case 12570: case 12578: case 12582: case 12590: case 12594: case 12602: case 12606: case 12614: case 12618: case 12626: case 12630: case 12638: case 12642: case 12650: case 12654: case 12662: case 12666: case 12674: case 12678: case 12686: case 12690: case 12698: case 12702: case 12710: case 12714: case 12722: case 12726: case 12734: case 12738: case 12746: case 12750: case 12758: case 12762: case 12770: case 12774: case 12782: case 12786: case 12794: case 12798: case 12806: case 12810: case 12495: case 12507: case 12519: case 12531: case 12543: case 12555: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 12575: case 12587: case 12599: case 12611: case 12623: case 12635: case 12647: case 12659: case 12671: case 12683: case 12695: case 12707: case 12719: case 12731: case 12743: case 12755: case 12767: case 12779: case 12791: case 12803: case 12492: case 12496: case 12504: case 12508: case 12516: case 12520: case 12528: case 12532: case 12540: case 12544: case 12552: case 12556: case 12564: case 12568: case 12576: case 12580: case 12588: case 12592: case 12600: case 12604: case 12612: case 12616: case 12624: case 12628: case 12636: case 12640: case 12648: case 12652: case 12660: case 12664: case 12672: case 12676: case 12684: case 12688: case 12696: case 12700: case 12708: case 12712: case 12720: case 12724: case 12732: case 12736: case 12744: case 12748: case 12756: case 12760: case 12768: case 12772: case 12780: case 12784: case 12792: case 12796: case 12804: case 12808: case 12497: case 12509: case 12521: case 12533: case 12545: case 12557: case 12569: case 12581: case 12593: case 12605: case 12617: case 12629: case 12641: case 12653: case 12665: case 12677: case 12689: case 12701: case 12713: case 12725: case 12737: case 12749: case 12761: case 12773: case 12785: case 12797: case 12809: case 12490: case 12498: case 12502: case 12510: case 12514: case 12522: case 12526: case 12534: case 12538: case 12546: case 12550: case 12558: case 12562: case 12570: case 12574: case 12582: case 12586: case 12594: case 12598: case 12606: case 12610: case 12618: case 12622: case 12630: case 12634: case 12642: case 12646: case 12654: case 12658: case 12666: case 12670: case 12678: case 12682: case 12690: case 12694: case 12702: case 12706: case 12714: case 12718: case 12726: case 12730: case 12738: case 12742: case 12750: case 12754: case 12762: case 12766: case 12774: case 12778: case 12786: case 12790: case 12798: case 12802: case 12810: case 12491: case 12503: case 12515: case 12527: case 12539: case 12551: case 12563: return false; + default: return true; + } + } + enum West West(short ID) + { + switch (ID) + { + case 12575: case 12587: case 12599: case 12611: case 12623: case 12635: case 12647: case 12659: case 12671: case 12683: case 12695: case 12707: case 12719: case 12731: case 12743: case 12755: case 12767: case 12779: case 12791: case 12803: case 12488: case 12500: case 12512: case 12524: case 12536: case 12548: case 12560: case 12572: case 12584: case 12596: case 12608: case 12620: case 12632: case 12644: case 12656: case 12668: case 12680: case 12692: case 12704: case 12716: case 12728: case 12740: case 12752: case 12764: case 12776: case 12788: case 12800: case 12497: case 12509: case 12521: case 12533: case 12545: case 12557: case 12569: case 12581: case 12593: case 12605: case 12617: case 12629: case 12641: case 12653: case 12665: case 12677: case 12689: case 12701: case 12713: case 12725: case 12737: case 12749: case 12761: case 12773: case 12785: case 12797: case 12809: case 12494: case 12506: case 12518: case 12530: case 12542: case 12554: case 12566: case 12578: case 12590: case 12602: case 12614: case 12626: case 12638: case 12650: case 12662: case 12674: case 12686: case 12698: case 12710: case 12722: case 12734: case 12746: case 12758: case 12770: case 12782: case 12794: case 12806: case 12491: case 12503: case 12515: case 12527: case 12539: case 12551: case 12563: return West::Low; + case 12571: case 12583: case 12595: case 12607: case 12619: case 12631: case 12643: case 12655: case 12667: case 12679: case 12691: case 12703: case 12715: case 12727: case 12739: case 12751: case 12763: case 12775: case 12787: case 12799: case 12496: case 12508: case 12520: case 12532: case 12544: case 12556: case 12568: case 12580: case 12592: case 12604: case 12616: case 12628: case 12640: case 12652: case 12664: case 12676: case 12688: case 12700: case 12712: case 12724: case 12736: case 12748: case 12760: case 12772: case 12784: case 12796: case 12808: case 12493: case 12505: case 12517: case 12529: case 12541: case 12553: case 12565: case 12577: case 12589: case 12601: case 12613: case 12625: case 12637: case 12649: case 12661: case 12673: case 12685: case 12697: case 12709: case 12721: case 12733: case 12745: case 12757: case 12769: case 12781: case 12793: case 12805: case 12490: case 12502: case 12514: case 12526: case 12538: case 12550: case 12562: case 12574: case 12586: case 12598: case 12610: case 12622: case 12634: case 12646: case 12658: case 12670: case 12682: case 12694: case 12706: case 12718: case 12730: case 12742: case 12754: case 12766: case 12778: case 12790: case 12802: case 12487: case 12499: case 12511: case 12523: case 12535: case 12547: case 12559: return West::None; + default: return West::Tall; + } + } + } + namespace StoneBricks + { + } + namespace StoneButton + { + short StoneButton() + { + return 3906; + } + enum Face Face(short ID) + { + switch (ID) + { + case 3917: case 3919: case 3914: case 3916: case 3918: case 3920: case 3913: case 3915: return Face::Ceiling; + case 3898: case 3900: case 3902: case 3904: case 3897: case 3899: case 3901: case 3903: return Face::Floor; + default: return Face::Wall; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 3917: case 3902: case 3910: case 3918: case 3901: case 3909: return eBlockFace::BLOCK_FACE_XM; + case 3919: case 3904: case 3912: case 3920: case 3903: case 3911: return eBlockFace::BLOCK_FACE_XP; + case 3898: case 3906: case 3914: case 3897: case 3905: case 3913: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 3898: case 3900: case 3902: case 3904: case 3906: case 3908: case 3910: case 3912: case 3914: case 3916: case 3918: case 3920: return false; + default: return true; + } + } + } + namespace StonePressurePlate + { + short StonePressurePlate() + { + return 3808; + } + bool Powered(short ID) + { + switch (ID) + { + case 3808: return false; + default: return true; + } + } + } + namespace StoneSlab + { + short StoneSlab() + { + return 8339; + } + enum Type Type(short ID) + { + switch (ID) + { + case 8339: case 8338: return Type::Bottom; + case 8340: case 8341: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 8339: case 8337: case 8341: return false; + default: return true; + } + } + } + namespace StoneStairs + { + short StoneStairs() + { + return 10160; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 10189: case 10190: case 10191: case 10192: case 10193: case 10194: case 10195: case 10196: case 10197: case 10198: case 10199: case 10200: case 10201: case 10202: case 10203: case 10204: case 10205: case 10206: case 10207: case 10208: return eBlockFace::BLOCK_FACE_XM; + case 10214: case 10215: case 10216: case 10217: case 10218: case 10219: case 10220: case 10221: case 10222: case 10223: case 10224: case 10225: case 10226: case 10227: case 10228: case 10209: case 10210: case 10211: case 10212: case 10213: return eBlockFace::BLOCK_FACE_XP; + case 10149: case 10150: case 10151: case 10152: case 10153: case 10154: case 10155: case 10156: case 10157: case 10158: case 10159: case 10160: case 10161: case 10162: case 10163: case 10164: case 10165: case 10166: case 10167: case 10168: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 10219: case 10220: case 10221: case 10222: case 10223: case 10224: case 10225: case 10226: case 10227: case 10228: case 10159: case 10160: case 10161: case 10162: case 10163: case 10164: case 10165: case 10166: case 10167: case 10168: case 10179: case 10180: case 10181: case 10182: case 10183: case 10184: case 10185: case 10186: case 10187: case 10188: case 10199: case 10200: case 10201: case 10202: case 10203: case 10204: case 10205: case 10206: case 10207: case 10208: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 10221: case 10222: case 10151: case 10152: case 10161: case 10162: case 10171: case 10172: case 10181: case 10182: case 10191: case 10192: case 10201: case 10202: case 10211: case 10212: return Shape::InnerLeft; + case 10214: case 10223: case 10224: case 10153: case 10154: case 10163: case 10164: case 10173: case 10174: case 10183: case 10184: case 10193: case 10194: case 10203: case 10204: case 10213: return Shape::InnerRight; + case 10215: case 10216: case 10225: case 10226: case 10155: case 10156: case 10165: case 10166: case 10175: case 10176: case 10185: case 10186: case 10195: case 10196: case 10205: case 10206: return Shape::OuterLeft; + case 10217: case 10218: case 10227: case 10228: case 10157: case 10158: case 10167: case 10168: case 10177: case 10178: case 10187: case 10188: case 10197: case 10198: case 10207: case 10208: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 10214: case 10216: case 10218: case 10220: case 10222: case 10224: case 10226: case 10228: case 10150: case 10152: case 10154: case 10156: case 10158: case 10160: case 10162: case 10164: case 10166: case 10168: case 10170: case 10172: case 10174: case 10176: case 10178: case 10180: case 10182: case 10184: case 10186: case 10188: case 10190: case 10192: case 10194: case 10196: case 10198: case 10200: case 10202: case 10204: case 10206: case 10208: case 10210: case 10212: return false; + default: return true; + } + } + } + namespace Stonecutter + { + short Stonecutter() + { + return 14850; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 14852: return eBlockFace::BLOCK_FACE_XM; + case 14853: return eBlockFace::BLOCK_FACE_XP; + case 14850: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace StrippedAcaciaLog + { + short StrippedAcaciaLog() + { + return 101; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 100: return Axis::X; + case 101: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StrippedAcaciaWood + { + short StrippedAcaciaWood() + { + return 140; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 139: return Axis::X; + case 140: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StrippedBirchLog + { + short StrippedBirchLog() + { + return 95; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 94: return Axis::X; + case 95: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StrippedBirchWood + { + short StrippedBirchWood() + { + return 134; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 133: return Axis::X; + case 134: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StrippedCrimsonHyphae + { + short StrippedCrimsonHyphae() + { + return 14985; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 14984: return Axis::X; + case 14985: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StrippedCrimsonStem + { + short StrippedCrimsonStem() + { + return 14979; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 14978: return Axis::X; + case 14979: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StrippedDarkOakLog + { + short StrippedDarkOakLog() + { + return 104; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 103: return Axis::X; + case 104: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StrippedDarkOakWood + { + short StrippedDarkOakWood() + { + return 143; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 142: return Axis::X; + case 143: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StrippedJungleLog + { + short StrippedJungleLog() + { + return 98; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 97: return Axis::X; + case 98: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StrippedJungleWood + { + short StrippedJungleWood() + { + return 137; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 136: return Axis::X; + case 137: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StrippedOakLog + { + short StrippedOakLog() + { + return 107; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 106: return Axis::X; + case 107: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StrippedOakWood + { + short StrippedOakWood() + { + return 128; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 127: return Axis::X; + case 128: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StrippedSpruceLog + { + short StrippedSpruceLog() + { + return 92; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 91: return Axis::X; + case 92: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StrippedSpruceWood + { + short StrippedSpruceWood() + { + return 131; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 130: return Axis::X; + case 131: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StrippedWarpedHyphae + { + short StrippedWarpedHyphae() + { + return 14968; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 14967: return Axis::X; + case 14968: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StrippedWarpedStem + { + short StrippedWarpedStem() + { + return 14962; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 14961: return Axis::X; + case 14962: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace StructureBlock + { + short StructureBlock() + { + return 15735; + } + enum Mode Mode(short ID) + { + switch (ID) + { + case 15737: return Mode::Corner; + case 15738: return Mode::Data; + case 15736: return Mode::Load; + default: return Mode::Save; + } + } + } + namespace StructureVoid + { + } + namespace SugarCane + { + short SugarCane() + { + return 3948; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 3948: return 0; + case 3949: return 1; + case 3958: return 10; + case 3959: return 11; + case 3960: return 12; + case 3961: return 13; + case 3962: return 14; + case 3963: return 15; + case 3950: return 2; + case 3951: return 3; + case 3952: return 4; + case 3953: return 5; + case 3954: return 6; + case 3955: return 7; + case 3956: return 8; + default: return 9; + } + } + } + namespace Sunflower + { + short Sunflower() + { + return 7886; + } + enum Half Half(short ID) + { + switch (ID) + { + case 7886: return Half::Lower; + default: return Half::Upper; + } + } + } + namespace SweetBerryBush + { + short SweetBerryBush() + { + return 14954; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 14954: return 0; + case 14955: return 1; + case 14956: return 2; + default: return 3; + } + } + } + namespace TallGrass + { + short TallGrass() + { + return 7894; + } + enum Half Half(short ID) + { + switch (ID) + { + case 7894: return Half::Lower; + default: return Half::Upper; + } + } + } + namespace TallSeagrass + { + short TallSeagrass() + { + return 1347; + } + enum Half Half(short ID) + { + switch (ID) + { + case 1347: return Half::Lower; + default: return Half::Upper; + } + } + } + namespace Target + { + short Target() + { + return 15760; + } + unsigned char Power(short ID) + { + switch (ID) + { + case 15760: return 0; + case 15761: return 1; + case 15770: return 10; + case 15771: return 11; + case 15772: return 12; + case 15773: return 13; + case 15774: return 14; + case 15775: return 15; + case 15762: return 2; + case 15763: return 3; + case 15764: return 4; + case 15765: return 5; + case 15766: return 6; + case 15767: return 7; + case 15768: return 8; + default: return 9; + } + } + } + namespace Terracotta + { + } + namespace TNT + { + short TNT() + { + return 1431; + } + bool Unstable(short ID) + { + switch (ID) + { + case 1431: return false; + default: return true; + } + } + } + namespace Torch + { + } + namespace TrappedChest + { + short TrappedChest() + { + return 6623; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6637: case 6634: case 6638: case 6635: case 6639: case 6636: return eBlockFace::BLOCK_FACE_XM; + case 6641: case 6645: case 6642: case 6643: case 6640: case 6644: return eBlockFace::BLOCK_FACE_XP; + case 6625: case 6622: case 6626: case 6623: case 6627: case 6624: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Type Type(short ID) + { + switch (ID) + { + case 6625: case 6637: case 6630: case 6642: case 6631: case 6643: case 6624: case 6636: return Type::Left; + case 6633: case 6645: case 6626: case 6638: case 6627: case 6639: case 6632: case 6644: return Type::Right; + default: return Type::Single; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 6625: case 6629: case 6633: case 6637: case 6641: case 6645: case 6623: case 6627: case 6631: case 6635: case 6639: case 6643: return false; + default: return true; + } + } + } + namespace Tripwire + { + short Tripwire() + { + return 5402; + } + bool Attached(short ID) + { + switch (ID) + { + case 5393: case 5394: case 5395: case 5396: case 5397: case 5398: case 5399: case 5400: case 5401: case 5339: case 5340: case 5341: case 5342: case 5343: case 5344: case 5345: case 5346: case 5347: case 5348: case 5349: case 5350: case 5351: case 5352: case 5353: case 5354: case 5355: case 5356: case 5357: case 5358: case 5359: case 5360: case 5361: case 5362: case 5363: case 5364: case 5365: case 5366: case 5367: case 5368: case 5369: case 5370: case 5371: case 5372: case 5373: case 5374: case 5375: case 5376: case 5377: case 5378: case 5379: case 5380: case 5381: case 5382: case 5383: case 5384: case 5385: case 5386: case 5387: case 5388: case 5389: case 5390: case 5391: case 5392: case 5402: return false; + default: return true; + } + } + bool Disarmed(short ID) + { + switch (ID) + { + case 5393: case 5330: case 5394: case 5331: case 5395: case 5332: case 5396: case 5333: case 5397: case 5334: case 5398: case 5335: case 5399: case 5336: case 5400: case 5337: case 5401: case 5338: case 5307: case 5371: case 5308: case 5372: case 5309: case 5373: case 5310: case 5374: case 5311: case 5375: case 5312: case 5376: case 5313: case 5377: case 5314: case 5378: case 5315: case 5379: case 5316: case 5380: case 5317: case 5381: case 5318: case 5382: case 5319: case 5383: case 5320: case 5384: case 5321: case 5385: case 5322: case 5386: case 5323: case 5387: case 5324: case 5388: case 5325: case 5389: case 5326: case 5390: case 5327: case 5391: case 5328: case 5392: case 5329: case 5402: return false; + default: return true; + } + } + bool East(short ID) + { + switch (ID) + { + case 5393: case 5330: case 5394: case 5331: case 5395: case 5332: case 5396: case 5333: case 5397: case 5334: case 5398: case 5335: case 5399: case 5336: case 5400: case 5337: case 5401: case 5338: case 5291: case 5355: case 5292: case 5356: case 5293: case 5357: case 5294: case 5358: case 5295: case 5359: case 5296: case 5360: case 5297: case 5361: case 5298: case 5362: case 5299: case 5363: case 5300: case 5364: case 5301: case 5365: case 5302: case 5366: case 5303: case 5367: case 5304: case 5368: case 5305: case 5369: case 5306: case 5370: case 5323: case 5387: case 5324: case 5388: case 5325: case 5389: case 5326: case 5390: case 5327: case 5391: case 5328: case 5392: case 5329: case 5402: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 5331: case 5395: case 5332: case 5396: case 5333: case 5397: case 5334: case 5398: case 5335: case 5399: case 5336: case 5400: case 5337: case 5401: case 5338: case 5283: case 5347: case 5284: case 5348: case 5285: case 5349: case 5286: case 5350: case 5287: case 5351: case 5288: case 5352: case 5289: case 5353: case 5290: case 5354: case 5299: case 5363: case 5300: case 5364: case 5301: case 5365: case 5302: case 5366: case 5303: case 5367: case 5304: case 5368: case 5305: case 5369: case 5306: case 5370: case 5315: case 5379: case 5316: case 5380: case 5317: case 5381: case 5318: case 5382: case 5319: case 5383: case 5320: case 5384: case 5321: case 5385: case 5322: case 5386: case 5402: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 5393: case 5330: case 5394: case 5335: case 5399: case 5336: case 5400: case 5337: case 5401: case 5338: case 5279: case 5343: case 5280: case 5344: case 5281: case 5345: case 5282: case 5346: case 5287: case 5351: case 5288: case 5352: case 5289: case 5353: case 5290: case 5354: case 5295: case 5359: case 5296: case 5360: case 5297: case 5361: case 5298: case 5362: case 5303: case 5367: case 5304: case 5368: case 5305: case 5369: case 5306: case 5370: case 5311: case 5375: case 5312: case 5376: case 5313: case 5377: case 5314: case 5378: case 5319: case 5383: case 5320: case 5384: case 5321: case 5385: case 5322: case 5386: case 5327: case 5391: case 5328: case 5392: case 5329: case 5402: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 5393: case 5330: case 5394: case 5333: case 5397: case 5334: case 5398: case 5337: case 5401: case 5338: case 5277: case 5341: case 5278: case 5342: case 5281: case 5345: case 5282: case 5346: case 5285: case 5349: case 5286: case 5350: case 5289: case 5353: case 5290: case 5354: case 5293: case 5357: case 5294: case 5358: case 5297: case 5361: case 5298: case 5362: case 5301: case 5365: case 5302: case 5366: case 5305: case 5369: case 5306: case 5370: case 5309: case 5373: case 5310: case 5374: case 5313: case 5377: case 5314: case 5378: case 5317: case 5381: case 5318: case 5382: case 5321: case 5385: case 5322: case 5386: case 5325: case 5389: case 5326: case 5390: case 5329: case 5402: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 5330: case 5394: case 5332: case 5396: case 5334: case 5398: case 5336: case 5400: case 5338: case 5276: case 5340: case 5278: case 5342: case 5280: case 5344: case 5282: case 5346: case 5284: case 5348: case 5286: case 5350: case 5288: case 5352: case 5290: case 5354: case 5292: case 5356: case 5294: case 5358: case 5296: case 5360: case 5298: case 5362: case 5300: case 5364: case 5302: case 5366: case 5304: case 5368: case 5306: case 5370: case 5308: case 5372: case 5310: case 5374: case 5312: case 5376: case 5314: case 5378: case 5316: case 5380: case 5318: case 5382: case 5320: case 5384: case 5322: case 5386: case 5324: case 5388: case 5326: case 5390: case 5328: case 5392: case 5402: return false; + default: return true; + } + } + } + namespace TripwireHook + { + short TripwireHook() + { + return 5268; + } + bool Attached(short ID) + { + switch (ID) + { + case 5267: case 5268: case 5269: case 5270: case 5271: case 5272: case 5273: case 5274: return false; + default: return true; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 5271: case 5272: case 5263: case 5264: return eBlockFace::BLOCK_FACE_XM; + case 5266: case 5273: case 5265: case 5274: return eBlockFace::BLOCK_FACE_XP; + case 5267: case 5268: case 5259: case 5260: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 5266: case 5268: case 5270: case 5272: case 5260: case 5262: case 5264: case 5274: return false; + default: return true; + } + } + } + namespace TubeCoral + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9531: return false; + default: return true; + } + } + } + namespace TubeCoralBlock + { + } + namespace TubeCoralFan + { + bool Waterlogged(short ID) + { + switch (ID) + { + case 9551: return false; + default: return true; + } + } + } + namespace TubeCoralWallFan + { + short TubeCoralWallFan() + { + return 9600; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9604: case 9605: return eBlockFace::BLOCK_FACE_XM; + case 9606: case 9607: return eBlockFace::BLOCK_FACE_XP; + case 9600: case 9601: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 9603: case 9601: case 9605: case 9607: return false; + default: return true; + } + } + } + namespace TurtleEgg + { + short TurtleEgg() + { + return 9498; + } + unsigned char Eggs(short ID) + { + switch (ID) + { + case 9499: case 9498: case 9500: return 1; + case 9501: case 9503: case 9502: return 2; + case 9505: case 9504: case 9506: return 3; + default: return 4; + } + } + unsigned char Hatch(short ID) + { + switch (ID) + { + case 9501: case 9507: case 9498: case 9504: return 0; + case 9499: case 9505: case 9502: case 9508: return 1; + default: return 2; + } + } + } + namespace TwistingVines + { + short TwistingVines() + { + return 15017; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 15017: return 0; + case 15018: return 1; + case 15027: return 10; + case 15028: return 11; + case 15029: return 12; + case 15030: return 13; + case 15031: return 14; + case 15032: return 15; + case 15033: return 16; + case 15034: return 17; + case 15035: return 18; + case 15036: return 19; + case 15019: return 2; + case 15037: return 20; + case 15038: return 21; + case 15039: return 22; + case 15040: return 23; + case 15041: return 24; + case 15042: return 25; + case 15020: return 3; + case 15021: return 4; + case 15022: return 5; + case 15023: return 6; + case 15024: return 7; + case 15025: return 8; + default: return 9; + } + } + } + namespace TwistingVinesPlant + { + } + namespace Vine + { + short Vine() + { + return 4819; + } + bool East(short ID) + { + switch (ID) + { + case 4804: case 4808: case 4812: case 4816: case 4805: case 4809: case 4813: case 4817: case 4806: case 4810: case 4814: case 4818: case 4807: case 4811: case 4815: case 4819: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 4796: case 4800: case 4812: case 4816: case 4797: case 4801: case 4813: case 4817: case 4798: case 4802: case 4814: case 4818: case 4799: case 4803: case 4815: case 4819: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 4792: case 4800: case 4808: case 4816: case 4793: case 4801: case 4809: case 4817: case 4794: case 4802: case 4810: case 4818: case 4795: case 4803: case 4811: case 4819: return false; + default: return true; + } + } + bool Up(short ID) + { + switch (ID) + { + case 4790: case 4794: case 4798: case 4802: case 4806: case 4810: case 4814: case 4818: case 4791: case 4795: case 4799: case 4803: case 4807: case 4811: case 4815: case 4819: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 4789: case 4793: case 4797: case 4801: case 4805: case 4809: case 4813: case 4817: case 4791: case 4795: case 4799: case 4803: case 4807: case 4811: case 4815: case 4819: return false; + default: return true; + } + } + } + namespace VoidAir + { + } + namespace WallTorch + { + short WallTorch() + { + return 1436; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1438: return eBlockFace::BLOCK_FACE_XM; + case 1439: return eBlockFace::BLOCK_FACE_XP; + case 1436: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace WarpedButton + { + short WarpedButton() + { + return 15512; + } + enum Face Face(short ID) + { + switch (ID) + { + case 15521: case 15522: case 15523: case 15524: case 15525: case 15526: case 15519: case 15520: return Face::Ceiling; + case 15505: case 15506: case 15507: case 15508: case 15509: case 15510: case 15503: case 15504: return Face::Floor; + default: return Face::Wall; + } + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 15507: case 15515: case 15523: case 15508: case 15516: case 15524: return eBlockFace::BLOCK_FACE_XM; + case 15509: case 15517: case 15525: case 15510: case 15518: case 15526: return eBlockFace::BLOCK_FACE_XP; + case 15503: case 15511: case 15519: case 15504: case 15512: case 15520: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 15506: case 15514: case 15522: case 15508: case 15516: case 15524: case 15510: case 15518: case 15526: case 15504: case 15512: case 15520: return false; + default: return true; + } + } + } + namespace WarpedDoor + { + short WarpedDoor() + { + return 15602; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 15633: case 15634: case 15635: case 15636: case 15637: case 15638: case 15623: case 15624: case 15625: case 15626: case 15627: case 15628: case 15629: case 15630: case 15631: case 15632: return eBlockFace::BLOCK_FACE_XM; + case 15639: case 15640: case 15641: case 15642: case 15643: case 15644: case 15645: case 15646: case 15647: case 15648: case 15649: case 15650: case 15651: case 15652: case 15653: case 15654: return eBlockFace::BLOCK_FACE_XP; + case 15602: case 15603: case 15604: case 15605: case 15606: case 15591: case 15592: case 15593: case 15594: case 15595: case 15596: case 15597: case 15598: case 15599: case 15600: case 15601: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 15633: case 15602: case 15634: case 15603: case 15635: case 15604: case 15636: case 15605: case 15637: case 15606: case 15638: case 15615: case 15647: case 15616: case 15648: case 15617: case 15649: case 15618: case 15650: case 15619: case 15651: case 15620: case 15652: case 15621: case 15653: case 15622: case 15599: case 15631: case 15600: case 15632: case 15601: case 15654: return Half::Lower; + default: return Half::Upper; + } + } + enum Hinge Hinge(short ID) + { + switch (ID) + { + case 15633: case 15602: case 15634: case 15607: case 15639: case 15608: case 15640: case 15609: case 15641: case 15610: case 15642: case 15615: case 15647: case 15616: case 15648: case 15617: case 15649: case 15618: case 15650: case 15591: case 15623: case 15592: case 15624: case 15593: case 15625: case 15594: case 15626: case 15599: case 15631: case 15600: case 15632: case 15601: return Hinge::Left; + default: return Hinge::Right; + } + } + bool Open(short ID) + { + switch (ID) + { + case 15633: case 15602: case 15634: case 15605: case 15637: case 15606: case 15638: case 15609: case 15641: case 15610: case 15642: case 15613: case 15645: case 15614: case 15646: case 15617: case 15649: case 15618: case 15650: case 15621: case 15653: case 15622: case 15593: case 15625: case 15594: case 15626: case 15597: case 15629: case 15598: case 15630: case 15601: case 15654: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 15602: case 15634: case 15604: case 15636: case 15606: case 15638: case 15608: case 15640: case 15610: case 15642: case 15612: case 15644: case 15614: case 15646: case 15616: case 15648: case 15618: case 15650: case 15620: case 15652: case 15622: case 15592: case 15624: case 15594: case 15626: case 15596: case 15628: case 15598: case 15630: case 15600: case 15632: case 15654: return false; + default: return true; + } + } + } + namespace WarpedFence + { + short WarpedFence() + { + return 15126; + } + bool East(short ID) + { + switch (ID) + { + case 15125: case 15118: case 15111: case 15119: case 15112: case 15120: case 15113: case 15121: case 15114: case 15122: case 15115: case 15123: case 15116: case 15124: case 15117: case 15126: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 15125: case 15110: case 15103: case 15119: case 15104: case 15120: case 15105: case 15121: case 15106: case 15122: case 15107: case 15123: case 15108: case 15124: case 15109: case 15126: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 15125: case 15102: case 15110: case 15118: case 15099: case 15107: case 15115: case 15123: case 15100: case 15108: case 15116: case 15124: case 15101: case 15109: case 15117: case 15126: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 15125: case 15102: case 15110: case 15118: case 15097: case 15105: case 15113: case 15121: case 15098: case 15106: case 15114: case 15122: case 15101: case 15109: case 15117: case 15126: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 15102: case 15110: case 15118: case 15096: case 15104: case 15112: case 15120: case 15098: case 15106: case 15114: case 15122: case 15100: case 15108: case 15116: case 15124: case 15126: return false; + default: return true; + } + } + } + namespace WarpedFenceGate + { + short WarpedFenceGate() + { + return 15294; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 15304: case 15305: case 15306: case 15307: case 15308: case 15309: case 15310: case 15303: return eBlockFace::BLOCK_FACE_XM; + case 15311: case 15312: case 15313: case 15314: case 15315: case 15316: case 15317: case 15318: return eBlockFace::BLOCK_FACE_XP; + case 15288: case 15289: case 15290: case 15291: case 15292: case 15293: case 15294: case 15287: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool InWall(short ID) + { + switch (ID) + { + case 15291: case 15299: case 15307: case 15315: case 15292: case 15300: case 15308: case 15316: case 15293: case 15301: case 15309: case 15317: case 15294: case 15302: case 15310: case 15318: return false; + default: return true; + } + } + bool Open(short ID) + { + switch (ID) + { + case 15289: case 15297: case 15305: case 15313: case 15290: case 15298: case 15306: case 15314: case 15293: case 15301: case 15309: case 15317: case 15294: case 15302: case 15310: case 15318: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 15288: case 15296: case 15304: case 15312: case 15290: case 15298: case 15306: case 15314: case 15292: case 15300: case 15308: case 15316: case 15294: case 15302: case 15310: case 15318: return false; + default: return true; + } + } + } + namespace WarpedFungus + { + } + namespace WarpedHyphae + { + short WarpedHyphae() + { + return 14965; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 14964: return Axis::X; + case 14965: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace WarpedNylium + { + } + namespace WarpedPlanks + { + } + namespace WarpedPressurePlate + { + short WarpedPressurePlate() + { + return 15062; + } + bool Powered(short ID) + { + switch (ID) + { + case 15062: return false; + default: return true; + } + } + } + namespace WarpedRoots + { + } + namespace WarpedSign + { + short WarpedSign() + { + return 15688; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 15687: case 15688: return 0; + case 15689: case 15690: return 1; + case 15707: case 15708: return 10; + case 15709: case 15710: return 11; + case 15711: case 15712: return 12; + case 15714: case 15713: return 13; + case 15715: case 15716: return 14; + case 15717: case 15718: return 15; + case 15691: case 15692: return 2; + case 15693: case 15694: return 3; + case 15695: case 15696: return 4; + case 15697: case 15698: return 5; + case 15699: case 15700: return 6; + case 15701: case 15702: return 7; + case 15703: case 15704: return 8; + default: return 9; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 15714: case 15692: case 15700: case 15708: case 15716: case 15694: case 15702: case 15710: case 15688: case 15696: case 15704: case 15712: case 15690: case 15698: case 15706: case 15718: return false; + default: return true; + } + } + } + namespace WarpedSlab + { + short WarpedSlab() + { + return 15056; + } + enum Type Type(short ID) + { + switch (ID) + { + case 15056: case 15055: return Type::Bottom; + case 15057: case 15058: return Type::Double; + default: return Type::Top; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 15056: case 15054: case 15058: return false; + default: return true; + } + } + } + namespace WarpedStairs + { + short WarpedStairs() + { + return 15410; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 15439: case 15440: case 15441: case 15442: case 15443: case 15444: case 15445: case 15446: case 15447: case 15448: case 15449: case 15450: case 15451: case 15452: case 15453: case 15454: case 15455: case 15456: case 15457: case 15458: return eBlockFace::BLOCK_FACE_XM; + case 15459: case 15460: case 15461: case 15462: case 15463: case 15464: case 15465: case 15466: case 15467: case 15468: case 15469: case 15470: case 15471: case 15472: case 15473: case 15474: case 15475: case 15476: case 15477: case 15478: return eBlockFace::BLOCK_FACE_XP; + case 15399: case 15400: case 15401: case 15402: case 15403: case 15404: case 15405: case 15406: case 15407: case 15408: case 15409: case 15410: case 15411: case 15412: case 15413: case 15414: case 15415: case 15416: case 15417: case 15418: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 15429: case 15430: case 15431: case 15432: case 15433: case 15434: case 15435: case 15436: case 15437: case 15438: case 15449: case 15450: case 15451: case 15452: case 15453: case 15454: case 15455: case 15456: case 15457: case 15458: case 15469: case 15470: case 15471: case 15472: case 15473: case 15474: case 15475: case 15476: case 15477: case 15478: case 15409: case 15410: case 15411: case 15412: case 15413: case 15414: case 15415: case 15416: case 15417: case 15418: return Half::Bottom; + default: return Half::Top; + } + } + enum Shape Shape(short ID) + { + switch (ID) + { + case 15421: case 15422: case 15431: case 15432: case 15441: case 15442: case 15451: case 15452: case 15461: case 15462: case 15471: case 15472: case 15401: case 15402: case 15411: case 15412: return Shape::InnerLeft; + case 15423: case 15424: case 15433: case 15434: case 15443: case 15444: case 15453: case 15454: case 15463: case 15464: case 15473: case 15474: case 15403: case 15404: case 15413: case 15414: return Shape::InnerRight; + case 15425: case 15426: case 15435: case 15436: case 15445: case 15446: case 15455: case 15456: case 15465: case 15466: case 15475: case 15476: case 15405: case 15406: case 15415: case 15416: return Shape::OuterLeft; + case 15427: case 15428: case 15437: case 15438: case 15447: case 15448: case 15457: case 15458: case 15467: case 15468: case 15477: case 15478: case 15407: case 15408: case 15417: case 15418: return Shape::OuterRight; + default: return Shape::Straight; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 15422: case 15424: case 15426: case 15428: case 15430: case 15432: case 15434: case 15436: case 15438: case 15440: case 15442: case 15444: case 15446: case 15448: case 15450: case 15452: case 15454: case 15456: case 15458: case 15460: case 15462: case 15464: case 15466: case 15468: case 15470: case 15472: case 15474: case 15476: case 15478: case 15400: case 15402: case 15404: case 15406: case 15408: case 15410: case 15412: case 15414: case 15416: case 15418: case 15420: return false; + default: return true; + } + } + } + namespace WarpedStem + { + short WarpedStem() + { + return 14959; + } + enum Axis Axis(short ID) + { + switch (ID) + { + case 14958: return Axis::X; + case 14959: return Axis::Y; + default: return Axis::Z; + } + } + } + namespace WarpedTrapdoor + { + short WarpedTrapdoor() + { + return 15206; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 15224: case 15225: case 15226: case 15227: case 15228: case 15229: case 15230: case 15231: case 15232: case 15233: case 15234: case 15235: case 15236: case 15237: case 15238: case 15223: return eBlockFace::BLOCK_FACE_XM; + case 15239: case 15240: case 15241: case 15242: case 15243: case 15244: case 15245: case 15246: case 15247: case 15248: case 15249: case 15250: case 15251: case 15252: case 15253: case 15254: return eBlockFace::BLOCK_FACE_XP; + case 15192: case 15193: case 15194: case 15195: case 15196: case 15197: case 15198: case 15199: case 15200: case 15201: case 15202: case 15203: case 15204: case 15205: case 15206: case 15191: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + enum Half Half(short ID) + { + switch (ID) + { + case 15199: case 15231: case 15200: case 15232: case 15201: case 15233: case 15202: case 15234: case 15203: case 15235: case 15204: case 15236: case 15205: case 15237: case 15206: case 15238: case 15215: case 15247: case 15216: case 15248: case 15217: case 15249: case 15218: case 15250: case 15219: case 15251: case 15220: case 15252: case 15221: case 15253: case 15222: case 15254: return Half::Bottom; + default: return Half::Top; + } + } + bool Open(short ID) + { + switch (ID) + { + case 15195: case 15227: case 15196: case 15228: case 15197: case 15229: case 15198: case 15230: case 15203: case 15235: case 15204: case 15236: case 15205: case 15237: case 15206: case 15238: case 15211: case 15243: case 15212: case 15244: case 15213: case 15245: case 15214: case 15246: case 15219: case 15251: case 15220: case 15252: case 15221: case 15253: case 15222: case 15254: return false; + default: return true; + } + } + bool Powered(short ID) + { + switch (ID) + { + case 15193: case 15225: case 15194: case 15226: case 15197: case 15229: case 15198: case 15230: case 15201: case 15233: case 15202: case 15234: case 15205: case 15237: case 15206: case 15238: case 15209: case 15241: case 15210: case 15242: case 15213: case 15245: case 15214: case 15246: case 15217: case 15249: case 15218: case 15250: case 15221: case 15253: case 15222: case 15254: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 15192: case 15224: case 15194: case 15226: case 15196: case 15228: case 15198: case 15230: case 15200: case 15232: case 15202: case 15234: case 15204: case 15236: case 15206: case 15238: case 15208: case 15240: case 15210: case 15242: case 15212: case 15244: case 15214: case 15246: case 15216: case 15248: case 15218: case 15250: case 15220: case 15252: case 15222: case 15254: return false; + default: return true; + } + } + } + namespace WarpedWallSign + { + short WarpedWallSign() + { + return 15728; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 15731: case 15732: return eBlockFace::BLOCK_FACE_XM; + case 15733: case 15734: return eBlockFace::BLOCK_FACE_XP; + case 15728: case 15727: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 15728: case 15732: case 15730: case 15734: return false; + default: return true; + } + } + } + namespace WarpedWartBlock + { + } + namespace Water + { + short Water() + { + return 34; + } + unsigned char Level(short ID) + { + switch (ID) + { + case 34: return 0; + case 35: return 1; + case 44: return 10; + case 45: return 11; + case 46: return 12; + case 47: return 13; + case 48: return 14; + case 49: return 15; + case 36: return 2; + case 37: return 3; + case 38: return 4; + case 39: return 5; + case 40: return 6; + case 41: return 7; + case 42: return 8; + default: return 9; + } + } + } + namespace WeepingVines + { + short WeepingVines() + { + return 14990; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 14990: return 0; + case 14991: return 1; + case 15000: return 10; + case 15001: return 11; + case 15002: return 12; + case 15003: return 13; + case 15004: return 14; + case 15005: return 15; + case 15006: return 16; + case 15007: return 17; + case 15008: return 18; + case 15009: return 19; + case 14992: return 2; + case 15010: return 20; + case 15011: return 21; + case 15012: return 22; + case 15013: return 23; + case 15014: return 24; + case 15015: return 25; + case 14993: return 3; + case 14994: return 4; + case 14995: return 5; + case 14996: return 6; + case 14997: return 7; + case 14998: return 8; + default: return 9; + } + } + } + namespace WeepingVinesPlant + { + } + namespace WetSponge + { + } + namespace Wheat + { + short Wheat() + { + return 3357; + } + unsigned char Age(short ID) + { + switch (ID) + { + case 3357: return 0; + case 3358: return 1; + case 3359: return 2; + case 3360: return 3; + case 3361: return 4; + case 3362: return 5; + case 3363: return 6; + default: return 7; + } + } + } + namespace WhiteBanner + { + short WhiteBanner() + { + return 7897; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 7897: return 0; + case 7898: return 1; + case 7907: return 10; + case 7908: return 11; + case 7909: return 12; + case 7910: return 13; + case 7911: return 14; + case 7912: return 15; + case 7899: return 2; + case 7900: return 3; + case 7901: return 4; + case 7902: return 5; + case 7903: return 6; + case 7904: return 7; + case 7905: return 8; + default: return 9; + } + } + } + namespace WhiteBed + { + short WhiteBed() + { + return 1052; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1059: case 1060: case 1057: case 1058: return eBlockFace::BLOCK_FACE_XM; + case 1062: case 1063: case 1061: case 1064: return eBlockFace::BLOCK_FACE_XP; + case 1051: case 1052: case 1049: case 1050: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1051: case 1055: case 1059: case 1063: case 1052: case 1056: case 1060: case 1064: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1062: case 1052: case 1056: case 1060: case 1050: case 1054: case 1058: case 1064: return Part::Foot; + default: return Part::Head; + } + } + } + namespace WhiteCarpet + { + } + namespace WhiteConcrete + { + } + namespace WhiteConcretePowder + { + } + namespace WhiteGlazedTerracotta + { + short WhiteGlazedTerracotta() + { + return 9374; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9376: return eBlockFace::BLOCK_FACE_XM; + case 9377: return eBlockFace::BLOCK_FACE_XP; + case 9374: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace WhiteShulkerBox + { + short WhiteShulkerBox() + { + return 9282; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9281: return eBlockFace::BLOCK_FACE_XM; + case 9279: return eBlockFace::BLOCK_FACE_XP; + case 9283: return eBlockFace::BLOCK_FACE_YM; + case 9282: return eBlockFace::BLOCK_FACE_YP; + case 9278: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace WhiteStainedGlass + { + } + namespace WhiteStainedGlassPane + { + short WhiteStainedGlassPane() + { + return 6894; + } + bool East(short ID) + { + switch (ID) + { + case 6881: case 6885: case 6889: case 6893: case 6882: case 6886: case 6890: case 6879: case 6883: case 6887: case 6891: case 6880: case 6884: case 6888: case 6892: case 6894: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 6873: case 6877: case 6889: case 6893: case 6874: case 6878: case 6890: case 6871: case 6875: case 6887: case 6891: case 6872: case 6876: case 6888: case 6892: case 6894: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 6869: case 6877: case 6885: case 6893: case 6870: case 6878: case 6886: case 6867: case 6875: case 6883: case 6891: case 6868: case 6876: case 6884: case 6892: case 6894: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 6869: case 6873: case 6877: case 6881: case 6885: case 6889: case 6893: case 6866: case 6870: case 6874: case 6878: case 6882: case 6886: case 6890: case 6865: case 6894: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 6866: case 6870: case 6874: case 6878: case 6882: case 6886: case 6890: case 6864: case 6868: case 6872: case 6876: case 6880: case 6884: case 6888: case 6892: case 6894: return false; + default: return true; + } + } + } + namespace WhiteTerracotta + { + } + namespace WhiteTulip + { + } + namespace WhiteWallBanner + { + short WhiteWallBanner() + { + return 8153; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8155: return eBlockFace::BLOCK_FACE_XM; + case 8156: return eBlockFace::BLOCK_FACE_XP; + case 8153: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace WhiteWool + { + } + namespace WitherRose + { + } + namespace WitherSkeletonSkull + { + short WitherSkeletonSkull() + { + return 6510; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 6510: return 0; + case 6511: return 1; + case 6520: return 10; + case 6521: return 11; + case 6522: return 12; + case 6523: return 13; + case 6524: return 14; + case 6525: return 15; + case 6512: return 2; + case 6513: return 3; + case 6514: return 4; + case 6515: return 5; + case 6516: return 6; + case 6517: return 7; + case 6518: return 8; + default: return 9; + } + } + } + namespace WitherSkeletonWallSkull + { + short WitherSkeletonWallSkull() + { + return 6526; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6528: return eBlockFace::BLOCK_FACE_XM; + case 6529: return eBlockFace::BLOCK_FACE_XP; + case 6526: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace YellowBanner + { + short YellowBanner() + { + return 7961; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 7961: return 0; + case 7962: return 1; + case 7971: return 10; + case 7972: return 11; + case 7973: return 12; + case 7974: return 13; + case 7975: return 14; + case 7976: return 15; + case 7963: return 2; + case 7964: return 3; + case 7965: return 4; + case 7966: return 5; + case 7967: return 6; + case 7968: return 7; + case 7969: return 8; + default: return 9; + } + } + } + namespace YellowBed + { + short YellowBed() + { + return 1116; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 1122: case 1123: case 1124: case 1121: return eBlockFace::BLOCK_FACE_XM; + case 1126: case 1127: case 1125: case 1128: return eBlockFace::BLOCK_FACE_XP; + case 1115: case 1116: case 1113: case 1114: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + bool Occupied(short ID) + { + switch (ID) + { + case 1115: case 1119: case 1123: case 1127: case 1116: case 1120: case 1124: case 1128: return false; + default: return true; + } + } + enum Part Part(short ID) + { + switch (ID) + { + case 1122: case 1126: case 1116: case 1120: case 1124: case 1114: case 1118: case 1128: return Part::Foot; + default: return Part::Head; + } + } + } + namespace YellowCarpet + { + } + namespace YellowConcrete + { + } + namespace YellowConcretePowder + { + } + namespace YellowGlazedTerracotta + { + short YellowGlazedTerracotta() + { + return 9390; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9392: return eBlockFace::BLOCK_FACE_XM; + case 9393: return eBlockFace::BLOCK_FACE_XP; + case 9390: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace YellowShulkerBox + { + short YellowShulkerBox() + { + return 9306; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 9305: return eBlockFace::BLOCK_FACE_XM; + case 9303: return eBlockFace::BLOCK_FACE_XP; + case 9307: return eBlockFace::BLOCK_FACE_YM; + case 9306: return eBlockFace::BLOCK_FACE_YP; + case 9302: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace YellowStainedGlass + { + } + namespace YellowStainedGlassPane + { + short YellowStainedGlassPane() + { + return 7022; + } + bool East(short ID) + { + switch (ID) + { + case 7009: case 7013: case 7017: case 7021: case 7010: case 7014: case 7018: case 7007: case 7011: case 7015: case 7019: case 7008: case 7012: case 7016: case 7020: case 7022: return false; + default: return true; + } + } + bool North(short ID) + { + switch (ID) + { + case 7001: case 7005: case 7017: case 7021: case 7002: case 7006: case 7018: case 6999: case 7003: case 7015: case 7019: case 7000: case 7004: case 7016: case 7020: case 7022: return false; + default: return true; + } + } + bool South(short ID) + { + switch (ID) + { + case 6997: case 7005: case 7013: case 7021: case 6998: case 7006: case 7014: case 6995: case 7003: case 7011: case 7019: case 6996: case 7004: case 7012: case 7020: case 7022: return false; + default: return true; + } + } + bool Waterlogged(short ID) + { + switch (ID) + { + case 6993: case 6997: case 7001: case 7005: case 7009: case 7013: case 7017: case 7021: case 6994: case 6998: case 7002: case 7006: case 7010: case 7014: case 7018: case 7022: return false; + default: return true; + } + } + bool West(short ID) + { + switch (ID) + { + case 6994: case 6998: case 7002: case 7006: case 7010: case 7014: case 7018: case 6992: case 6996: case 7000: case 7004: case 7008: case 7012: case 7016: case 7020: case 7022: return false; + default: return true; + } + } + } + namespace YellowTerracotta + { + } + namespace YellowWallBanner + { + short YellowWallBanner() + { + return 8169; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 8171: return eBlockFace::BLOCK_FACE_XM; + case 8172: return eBlockFace::BLOCK_FACE_XP; + case 8169: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } + namespace YellowWool + { + } + namespace ZombieHead + { + short ZombieHead() + { + return 6530; + } + unsigned char Rotation(short ID) + { + switch (ID) + { + case 6530: return 0; + case 6531: return 1; + case 6540: return 10; + case 6541: return 11; + case 6542: return 12; + case 6543: return 13; + case 6544: return 14; + case 6545: return 15; + case 6532: return 2; + case 6533: return 3; + case 6534: return 4; + case 6535: return 5; + case 6536: return 6; + case 6537: return 7; + case 6538: return 8; + default: return 9; + } + } + } + namespace ZombieWallHead + { + short ZombieWallHead() + { + return 6546; + } + eBlockFace Facing(short ID) + { + switch (ID) + { + case 6548: return eBlockFace::BLOCK_FACE_XM; + case 6549: return eBlockFace::BLOCK_FACE_XP; + case 6546: return eBlockFace::BLOCK_FACE_ZM; + default: return eBlockFace::BLOCK_FACE_ZP; + } + } + } +} diff --git a/src/Registries/Blocks.h b/src/Registries/Blocks.h new file mode 100644 index 000000000..d7fdf236c --- /dev/null +++ b/src/Registries/Blocks.h @@ -0,0 +1,25809 @@ +#pragma once + +#include "Globals.h" +#include "../Defines.h" + +namespace Block +{ + enum class Type + { + AcaciaButton, + AcaciaDoor, + AcaciaFence, + AcaciaFenceGate, + AcaciaLeaves, + AcaciaLog, + AcaciaPlanks, + AcaciaPressurePlate, + AcaciaSapling, + AcaciaSign, + AcaciaSlab, + AcaciaStairs, + AcaciaTrapdoor, + AcaciaWallSign, + AcaciaWood, + ActivatorRail, + Air, + Allium, + AncientDebris, + Andesite, + AndesiteSlab, + AndesiteStairs, + AndesiteWall, + Anvil, + AttachedMelonStem, + AttachedPumpkinStem, + AzureBluet, + Bamboo, + BambooSapling, + Barrel, + Barrier, + Basalt, + Beacon, + Bedrock, + BeeNest, + Beehive, + Beetroots, + Bell, + BirchButton, + BirchDoor, + BirchFence, + BirchFenceGate, + BirchLeaves, + BirchLog, + BirchPlanks, + BirchPressurePlate, + BirchSapling, + BirchSign, + BirchSlab, + BirchStairs, + BirchTrapdoor, + BirchWallSign, + BirchWood, + BlackBanner, + BlackBed, + BlackCarpet, + BlackConcrete, + BlackConcretePowder, + BlackGlazedTerracotta, + BlackShulkerBox, + BlackStainedGlass, + BlackStainedGlassPane, + BlackTerracotta, + BlackWallBanner, + BlackWool, + Blackstone, + BlackstoneSlab, + BlackstoneStairs, + BlackstoneWall, + BlastFurnace, + BlueBanner, + BlueBed, + BlueCarpet, + BlueConcrete, + BlueConcretePowder, + BlueGlazedTerracotta, + BlueIce, + BlueOrchid, + BlueShulkerBox, + BlueStainedGlass, + BlueStainedGlassPane, + BlueTerracotta, + BlueWallBanner, + BlueWool, + BoneBlock, + Bookshelf, + BrainCoral, + BrainCoralBlock, + BrainCoralFan, + BrainCoralWallFan, + BrewingStand, + BrickSlab, + BrickStairs, + BrickWall, + Bricks, + BrownBanner, + BrownBed, + BrownCarpet, + BrownConcrete, + BrownConcretePowder, + BrownGlazedTerracotta, + BrownMushroom, + BrownMushroomBlock, + BrownShulkerBox, + BrownStainedGlass, + BrownStainedGlassPane, + BrownTerracotta, + BrownWallBanner, + BrownWool, + BubbleColumn, + BubbleCoral, + BubbleCoralBlock, + BubbleCoralFan, + BubbleCoralWallFan, + Cactus, + Cake, + Campfire, + Carrots, + CartographyTable, + CarvedPumpkin, + Cauldron, + CaveAir, + Chain, + ChainCommandBlock, + Chest, + ChippedAnvil, + ChiseledNetherBricks, + ChiseledPolishedBlackstone, + ChiseledQuartzBlock, + ChiseledRedSandstone, + ChiseledSandstone, + ChiseledStoneBricks, + ChorusFlower, + ChorusPlant, + Clay, + CoalBlock, + CoalOre, + CoarseDirt, + Cobblestone, + CobblestoneSlab, + CobblestoneStairs, + CobblestoneWall, + Cobweb, + Cocoa, + CommandBlock, + Comparator, + Composter, + Conduit, + Cornflower, + CrackedNetherBricks, + CrackedPolishedBlackstoneBricks, + CrackedStoneBricks, + CraftingTable, + CreeperHead, + CreeperWallHead, + CrimsonButton, + CrimsonDoor, + CrimsonFence, + CrimsonFenceGate, + CrimsonFungus, + CrimsonHyphae, + CrimsonNylium, + CrimsonPlanks, + CrimsonPressurePlate, + CrimsonRoots, + CrimsonSign, + CrimsonSlab, + CrimsonStairs, + CrimsonStem, + CrimsonTrapdoor, + CrimsonWallSign, + CryingObsidian, + CutRedSandstone, + CutRedSandstoneSlab, + CutSandstone, + CutSandstoneSlab, + CyanBanner, + CyanBed, + CyanCarpet, + CyanConcrete, + CyanConcretePowder, + CyanGlazedTerracotta, + CyanShulkerBox, + CyanStainedGlass, + CyanStainedGlassPane, + CyanTerracotta, + CyanWallBanner, + CyanWool, + DamagedAnvil, + Dandelion, + DarkOakButton, + DarkOakDoor, + DarkOakFence, + DarkOakFenceGate, + DarkOakLeaves, + DarkOakLog, + DarkOakPlanks, + DarkOakPressurePlate, + DarkOakSapling, + DarkOakSign, + DarkOakSlab, + DarkOakStairs, + DarkOakTrapdoor, + DarkOakWallSign, + DarkOakWood, + DarkPrismarine, + DarkPrismarineSlab, + DarkPrismarineStairs, + DaylightDetector, + DeadBrainCoral, + DeadBrainCoralBlock, + DeadBrainCoralFan, + DeadBrainCoralWallFan, + DeadBubbleCoral, + DeadBubbleCoralBlock, + DeadBubbleCoralFan, + DeadBubbleCoralWallFan, + DeadBush, + DeadFireCoral, + DeadFireCoralBlock, + DeadFireCoralFan, + DeadFireCoralWallFan, + DeadHornCoral, + DeadHornCoralBlock, + DeadHornCoralFan, + DeadHornCoralWallFan, + DeadTubeCoral, + DeadTubeCoralBlock, + DeadTubeCoralFan, + DeadTubeCoralWallFan, + DetectorRail, + DiamondBlock, + DiamondOre, + Diorite, + DioriteSlab, + DioriteStairs, + DioriteWall, + Dirt, + Dispenser, + DragonEgg, + DragonHead, + DragonWallHead, + DriedKelpBlock, + Dropper, + EmeraldBlock, + EmeraldOre, + EnchantingTable, + EndGateway, + EndPortal, + EndPortalFrame, + EndRod, + EndStone, + EndStoneBrickSlab, + EndStoneBrickStairs, + EndStoneBrickWall, + EndStoneBricks, + EnderChest, + Farmland, + Fern, + Fire, + FireCoral, + FireCoralBlock, + FireCoralFan, + FireCoralWallFan, + FletchingTable, + FlowerPot, + FrostedIce, + Furnace, + GildedBlackstone, + Glass, + GlassPane, + Glowstone, + GoldBlock, + GoldOre, + Granite, + GraniteSlab, + GraniteStairs, + GraniteWall, + Grass, + GrassBlock, + GrassPath, + Gravel, + GrayBanner, + GrayBed, + GrayCarpet, + GrayConcrete, + GrayConcretePowder, + GrayGlazedTerracotta, + GrayShulkerBox, + GrayStainedGlass, + GrayStainedGlassPane, + GrayTerracotta, + GrayWallBanner, + GrayWool, + GreenBanner, + GreenBed, + GreenCarpet, + GreenConcrete, + GreenConcretePowder, + GreenGlazedTerracotta, + GreenShulkerBox, + GreenStainedGlass, + GreenStainedGlassPane, + GreenTerracotta, + GreenWallBanner, + GreenWool, + Grindstone, + HayBale, + HeavyWeightedPressurePlate, + HoneyBlock, + HoneycombBlock, + Hopper, + HornCoral, + HornCoralBlock, + HornCoralFan, + HornCoralWallFan, + Ice, + InfestedChiseledStoneBricks, + InfestedCobblestone, + InfestedCrackedStoneBricks, + InfestedMossyStoneBricks, + InfestedStone, + InfestedStoneBricks, + IronBars, + IronBlock, + IronDoor, + IronOre, + IronTrapdoor, + JackOLantern, + Jigsaw, + Jukebox, + JungleButton, + JungleDoor, + JungleFence, + JungleFenceGate, + JungleLeaves, + JungleLog, + JunglePlanks, + JunglePressurePlate, + JungleSapling, + JungleSign, + JungleSlab, + JungleStairs, + JungleTrapdoor, + JungleWallSign, + JungleWood, + Kelp, + KelpPlant, + Ladder, + Lantern, + LapisBlock, + LapisOre, + LargeFern, + Lava, + Lectern, + Lever, + LightBlueBanner, + LightBlueBed, + LightBlueCarpet, + LightBlueConcrete, + LightBlueConcretePowder, + LightBlueGlazedTerracotta, + LightBlueShulkerBox, + LightBlueStainedGlass, + LightBlueStainedGlassPane, + LightBlueTerracotta, + LightBlueWallBanner, + LightBlueWool, + LightGrayBanner, + LightGrayBed, + LightGrayCarpet, + LightGrayConcrete, + LightGrayConcretePowder, + LightGrayGlazedTerracotta, + LightGrayShulkerBox, + LightGrayStainedGlass, + LightGrayStainedGlassPane, + LightGrayTerracotta, + LightGrayWallBanner, + LightGrayWool, + LightWeightedPressurePlate, + Lilac, + LilyOfTheValley, + LilyPad, + LimeBanner, + LimeBed, + LimeCarpet, + LimeConcrete, + LimeConcretePowder, + LimeGlazedTerracotta, + LimeShulkerBox, + LimeStainedGlass, + LimeStainedGlassPane, + LimeTerracotta, + LimeWallBanner, + LimeWool, + Lodestone, + Loom, + MagentaBanner, + MagentaBed, + MagentaCarpet, + MagentaConcrete, + MagentaConcretePowder, + MagentaGlazedTerracotta, + MagentaShulkerBox, + MagentaStainedGlass, + MagentaStainedGlassPane, + MagentaTerracotta, + MagentaWallBanner, + MagentaWool, + MagmaBlock, + Melon, + MelonStem, + MossyCobblestone, + MossyCobblestoneSlab, + MossyCobblestoneStairs, + MossyCobblestoneWall, + MossyStoneBrickSlab, + MossyStoneBrickStairs, + MossyStoneBrickWall, + MossyStoneBricks, + MovingPiston, + MushroomStem, + Mycelium, + NetherBrickFence, + NetherBrickSlab, + NetherBrickStairs, + NetherBrickWall, + NetherBricks, + NetherGoldOre, + NetherPortal, + NetherQuartzOre, + NetherSprouts, + NetherWart, + NetherWartBlock, + NetheriteBlock, + Netherrack, + NoteBlock, + OakButton, + OakDoor, + OakFence, + OakFenceGate, + OakLeaves, + OakLog, + OakPlanks, + OakPressurePlate, + OakSapling, + OakSign, + OakSlab, + OakStairs, + OakTrapdoor, + OakWallSign, + OakWood, + Observer, + Obsidian, + OrangeBanner, + OrangeBed, + OrangeCarpet, + OrangeConcrete, + OrangeConcretePowder, + OrangeGlazedTerracotta, + OrangeShulkerBox, + OrangeStainedGlass, + OrangeStainedGlassPane, + OrangeTerracotta, + OrangeTulip, + OrangeWallBanner, + OrangeWool, + OxeyeDaisy, + PackedIce, + Peony, + PetrifiedOakSlab, + PinkBanner, + PinkBed, + PinkCarpet, + PinkConcrete, + PinkConcretePowder, + PinkGlazedTerracotta, + PinkShulkerBox, + PinkStainedGlass, + PinkStainedGlassPane, + PinkTerracotta, + PinkTulip, + PinkWallBanner, + PinkWool, + Piston, + PistonHead, + PlayerHead, + PlayerWallHead, + Podzol, + PolishedAndesite, + PolishedAndesiteSlab, + PolishedAndesiteStairs, + PolishedBasalt, + PolishedBlackstone, + PolishedBlackstoneBrickSlab, + PolishedBlackstoneBrickStairs, + PolishedBlackstoneBrickWall, + PolishedBlackstoneBricks, + PolishedBlackstoneButton, + PolishedBlackstonePressurePlate, + PolishedBlackstoneSlab, + PolishedBlackstoneStairs, + PolishedBlackstoneWall, + PolishedDiorite, + PolishedDioriteSlab, + PolishedDioriteStairs, + PolishedGranite, + PolishedGraniteSlab, + PolishedGraniteStairs, + Poppy, + Potatoes, + PottedAcaciaSapling, + PottedAllium, + PottedAzureBluet, + PottedBamboo, + PottedBirchSapling, + PottedBlueOrchid, + PottedBrownMushroom, + PottedCactus, + PottedCornflower, + PottedCrimsonFungus, + PottedCrimsonRoots, + PottedDandelion, + PottedDarkOakSapling, + PottedDeadBush, + PottedFern, + PottedJungleSapling, + PottedLilyOfTheValley, + PottedOakSapling, + PottedOrangeTulip, + PottedOxeyeDaisy, + PottedPinkTulip, + PottedPoppy, + PottedRedMushroom, + PottedRedTulip, + PottedSpruceSapling, + PottedWarpedFungus, + PottedWarpedRoots, + PottedWhiteTulip, + PottedWitherRose, + PoweredRail, + Prismarine, + PrismarineBrickSlab, + PrismarineBrickStairs, + PrismarineBricks, + PrismarineSlab, + PrismarineStairs, + PrismarineWall, + Pumpkin, + PumpkinStem, + PurpleBanner, + PurpleBed, + PurpleCarpet, + PurpleConcrete, + PurpleConcretePowder, + PurpleGlazedTerracotta, + PurpleShulkerBox, + PurpleStainedGlass, + PurpleStainedGlassPane, + PurpleTerracotta, + PurpleWallBanner, + PurpleWool, + PurpurBlock, + PurpurPillar, + PurpurSlab, + PurpurStairs, + QuartzBlock, + QuartzBricks, + QuartzPillar, + QuartzSlab, + QuartzStairs, + Rail, + RedBanner, + RedBed, + RedCarpet, + RedConcrete, + RedConcretePowder, + RedGlazedTerracotta, + RedMushroom, + RedMushroomBlock, + RedNetherBrickSlab, + RedNetherBrickStairs, + RedNetherBrickWall, + RedNetherBricks, + RedSand, + RedSandstone, + RedSandstoneSlab, + RedSandstoneStairs, + RedSandstoneWall, + RedShulkerBox, + RedStainedGlass, + RedStainedGlassPane, + RedTerracotta, + RedTulip, + RedWallBanner, + RedWool, + RedstoneBlock, + RedstoneLamp, + RedstoneOre, + RedstoneTorch, + RedstoneWallTorch, + RedstoneWire, + Repeater, + RepeatingCommandBlock, + RespawnAnchor, + RoseBush, + Sand, + Sandstone, + SandstoneSlab, + SandstoneStairs, + SandstoneWall, + Scaffolding, + SeaLantern, + SeaPickle, + Seagrass, + Shroomlight, + ShulkerBox, + SkeletonSkull, + SkeletonWallSkull, + SlimeBlock, + SmithingTable, + Smoker, + SmoothQuartz, + SmoothQuartzSlab, + SmoothQuartzStairs, + SmoothRedSandstone, + SmoothRedSandstoneSlab, + SmoothRedSandstoneStairs, + SmoothSandstone, + SmoothSandstoneSlab, + SmoothSandstoneStairs, + SmoothStone, + SmoothStoneSlab, + Snow, + SnowBlock, + SoulCampfire, + SoulFire, + SoulLantern, + SoulSand, + SoulSoil, + SoulTorch, + SoulWallTorch, + Spawner, + Sponge, + SpruceButton, + SpruceDoor, + SpruceFence, + SpruceFenceGate, + SpruceLeaves, + SpruceLog, + SprucePlanks, + SprucePressurePlate, + SpruceSapling, + SpruceSign, + SpruceSlab, + SpruceStairs, + SpruceTrapdoor, + SpruceWallSign, + SpruceWood, + StickyPiston, + Stone, + StoneBrickSlab, + StoneBrickStairs, + StoneBrickWall, + StoneBricks, + StoneButton, + StonePressurePlate, + StoneSlab, + StoneStairs, + Stonecutter, + StrippedAcaciaLog, + StrippedAcaciaWood, + StrippedBirchLog, + StrippedBirchWood, + StrippedCrimsonHyphae, + StrippedCrimsonStem, + StrippedDarkOakLog, + StrippedDarkOakWood, + StrippedJungleLog, + StrippedJungleWood, + StrippedOakLog, + StrippedOakWood, + StrippedSpruceLog, + StrippedSpruceWood, + StrippedWarpedHyphae, + StrippedWarpedStem, + StructureBlock, + StructureVoid, + SugarCane, + Sunflower, + SweetBerryBush, + TallGrass, + TallSeagrass, + Target, + Terracotta, + Tnt, + Torch, + TrappedChest, + Tripwire, + TripwireHook, + TubeCoral, + TubeCoralBlock, + TubeCoralFan, + TubeCoralWallFan, + TurtleEgg, + TwistingVines, + TwistingVinesPlant, + Vine, + VoidAir, + WallTorch, + WarpedButton, + WarpedDoor, + WarpedFence, + WarpedFenceGate, + WarpedFungus, + WarpedHyphae, + WarpedNylium, + WarpedPlanks, + WarpedPressurePlate, + WarpedRoots, + WarpedSign, + WarpedSlab, + WarpedStairs, + WarpedStem, + WarpedTrapdoor, + WarpedWallSign, + WarpedWartBlock, + Water, + WeepingVines, + WeepingVinesPlant, + WetSponge, + Wheat, + WhiteBanner, + WhiteBed, + WhiteCarpet, + WhiteConcrete, + WhiteConcretePowder, + WhiteGlazedTerracotta, + WhiteShulkerBox, + WhiteStainedGlass, + WhiteStainedGlassPane, + WhiteTerracotta, + WhiteTulip, + WhiteWallBanner, + WhiteWool, + WitherRose, + WitherSkeletonSkull, + WitherSkeletonWallSkull, + YellowBanner, + YellowBed, + YellowCarpet, + YellowConcrete, + YellowConcretePowder, + YellowGlazedTerracotta, + YellowShulkerBox, + YellowStainedGlass, + YellowStainedGlassPane, + YellowTerracotta, + YellowWallBanner, + YellowWool, + ZombieHead, + ZombieWallHead + }; + enum Type Type(short ID); + bool Is(short ID, enum Type Type); + namespace AcaciaButton + { + enum class Face + { + Floor, + Wall, + Ceiling + }; + constexpr short AcaciaButton(enum Face Face, eBlockFace Facing, bool Powered) + { + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6443; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6447; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6451; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6455; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6459; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6463; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6444; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6448; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6452; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6456; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6460; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6464; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6445; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6449; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6453; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6457; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6461; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6465; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6442; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6446; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6450; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6454; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6458; + return 6462; + } + short AcaciaButton(); + enum Face Face(short ID); + eBlockFace Facing(short ID); + bool Powered(short ID); + } + namespace AcaciaDoor + { + enum class Half + { + Upper, + Lower + }; + enum class Hinge + { + Left, + Right + }; + constexpr short AcaciaDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered) + { + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 8955; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 8987; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 8956; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 8988; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 8957; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 8989; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 8958; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 8990; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 8959; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 8991; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 8960; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 8992; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 8961; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 8930; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 8962; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 8931; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 8963; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 8932; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 8964; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 8933; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 8965; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 8934; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 8966; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 8935; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 8967; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 8936; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 8968; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 8937; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 8969; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 8938; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 8970; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 8939; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 8971; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 8940; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 8972; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 8941; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 8973; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 8942; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 8974; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 8943; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 8975; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 8944; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 8976; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 8945; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 8977; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 8946; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 8978; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 8947; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 8979; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 8948; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 8980; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 8949; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 8981; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 8950; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 8982; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 8951; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 8983; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 8952; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 8984; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 8953; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Right) return 8985; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 8954; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 8986; + return 8993; + } + short AcaciaDoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Hinge Hinge(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace AcaciaFence + { + constexpr short AcaciaFence(bool East, bool North, bool South, bool West) + { + if (!false && South && !West && East && North) return 8677; + if (!false && South && !West && East && !North) return 8685; + if (!false && South && !West && !East && North) return 8693; + if (!false && South && !West && !East && !North) return 8701; + if (false && !South && West && East && North) return 8678; + if (false && !South && West && East && !North) return 8686; + if (false && !South && West && !East && North) return 8694; + if (false && !South && West && !East && !North) return 8702; + if (false && !South && !West && East && North) return 8679; + if (false && !South && !West && East && !North) return 8687; + if (false && !South && !West && !East && North) return 8695; + if (false && !South && !West && !East && !North) return 8703; + if (!false && !South && West && East && North) return 8680; + if (!false && !South && West && East && !North) return 8688; + if (!false && !South && West && !East && North) return 8696; + if (!false && !South && West && !East && !North) return 8704; + if (!false && !South && !West && East && North) return 8681; + if (!false && !South && !West && East && !North) return 8689; + if (!false && !South && !West && !East && North) return 8697; + if (false && South && West && East && North) return 8674; + if (false && South && West && East && !North) return 8682; + if (false && South && West && !East && North) return 8690; + if (false && South && West && !East && !North) return 8698; + if (false && South && !West && East && North) return 8675; + if (false && South && !West && East && !North) return 8683; + if (false && South && !West && !East && North) return 8691; + if (false && South && !West && !East && !North) return 8699; + if (!false && South && West && East && North) return 8676; + if (!false && South && West && East && !North) return 8684; + if (!false && South && West && !East && North) return 8692; + if (!false && South && West && !East && !North) return 8700; + return 8705; + } + short AcaciaFence(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace AcaciaFenceGate + { + constexpr short AcaciaFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered) + { + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8522; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8530; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8538; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8515; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8523; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8531; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8539; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8516; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8524; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8532; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8540; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8517; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8525; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8533; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8541; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8518; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8526; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8534; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8542; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8519; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8527; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8535; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8543; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8520; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8528; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8536; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8544; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8521; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8529; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8537; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8514; + return 8545; + } + short AcaciaFenceGate(); + eBlockFace Facing(short ID); + bool InWall(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace AcaciaLeaves + { + constexpr short AcaciaLeaves(unsigned char Distance, bool Persistent) + { + if (Persistent && Distance == 7) return 213; + if (!Persistent && Distance == 3) return 206; + if (!Persistent && Distance == 7) return 214; + if (Persistent && Distance == 4) return 207; + if (!Persistent && Distance == 4) return 208; + if (Persistent && Distance == 1) return 201; + if (Persistent && Distance == 5) return 209; + if (!Persistent && Distance == 1) return 202; + if (!Persistent && Distance == 5) return 210; + if (Persistent && Distance == 2) return 203; + if (Persistent && Distance == 6) return 211; + if (!Persistent && Distance == 2) return 204; + if (!Persistent && Distance == 6) return 212; + return 205; + } + short AcaciaLeaves(); + unsigned char Distance(short ID); + bool Persistent(short ID); + } + namespace AcaciaLog + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short AcaciaLog(enum Axis Axis) + { + if (Axis == Axis::X) return 85; + if (Axis == Axis::Y) return 86; + return 87; + } + short AcaciaLog(); + enum Axis Axis(short ID); + } + namespace AcaciaPlanks + { + constexpr short AcaciaPlanks() + { + return 19; + } + } + namespace AcaciaPressurePlate + { + constexpr short AcaciaPressurePlate(bool Powered) + { + if (Powered) return 3881; + return 3882; + } + short AcaciaPressurePlate(); + bool Powered(short ID); + } + namespace AcaciaSapling + { + constexpr short AcaciaSapling(unsigned char Stage) + { + if (Stage == 0) return 29; + return 30; + } + short AcaciaSapling(); + unsigned char Stage(short ID); + } + namespace AcaciaSign + { + constexpr short AcaciaSign(unsigned char Rotation) + { + if (Rotation == 3 && false) return 3483; + if (Rotation == 4 && false) return 3485; + if (Rotation == 5 && false) return 3487; + if (Rotation == 6 && false) return 3489; + if (Rotation == 7 && false) return 3491; + if (Rotation == 8 && false) return 3493; + if (Rotation == 9 && false) return 3495; + if (Rotation == 10 && false) return 3497; + if (Rotation == 11 && false) return 3499; + if (Rotation == 12 && false) return 3501; + if (Rotation == 13 && false) return 3503; + if (Rotation == 14 && false) return 3505; + if (Rotation == 15 && false) return 3507; + if (Rotation == 0 && !false) return 3478; + if (Rotation == 1 && !false) return 3480; + if (Rotation == 2 && !false) return 3482; + if (Rotation == 3 && !false) return 3484; + if (Rotation == 4 && !false) return 3486; + if (Rotation == 5 && !false) return 3488; + if (Rotation == 6 && !false) return 3490; + if (Rotation == 7 && !false) return 3492; + if (Rotation == 8 && !false) return 3494; + if (Rotation == 9 && !false) return 3496; + if (Rotation == 10 && !false) return 3498; + if (Rotation == 11 && !false) return 3500; + if (Rotation == 12 && !false) return 3502; + if (Rotation == 13 && !false) return 3504; + if (Rotation == 14 && !false) return 3506; + if (Rotation == 0 && false) return 3477; + if (Rotation == 1 && false) return 3479; + if (Rotation == 2 && false) return 3481; + return 3508; + } + short AcaciaSign(); + unsigned char Rotation(short ID); + bool Waterlogged(short ID); + } + namespace AcaciaSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short AcaciaSlab(enum Type Type) + { + if (Type == Type::Top && !false) return 8325; + if (Type == Type::Double && !false) return 8329; + if (Type == Type::Bottom && false) return 8326; + if (Type == Type::Bottom && !false) return 8327; + if (Type == Type::Top && false) return 8324; + return 8328; + } + short AcaciaSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace AcaciaStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short AcaciaStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7425; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7426; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7427; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7428; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7429; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7430; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7431; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7432; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7433; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7434; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7435; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7436; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7437; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7438; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7375; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7439; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7376; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7440; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7377; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7441; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7378; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7442; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7379; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7443; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7380; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7444; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7381; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7445; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7382; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7446; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7383; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7447; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7384; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7448; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7385; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7449; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7386; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7450; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7387; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7451; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7388; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7452; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7389; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7453; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7390; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7454; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7391; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7392; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7393; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7394; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7395; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7396; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7397; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7398; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7399; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7400; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7401; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7402; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7403; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7404; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7405; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7406; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7407; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7408; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7409; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7410; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7411; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7412; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7413; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7414; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7415; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7416; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7417; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7418; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7419; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7420; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7421; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7422; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7423; + return 7424; + } + short AcaciaStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace AcaciaTrapdoor + { + enum class Half + { + Top, + Bottom + }; + constexpr short AcaciaTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered) + { + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4384; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4400; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4416; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4369; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4385; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4401; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4417; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4370; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4386; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4402; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4418; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4371; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4387; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4403; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4419; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4372; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4388; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4404; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4420; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4373; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4389; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4405; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4421; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4374; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4390; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4406; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4422; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4375; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4391; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4407; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4423; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4376; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4392; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4408; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4424; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4377; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4393; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4409; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4425; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4378; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4394; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4410; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4426; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4379; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4395; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4411; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4427; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4380; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4396; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4412; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4428; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4381; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4397; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4413; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4429; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4382; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4398; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4414; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4367; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4383; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4399; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4415; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4368; + return 4430; + } + short AcaciaTrapdoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + bool Open(short ID); + bool Powered(short ID); + bool Waterlogged(short ID); + } + namespace AcaciaWallSign + { + constexpr short AcaciaWallSign(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 3764; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 3765; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 3759; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 3760; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 3761; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 3762; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 3763; + return 3766; + } + short AcaciaWallSign(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace AcaciaWood + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short AcaciaWood(enum Axis Axis) + { + if (Axis == Axis::X) return 121; + if (Axis == Axis::Y) return 122; + return 123; + } + short AcaciaWood(); + enum Axis Axis(short ID); + } + namespace ActivatorRail + { + enum class Shape + { + NorthSouth, + EastWest, + AscendingEast, + AscendingWest, + AscendingNorth, + AscendingSouth + }; + constexpr short ActivatorRail(bool Powered, enum Shape Shape) + { + if (Shape == Shape::AscendingWest && Powered) return 6826; + if (Shape == Shape::AscendingNorth && Powered) return 6827; + if (Shape == Shape::AscendingSouth && Powered) return 6828; + if (Shape == Shape::NorthSouth && !Powered) return 6829; + if (Shape == Shape::EastWest && !Powered) return 6830; + if (Shape == Shape::AscendingEast && !Powered) return 6831; + if (Shape == Shape::AscendingWest && !Powered) return 6832; + if (Shape == Shape::AscendingNorth && !Powered) return 6833; + if (Shape == Shape::AscendingSouth && !Powered) return 6834; + if (Shape == Shape::NorthSouth && Powered) return 6823; + if (Shape == Shape::EastWest && Powered) return 6824; + return 6825; + } + short ActivatorRail(); + bool Powered(short ID); + enum Shape Shape(short ID); + } + namespace Air + { + constexpr short Air() + { + return -0; + } + } + namespace Allium + { + constexpr short Allium() + { + return 1415; + } + } + namespace AncientDebris + { + constexpr short AncientDebris() + { + return 15827; + } + } + namespace Andesite + { + constexpr short Andesite() + { + return 6; + } + } + namespace AndesiteSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short AndesiteSlab(enum Type Type) + { + if (Type == Type::Bottom && false) return 10845; + if (Type == Type::Bottom && !false) return 10846; + if (Type == Type::Top && false) return 10843; + if (Type == Type::Double && false) return 10847; + if (Type == Type::Top && !false) return 10844; + return 10848; + } + short AndesiteSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace AndesiteStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short AndesiteStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10469; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10470; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10471; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10472; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10473; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10474; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10475; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10476; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10477; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10478; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10479; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10480; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10481; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10482; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10483; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10484; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10485; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10486; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10487; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10488; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10489; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10490; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10491; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10492; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10493; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10494; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10495; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10496; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10497; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10498; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10499; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10500; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10501; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10502; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10503; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10504; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10505; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10506; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10507; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10508; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10509; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10510; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10511; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10512; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10513; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10514; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10515; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10516; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10517; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10518; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10519; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10520; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10521; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10522; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10523; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10524; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10525; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10526; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10527; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10528; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10529; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10530; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10531; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10532; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10533; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10534; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10535; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10536; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10537; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10538; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10539; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10540; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10541; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10542; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10543; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10544; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10545; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10546; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10547; + return 10548; + } + short AndesiteStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace AndesiteWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short AndesiteWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 13138; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 13142; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 13146; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 13150; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 13154; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 13158; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 13162; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 13166; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 13170; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 13174; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 13178; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 13182; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 13186; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 13190; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 13194; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 13198; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 13202; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 13206; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 13210; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 13214; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13218; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 13222; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 13226; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13230; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 13234; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 13238; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13242; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 13246; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 13250; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 13254; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 13258; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 13262; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 13266; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 13270; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 13274; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 13278; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 13282; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 13286; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13290; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 13294; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 13298; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13302; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 13306; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 13310; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13314; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 13318; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13322; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13326; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 13330; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13334; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13338; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 13342; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13346; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13350; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 13354; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 13358; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13362; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 13366; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 13370; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13374; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 13378; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 13382; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13386; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 13390; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13394; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13398; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 13402; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13406; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13410; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 13414; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13418; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13422; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 13426; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13430; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13434; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 13438; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13442; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13446; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 13450; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13454; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13458; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 13135; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 13139; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 13143; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 13147; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 13151; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 13155; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 13159; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 13163; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 13167; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 13171; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 13175; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 13179; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 13183; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 13187; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 13191; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 13195; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 13199; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 13203; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 13207; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 13211; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13215; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 13219; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 13223; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13227; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 13231; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 13235; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13239; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 13243; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 13247; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 13251; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 13255; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 13259; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 13263; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 13267; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 13271; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 13275; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 13279; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 13283; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13287; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 13291; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 13295; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13299; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 13303; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 13307; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13311; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 13315; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 13319; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13323; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 13327; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 13331; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13335; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 13339; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 13343; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13347; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 13351; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 13355; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13359; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 13363; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 13367; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13371; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 13375; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 13379; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13383; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 13387; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 13391; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13395; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 13399; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 13403; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13407; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 13411; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 13415; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13419; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 13423; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13427; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13431; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 13435; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13439; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13443; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 13447; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13451; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13455; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 13136; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 13140; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 13144; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 13148; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 13152; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 13156; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 13160; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 13164; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 13168; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 13172; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 13176; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 13180; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 13184; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 13188; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 13192; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 13196; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 13200; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 13204; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 13208; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 13212; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 13216; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 13220; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 13224; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 13228; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 13232; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 13236; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 13240; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 13244; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 13248; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 13252; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 13256; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 13260; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 13264; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 13268; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 13272; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 13276; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 13280; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 13284; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 13288; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 13292; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 13296; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 13300; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 13304; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 13308; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 13312; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 13316; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13320; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 13324; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 13328; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13332; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 13336; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 13340; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13344; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 13348; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 13352; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 13356; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 13360; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 13364; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 13368; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 13372; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 13376; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 13380; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 13384; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 13388; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13392; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 13396; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 13400; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13404; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 13408; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 13412; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13416; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 13420; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13424; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13428; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13432; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13436; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13440; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13444; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13448; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13452; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13456; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 13137; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 13141; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 13145; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 13149; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 13153; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 13157; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 13161; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 13165; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 13169; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 13173; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 13177; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 13181; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 13185; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 13189; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 13193; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 13197; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 13201; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 13205; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 13209; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 13213; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 13217; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 13221; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 13225; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 13229; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 13233; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 13237; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 13241; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 13245; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 13249; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 13253; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 13257; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 13261; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 13265; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 13269; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 13273; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 13277; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 13281; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 13285; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 13289; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 13293; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 13297; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 13301; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 13305; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 13309; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 13313; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13317; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 13321; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13325; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13329; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 13333; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13337; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13341; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 13345; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13349; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 13353; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 13357; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 13361; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 13365; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 13369; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 13373; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 13377; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 13381; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 13385; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13389; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 13393; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13397; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13401; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 13405; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13409; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13413; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 13417; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13421; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13425; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13429; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13433; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13437; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13441; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13445; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13449; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13453; + return 13457; + } + short AndesiteWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace Anvil + { + constexpr short Anvil(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6610; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6611; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 6612; + return 6613; + } + short Anvil(); + eBlockFace Facing(short ID); + } + namespace AttachedMelonStem + { + constexpr short AttachedMelonStem(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 4768; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 4769; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 4770; + return 4771; + } + short AttachedMelonStem(); + eBlockFace Facing(short ID); + } + namespace AttachedPumpkinStem + { + constexpr short AttachedPumpkinStem(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 4765; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 4766; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 4764; + return 4767; + } + short AttachedPumpkinStem(); + eBlockFace Facing(short ID); + } + namespace AzureBluet + { + constexpr short AzureBluet() + { + return 1416; + } + } + namespace Bamboo + { + enum class Leaves + { + None, + Small, + Large + }; + constexpr short Bamboo(unsigned char Age, enum Leaves Leaves, unsigned char Stage) + { + if (Leaves == Leaves::Small && Age == 1 && Stage == 0) return 9660; + if (Leaves == Leaves::Large && Age == 1 && Stage == 0) return 9662; + if (Leaves == Leaves::None && Age == 0 && Stage == 1) return 9653; + if (Leaves == Leaves::Small && Age == 0 && Stage == 1) return 9655; + if (Leaves == Leaves::Large && Age == 0 && Stage == 1) return 9657; + if (Leaves == Leaves::None && Age == 1 && Stage == 1) return 9659; + if (Leaves == Leaves::Small && Age == 1 && Stage == 1) return 9661; + if (Leaves == Leaves::Large && Age == 1 && Stage == 1) return 9663; + if (Leaves == Leaves::None && Age == 0 && Stage == 0) return 9652; + if (Leaves == Leaves::Small && Age == 0 && Stage == 0) return 9654; + if (Leaves == Leaves::Large && Age == 0 && Stage == 0) return 9656; + return 9658; + } + short Bamboo(); + unsigned char Age(short ID); + enum Leaves Leaves(short ID); + unsigned char Stage(short ID); + } + namespace BambooSapling + { + constexpr short BambooSapling() + { + return 9651; + } + } + namespace Barrel + { + constexpr short Barrel(eBlockFace Facing, bool Open) + { + if (!Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 14792; + if (!Open && Facing == eBlockFace::BLOCK_FACE_XP) return 14794; + if (!Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 14796; + if (!Open && Facing == eBlockFace::BLOCK_FACE_XM) return 14798; + if (!Open && Facing == eBlockFace::BLOCK_FACE_YP) return 14800; + if (!Open && Facing == eBlockFace::BLOCK_FACE_YM) return 14802; + if (Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 14791; + if (Open && Facing == eBlockFace::BLOCK_FACE_XP) return 14793; + if (Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 14795; + if (Open && Facing == eBlockFace::BLOCK_FACE_XM) return 14797; + if (Open && Facing == eBlockFace::BLOCK_FACE_YP) return 14799; + return 14801; + } + short Barrel(); + eBlockFace Facing(short ID); + bool Open(short ID); + } + namespace Barrier + { + constexpr short Barrier() + { + return 7536; + } + } + namespace Basalt + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short Basalt(enum Axis Axis) + { + if (Axis == Axis::Y) return 4003; + if (Axis == Axis::X) return 4002; + return 4004; + } + short Basalt(); + enum Axis Axis(short ID); + } + namespace Beacon + { + constexpr short Beacon() + { + return 5656; + } + } + namespace Bedrock + { + constexpr short Bedrock() + { + return 33; + } + } + namespace BeeNest + { + constexpr short BeeNest(eBlockFace Facing, unsigned char HoneyLevel) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 0) return 15776; + if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 2) return 15784; + if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 4) return 15792; + if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 1) return 15777; + if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 3) return 15785; + if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 5) return 15793; + if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 2) return 15778; + if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 4) return 15786; + if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 0) return 15794; + if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 3) return 15779; + if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 5) return 15787; + if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 1) return 15795; + if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 4) return 15780; + if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 0) return 15788; + if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 2) return 15796; + if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 5) return 15781; + if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 1) return 15789; + if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 3) return 15797; + if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 0) return 15782; + if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 2) return 15790; + if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 4) return 15798; + if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 1) return 15783; + if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 3) return 15791; + return 15799; + } + short BeeNest(); + eBlockFace Facing(short ID); + unsigned char HoneyLevel(short ID); + } + namespace Beehive + { + constexpr short Beehive(eBlockFace Facing, unsigned char HoneyLevel) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 1) return 15807; + if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 3) return 15815; + if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 5) return 15823; + if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 0) return 15800; + if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 2) return 15808; + if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 4) return 15816; + if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 1) return 15801; + if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 3) return 15809; + if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 5) return 15817; + if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 2) return 15802; + if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 4) return 15810; + if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 0) return 15818; + if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 3) return 15803; + if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 5) return 15811; + if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 1) return 15819; + if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 4) return 15804; + if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 0) return 15812; + if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 2) return 15820; + if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 5) return 15805; + if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 1) return 15813; + if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 3) return 15821; + if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 0) return 15806; + if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 2) return 15814; + return 15822; + } + short Beehive(); + eBlockFace Facing(short ID); + unsigned char HoneyLevel(short ID); + } + namespace Beetroots + { + constexpr short Beetroots(unsigned char Age) + { + if (Age == 0) return 9219; + if (Age == 2) return 9221; + if (Age == 1) return 9220; + return 9222; + } + short Beetroots(); + unsigned char Age(short ID); + } + namespace Bell + { + enum class Attachment + { + Floor, + Ceiling, + SingleWall, + DoubleWall + }; + constexpr short Bell(enum Attachment Attachment, eBlockFace Facing, bool Powered) + { + if (Attachment == Attachment::SingleWall && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 14877; + if (Attachment == Attachment::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 14854; + if (Attachment == Attachment::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 14862; + if (Attachment == Attachment::SingleWall && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 14870; + if (Attachment == Attachment::DoubleWall && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 14878; + if (Attachment == Attachment::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 14855; + if (Attachment == Attachment::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 14863; + if (Attachment == Attachment::SingleWall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 14871; + if (Attachment == Attachment::DoubleWall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 14879; + if (Attachment == Attachment::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 14856; + if (Attachment == Attachment::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 14864; + if (Attachment == Attachment::SingleWall && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 14872; + if (Attachment == Attachment::DoubleWall && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 14880; + if (Attachment == Attachment::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 14857; + if (Attachment == Attachment::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 14865; + if (Attachment == Attachment::SingleWall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 14873; + if (Attachment == Attachment::DoubleWall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 14881; + if (Attachment == Attachment::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 14858; + if (Attachment == Attachment::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 14866; + if (Attachment == Attachment::SingleWall && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 14874; + if (Attachment == Attachment::DoubleWall && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 14882; + if (Attachment == Attachment::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 14859; + if (Attachment == Attachment::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 14867; + if (Attachment == Attachment::SingleWall && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 14875; + if (Attachment == Attachment::DoubleWall && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 14883; + if (Attachment == Attachment::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 14860; + if (Attachment == Attachment::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 14868; + if (Attachment == Attachment::SingleWall && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 14876; + if (Attachment == Attachment::DoubleWall && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 14884; + if (Attachment == Attachment::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 14861; + if (Attachment == Attachment::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 14869; + return 14885; + } + short Bell(); + enum Attachment Attachment(short ID); + eBlockFace Facing(short ID); + bool Powered(short ID); + } + namespace BirchButton + { + enum class Face + { + Floor, + Wall, + Ceiling + }; + constexpr short BirchButton(enum Face Face, eBlockFace Facing, bool Powered) + { + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6404; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6408; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6412; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6416; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6397; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6401; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6405; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6409; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6413; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6417; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6394; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6398; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6402; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6406; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6410; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6414; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6395; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6399; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6403; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6407; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6411; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6415; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6396; + return 6400; + } + short BirchButton(); + enum Face Face(short ID); + eBlockFace Facing(short ID); + bool Powered(short ID); + } + namespace BirchDoor + { + enum class Half + { + Upper, + Lower + }; + enum class Hinge + { + Left, + Right + }; + constexpr short BirchDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered) + { + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 8829; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 8861; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 8830; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 8862; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 8831; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 8863; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 8832; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 8864; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 8833; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 8802; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 8834; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 8803; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 8835; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 8804; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 8836; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 8805; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 8837; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 8806; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 8838; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 8807; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 8839; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 8808; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 8840; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 8809; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 8841; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 8810; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 8842; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 8811; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 8843; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 8812; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 8844; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 8813; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 8845; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 8814; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 8846; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 8815; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 8847; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 8816; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 8848; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 8817; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 8849; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 8818; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 8850; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 8819; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 8851; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 8820; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 8852; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 8821; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 8853; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 8822; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 8854; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 8823; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 8855; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 8824; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 8856; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 8825; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Right) return 8857; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 8826; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 8858; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 8827; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 8859; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 8828; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 8860; + return 8865; + } + short BirchDoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Hinge Hinge(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace BirchFence + { + constexpr short BirchFence(bool East, bool North, bool South, bool West) + { + if (false && !South && !West && East && North) return 8615; + if (false && !South && !West && East && !North) return 8623; + if (false && !South && !West && !East && North) return 8631; + if (false && !South && !West && !East && !North) return 8639; + if (!false && !South && West && East && North) return 8616; + if (!false && !South && West && East && !North) return 8624; + if (!false && !South && West && !East && North) return 8632; + if (!false && !South && West && !East && !North) return 8640; + if (!false && !South && !West && East && North) return 8617; + if (!false && !South && !West && East && !North) return 8625; + if (!false && !South && !West && !East && North) return 8633; + if (false && South && West && East && North) return 8610; + if (false && South && West && East && !North) return 8618; + if (false && South && West && !East && North) return 8626; + if (false && South && West && !East && !North) return 8634; + if (false && South && !West && East && North) return 8611; + if (false && South && !West && East && !North) return 8619; + if (false && South && !West && !East && North) return 8627; + if (false && South && !West && !East && !North) return 8635; + if (!false && South && West && East && North) return 8612; + if (!false && South && West && East && !North) return 8620; + if (!false && South && West && !East && North) return 8628; + if (!false && South && West && !East && !North) return 8636; + if (!false && South && !West && East && North) return 8613; + if (!false && South && !West && East && !North) return 8621; + if (!false && South && !West && !East && North) return 8629; + if (!false && South && !West && !East && !North) return 8637; + if (false && !South && West && East && North) return 8614; + if (false && !South && West && East && !North) return 8622; + if (false && !South && West && !East && North) return 8630; + if (false && !South && West && !East && !North) return 8638; + return 8641; + } + short BirchFence(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace BirchFenceGate + { + constexpr short BirchFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered) + { + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8460; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8468; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8476; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8453; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8461; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8469; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8477; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8454; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8462; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8470; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8478; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8455; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8463; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8471; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8479; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8456; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8464; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8472; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8480; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8457; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8465; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8473; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8450; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8458; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8466; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8474; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8451; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8459; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8467; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8475; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8452; + return 8481; + } + short BirchFenceGate(); + eBlockFace Facing(short ID); + bool InWall(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace BirchLeaves + { + constexpr short BirchLeaves(unsigned char Distance, bool Persistent) + { + if (Persistent && Distance == 6) return 183; + if (!Persistent && Distance == 2) return 176; + if (!Persistent && Distance == 6) return 184; + if (Persistent && Distance == 3) return 177; + if (Persistent && Distance == 7) return 185; + if (!Persistent && Distance == 3) return 178; + if (!Persistent && Distance == 7) return 186; + if (Persistent && Distance == 4) return 179; + if (!Persistent && Distance == 4) return 180; + if (Persistent && Distance == 1) return 173; + if (Persistent && Distance == 5) return 181; + if (!Persistent && Distance == 1) return 174; + if (!Persistent && Distance == 5) return 182; + return 175; + } + short BirchLeaves(); + unsigned char Distance(short ID); + bool Persistent(short ID); + } + namespace BirchLog + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short BirchLog(enum Axis Axis) + { + if (Axis == Axis::X) return 79; + if (Axis == Axis::Y) return 80; + return 81; + } + short BirchLog(); + enum Axis Axis(short ID); + } + namespace BirchPlanks + { + constexpr short BirchPlanks() + { + return 17; + } + } + namespace BirchPressurePlate + { + constexpr short BirchPressurePlate(bool Powered) + { + if (Powered) return 3877; + return 3878; + } + short BirchPressurePlate(); + bool Powered(short ID); + } + namespace BirchSapling + { + constexpr short BirchSapling(unsigned char Stage) + { + if (Stage == 0) return 25; + return 26; + } + short BirchSapling(); + unsigned char Stage(short ID); + } + namespace BirchSign + { + constexpr short BirchSign(unsigned char Rotation) + { + if (Rotation == 3 && !false) return 3452; + if (Rotation == 4 && !false) return 3454; + if (Rotation == 5 && !false) return 3456; + if (Rotation == 6 && !false) return 3458; + if (Rotation == 7 && !false) return 3460; + if (Rotation == 8 && !false) return 3462; + if (Rotation == 9 && !false) return 3464; + if (Rotation == 10 && !false) return 3466; + if (Rotation == 11 && !false) return 3468; + if (Rotation == 12 && !false) return 3470; + if (Rotation == 13 && !false) return 3472; + if (Rotation == 14 && !false) return 3474; + if (Rotation == 0 && false) return 3445; + if (Rotation == 1 && false) return 3447; + if (Rotation == 2 && false) return 3449; + if (Rotation == 3 && false) return 3451; + if (Rotation == 4 && false) return 3453; + if (Rotation == 5 && false) return 3455; + if (Rotation == 6 && false) return 3457; + if (Rotation == 7 && false) return 3459; + if (Rotation == 8 && false) return 3461; + if (Rotation == 9 && false) return 3463; + if (Rotation == 10 && false) return 3465; + if (Rotation == 11 && false) return 3467; + if (Rotation == 12 && false) return 3469; + if (Rotation == 13 && false) return 3471; + if (Rotation == 14 && false) return 3473; + if (Rotation == 15 && false) return 3475; + if (Rotation == 0 && !false) return 3446; + if (Rotation == 1 && !false) return 3448; + if (Rotation == 2 && !false) return 3450; + return 3476; + } + short BirchSign(); + unsigned char Rotation(short ID); + bool Waterlogged(short ID); + } + namespace BirchSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short BirchSlab(enum Type Type) + { + if (Type == Type::Bottom && !false) return 8315; + if (Type == Type::Top && false) return 8312; + if (Type == Type::Double && false) return 8316; + if (Type == Type::Top && !false) return 8313; + if (Type == Type::Double && !false) return 8317; + return 8314; + } + short BirchSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace BirchStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short BirchStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5520; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5521; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5522; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5523; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5524; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5525; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5526; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5527; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5528; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5529; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5530; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5531; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5532; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5533; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5534; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5535; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5536; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5537; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5538; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5539; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5540; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5541; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5542; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5543; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5544; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5545; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5546; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5547; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5484; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5548; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5485; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5549; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5486; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5550; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5487; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5551; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5488; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5552; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5489; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5553; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5490; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5554; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5491; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5555; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5492; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5556; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5493; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5557; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5494; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5558; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5495; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5559; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5496; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5560; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5497; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5561; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5498; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5562; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5499; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5563; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5500; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5501; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5502; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5503; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5504; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5505; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5506; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5507; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5508; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5509; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5510; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5511; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5512; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5513; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5514; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5515; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5516; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5517; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5518; + return 5519; + } + short BirchStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace BirchTrapdoor + { + enum class Half + { + Top, + Bottom + }; + constexpr short BirchTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered) + { + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4258; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4274; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4290; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4243; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4259; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4275; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4291; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4244; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4260; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4276; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4292; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4245; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4261; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4277; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4293; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4246; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4262; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4278; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4294; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4247; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4263; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4279; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4295; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4248; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4264; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4280; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4296; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4249; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4265; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4281; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4297; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4250; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4266; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4282; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4298; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4251; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4267; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4283; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4299; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4252; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4268; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4284; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4300; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4253; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4269; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4285; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4301; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4254; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4270; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4286; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4239; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4255; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4271; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4287; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4240; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4256; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4272; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4288; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4241; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4257; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4273; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4289; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4242; + return 4302; + } + short BirchTrapdoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + bool Open(short ID); + bool Powered(short ID); + bool Waterlogged(short ID); + } + namespace BirchWallSign + { + constexpr short BirchWallSign(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 3757; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 3751; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 3752; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 3753; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 3754; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 3755; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 3756; + return 3758; + } + short BirchWallSign(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace BirchWood + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short BirchWood(enum Axis Axis) + { + if (Axis == Axis::X) return 115; + if (Axis == Axis::Y) return 116; + return 117; + } + short BirchWood(); + enum Axis Axis(short ID); + } + namespace BlackBanner + { + constexpr short BlackBanner(unsigned char Rotation) + { + if (Rotation == 9) return 8146; + if (Rotation == 10) return 8147; + if (Rotation == 11) return 8148; + if (Rotation == 12) return 8149; + if (Rotation == 13) return 8150; + if (Rotation == 14) return 8151; + if (Rotation == 0) return 8137; + if (Rotation == 1) return 8138; + if (Rotation == 2) return 8139; + if (Rotation == 3) return 8140; + if (Rotation == 4) return 8141; + if (Rotation == 5) return 8142; + if (Rotation == 6) return 8143; + if (Rotation == 7) return 8144; + if (Rotation == 8) return 8145; + return 8152; + } + short BlackBanner(); + unsigned char Rotation(short ID); + } + namespace BlackBed + { + enum class Part + { + Head, + Foot + }; + constexpr short BlackBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1302; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1291; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1295; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1299; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1303; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1292; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1296; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1300; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1289; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1293; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1297; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1301; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1290; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1294; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1298; + return 1304; + } + short BlackBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace BlackCarpet + { + constexpr short BlackCarpet() + { + return 7881; + } + } + namespace BlackConcrete + { + constexpr short BlackConcrete() + { + return 9453; + } + } + namespace BlackConcretePowder + { + constexpr short BlackConcretePowder() + { + return 9469; + } + } + namespace BlackGlazedTerracotta + { + constexpr short BlackGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9435; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9434; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9436; + return 9437; + } + short BlackGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace BlackShulkerBox + { + constexpr short BlackShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9368; + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9372; + if (Facing == eBlockFace::BLOCK_FACE_XP) return 9369; + if (Facing == eBlockFace::BLOCK_FACE_YM) return 9373; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9370; + return 9371; + } + short BlackShulkerBox(); + eBlockFace Facing(short ID); + } + namespace BlackStainedGlass + { + constexpr short BlackStainedGlass() + { + return 4110; + } + } + namespace BlackStainedGlassPane + { + constexpr short BlackStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (!false && !South && West && !East && North) return 7365; + if (!false && South && West && !East && !North) return 7369; + if (!false && !South && West && !East && !North) return 7373; + if (!false && South && !West && East && North) return 7346; + if (!false && !South && !West && East && North) return 7350; + if (!false && South && !West && East && !North) return 7354; + if (!false && !South && !West && East && !North) return 7358; + if (!false && South && !West && !East && North) return 7362; + if (!false && !South && !West && !East && North) return 7366; + if (!false && South && !West && !East && !North) return 7370; + if (false && South && West && East && North) return 7343; + if (false && !South && West && East && North) return 7347; + if (false && South && West && East && !North) return 7351; + if (false && !South && West && East && !North) return 7355; + if (false && South && West && !East && North) return 7359; + if (false && !South && West && !East && North) return 7363; + if (false && South && West && !East && !North) return 7367; + if (false && !South && West && !East && !North) return 7371; + if (false && South && !West && East && North) return 7344; + if (false && !South && !West && East && North) return 7348; + if (false && South && !West && East && !North) return 7352; + if (false && !South && !West && East && !North) return 7356; + if (false && South && !West && !East && North) return 7360; + if (false && !South && !West && !East && North) return 7364; + if (false && South && !West && !East && !North) return 7368; + if (false && !South && !West && !East && !North) return 7372; + if (!false && South && West && East && North) return 7345; + if (!false && !South && West && East && North) return 7349; + if (!false && South && West && East && !North) return 7353; + if (!false && !South && West && East && !North) return 7357; + if (!false && South && West && !East && North) return 7361; + return 7374; + } + short BlackStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace BlackTerracotta + { + constexpr short BlackTerracotta() + { + return 6862; + } + } + namespace BlackWallBanner + { + constexpr short BlackWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8214; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8213; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8215; + return 8216; + } + short BlackWallBanner(); + eBlockFace Facing(short ID); + } + namespace BlackWool + { + constexpr short BlackWool() + { + return 1399; + } + } + namespace Blackstone + { + constexpr short Blackstone() + { + return 15839; + } + } + namespace BlackstoneSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short BlackstoneSlab(enum Type Type) + { + if (Type == Type::Double && !false) return 16249; + if (Type == Type::Bottom && false) return 16246; + if (Type == Type::Bottom && !false) return 16247; + if (Type == Type::Top && false) return 16244; + if (Type == Type::Double && false) return 16248; + return 16245; + } + short BlackstoneSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace BlackstoneStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short BlackstoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15840; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15841; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15842; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15843; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15844; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15845; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15846; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15847; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15848; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15849; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15850; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15851; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15852; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15853; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15854; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15855; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15856; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15857; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15858; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15859; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15860; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15861; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15862; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15863; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15864; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15865; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15866; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15867; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15868; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15869; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15870; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15871; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15872; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15873; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15874; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15875; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15876; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15877; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15878; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15879; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 15880; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 15881; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15882; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15883; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15884; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15885; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15886; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15887; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15888; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15889; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 15890; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 15891; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15892; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15893; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15894; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15895; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15896; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15897; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15898; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15899; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 15900; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 15901; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15902; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15903; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15904; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15905; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15906; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15907; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15908; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15909; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 15910; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 15911; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15912; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15913; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15914; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15915; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15916; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15917; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15918; + return 15919; + } + short BlackstoneStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace BlackstoneWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short BlackstoneWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 16144; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 16148; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 16152; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 16156; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 16160; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 16164; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 16168; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 16172; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 16176; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 16180; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 16184; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 16188; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 16192; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 16196; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 16200; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 16204; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 16208; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 16212; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 16216; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 16220; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 16224; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 16228; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 16232; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 16236; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 16240; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 15921; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 15925; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 15929; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 15933; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 15937; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 15941; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 15945; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 15949; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 15953; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 15957; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 15961; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 15965; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 15969; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 15973; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 15977; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 15981; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 15985; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 15989; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 15993; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 15997; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 16001; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 16005; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 16009; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 16013; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 16017; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 16021; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 16025; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 16029; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 16033; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 16037; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 16041; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 16045; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 16049; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 16053; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 16057; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 16061; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 16065; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 16069; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 16073; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 16077; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 16081; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 16085; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 16089; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 16093; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 16097; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 16101; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16105; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 16109; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 16113; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16117; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 16121; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 16125; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16129; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 16133; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 16137; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 16141; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 16145; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 16149; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 16153; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 16157; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 16161; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 16165; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 16169; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 16173; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 16177; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 16181; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 16185; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 16189; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 16193; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 16197; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 16201; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 16205; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 16209; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 16213; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 16217; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 16221; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 16225; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 16229; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 16233; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 16237; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 16241; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 15922; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 15926; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 15930; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 15934; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 15938; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 15942; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 15946; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 15950; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 15954; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 15958; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 15962; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 15966; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 15970; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 15974; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 15978; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 15982; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 15986; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 15990; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 15994; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 15998; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 16002; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 16006; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 16010; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 16014; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 16018; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 16022; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 16026; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 16030; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 16034; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 16038; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 16042; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 16046; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 16050; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 16054; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 16058; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 16062; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 16066; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 16070; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 16074; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 16078; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 16082; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 16086; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 16090; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 16094; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 16098; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16102; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 16106; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16110; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16114; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 16118; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16122; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16126; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 16130; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16134; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 16138; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 16142; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 16146; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 16150; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 16154; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 16158; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 16162; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 16166; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 16170; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 16174; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 16178; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 16182; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 16186; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 16190; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 16194; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 16198; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 16202; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 16206; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 16210; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 16214; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 16218; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 16222; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 16226; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 16230; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 16234; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 16238; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 16242; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 15923; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 15927; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 15931; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 15935; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 15939; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 15943; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 15947; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 15951; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 15955; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 15959; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 15963; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 15967; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 15971; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 15975; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 15979; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 15983; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 15987; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 15991; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 15995; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 15999; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16003; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 16007; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 16011; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16015; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 16019; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 16023; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16027; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 16031; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 16035; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 16039; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 16043; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 16047; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 16051; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 16055; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 16059; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 16063; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 16067; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 16071; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16075; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 16079; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 16083; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16087; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 16091; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 16095; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16099; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 16103; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16107; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16111; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 16115; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16119; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16123; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 16127; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16131; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16135; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 16139; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 16143; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 16147; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 16151; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 16155; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 16159; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 16163; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 16167; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 16171; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 16175; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 16179; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 16183; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 16187; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 16191; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 16195; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 16199; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 16203; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 16207; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 16211; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 16215; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 16219; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 16223; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 16227; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 16231; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 16235; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 16239; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 16243; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 15920; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 15924; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 15928; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 15932; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 15936; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 15940; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 15944; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 15948; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 15952; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 15956; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 15960; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 15964; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 15968; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 15972; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 15976; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 15980; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 15984; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 15988; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 15992; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 15996; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16000; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 16004; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 16008; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16012; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 16016; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 16020; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16024; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 16028; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 16032; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 16036; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 16040; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 16044; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 16048; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 16052; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 16056; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 16060; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 16064; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 16068; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16072; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 16076; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 16080; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16084; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 16088; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 16092; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16096; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 16100; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 16104; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16108; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 16112; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 16116; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16120; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 16124; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 16128; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16132; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 16136; + return 16140; + } + short BlackstoneWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace BlastFurnace + { + constexpr short BlastFurnace(eBlockFace Facing, bool Lit) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP && !Lit) return 14814; + if (Facing == eBlockFace::BLOCK_FACE_ZM && Lit) return 14811; + if (Facing == eBlockFace::BLOCK_FACE_XM && Lit) return 14815; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !Lit) return 14812; + if (Facing == eBlockFace::BLOCK_FACE_XM && !Lit) return 14816; + if (Facing == eBlockFace::BLOCK_FACE_ZP && Lit) return 14813; + if (Facing == eBlockFace::BLOCK_FACE_XP && Lit) return 14817; + return 14818; + } + short BlastFurnace(); + eBlockFace Facing(short ID); + bool Lit(short ID); + } + namespace BlueBanner + { + constexpr short BlueBanner(unsigned char Rotation) + { + if (Rotation == 13) return 8086; + if (Rotation == 14) return 8087; + if (Rotation == 0) return 8073; + if (Rotation == 1) return 8074; + if (Rotation == 2) return 8075; + if (Rotation == 3) return 8076; + if (Rotation == 4) return 8077; + if (Rotation == 5) return 8078; + if (Rotation == 6) return 8079; + if (Rotation == 7) return 8080; + if (Rotation == 8) return 8081; + if (Rotation == 9) return 8082; + if (Rotation == 10) return 8083; + if (Rotation == 11) return 8084; + if (Rotation == 12) return 8085; + return 8088; + } + short BlueBanner(); + unsigned char Rotation(short ID); + } + namespace BlueBed + { + enum class Part + { + Head, + Foot + }; + constexpr short BlueBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1227; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1231; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1235; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1239; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1228; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1232; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1236; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1225; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1229; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1233; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1237; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1226; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1230; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1234; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1238; + return 1240; + } + short BlueBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace BlueCarpet + { + constexpr short BlueCarpet() + { + return 7877; + } + } + namespace BlueConcrete + { + constexpr short BlueConcrete() + { + return 9449; + } + } + namespace BlueConcretePowder + { + constexpr short BlueConcretePowder() + { + return 9465; + } + } + namespace BlueGlazedTerracotta + { + constexpr short BlueGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9420; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9419; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9418; + return 9421; + } + short BlueGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace BlueIce + { + constexpr short BlueIce() + { + return 9648; + } + } + namespace BlueOrchid + { + constexpr short BlueOrchid() + { + return 1414; + } + } + namespace BlueShulkerBox + { + constexpr short BlueShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9347; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9344; + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9348; + if (Facing == eBlockFace::BLOCK_FACE_XP) return 9345; + if (Facing == eBlockFace::BLOCK_FACE_YM) return 9349; + return 9346; + } + short BlueShulkerBox(); + eBlockFace Facing(short ID); + } + namespace BlueStainedGlass + { + constexpr short BlueStainedGlass() + { + return 4106; + } + } + namespace BlueStainedGlassPane + { + constexpr short BlueStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (!false && South && West && !East && !North) return 7241; + if (!false && !South && West && !East && !North) return 7245; + if (!false && South && !West && East && North) return 7218; + if (!false && !South && !West && East && North) return 7222; + if (!false && South && !West && East && !North) return 7226; + if (!false && !South && !West && East && !North) return 7230; + if (!false && South && !West && !East && North) return 7234; + if (!false && !South && !West && !East && North) return 7238; + if (!false && South && !West && !East && !North) return 7242; + if (false && South && West && East && North) return 7215; + if (false && !South && West && East && North) return 7219; + if (false && South && West && East && !North) return 7223; + if (false && !South && West && East && !North) return 7227; + if (false && South && West && !East && North) return 7231; + if (false && !South && West && !East && North) return 7235; + if (false && South && West && !East && !North) return 7239; + if (false && !South && West && !East && !North) return 7243; + if (false && South && !West && East && North) return 7216; + if (false && !South && !West && East && North) return 7220; + if (false && South && !West && East && !North) return 7224; + if (false && !South && !West && East && !North) return 7228; + if (false && South && !West && !East && North) return 7232; + if (false && !South && !West && !East && North) return 7236; + if (false && South && !West && !East && !North) return 7240; + if (false && !South && !West && !East && !North) return 7244; + if (!false && South && West && East && North) return 7217; + if (!false && !South && West && East && North) return 7221; + if (!false && South && West && East && !North) return 7225; + if (!false && !South && West && East && !North) return 7229; + if (!false && South && West && !East && North) return 7233; + if (!false && !South && West && !East && North) return 7237; + return 7246; + } + short BlueStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace BlueTerracotta + { + constexpr short BlueTerracotta() + { + return 6858; + } + } + namespace BlueWallBanner + { + constexpr short BlueWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8199; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8198; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8197; + return 8200; + } + short BlueWallBanner(); + eBlockFace Facing(short ID); + } + namespace BlueWool + { + constexpr short BlueWool() + { + return 1395; + } + } + namespace BoneBlock + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short BoneBlock(enum Axis Axis) + { + if (Axis == Axis::Z) return 9258; + if (Axis == Axis::Y) return 9257; + return 9256; + } + short BoneBlock(); + enum Axis Axis(short ID); + } + namespace Bookshelf + { + constexpr short Bookshelf() + { + return 1432; + } + } + namespace BrainCoral + { + constexpr short BrainCoral() + { + if (false) return 9532; + return 9533; + } + bool Waterlogged(short ID); + } + namespace BrainCoralBlock + { + constexpr short BrainCoralBlock() + { + return 9516; + } + } + namespace BrainCoralFan + { + constexpr short BrainCoralFan() + { + if (false) return 9552; + return 9553; + } + bool Waterlogged(short ID); + } + namespace BrainCoralWallFan + { + constexpr short BrainCoralWallFan(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 9613; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 9610; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 9614; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 9611; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 9608; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 9612; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 9609; + return 9615; + } + short BrainCoralWallFan(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace BrewingStand + { + constexpr short BrewingStand(bool HasBottle_0, bool HasBottle_1, bool HasBottle_2) + { + if (HasBottle_0 && HasBottle_1 && HasBottle_2) return 5133; + if (HasBottle_0 && !HasBottle_1 && HasBottle_2) return 5135; + if (!HasBottle_0 && HasBottle_1 && HasBottle_2) return 5137; + if (!HasBottle_0 && !HasBottle_1 && HasBottle_2) return 5139; + if (HasBottle_0 && HasBottle_1 && !HasBottle_2) return 5134; + if (HasBottle_0 && !HasBottle_1 && !HasBottle_2) return 5136; + if (!HasBottle_0 && HasBottle_1 && !HasBottle_2) return 5138; + return 5140; + } + short BrewingStand(); + bool HasBottle_0(short ID); + bool HasBottle_1(short ID); + bool HasBottle_2(short ID); + } + namespace BrickSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short BrickSlab(enum Type Type) + { + if (Type == Type::Bottom && false) return 8374; + if (Type == Type::Bottom && !false) return 8375; + if (Type == Type::Top && false) return 8372; + if (Type == Type::Double && false) return 8376; + if (Type == Type::Top && !false) return 8373; + return 8377; + } + short BrickSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace BrickStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short BrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 4885; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4886; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4887; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 4888; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 4889; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4890; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4891; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 4892; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 4893; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4894; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4895; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4896; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4897; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4898; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4899; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4900; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4901; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 4902; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 4903; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4904; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4905; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4906; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4907; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4908; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4909; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4910; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4911; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 4912; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 4913; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 4914; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 4915; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4852; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 4916; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4853; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 4917; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 4854; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 4918; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 4855; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 4919; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4856; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 4920; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4857; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 4921; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 4858; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 4922; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 4859; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 4923; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4860; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 4924; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4861; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 4925; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4862; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 4926; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4863; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 4927; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 4864; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 4928; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 4865; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 4929; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4866; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 4930; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4867; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 4931; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 4868; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 4869; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4870; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4871; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4872; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4873; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 4874; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 4875; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4876; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4877; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 4878; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 4879; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4880; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4881; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4882; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4883; + return 4884; + } + short BrickStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace BrickWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short BrickWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11034; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 11038; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 11042; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11046; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 11050; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11054; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11058; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 11062; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11066; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11070; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 11074; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11078; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11082; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 11086; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 11090; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11094; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 11098; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 11102; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11106; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 11110; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 11114; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11118; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 11122; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11126; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11130; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 11134; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11138; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11142; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 11146; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11150; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11154; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 11158; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11162; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11166; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 11170; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11174; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11178; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 11182; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11186; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11190; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 10867; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 10871; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 10875; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 10879; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 10883; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 10887; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 10891; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 10895; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 10899; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 10903; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 10907; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 10911; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 10915; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 10919; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 10923; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 10927; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 10931; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 10935; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 10939; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 10943; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 10947; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 10951; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 10955; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 10959; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 10963; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 10967; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 10971; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 10975; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 10979; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 10983; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 10987; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 10991; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 10995; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 10999; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 11003; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 11007; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 11011; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 11015; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11019; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 11023; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 11027; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11031; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 11035; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 11039; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11043; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 11047; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 11051; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11055; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 11059; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 11063; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11067; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 11071; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 11075; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11079; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 11083; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 11087; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11091; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 11095; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 11099; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11103; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 11107; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 11111; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11115; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 11119; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 11123; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11127; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 11131; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 11135; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11139; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 11143; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 11147; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11151; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 11155; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11159; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11163; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 11167; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11171; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11175; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 11179; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11183; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11187; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 10868; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 10872; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 10876; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 10880; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 10884; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 10888; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 10892; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 10896; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 10900; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 10904; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 10908; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 10912; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 10916; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 10920; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 10924; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 10928; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 10932; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 10936; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 10940; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 10944; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 10948; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 10952; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 10956; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 10960; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 10964; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 10968; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 10972; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 10976; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 10980; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 10984; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 10988; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 10992; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 10996; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 11000; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 11004; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 11008; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 11012; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 11016; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 11020; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 11024; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 11028; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 11032; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 11036; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 11040; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 11044; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 11048; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11052; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 11056; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 11060; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11064; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 11068; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 11072; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11076; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 11080; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 11084; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 11088; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 11092; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 11096; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 11100; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 11104; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 11108; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 11112; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 11116; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 11120; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11124; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 11128; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 11132; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11136; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 11140; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 11144; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11148; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 11152; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11156; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11160; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11164; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11168; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11172; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11176; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11180; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11184; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11188; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 10869; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 10873; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 10877; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 10881; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 10885; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 10889; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 10893; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 10897; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 10901; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 10905; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 10909; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 10913; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 10917; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 10921; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 10925; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 10929; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 10933; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 10937; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 10941; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 10945; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 10949; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 10953; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 10957; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 10961; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 10965; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 10969; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 10973; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 10977; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 10981; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 10985; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 10989; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 10993; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 10997; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 11001; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 11005; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 11009; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 11013; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 11017; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 11021; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 11025; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 11029; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 11033; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 11037; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 11041; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 11045; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11049; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 11053; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11057; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11061; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 11065; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11069; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11073; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 11077; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11081; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 11085; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 11089; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 11093; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 11097; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 11101; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 11105; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 11109; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 11113; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 11117; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11121; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 11125; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11129; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11133; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 11137; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11141; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11145; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 11149; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11153; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11157; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11161; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11165; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11169; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11173; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11177; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11181; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11185; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11189; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 10870; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 10874; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 10878; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 10882; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 10886; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 10890; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 10894; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 10898; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 10902; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 10906; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 10910; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 10914; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 10918; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 10922; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 10926; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 10930; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 10934; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 10938; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 10942; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 10946; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 10950; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 10954; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 10958; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 10962; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 10966; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 10970; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 10974; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 10978; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 10982; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 10986; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 10990; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 10994; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 10998; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 11002; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 11006; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 11010; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 11014; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 11018; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11022; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 11026; + return 11030; + } + short BrickWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace Bricks + { + constexpr short Bricks() + { + return 1429; + } + } + namespace BrownBanner + { + constexpr short BrownBanner(unsigned char Rotation) + { + if (Rotation == 12) return 8101; + if (Rotation == 13) return 8102; + if (Rotation == 14) return 8103; + if (Rotation == 0) return 8089; + if (Rotation == 1) return 8090; + if (Rotation == 2) return 8091; + if (Rotation == 3) return 8092; + if (Rotation == 4) return 8093; + if (Rotation == 5) return 8094; + if (Rotation == 6) return 8095; + if (Rotation == 7) return 8096; + if (Rotation == 8) return 8097; + if (Rotation == 9) return 8098; + if (Rotation == 10) return 8099; + if (Rotation == 11) return 8100; + return 8104; + } + short BrownBanner(); + unsigned char Rotation(short ID); + } + namespace BrownBed + { + enum class Part + { + Head, + Foot + }; + constexpr short BrownBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1242; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1246; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1250; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1254; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1243; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1247; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1251; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1255; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1244; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1248; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1252; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1241; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1245; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1249; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1253; + return 1256; + } + short BrownBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace BrownCarpet + { + constexpr short BrownCarpet() + { + return 7878; + } + } + namespace BrownConcrete + { + constexpr short BrownConcrete() + { + return 9450; + } + } + namespace BrownConcretePowder + { + constexpr short BrownConcretePowder() + { + return 9466; + } + } + namespace BrownGlazedTerracotta + { + constexpr short BrownGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9423; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9422; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9424; + return 9425; + } + short BrownGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace BrownMushroom + { + constexpr short BrownMushroom() + { + return 1425; + } + } + namespace BrownMushroomBlock + { + constexpr short BrownMushroomBlock(bool Down, bool East, bool North, bool South, bool Up, bool West) + { + if (Up && !West && East && !South && Down && North) return 4510; + if (Up && !West && !East && !South && Down && North) return 4526; + if (Up && !West && East && !South && !Down && North) return 4542; + if (Up && !West && !East && !South && !Down && North) return 4558; + if (!Up && West && East && !South && Down && North) return 4511; + if (!Up && West && !East && !South && Down && North) return 4527; + if (!Up && West && East && !South && !Down && North) return 4543; + if (!Up && West && !East && !South && !Down && North) return 4559; + if (!Up && !West && East && !South && Down && North) return 4512; + if (!Up && !West && !East && !South && Down && North) return 4528; + if (!Up && !West && East && !South && !Down && North) return 4544; + if (!Up && !West && !East && !South && !Down && North) return 4560; + if (Up && West && East && South && Down && !North) return 4513; + if (Up && West && !East && South && Down && !North) return 4529; + if (Up && West && East && South && !Down && !North) return 4545; + if (Up && West && !East && South && !Down && !North) return 4561; + if (Up && !West && East && South && Down && !North) return 4514; + if (Up && !West && !East && South && Down && !North) return 4530; + if (Up && !West && East && South && !Down && !North) return 4546; + if (Up && !West && !East && South && !Down && !North) return 4562; + if (!Up && West && East && South && Down && !North) return 4515; + if (!Up && West && !East && South && Down && !North) return 4531; + if (!Up && West && East && South && !Down && !North) return 4547; + if (!Up && West && !East && South && !Down && !North) return 4563; + if (!Up && !West && East && South && Down && !North) return 4516; + if (!Up && !West && !East && South && Down && !North) return 4532; + if (!Up && !West && East && South && !Down && !North) return 4548; + if (!Up && !West && !East && South && !Down && !North) return 4564; + if (Up && West && East && !South && Down && !North) return 4517; + if (Up && West && !East && !South && Down && !North) return 4533; + if (Up && West && East && !South && !Down && !North) return 4549; + if (Up && West && !East && !South && !Down && !North) return 4565; + if (Up && !West && East && !South && Down && !North) return 4518; + if (Up && !West && !East && !South && Down && !North) return 4534; + if (Up && !West && East && !South && !Down && !North) return 4550; + if (Up && !West && !East && !South && !Down && !North) return 4566; + if (!Up && West && East && !South && Down && !North) return 4519; + if (!Up && West && !East && !South && Down && !North) return 4535; + if (!Up && West && East && !South && !Down && !North) return 4551; + if (!Up && West && !East && !South && !Down && !North) return 4567; + if (!Up && !West && East && !South && Down && !North) return 4520; + if (!Up && !West && !East && !South && Down && !North) return 4536; + if (!Up && !West && East && !South && !Down && !North) return 4552; + if (Up && West && East && South && Down && North) return 4505; + if (Up && West && !East && South && Down && North) return 4521; + if (Up && West && East && South && !Down && North) return 4537; + if (Up && West && !East && South && !Down && North) return 4553; + if (Up && !West && East && South && Down && North) return 4506; + if (Up && !West && !East && South && Down && North) return 4522; + if (Up && !West && East && South && !Down && North) return 4538; + if (Up && !West && !East && South && !Down && North) return 4554; + if (!Up && West && East && South && Down && North) return 4507; + if (!Up && West && !East && South && Down && North) return 4523; + if (!Up && West && East && South && !Down && North) return 4539; + if (!Up && West && !East && South && !Down && North) return 4555; + if (!Up && !West && East && South && Down && North) return 4508; + if (!Up && !West && !East && South && Down && North) return 4524; + if (!Up && !West && East && South && !Down && North) return 4540; + if (!Up && !West && !East && South && !Down && North) return 4556; + if (Up && West && East && !South && Down && North) return 4509; + if (Up && West && !East && !South && Down && North) return 4525; + if (Up && West && East && !South && !Down && North) return 4541; + if (Up && West && !East && !South && !Down && North) return 4557; + return 4568; + } + short BrownMushroomBlock(); + bool Down(short ID); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Up(short ID); + bool West(short ID); + } + namespace BrownShulkerBox + { + constexpr short BrownShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9354; + if (Facing == eBlockFace::BLOCK_FACE_XP) return 9351; + if (Facing == eBlockFace::BLOCK_FACE_YM) return 9355; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9352; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9353; + return 9350; + } + short BrownShulkerBox(); + eBlockFace Facing(short ID); + } + namespace BrownStainedGlass + { + constexpr short BrownStainedGlass() + { + return 4107; + } + } + namespace BrownStainedGlassPane + { + constexpr short BrownStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (false && South && !West && !East && !North) return 7272; + if (false && !South && !West && !East && !North) return 7276; + if (!false && South && West && East && North) return 7249; + if (!false && !South && West && East && North) return 7253; + if (!false && South && West && East && !North) return 7257; + if (!false && !South && West && East && !North) return 7261; + if (!false && South && West && !East && North) return 7265; + if (!false && !South && West && !East && North) return 7269; + if (!false && South && West && !East && !North) return 7273; + if (!false && !South && West && !East && !North) return 7277; + if (!false && South && !West && East && North) return 7250; + if (!false && !South && !West && East && North) return 7254; + if (!false && South && !West && East && !North) return 7258; + if (!false && !South && !West && East && !North) return 7262; + if (!false && South && !West && !East && North) return 7266; + if (!false && !South && !West && !East && North) return 7270; + if (!false && South && !West && !East && !North) return 7274; + if (false && South && West && East && North) return 7247; + if (false && !South && West && East && North) return 7251; + if (false && South && West && East && !North) return 7255; + if (false && !South && West && East && !North) return 7259; + if (false && South && West && !East && North) return 7263; + if (false && !South && West && !East && North) return 7267; + if (false && South && West && !East && !North) return 7271; + if (false && !South && West && !East && !North) return 7275; + if (false && South && !West && East && North) return 7248; + if (false && !South && !West && East && North) return 7252; + if (false && South && !West && East && !North) return 7256; + if (false && !South && !West && East && !North) return 7260; + if (false && South && !West && !East && North) return 7264; + if (false && !South && !West && !East && North) return 7268; + return 7278; + } + short BrownStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace BrownTerracotta + { + constexpr short BrownTerracotta() + { + return 6859; + } + } + namespace BrownWallBanner + { + constexpr short BrownWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8202; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8201; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8203; + return 8204; + } + short BrownWallBanner(); + eBlockFace Facing(short ID); + } + namespace BrownWool + { + constexpr short BrownWool() + { + return 1396; + } + } + namespace BubbleColumn + { + constexpr short BubbleColumn(bool Drag) + { + if (Drag) return 9667; + return 9668; + } + short BubbleColumn(); + bool Drag(short ID); + } + namespace BubbleCoral + { + constexpr short BubbleCoral() + { + if (false) return 9534; + return 9535; + } + bool Waterlogged(short ID); + } + namespace BubbleCoralBlock + { + constexpr short BubbleCoralBlock() + { + return 9517; + } + } + namespace BubbleCoralFan + { + constexpr short BubbleCoralFan() + { + if (false) return 9554; + return 9555; + } + bool Waterlogged(short ID); + } + namespace BubbleCoralWallFan + { + constexpr short BubbleCoralWallFan(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 9620; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 9617; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 9621; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 9618; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 9622; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 9619; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 9616; + return 9623; + } + short BubbleCoralWallFan(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace Cactus + { + constexpr short Cactus(unsigned char Age) + { + if (Age == 0) return 3931; + if (Age == 8) return 3939; + if (Age == 1) return 3932; + if (Age == 9) return 3940; + if (Age == 2) return 3933; + if (Age == 10) return 3941; + if (Age == 3) return 3934; + if (Age == 11) return 3942; + if (Age == 4) return 3935; + if (Age == 12) return 3943; + if (Age == 5) return 3936; + if (Age == 13) return 3944; + if (Age == 6) return 3937; + if (Age == 14) return 3945; + if (Age == 7) return 3938; + return 3946; + } + short Cactus(); + unsigned char Age(short ID); + } + namespace Cake + { + constexpr short Cake(unsigned char Bites) + { + if (Bites == 6) return 4030; + if (Bites == 0) return 4024; + if (Bites == 1) return 4025; + if (Bites == 2) return 4026; + if (Bites == 3) return 4027; + if (Bites == 4) return 4028; + return 4029; + } + short Cake(); + unsigned char Bites(short ID); + } + namespace Campfire + { + constexpr short Campfire(eBlockFace Facing, bool Lit, bool SignalFire) + { + if (Facing == eBlockFace::BLOCK_FACE_XM && false && !SignalFire && Lit) return 14908; + if (Facing == eBlockFace::BLOCK_FACE_XP && false && !SignalFire && Lit) return 14916; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false && !SignalFire && Lit) return 14893; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false && !SignalFire && Lit) return 14901; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false && !SignalFire && Lit) return 14909; + if (Facing == eBlockFace::BLOCK_FACE_XP && !false && !SignalFire && Lit) return 14917; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false && SignalFire && !Lit) return 14894; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false && SignalFire && !Lit) return 14902; + if (Facing == eBlockFace::BLOCK_FACE_XM && false && SignalFire && !Lit) return 14910; + if (Facing == eBlockFace::BLOCK_FACE_XP && false && SignalFire && !Lit) return 14918; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false && SignalFire && !Lit) return 14895; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false && SignalFire && !Lit) return 14903; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false && SignalFire && !Lit) return 14911; + if (Facing == eBlockFace::BLOCK_FACE_XP && !false && SignalFire && !Lit) return 14919; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false && !SignalFire && !Lit) return 14896; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false && !SignalFire && !Lit) return 14904; + if (Facing == eBlockFace::BLOCK_FACE_XM && false && !SignalFire && !Lit) return 14912; + if (Facing == eBlockFace::BLOCK_FACE_XP && false && !SignalFire && !Lit) return 14920; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false && !SignalFire && !Lit) return 14897; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false && !SignalFire && !Lit) return 14905; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false && !SignalFire && !Lit) return 14913; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false && SignalFire && Lit) return 14890; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false && SignalFire && Lit) return 14898; + if (Facing == eBlockFace::BLOCK_FACE_XM && false && SignalFire && Lit) return 14906; + if (Facing == eBlockFace::BLOCK_FACE_XP && false && SignalFire && Lit) return 14914; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false && SignalFire && Lit) return 14891; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false && SignalFire && Lit) return 14899; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false && SignalFire && Lit) return 14907; + if (Facing == eBlockFace::BLOCK_FACE_XP && !false && SignalFire && Lit) return 14915; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false && !SignalFire && Lit) return 14892; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false && !SignalFire && Lit) return 14900; + return 14921; + } + short Campfire(); + eBlockFace Facing(short ID); + bool Lit(short ID); + bool SignalFire(short ID); + bool Waterlogged(short ID); + } + namespace Carrots + { + constexpr short Carrots(unsigned char Age) + { + if (Age == 0) return 6330; + if (Age == 2) return 6332; + if (Age == 4) return 6334; + if (Age == 6) return 6336; + if (Age == 1) return 6331; + if (Age == 3) return 6333; + if (Age == 5) return 6335; + return 6337; + } + short Carrots(); + unsigned char Age(short ID); + } + namespace CartographyTable + { + constexpr short CartographyTable() + { + return 14819; + } + } + namespace CarvedPumpkin + { + constexpr short CarvedPumpkin(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 4018; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 4017; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 4016; + return 4019; + } + short CarvedPumpkin(); + eBlockFace Facing(short ID); + } + namespace Cauldron + { + constexpr short Cauldron(unsigned char Level) + { + if (Level == 2) return 5143; + if (Level == 0) return 5141; + if (Level == 1) return 5142; + return 5144; + } + short Cauldron(); + unsigned char Level(short ID); + } + namespace CaveAir + { + constexpr short CaveAir() + { + return 9666; + } + } + namespace Chain + { + constexpr short Chain() + { + if (false) return 4729; + return 4730; + } + bool Waterlogged(short ID); + } + namespace ChainCommandBlock + { + constexpr short ChainCommandBlock(bool Conditional, eBlockFace Facing) + { + if (Conditional && Facing == eBlockFace::BLOCK_FACE_XM) return 9240; + if (Conditional && Facing == eBlockFace::BLOCK_FACE_YM) return 9242; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_XP) return 9244; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_XM) return 9246; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_YM) return 9248; + if (Conditional && Facing == eBlockFace::BLOCK_FACE_ZM) return 9237; + if (Conditional && Facing == eBlockFace::BLOCK_FACE_ZP) return 9239; + if (Conditional && Facing == eBlockFace::BLOCK_FACE_YP) return 9241; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_ZM) return 9243; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_ZP) return 9245; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_YP) return 9247; + return 9238; + } + short ChainCommandBlock(); + bool Conditional(short ID); + eBlockFace Facing(short ID); + } + namespace Chest + { + enum class Type + { + Single, + Left, + Right + }; + constexpr short Chest(eBlockFace Facing, enum Type Type) + { + if (Type == Type::Left && !false && Facing == eBlockFace::BLOCK_FACE_ZM) return 2037; + if (Type == Type::Right && false && Facing == eBlockFace::BLOCK_FACE_ZM) return 2038; + if (Type == Type::Right && !false && Facing == eBlockFace::BLOCK_FACE_ZM) return 2039; + if (Type == Type::Single && false && Facing == eBlockFace::BLOCK_FACE_ZP) return 2040; + if (Type == Type::Single && !false && Facing == eBlockFace::BLOCK_FACE_ZP) return 2041; + if (Type == Type::Left && false && Facing == eBlockFace::BLOCK_FACE_ZP) return 2042; + if (Type == Type::Left && !false && Facing == eBlockFace::BLOCK_FACE_ZP) return 2043; + if (Type == Type::Right && false && Facing == eBlockFace::BLOCK_FACE_ZP) return 2044; + if (Type == Type::Right && !false && Facing == eBlockFace::BLOCK_FACE_ZP) return 2045; + if (Type == Type::Single && false && Facing == eBlockFace::BLOCK_FACE_XM) return 2046; + if (Type == Type::Single && !false && Facing == eBlockFace::BLOCK_FACE_XM) return 2047; + if (Type == Type::Left && false && Facing == eBlockFace::BLOCK_FACE_XM) return 2048; + if (Type == Type::Right && false && Facing == eBlockFace::BLOCK_FACE_XM) return 2050; + if (Type == Type::Single && false && Facing == eBlockFace::BLOCK_FACE_XP) return 2052; + if (Type == Type::Left && false && Facing == eBlockFace::BLOCK_FACE_XP) return 2054; + if (Type == Type::Right && false && Facing == eBlockFace::BLOCK_FACE_XP) return 2056; + if (Type == Type::Right && !false && Facing == eBlockFace::BLOCK_FACE_XP) return 2057; + if (Type == Type::Left && !false && Facing == eBlockFace::BLOCK_FACE_XP) return 2055; + if (Type == Type::Single && !false && Facing == eBlockFace::BLOCK_FACE_XP) return 2053; + if (Type == Type::Left && !false && Facing == eBlockFace::BLOCK_FACE_XM) return 2049; + if (Type == Type::Single && false && Facing == eBlockFace::BLOCK_FACE_ZM) return 2034; + if (Type == Type::Single && !false && Facing == eBlockFace::BLOCK_FACE_ZM) return 2035; + if (Type == Type::Left && false && Facing == eBlockFace::BLOCK_FACE_ZM) return 2036; + return 2051; + } + short Chest(); + eBlockFace Facing(short ID); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace ChippedAnvil + { + constexpr short ChippedAnvil(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 6616; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6614; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6615; + return 6617; + } + short ChippedAnvil(); + eBlockFace Facing(short ID); + } + namespace ChiseledNetherBricks + { + constexpr short ChiseledNetherBricks() + { + return 17101; + } + } + namespace ChiseledPolishedBlackstone + { + constexpr short ChiseledPolishedBlackstone() + { + return 16253; + } + } + namespace ChiseledQuartzBlock + { + constexpr short ChiseledQuartzBlock() + { + return 6739; + } + } + namespace ChiseledRedSandstone + { + constexpr short ChiseledRedSandstone() + { + return 8218; + } + } + namespace ChiseledSandstone + { + constexpr short ChiseledSandstone() + { + return 247; + } + } + namespace ChiseledStoneBricks + { + constexpr short ChiseledStoneBricks() + { + return 4498; + } + } + namespace ChorusFlower + { + constexpr short ChorusFlower(unsigned char Age) + { + if (Age == 2) return 9130; + if (Age == 3) return 9131; + if (Age == 0) return 9128; + if (Age == 4) return 9132; + if (Age == 1) return 9129; + return 9133; + } + short ChorusFlower(); + unsigned char Age(short ID); + } + namespace ChorusPlant + { + constexpr short ChorusPlant(bool Down, bool East, bool North, bool South, bool Up, bool West) + { + if (Up && !West && !East && South && Down && North) return 9081; + if (Up && !West && !East && South && !Down && North) return 9113; + if (!Up && West && !East && South && Down && North) return 9082; + if (!Up && West && !East && South && !Down && North) return 9114; + if (!Up && !West && !East && South && Down && North) return 9083; + if (!Up && !West && !East && South && !Down && North) return 9115; + if (Up && West && !East && !South && Down && North) return 9084; + if (Up && West && !East && !South && !Down && North) return 9116; + if (Up && !West && !East && !South && Down && North) return 9085; + if (Up && !West && !East && !South && !Down && North) return 9117; + if (!Up && West && !East && !South && Down && North) return 9086; + if (!Up && West && !East && !South && !Down && North) return 9118; + if (!Up && !West && !East && !South && Down && North) return 9087; + if (!Up && !West && !East && !South && !Down && North) return 9119; + if (Up && West && !East && South && Down && !North) return 9088; + if (Up && West && !East && South && !Down && !North) return 9120; + if (Up && !West && !East && South && Down && !North) return 9089; + if (Up && !West && !East && South && !Down && !North) return 9121; + if (!Up && West && !East && South && Down && !North) return 9090; + if (!Up && West && !East && South && !Down && !North) return 9122; + if (!Up && !West && !East && South && Down && !North) return 9091; + if (!Up && !West && !East && South && !Down && !North) return 9123; + if (Up && West && !East && !South && Down && !North) return 9092; + if (Up && West && !East && !South && !Down && !North) return 9124; + if (Up && !West && !East && !South && Down && !North) return 9093; + if (Up && !West && !East && !South && !Down && !North) return 9125; + if (!Up && West && !East && !South && Down && !North) return 9094; + if (!Up && West && !East && !South && !Down && !North) return 9126; + if (!Up && !West && !East && !South && Down && !North) return 9095; + if (Up && West && East && South && Down && North) return 9064; + if (Up && West && East && South && !Down && North) return 9096; + if (Up && !West && East && South && Down && North) return 9065; + if (Up && !West && East && South && !Down && North) return 9097; + if (!Up && West && East && South && Down && North) return 9066; + if (!Up && West && East && South && !Down && North) return 9098; + if (!Up && !West && East && South && Down && North) return 9067; + if (!Up && !West && East && South && !Down && North) return 9099; + if (Up && West && East && !South && Down && North) return 9068; + if (Up && West && East && !South && !Down && North) return 9100; + if (Up && !West && East && !South && Down && North) return 9069; + if (Up && !West && East && !South && !Down && North) return 9101; + if (!Up && West && East && !South && Down && North) return 9070; + if (!Up && West && East && !South && !Down && North) return 9102; + if (!Up && !West && East && !South && Down && North) return 9071; + if (!Up && !West && East && !South && !Down && North) return 9103; + if (Up && West && East && South && Down && !North) return 9072; + if (Up && West && East && South && !Down && !North) return 9104; + if (Up && !West && East && South && Down && !North) return 9073; + if (Up && !West && East && South && !Down && !North) return 9105; + if (!Up && West && East && South && Down && !North) return 9074; + if (!Up && West && East && South && !Down && !North) return 9106; + if (!Up && !West && East && South && Down && !North) return 9075; + if (!Up && !West && East && South && !Down && !North) return 9107; + if (Up && West && East && !South && Down && !North) return 9076; + if (Up && West && East && !South && !Down && !North) return 9108; + if (Up && !West && East && !South && Down && !North) return 9077; + if (Up && !West && East && !South && !Down && !North) return 9109; + if (!Up && West && East && !South && Down && !North) return 9078; + if (!Up && West && East && !South && !Down && !North) return 9110; + if (!Up && !West && East && !South && Down && !North) return 9079; + if (!Up && !West && East && !South && !Down && !North) return 9111; + if (Up && West && !East && South && Down && North) return 9080; + if (Up && West && !East && South && !Down && North) return 9112; + return 9127; + } + short ChorusPlant(); + bool Down(short ID); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Up(short ID); + bool West(short ID); + } + namespace Clay + { + constexpr short Clay() + { + return 3947; + } + } + namespace CoalBlock + { + constexpr short CoalBlock() + { + return 7883; + } + } + namespace CoalOre + { + constexpr short CoalOre() + { + return 71; + } + } + namespace CoarseDirt + { + constexpr short CoarseDirt() + { + return 11; + } + } + namespace Cobblestone + { + constexpr short Cobblestone() + { + return 14; + } + } + namespace CobblestoneSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short CobblestoneSlab(enum Type Type) + { + if (Type == Type::Top && !false) return 8367; + if (Type == Type::Double && !false) return 8371; + if (Type == Type::Bottom && false) return 8368; + if (Type == Type::Bottom && !false) return 8369; + if (Type == Type::Top && false) return 8366; + return 8370; + } + short CobblestoneSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace CobblestoneStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short CobblestoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 3665; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 3697; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 3729; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 3666; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 3698; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 3730; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 3667; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 3699; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 3731; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 3668; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 3700; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 3732; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 3669; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 3701; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 3733; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 3670; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 3702; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 3734; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 3671; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 3703; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 3672; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 3704; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 3673; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 3705; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 3674; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 3706; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 3675; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 3707; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 3676; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 3708; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 3677; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 3709; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 3678; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 3710; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 3679; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 3711; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 3680; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 3712; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 3681; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 3713; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 3682; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 3714; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 3683; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 3715; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 3684; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 3716; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 3685; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 3717; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 3686; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 3718; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 3655; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 3687; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 3719; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 3656; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 3688; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 3720; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 3657; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 3689; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 3721; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 3658; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 3690; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 3722; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 3659; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 3691; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 3723; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 3660; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 3692; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 3724; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 3661; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 3693; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 3725; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 3662; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 3694; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 3726; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 3663; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 3695; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 3727; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 3664; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 3696; + return 3728; + } + short CobblestoneStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace CobblestoneWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short CobblestoneWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 5657; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 5659; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 5661; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 5663; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 5665; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 5667; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 5669; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 5671; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 5673; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 5675; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 5677; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 5679; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 5681; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 5683; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 5685; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 5687; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 5689; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 5691; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 5693; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 5695; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 5697; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 5699; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 5701; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 5703; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 5705; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 5707; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 5709; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 5711; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 5713; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 5715; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 5717; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 5719; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 5721; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 5723; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 5725; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 5727; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 5729; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 5731; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 5733; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 5735; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 5737; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 5739; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 5741; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 5743; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 5745; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 5747; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 5749; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 5751; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 5753; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 5755; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 5757; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 5759; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 5761; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 5763; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 5765; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 5767; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 5769; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 5771; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 5773; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 5775; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 5777; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 5779; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 5781; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 5783; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 5785; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 5787; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 5789; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 5791; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 5793; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 5795; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 5797; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 5799; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 5801; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 5803; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 5805; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 5807; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 5809; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 5811; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 5813; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 5815; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 5817; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 5819; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 5821; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 5823; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 5825; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 5827; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 5829; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 5831; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 5833; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 5835; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 5837; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 5839; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 5841; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 5843; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 5845; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 5847; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 5849; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 5851; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 5853; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 5855; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 5857; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 5859; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 5861; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 5863; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 5865; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 5867; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 5869; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 5871; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 5873; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 5875; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 5877; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 5879; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 5881; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 5883; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 5885; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 5887; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 5889; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 5891; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 5893; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 5895; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 5897; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 5899; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 5901; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 5903; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 5905; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 5907; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 5909; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 5911; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 5913; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 5915; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 5917; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 5919; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 5921; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 5923; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 5925; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 5927; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 5929; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 5931; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 5933; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 5935; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 5937; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 5939; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 5941; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 5943; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 5945; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 5947; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 5949; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 5951; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 5953; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 5955; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 5957; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 5959; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 5961; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 5963; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 5965; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 5967; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 5969; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 5971; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 5973; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 5975; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 5977; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 5979; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 5658; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 5660; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 5662; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 5664; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 5666; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 5668; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 5670; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 5672; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 5674; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 5676; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 5678; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 5680; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 5682; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 5684; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 5686; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 5688; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 5690; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 5692; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 5694; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 5696; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 5698; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 5700; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 5702; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 5704; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 5706; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 5708; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 5710; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 5712; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 5714; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 5716; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 5718; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 5720; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 5722; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 5724; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 5726; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 5728; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 5730; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 5732; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 5734; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 5736; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 5738; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 5740; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 5742; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 5744; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 5746; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 5748; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 5750; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 5752; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 5754; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 5756; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 5758; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 5760; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 5762; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 5764; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 5766; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 5768; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 5770; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 5772; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 5774; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 5776; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 5778; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 5780; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 5782; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 5784; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 5786; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 5788; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 5790; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 5792; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 5794; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 5796; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 5798; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 5800; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 5802; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 5804; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 5806; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 5808; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 5810; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 5812; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 5814; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 5816; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 5818; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 5820; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 5822; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 5824; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 5826; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 5828; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 5830; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 5832; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 5834; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 5836; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 5838; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 5840; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 5842; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 5844; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 5846; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 5848; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 5850; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 5852; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 5854; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 5856; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 5858; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 5860; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 5862; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 5864; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 5866; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 5868; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 5870; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 5872; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 5874; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 5876; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 5878; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 5880; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 5882; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 5884; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 5886; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 5888; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 5890; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 5892; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 5894; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 5896; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 5898; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 5900; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 5902; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 5904; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 5906; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 5908; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 5910; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 5912; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 5914; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 5916; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 5918; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 5920; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 5922; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 5924; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 5926; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 5928; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 5930; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 5932; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 5934; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 5936; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 5938; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 5940; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 5942; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 5944; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 5946; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 5948; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 5950; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 5952; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 5954; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 5956; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 5958; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 5960; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 5962; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 5964; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 5966; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 5968; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 5970; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 5972; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 5974; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 5976; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 5978; + return 5980; + } + short CobblestoneWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace Cobweb + { + constexpr short Cobweb() + { + return 1341; + } + } + namespace Cocoa + { + constexpr short Cocoa(unsigned char Age, eBlockFace Facing) + { + if (Age == 0 && Facing == eBlockFace::BLOCK_FACE_XP) return 5161; + if (Age == 1 && Facing == eBlockFace::BLOCK_FACE_ZM) return 5162; + if (Age == 1 && Facing == eBlockFace::BLOCK_FACE_ZP) return 5163; + if (Age == 1 && Facing == eBlockFace::BLOCK_FACE_XM) return 5164; + if (Age == 1 && Facing == eBlockFace::BLOCK_FACE_XP) return 5165; + if (Age == 2 && Facing == eBlockFace::BLOCK_FACE_ZM) return 5166; + if (Age == 2 && Facing == eBlockFace::BLOCK_FACE_ZP) return 5167; + if (Age == 2 && Facing == eBlockFace::BLOCK_FACE_XM) return 5168; + if (Age == 2 && Facing == eBlockFace::BLOCK_FACE_XP) return 5169; + if (Age == 0 && Facing == eBlockFace::BLOCK_FACE_ZM) return 5158; + if (Age == 0 && Facing == eBlockFace::BLOCK_FACE_ZP) return 5159; + return 5160; + } + short Cocoa(); + unsigned char Age(short ID); + eBlockFace Facing(short ID); + } + namespace CommandBlock + { + constexpr short CommandBlock(bool Conditional, eBlockFace Facing) + { + if (Conditional && Facing == eBlockFace::BLOCK_FACE_ZM) return 5644; + if (Conditional && Facing == eBlockFace::BLOCK_FACE_XP) return 5645; + if (Conditional && Facing == eBlockFace::BLOCK_FACE_ZP) return 5646; + if (Conditional && Facing == eBlockFace::BLOCK_FACE_XM) return 5647; + if (Conditional && Facing == eBlockFace::BLOCK_FACE_YP) return 5648; + if (Conditional && Facing == eBlockFace::BLOCK_FACE_YM) return 5649; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_ZM) return 5650; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_XP) return 5651; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_ZP) return 5652; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_XM) return 5653; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_YP) return 5654; + return 5655; + } + short CommandBlock(); + bool Conditional(short ID); + eBlockFace Facing(short ID); + } + namespace Comparator + { + enum class Mode + { + Compare, + Subtract + }; + constexpr short Comparator(eBlockFace Facing, enum Mode Mode, bool Powered) + { + if (Mode == Mode::Compare && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6691; + if (Mode == Mode::Subtract && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6692; + if (Mode == Mode::Compare && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6678; + if (Mode == Mode::Compare && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6679; + if (Mode == Mode::Subtract && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6680; + if (Mode == Mode::Subtract && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6681; + if (Mode == Mode::Compare && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6682; + if (Mode == Mode::Compare && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6683; + if (Mode == Mode::Subtract && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6684; + if (Mode == Mode::Subtract && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6685; + if (Mode == Mode::Compare && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6686; + if (Mode == Mode::Compare && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6687; + if (Mode == Mode::Subtract && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6688; + if (Mode == Mode::Subtract && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6689; + if (Mode == Mode::Compare && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6690; + return 6693; + } + short Comparator(); + eBlockFace Facing(short ID); + enum Mode Mode(short ID); + bool Powered(short ID); + } + namespace Composter + { + constexpr short Composter(unsigned char Level) + { + if (Level == 1) return 15752; + if (Level == 3) return 15754; + if (Level == 5) return 15756; + if (Level == 7) return 15758; + if (Level == 0) return 15751; + if (Level == 2) return 15753; + if (Level == 4) return 15755; + if (Level == 6) return 15757; + return 15759; + } + short Composter(); + unsigned char Level(short ID); + } + namespace Conduit + { + constexpr short Conduit() + { + if (false) return 9649; + return 9650; + } + bool Waterlogged(short ID); + } + namespace Cornflower + { + constexpr short Cornflower() + { + return 1422; + } + } + namespace CrackedNetherBricks + { + constexpr short CrackedNetherBricks() + { + return 17102; + } + } + namespace CrackedPolishedBlackstoneBricks + { + constexpr short CrackedPolishedBlackstoneBricks() + { + return 16252; + } + } + namespace CrackedStoneBricks + { + constexpr short CrackedStoneBricks() + { + return 4497; + } + } + namespace CraftingTable + { + constexpr short CraftingTable() + { + return 3356; + } + } + namespace CreeperHead + { + constexpr short CreeperHead(unsigned char Rotation) + { + if (Rotation == 1) return 6571; + if (Rotation == 2) return 6572; + if (Rotation == 3) return 6573; + if (Rotation == 4) return 6574; + if (Rotation == 5) return 6575; + if (Rotation == 6) return 6576; + if (Rotation == 7) return 6577; + if (Rotation == 8) return 6578; + if (Rotation == 9) return 6579; + if (Rotation == 10) return 6580; + if (Rotation == 11) return 6581; + if (Rotation == 12) return 6582; + if (Rotation == 13) return 6583; + if (Rotation == 14) return 6584; + if (Rotation == 0) return 6570; + return 6585; + } + short CreeperHead(); + unsigned char Rotation(short ID); + } + namespace CreeperWallHead + { + constexpr short CreeperWallHead(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6586; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6587; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 6588; + return 6589; + } + short CreeperWallHead(); + eBlockFace Facing(short ID); + } + namespace CrimsonButton + { + enum class Face + { + Floor, + Wall, + Ceiling + }; + constexpr short CrimsonButton(enum Face Face, eBlockFace Facing, bool Powered) + { + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 15497; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 15482; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 15490; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 15498; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 15483; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 15491; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 15499; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 15484; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 15492; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 15500; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 15485; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 15493; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 15501; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 15486; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 15494; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 15502; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 15479; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 15487; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 15495; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 15480; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 15488; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 15496; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 15481; + return 15489; + } + short CrimsonButton(); + enum Face Face(short ID); + eBlockFace Facing(short ID); + bool Powered(short ID); + } + namespace CrimsonDoor + { + enum class Half + { + Upper, + Lower + }; + enum class Hinge + { + Left, + Right + }; + constexpr short CrimsonDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered) + { + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 15570; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 15539; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 15571; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 15540; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 15572; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 15541; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 15573; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 15542; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 15574; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 15543; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 15575; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 15544; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 15576; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 15545; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 15577; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 15546; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 15578; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 15547; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 15579; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 15548; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 15580; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 15549; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 15581; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 15550; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Right) return 15582; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 15551; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 15583; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 15552; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 15584; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 15553; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 15585; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 15554; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 15586; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 15555; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 15587; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 15556; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 15588; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 15557; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 15589; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 15558; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 15527; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 15559; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 15528; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 15560; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 15529; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 15561; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 15530; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 15562; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 15531; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 15563; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 15532; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 15564; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 15533; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 15565; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 15534; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 15566; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 15535; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 15567; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 15536; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 15568; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 15537; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 15569; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 15538; + return 15590; + } + short CrimsonDoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Hinge Hinge(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace CrimsonFence + { + constexpr short CrimsonFence(bool East, bool North, bool South, bool West) + { + if (false && South && West && East && North) return 15063; + if (false && South && West && East && !North) return 15071; + if (false && South && West && !East && North) return 15079; + if (false && South && West && !East && !North) return 15087; + if (false && South && !West && East && North) return 15064; + if (false && South && !West && East && !North) return 15072; + if (false && South && !West && !East && North) return 15080; + if (false && South && !West && !East && !North) return 15088; + if (!false && South && West && East && North) return 15065; + if (!false && South && West && East && !North) return 15073; + if (!false && South && West && !East && North) return 15081; + if (!false && South && West && !East && !North) return 15089; + if (!false && South && !West && East && North) return 15066; + if (!false && South && !West && East && !North) return 15074; + if (!false && South && !West && !East && North) return 15082; + if (!false && South && !West && !East && !North) return 15090; + if (false && !South && West && East && North) return 15067; + if (false && !South && West && East && !North) return 15075; + if (false && !South && West && !East && North) return 15083; + if (false && !South && West && !East && !North) return 15091; + if (false && !South && !West && East && North) return 15068; + if (false && !South && !West && East && !North) return 15076; + if (false && !South && !West && !East && North) return 15084; + if (false && !South && !West && !East && !North) return 15092; + if (!false && !South && West && East && North) return 15069; + if (!false && !South && West && East && !North) return 15077; + if (!false && !South && West && !East && North) return 15085; + if (!false && !South && West && !East && !North) return 15093; + if (!false && !South && !West && East && North) return 15070; + if (!false && !South && !West && East && !North) return 15078; + if (!false && !South && !West && !East && North) return 15086; + return 15094; + } + short CrimsonFence(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace CrimsonFenceGate + { + constexpr short CrimsonFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered) + { + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 15280; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15257; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15265; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15273; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 15281; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15258; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15266; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15274; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 15282; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15259; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15267; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15275; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 15283; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15260; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15268; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15276; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 15284; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15261; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15269; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15277; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 15285; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15262; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15270; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15278; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15255; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15263; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15271; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 15279; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15256; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15264; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15272; + return 15286; + } + short CrimsonFenceGate(); + eBlockFace Facing(short ID); + bool InWall(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace CrimsonFungus + { + constexpr short CrimsonFungus() + { + return 14988; + } + } + namespace CrimsonHyphae + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short CrimsonHyphae(enum Axis Axis) + { + if (Axis == Axis::Y) return 14982; + if (Axis == Axis::X) return 14981; + return 14983; + } + short CrimsonHyphae(); + enum Axis Axis(short ID); + } + namespace CrimsonNylium + { + constexpr short CrimsonNylium() + { + return 14987; + } + } + namespace CrimsonPlanks + { + constexpr short CrimsonPlanks() + { + return 15045; + } + } + namespace CrimsonPressurePlate + { + constexpr short CrimsonPressurePlate(bool Powered) + { + if (Powered) return 15059; + return 15060; + } + short CrimsonPressurePlate(); + bool Powered(short ID); + } + namespace CrimsonRoots + { + constexpr short CrimsonRoots() + { + return 15044; + } + } + namespace CrimsonSign + { + constexpr short CrimsonSign(unsigned char Rotation) + { + if (Rotation == 14 && false) return 15683; + if (Rotation == 2 && !false) return 15660; + if (Rotation == 6 && !false) return 15668; + if (Rotation == 10 && !false) return 15676; + if (Rotation == 14 && !false) return 15684; + if (Rotation == 3 && false) return 15661; + if (Rotation == 7 && false) return 15669; + if (Rotation == 11 && false) return 15677; + if (Rotation == 15 && false) return 15685; + if (Rotation == 3 && !false) return 15662; + if (Rotation == 7 && !false) return 15670; + if (Rotation == 11 && !false) return 15678; + if (Rotation == 0 && false) return 15655; + if (Rotation == 4 && false) return 15663; + if (Rotation == 8 && false) return 15671; + if (Rotation == 12 && false) return 15679; + if (Rotation == 0 && !false) return 15656; + if (Rotation == 4 && !false) return 15664; + if (Rotation == 8 && !false) return 15672; + if (Rotation == 12 && !false) return 15680; + if (Rotation == 1 && false) return 15657; + if (Rotation == 5 && false) return 15665; + if (Rotation == 9 && false) return 15673; + if (Rotation == 13 && false) return 15681; + if (Rotation == 1 && !false) return 15658; + if (Rotation == 5 && !false) return 15666; + if (Rotation == 9 && !false) return 15674; + if (Rotation == 13 && !false) return 15682; + if (Rotation == 2 && false) return 15659; + if (Rotation == 6 && false) return 15667; + if (Rotation == 10 && false) return 15675; + return 15686; + } + short CrimsonSign(); + unsigned char Rotation(short ID); + bool Waterlogged(short ID); + } + namespace CrimsonSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short CrimsonSlab(enum Type Type) + { + if (Type == Type::Double && !false) return 15052; + if (Type == Type::Bottom && false) return 15049; + if (Type == Type::Bottom && !false) return 15050; + if (Type == Type::Top && false) return 15047; + if (Type == Type::Double && false) return 15051; + return 15048; + } + short CrimsonSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace CrimsonStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short CrimsonStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15319; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15320; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15321; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15322; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15323; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15324; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15325; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15326; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15327; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15328; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15329; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15330; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15331; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15332; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15333; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15334; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15335; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15336; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15337; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15338; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15339; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15340; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15341; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15342; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15343; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15344; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15345; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15346; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15347; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15348; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15349; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15350; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15351; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15352; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15353; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15354; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15355; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15356; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15357; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15358; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 15359; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 15360; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15361; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15362; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15363; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15364; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15365; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15366; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15367; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15368; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 15369; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 15370; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15371; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15372; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15373; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15374; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15375; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15376; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15377; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15378; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 15379; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 15380; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15381; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15382; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15383; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15384; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15385; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15386; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15387; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15388; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 15389; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 15390; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15391; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15392; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15393; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15394; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15395; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15396; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15397; + return 15398; + } + short CrimsonStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace CrimsonStem + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short CrimsonStem(enum Axis Axis) + { + if (Axis == Axis::Y) return 14976; + if (Axis == Axis::X) return 14975; + return 14977; + } + short CrimsonStem(); + enum Axis Axis(short ID); + } + namespace CrimsonTrapdoor + { + enum class Half + { + Top, + Bottom + }; + constexpr short CrimsonTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered) + { + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 15129; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 15161; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 15130; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 15162; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 15131; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 15163; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 15132; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 15164; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 15133; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 15165; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 15134; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 15166; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 15135; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 15167; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 15136; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 15168; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 15137; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 15169; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 15138; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 15170; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 15139; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 15171; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 15140; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 15172; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 15141; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 15173; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 15142; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 15174; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 15143; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 15175; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 15144; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 15176; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 15145; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 15177; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 15146; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 15178; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 15147; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 15179; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 15148; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 15180; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 15149; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 15181; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 15150; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 15182; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 15151; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 15183; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 15152; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 15184; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 15153; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 15185; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 15154; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 15186; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 15155; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 15187; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 15156; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 15188; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 15157; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 15189; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 15158; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 15127; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 15159; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 15128; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 15160; + return 15190; + } + short CrimsonTrapdoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + bool Open(short ID); + bool Powered(short ID); + bool Waterlogged(short ID); + } + namespace CrimsonWallSign + { + constexpr short CrimsonWallSign(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 15724; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 15721; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 15725; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 15722; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 15719; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 15723; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 15720; + return 15726; + } + short CrimsonWallSign(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace CryingObsidian + { + constexpr short CryingObsidian() + { + return 15828; + } + } + namespace CutRedSandstone + { + constexpr short CutRedSandstone() + { + return 8219; + } + } + namespace CutRedSandstoneSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short CutRedSandstoneSlab(enum Type Type) + { + if (Type == Type::Top && false) return 8402; + if (Type == Type::Double && false) return 8406; + if (Type == Type::Top && !false) return 8403; + if (Type == Type::Double && !false) return 8407; + if (Type == Type::Bottom && false) return 8404; + return 8405; + } + short CutRedSandstoneSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace CutSandstone + { + constexpr short CutSandstone() + { + return 248; + } + } + namespace CutSandstoneSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short CutSandstoneSlab(enum Type Type) + { + if (Type == Type::Bottom && !false) return 8357; + if (Type == Type::Top && false) return 8354; + if (Type == Type::Double && false) return 8358; + if (Type == Type::Top && !false) return 8355; + if (Type == Type::Double && !false) return 8359; + return 8356; + } + short CutSandstoneSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace CyanBanner + { + constexpr short CyanBanner(unsigned char Rotation) + { + if (Rotation == 0) return 8041; + if (Rotation == 1) return 8042; + if (Rotation == 2) return 8043; + if (Rotation == 3) return 8044; + if (Rotation == 4) return 8045; + if (Rotation == 5) return 8046; + if (Rotation == 6) return 8047; + if (Rotation == 7) return 8048; + if (Rotation == 8) return 8049; + if (Rotation == 9) return 8050; + if (Rotation == 10) return 8051; + if (Rotation == 11) return 8052; + if (Rotation == 12) return 8053; + if (Rotation == 13) return 8054; + if (Rotation == 14) return 8055; + return 8056; + } + short CyanBanner(); + unsigned char Rotation(short ID); + } + namespace CyanBed + { + enum class Part + { + Head, + Foot + }; + constexpr short CyanBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1197; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1201; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1205; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1194; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1198; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1202; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1206; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1195; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1199; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1203; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1207; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1196; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1200; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1204; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1193; + return 1208; + } + short CyanBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace CyanCarpet + { + constexpr short CyanCarpet() + { + return 7875; + } + } + namespace CyanConcrete + { + constexpr short CyanConcrete() + { + return 9447; + } + } + namespace CyanConcretePowder + { + constexpr short CyanConcretePowder() + { + return 9463; + } + } + namespace CyanGlazedTerracotta + { + constexpr short CyanGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9411; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9410; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9412; + return 9413; + } + short CyanGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace CyanShulkerBox + { + constexpr short CyanShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XP) return 9333; + if (Facing == eBlockFace::BLOCK_FACE_YM) return 9337; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9334; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9335; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9332; + return 9336; + } + short CyanShulkerBox(); + eBlockFace Facing(short ID); + } + namespace CyanStainedGlass + { + constexpr short CyanStainedGlass() + { + return 4104; + } + } + namespace CyanStainedGlassPane + { + constexpr short CyanStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (false && !South && West && !East && !North) return 7179; + if (false && South && !West && East && North) return 7152; + if (false && !South && !West && East && North) return 7156; + if (false && South && !West && East && !North) return 7160; + if (false && !South && !West && East && !North) return 7164; + if (false && South && !West && !East && North) return 7168; + if (false && !South && !West && !East && North) return 7172; + if (false && South && !West && !East && !North) return 7176; + if (false && !South && !West && !East && !North) return 7180; + if (!false && South && West && East && North) return 7153; + if (!false && !South && West && East && North) return 7157; + if (!false && South && West && East && !North) return 7161; + if (!false && !South && West && East && !North) return 7165; + if (!false && South && West && !East && North) return 7169; + if (!false && !South && West && !East && North) return 7173; + if (!false && South && West && !East && !North) return 7177; + if (!false && !South && West && !East && !North) return 7181; + if (!false && South && !West && East && North) return 7154; + if (!false && !South && !West && East && North) return 7158; + if (!false && South && !West && East && !North) return 7162; + if (!false && !South && !West && East && !North) return 7166; + if (!false && South && !West && !East && North) return 7170; + if (!false && !South && !West && !East && North) return 7174; + if (!false && South && !West && !East && !North) return 7178; + if (false && South && West && East && North) return 7151; + if (false && !South && West && East && North) return 7155; + if (false && South && West && East && !North) return 7159; + if (false && !South && West && East && !North) return 7163; + if (false && South && West && !East && North) return 7167; + if (false && !South && West && !East && North) return 7171; + if (false && South && West && !East && !North) return 7175; + return 7182; + } + short CyanStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace CyanTerracotta + { + constexpr short CyanTerracotta() + { + return 6856; + } + } + namespace CyanWallBanner + { + constexpr short CyanWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8191; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8189; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8190; + return 8192; + } + short CyanWallBanner(); + eBlockFace Facing(short ID); + } + namespace CyanWool + { + constexpr short CyanWool() + { + return 1393; + } + } + namespace DamagedAnvil + { + constexpr short DamagedAnvil(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6619; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 6620; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6618; + return 6621; + } + short DamagedAnvil(); + eBlockFace Facing(short ID); + } + namespace Dandelion + { + constexpr short Dandelion() + { + return 1412; + } + } + namespace DarkOakButton + { + enum class Face + { + Floor, + Wall, + Ceiling + }; + constexpr short DarkOakButton(enum Face Face, eBlockFace Facing, bool Powered) + { + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6466; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6470; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6474; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6478; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6482; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6486; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6467; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6471; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6475; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6479; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6483; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6487; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6468; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6472; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6476; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6480; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6484; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6488; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6469; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6473; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6477; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6481; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6485; + return 6489; + } + short DarkOakButton(); + enum Face Face(short ID); + eBlockFace Facing(short ID); + bool Powered(short ID); + } + namespace DarkOakDoor + { + enum class Half + { + Upper, + Lower + }; + enum class Hinge + { + Left, + Right + }; + constexpr short DarkOakDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered) + { + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 9018; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 9050; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 9019; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 9051; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 9020; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 9052; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 9021; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 9053; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 9022; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 9054; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 9023; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 9055; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 9024; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 9056; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 9025; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 8994; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 9026; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 8995; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 9027; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 8996; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 9028; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 8997; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 9029; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 8998; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 9030; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 8999; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 9031; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 9000; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 9032; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 9001; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 9033; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 9002; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 9034; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 9003; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 9035; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 9004; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 9036; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 9005; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 9037; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 9006; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 9038; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 9007; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 9039; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 9008; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 9040; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 9009; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 9041; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 9010; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 9042; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 9011; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 9043; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 9012; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 9044; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 9013; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 9045; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 9014; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 9046; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 9015; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 9047; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 9016; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 9048; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 9017; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Right) return 9049; + return 9057; + } + short DarkOakDoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Hinge Hinge(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace DarkOakFence + { + constexpr short DarkOakFence(bool East, bool North, bool South, bool West) + { + if (!false && South && West && East && North) return 8708; + if (!false && South && West && East && !North) return 8716; + if (!false && South && West && !East && North) return 8724; + if (!false && South && West && !East && !North) return 8732; + if (!false && South && !West && East && North) return 8709; + if (!false && South && !West && East && !North) return 8717; + if (!false && South && !West && !East && North) return 8725; + if (!false && South && !West && !East && !North) return 8733; + if (false && !South && West && East && North) return 8710; + if (false && !South && West && East && !North) return 8718; + if (false && !South && West && !East && North) return 8726; + if (false && !South && West && !East && !North) return 8734; + if (false && !South && !West && East && North) return 8711; + if (false && !South && !West && East && !North) return 8719; + if (false && !South && !West && !East && North) return 8727; + if (false && !South && !West && !East && !North) return 8735; + if (!false && !South && West && East && North) return 8712; + if (!false && !South && West && East && !North) return 8720; + if (!false && !South && West && !East && North) return 8728; + if (!false && !South && West && !East && !North) return 8736; + if (!false && !South && !West && East && North) return 8713; + if (!false && !South && !West && East && !North) return 8721; + if (!false && !South && !West && !East && North) return 8729; + if (false && South && West && East && North) return 8706; + if (false && South && West && East && !North) return 8714; + if (false && South && West && !East && North) return 8722; + if (false && South && West && !East && !North) return 8730; + if (false && South && !West && East && North) return 8707; + if (false && South && !West && East && !North) return 8715; + if (false && South && !West && !East && North) return 8723; + if (false && South && !West && !East && !North) return 8731; + return 8737; + } + short DarkOakFence(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace DarkOakFenceGate + { + constexpr short DarkOakFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered) + { + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8553; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8561; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8569; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8546; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8554; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8562; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8570; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8547; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8555; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8563; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8571; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8548; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8556; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8564; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8572; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8549; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8557; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8565; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8573; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8550; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8558; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8566; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8574; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8551; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8559; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8567; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8575; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8552; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8560; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8568; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8576; + return 8577; + } + short DarkOakFenceGate(); + eBlockFace Facing(short ID); + bool InWall(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace DarkOakLeaves + { + constexpr short DarkOakLeaves(unsigned char Distance, bool Persistent) + { + if (!Persistent && Distance == 7) return 228; + if (Persistent && Distance == 4) return 221; + if (!Persistent && Distance == 4) return 222; + if (Persistent && Distance == 1) return 215; + if (Persistent && Distance == 5) return 223; + if (!Persistent && Distance == 1) return 216; + if (!Persistent && Distance == 5) return 224; + if (Persistent && Distance == 2) return 217; + if (Persistent && Distance == 6) return 225; + if (!Persistent && Distance == 2) return 218; + if (!Persistent && Distance == 6) return 226; + if (Persistent && Distance == 3) return 219; + if (Persistent && Distance == 7) return 227; + return 220; + } + short DarkOakLeaves(); + unsigned char Distance(short ID); + bool Persistent(short ID); + } + namespace DarkOakLog + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short DarkOakLog(enum Axis Axis) + { + if (Axis == Axis::X) return 88; + if (Axis == Axis::Y) return 89; + return 90; + } + short DarkOakLog(); + enum Axis Axis(short ID); + } + namespace DarkOakPlanks + { + constexpr short DarkOakPlanks() + { + return 20; + } + } + namespace DarkOakPressurePlate + { + constexpr short DarkOakPressurePlate(bool Powered) + { + if (Powered) return 3883; + return 3884; + } + short DarkOakPressurePlate(); + bool Powered(short ID); + } + namespace DarkOakSapling + { + constexpr short DarkOakSapling(unsigned char Stage) + { + if (Stage == 0) return 31; + return 32; + } + short DarkOakSapling(); + unsigned char Stage(short ID); + } + namespace DarkOakSign + { + constexpr short DarkOakSign(unsigned char Rotation) + { + if (Rotation == 2 && false) return 3545; + if (Rotation == 3 && false) return 3547; + if (Rotation == 4 && false) return 3549; + if (Rotation == 5 && false) return 3551; + if (Rotation == 6 && false) return 3553; + if (Rotation == 7 && false) return 3555; + if (Rotation == 8 && false) return 3557; + if (Rotation == 9 && false) return 3559; + if (Rotation == 10 && false) return 3561; + if (Rotation == 11 && false) return 3563; + if (Rotation == 12 && false) return 3565; + if (Rotation == 13 && false) return 3567; + if (Rotation == 14 && false) return 3569; + if (Rotation == 15 && false) return 3571; + if (Rotation == 0 && !false) return 3542; + if (Rotation == 1 && !false) return 3544; + if (Rotation == 2 && !false) return 3546; + if (Rotation == 3 && !false) return 3548; + if (Rotation == 4 && !false) return 3550; + if (Rotation == 5 && !false) return 3552; + if (Rotation == 6 && !false) return 3554; + if (Rotation == 7 && !false) return 3556; + if (Rotation == 8 && !false) return 3558; + if (Rotation == 9 && !false) return 3560; + if (Rotation == 10 && !false) return 3562; + if (Rotation == 11 && !false) return 3564; + if (Rotation == 12 && !false) return 3566; + if (Rotation == 13 && !false) return 3568; + if (Rotation == 14 && !false) return 3570; + if (Rotation == 0 && false) return 3541; + if (Rotation == 1 && false) return 3543; + return 3572; + } + short DarkOakSign(); + unsigned char Rotation(short ID); + bool Waterlogged(short ID); + } + namespace DarkOakSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short DarkOakSlab(enum Type Type) + { + if (Type == Type::Bottom && false) return 8332; + if (Type == Type::Bottom && !false) return 8333; + if (Type == Type::Top && false) return 8330; + if (Type == Type::Double && false) return 8334; + if (Type == Type::Top && !false) return 8331; + return 8335; + } + short DarkOakSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace DarkOakStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short DarkOakStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7489; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7490; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7491; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7492; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7493; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7494; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7495; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7496; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7497; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7498; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7499; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7500; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7501; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7502; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7503; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7504; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7505; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7506; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7507; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7508; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7509; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7510; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7511; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7512; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7513; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7514; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7515; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7516; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7517; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7518; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7455; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7519; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7456; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7520; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7457; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7521; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7458; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7522; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7459; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7523; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7460; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7524; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7461; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7525; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7462; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7526; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7463; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7527; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7464; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7528; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7465; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7529; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7466; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7530; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7467; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7531; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7468; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7532; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7469; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7533; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7470; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7534; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7471; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7472; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7473; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7474; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7475; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7476; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7477; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7478; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7479; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7480; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7481; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7482; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7483; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7484; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7485; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7486; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7487; + return 7488; + } + short DarkOakStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace DarkOakTrapdoor + { + enum class Half + { + Top, + Bottom + }; + constexpr short DarkOakTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered) + { + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4447; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4463; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4479; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4432; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4448; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4464; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4480; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4433; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4449; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4465; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4481; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4434; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4450; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4466; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4482; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4435; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4451; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4467; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4483; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4436; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4452; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4468; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4484; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4437; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4453; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4469; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4485; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4438; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4454; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4470; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4486; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4439; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4455; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4471; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4487; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4440; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4456; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4472; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4488; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4441; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4457; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4473; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4489; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4442; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4458; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4474; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4490; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4443; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4459; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4475; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4491; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4444; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4460; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4476; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4492; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4445; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4461; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4477; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4493; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4446; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4462; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4478; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4431; + return 4494; + } + short DarkOakTrapdoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + bool Open(short ID); + bool Powered(short ID); + bool Waterlogged(short ID); + } + namespace DarkOakWallSign + { + constexpr short DarkOakWallSign(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 3778; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 3779; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 3780; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 3781; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 3775; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 3776; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 3777; + return 3782; + } + short DarkOakWallSign(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace DarkOakWood + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short DarkOakWood(enum Axis Axis) + { + if (Axis == Axis::X) return 124; + if (Axis == Axis::Y) return 125; + return 126; + } + short DarkOakWood(); + enum Axis Axis(short ID); + } + namespace DarkPrismarine + { + constexpr short DarkPrismarine() + { + return 7603; + } + } + namespace DarkPrismarineSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short DarkPrismarineSlab(enum Type Type) + { + if (Type == Type::Top && false) return 7856; + if (Type == Type::Bottom && false) return 7858; + if (Type == Type::Double && false) return 7860; + if (Type == Type::Top && !false) return 7857; + if (Type == Type::Bottom && !false) return 7859; + return 7861; + } + short DarkPrismarineSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace DarkPrismarineStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short DarkPrismarineStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7806; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7807; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7808; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7809; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7810; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7811; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7812; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7813; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7814; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7815; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7816; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7817; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7818; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7819; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7820; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7821; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7822; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7823; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7824; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7825; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7826; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7827; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7764; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7828; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7765; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7829; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7766; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7830; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7767; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7831; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7768; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7832; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7769; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7833; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7770; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7834; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7771; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7835; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7772; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7836; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7773; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7837; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7774; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7838; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7775; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7839; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7776; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7840; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7777; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7841; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7778; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7842; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7779; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7843; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7780; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7781; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7782; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7783; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7784; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7785; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7786; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7787; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7788; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7789; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7790; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7791; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7792; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7793; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7794; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7795; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7796; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7797; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7798; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7799; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7800; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7801; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7802; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7803; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7804; + return 7805; + } + short DarkPrismarineStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace DaylightDetector + { + constexpr short DaylightDetector(bool Inverted, unsigned char Power) + { + if (!Inverted && Power == 4) return 6714; + if (!Inverted && Power == 8) return 6718; + if (!Inverted && Power == 12) return 6722; + if (Inverted && Power == 1) return 6695; + if (Inverted && Power == 5) return 6699; + if (Inverted && Power == 9) return 6703; + if (Inverted && Power == 13) return 6707; + if (!Inverted && Power == 1) return 6711; + if (!Inverted && Power == 5) return 6715; + if (!Inverted && Power == 9) return 6719; + if (!Inverted && Power == 13) return 6723; + if (Inverted && Power == 2) return 6696; + if (Inverted && Power == 6) return 6700; + if (Inverted && Power == 10) return 6704; + if (Inverted && Power == 14) return 6708; + if (!Inverted && Power == 2) return 6712; + if (!Inverted && Power == 6) return 6716; + if (!Inverted && Power == 10) return 6720; + if (!Inverted && Power == 14) return 6724; + if (Inverted && Power == 3) return 6697; + if (Inverted && Power == 7) return 6701; + if (Inverted && Power == 11) return 6705; + if (Inverted && Power == 15) return 6709; + if (!Inverted && Power == 3) return 6713; + if (!Inverted && Power == 7) return 6717; + if (!Inverted && Power == 11) return 6721; + if (Inverted && Power == 0) return 6694; + if (Inverted && Power == 4) return 6698; + if (Inverted && Power == 8) return 6702; + if (Inverted && Power == 12) return 6706; + if (!Inverted && Power == 0) return 6710; + return 6725; + } + short DaylightDetector(); + bool Inverted(short ID); + unsigned char Power(short ID); + } + namespace DeadBrainCoral + { + constexpr short DeadBrainCoral() + { + if (false) return 9522; + return 9523; + } + bool Waterlogged(short ID); + } + namespace DeadBrainCoralBlock + { + constexpr short DeadBrainCoralBlock() + { + return 9511; + } + } + namespace DeadBrainCoralFan + { + constexpr short DeadBrainCoralFan() + { + if (false) return 9542; + return 9543; + } + bool Waterlogged(short ID); + } + namespace DeadBrainCoralWallFan + { + constexpr short DeadBrainCoralWallFan(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 9571; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 9568; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 9572; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 9569; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 9573; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 9570; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 9574; + return 9575; + } + short DeadBrainCoralWallFan(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace DeadBubbleCoral + { + constexpr short DeadBubbleCoral() + { + if (false) return 9524; + return 9525; + } + bool Waterlogged(short ID); + } + namespace DeadBubbleCoralBlock + { + constexpr short DeadBubbleCoralBlock() + { + return 9512; + } + } + namespace DeadBubbleCoralFan + { + constexpr short DeadBubbleCoralFan() + { + if (false) return 9544; + return 9545; + } + bool Waterlogged(short ID); + } + namespace DeadBubbleCoralWallFan + { + constexpr short DeadBubbleCoralWallFan(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 9578; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 9582; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 9579; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 9576; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 9580; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 9577; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 9581; + return 9583; + } + short DeadBubbleCoralWallFan(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace DeadBush + { + constexpr short DeadBush() + { + return 1344; + } + } + namespace DeadFireCoral + { + constexpr short DeadFireCoral() + { + if (false) return 9526; + return 9527; + } + bool Waterlogged(short ID); + } + namespace DeadFireCoralBlock + { + constexpr short DeadFireCoralBlock() + { + return 9513; + } + } + namespace DeadFireCoralFan + { + constexpr short DeadFireCoralFan() + { + if (false) return 9546; + return 9547; + } + bool Waterlogged(short ID); + } + namespace DeadFireCoralWallFan + { + constexpr short DeadFireCoralWallFan(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 9585; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 9589; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 9586; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 9590; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 9587; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 9584; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 9588; + return 9591; + } + short DeadFireCoralWallFan(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace DeadHornCoral + { + constexpr short DeadHornCoral() + { + if (false) return 9528; + return 9529; + } + bool Waterlogged(short ID); + } + namespace DeadHornCoralBlock + { + constexpr short DeadHornCoralBlock() + { + return 9514; + } + } + namespace DeadHornCoralFan + { + constexpr short DeadHornCoralFan() + { + if (false) return 9548; + return 9549; + } + bool Waterlogged(short ID); + } + namespace DeadHornCoralWallFan + { + constexpr short DeadHornCoralWallFan(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 9592; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 9596; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 9593; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 9597; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 9594; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 9598; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 9595; + return 9599; + } + short DeadHornCoralWallFan(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace DeadTubeCoral + { + constexpr short DeadTubeCoral() + { + if (false) return 9520; + return 9521; + } + bool Waterlogged(short ID); + } + namespace DeadTubeCoralBlock + { + constexpr short DeadTubeCoralBlock() + { + return 9510; + } + } + namespace DeadTubeCoralFan + { + constexpr short DeadTubeCoralFan() + { + if (false) return 9540; + return 9541; + } + bool Waterlogged(short ID); + } + namespace DeadTubeCoralWallFan + { + constexpr short DeadTubeCoralWallFan(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 9564; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 9561; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 9565; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 9562; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 9566; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 9563; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 9560; + return 9567; + } + short DeadTubeCoralWallFan(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace DetectorRail + { + enum class Shape + { + NorthSouth, + EastWest, + AscendingEast, + AscendingWest, + AscendingNorth, + AscendingSouth + }; + constexpr short DetectorRail(bool Powered, enum Shape Shape) + { + if (Shape == Shape::NorthSouth && Powered) return 1317; + if (Shape == Shape::AscendingNorth && Powered) return 1321; + if (Shape == Shape::AscendingEast && !Powered) return 1325; + if (Shape == Shape::EastWest && Powered) return 1318; + if (Shape == Shape::AscendingSouth && Powered) return 1322; + if (Shape == Shape::AscendingWest && !Powered) return 1326; + if (Shape == Shape::AscendingEast && Powered) return 1319; + if (Shape == Shape::NorthSouth && !Powered) return 1323; + if (Shape == Shape::AscendingNorth && !Powered) return 1327; + if (Shape == Shape::AscendingWest && Powered) return 1320; + if (Shape == Shape::EastWest && !Powered) return 1324; + return 1328; + } + short DetectorRail(); + bool Powered(short ID); + enum Shape Shape(short ID); + } + namespace DiamondBlock + { + constexpr short DiamondBlock() + { + return 3355; + } + } + namespace DiamondOre + { + constexpr short DiamondOre() + { + return 3354; + } + } + namespace Diorite + { + constexpr short Diorite() + { + return 4; + } + } + namespace DioriteSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short DioriteSlab(enum Type Type) + { + if (Type == Type::Double && !false) return 10866; + if (Type == Type::Bottom && false) return 10863; + if (Type == Type::Bottom && !false) return 10864; + if (Type == Type::Top && false) return 10861; + if (Type == Type::Double && false) return 10865; + return 10862; + } + short DioriteSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace DioriteStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short DioriteStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10722; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10723; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10724; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10725; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10726; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10727; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10728; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10729; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10730; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10731; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10732; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10733; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10734; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10735; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10736; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10737; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10738; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10739; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10740; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10741; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10742; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10743; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10744; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10745; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10746; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10747; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10748; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10749; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10750; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10751; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10752; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10753; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10754; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10755; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10756; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10757; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10758; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10759; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10760; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10761; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10762; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10763; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10764; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10765; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10766; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10767; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10768; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10769; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10770; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10771; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10772; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10773; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10774; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10775; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10776; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10777; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10778; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10779; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10780; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10781; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10782; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10783; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10784; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10785; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10786; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10787; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10788; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10709; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10710; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10711; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10712; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10713; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10714; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10715; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10716; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10717; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10718; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10719; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10720; + return 10721; + } + short DioriteStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace DioriteWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short DioriteWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 14611; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 14615; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 14619; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 14623; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 14627; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 14631; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 14635; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 14639; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 14643; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 14647; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 14651; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14655; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 14659; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 14663; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14667; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 14671; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 14675; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14679; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 14683; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 14687; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14691; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 14695; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 14699; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14703; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 14707; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 14711; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14715; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 14719; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14723; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14727; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 14731; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14735; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14739; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 14743; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14747; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14751; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 14432; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 14436; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 14440; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 14444; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 14448; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 14452; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 14456; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 14460; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 14464; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 14468; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 14472; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 14476; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 14480; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 14484; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 14488; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 14492; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 14496; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 14500; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 14504; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 14508; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 14512; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 14516; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 14520; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 14524; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 14528; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 14532; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 14536; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 14540; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 14544; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 14548; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 14552; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 14556; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 14560; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 14564; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 14568; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 14572; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 14576; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 14580; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 14584; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 14588; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 14592; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 14596; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 14600; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 14604; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 14608; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 14612; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 14616; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 14620; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 14624; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 14628; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 14632; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 14636; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 14640; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 14644; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 14648; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 14652; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 14656; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 14660; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 14664; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 14668; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 14672; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 14676; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 14680; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 14684; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14688; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 14692; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 14696; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14700; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 14704; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 14708; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14712; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 14716; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14720; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14724; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14728; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14732; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14736; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14740; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14744; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14748; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14752; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 14433; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 14437; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 14441; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 14445; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 14449; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 14453; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 14457; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 14461; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 14465; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 14469; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 14473; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 14477; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 14481; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 14485; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 14489; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 14493; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 14497; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 14501; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 14505; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 14509; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 14513; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 14517; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 14521; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 14525; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 14529; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 14533; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 14537; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 14541; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 14545; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 14549; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 14553; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 14557; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 14561; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 14565; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 14569; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 14573; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 14577; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 14581; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 14585; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 14589; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 14593; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 14597; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 14601; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 14605; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 14609; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 14613; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 14617; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 14621; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 14625; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 14629; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 14633; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 14637; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 14641; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 14645; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 14649; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 14653; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 14657; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 14661; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 14665; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 14669; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 14673; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 14677; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 14681; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14685; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 14689; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14693; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14697; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 14701; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14705; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14709; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 14713; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14717; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14721; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14725; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14729; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14733; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14737; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14741; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14745; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14749; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14753; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 14434; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 14438; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 14442; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 14446; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 14450; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 14454; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 14458; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 14462; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 14466; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 14470; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 14474; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 14478; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 14482; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 14486; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 14490; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 14494; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 14498; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 14502; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 14506; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 14510; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 14514; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 14518; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 14522; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 14526; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 14530; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 14534; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 14538; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 14542; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 14546; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 14550; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 14554; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 14558; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 14562; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 14566; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 14570; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 14574; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 14578; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 14582; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 14586; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 14590; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 14594; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 14598; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 14602; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 14606; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 14610; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 14614; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 14618; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 14622; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 14626; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 14630; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 14634; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 14638; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 14642; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 14646; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 14650; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 14654; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14658; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 14662; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 14666; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14670; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 14674; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 14678; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14682; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 14686; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14690; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14694; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 14698; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14702; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14706; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 14710; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14714; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14718; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 14722; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14726; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14730; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 14734; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14738; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14742; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 14746; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14750; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14754; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 14431; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 14435; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 14439; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 14443; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 14447; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 14451; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 14455; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 14459; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 14463; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 14467; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 14471; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 14475; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 14479; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 14483; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 14487; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 14491; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 14495; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 14499; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 14503; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 14507; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 14511; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 14515; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 14519; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 14523; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 14527; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 14531; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 14535; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 14539; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 14543; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 14547; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 14551; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 14555; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 14559; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 14563; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 14567; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 14571; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 14575; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 14579; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 14583; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 14587; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 14591; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 14595; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 14599; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 14603; + return 14607; + } + short DioriteWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace Dirt + { + constexpr short Dirt() + { + return 10; + } + } + namespace Dispenser + { + constexpr short Dispenser(eBlockFace Facing, bool Triggered) + { + if (!Triggered && Facing == eBlockFace::BLOCK_FACE_YP) return 243; + if (Triggered && Facing == eBlockFace::BLOCK_FACE_XP) return 236; + if (Triggered && Facing == eBlockFace::BLOCK_FACE_YM) return 244; + if (!Triggered && Facing == eBlockFace::BLOCK_FACE_XP) return 237; + if (!Triggered && Facing == eBlockFace::BLOCK_FACE_YM) return 245; + if (Triggered && Facing == eBlockFace::BLOCK_FACE_ZP) return 238; + if (!Triggered && Facing == eBlockFace::BLOCK_FACE_ZP) return 239; + if (Triggered && Facing == eBlockFace::BLOCK_FACE_XM) return 240; + if (!Triggered && Facing == eBlockFace::BLOCK_FACE_XM) return 241; + if (Triggered && Facing == eBlockFace::BLOCK_FACE_ZM) return 234; + if (Triggered && Facing == eBlockFace::BLOCK_FACE_YP) return 242; + return 235; + } + short Dispenser(); + eBlockFace Facing(short ID); + bool Triggered(short ID); + } + namespace DragonEgg + { + constexpr short DragonEgg() + { + return 5155; + } + } + namespace DragonHead + { + constexpr short DragonHead(unsigned char Rotation) + { + if (Rotation == 11) return 6601; + if (Rotation == 12) return 6602; + if (Rotation == 13) return 6603; + if (Rotation == 14) return 6604; + if (Rotation == 0) return 6590; + if (Rotation == 1) return 6591; + if (Rotation == 2) return 6592; + if (Rotation == 3) return 6593; + if (Rotation == 4) return 6594; + if (Rotation == 5) return 6595; + if (Rotation == 6) return 6596; + if (Rotation == 7) return 6597; + if (Rotation == 8) return 6598; + if (Rotation == 9) return 6599; + if (Rotation == 10) return 6600; + return 6605; + } + short DragonHead(); + unsigned char Rotation(short ID); + } + namespace DragonWallHead + { + constexpr short DragonWallHead(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6607; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 6608; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6606; + return 6609; + } + short DragonWallHead(); + eBlockFace Facing(short ID); + } + namespace DriedKelpBlock + { + constexpr short DriedKelpBlock() + { + return 9497; + } + } + namespace Dropper + { + constexpr short Dropper(eBlockFace Facing, bool Triggered) + { + if (Triggered && Facing == eBlockFace::BLOCK_FACE_XM) return 6841; + if (!Triggered && Facing == eBlockFace::BLOCK_FACE_XM) return 6842; + if (Triggered && Facing == eBlockFace::BLOCK_FACE_YP) return 6843; + if (!Triggered && Facing == eBlockFace::BLOCK_FACE_YP) return 6844; + if (Triggered && Facing == eBlockFace::BLOCK_FACE_YM) return 6845; + if (!Triggered && Facing == eBlockFace::BLOCK_FACE_YM) return 6846; + if (Triggered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6835; + if (!Triggered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6836; + if (Triggered && Facing == eBlockFace::BLOCK_FACE_XP) return 6837; + if (!Triggered && Facing == eBlockFace::BLOCK_FACE_XP) return 6838; + if (Triggered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6839; + return 6840; + } + short Dropper(); + eBlockFace Facing(short ID); + bool Triggered(short ID); + } + namespace EmeraldBlock + { + constexpr short EmeraldBlock() + { + return 5403; + } + } + namespace EmeraldOre + { + constexpr short EmeraldOre() + { + return 5250; + } + } + namespace EnchantingTable + { + constexpr short EnchantingTable() + { + return 5132; + } + } + namespace EndGateway + { + constexpr short EndGateway() + { + return 9224; + } + } + namespace EndPortal + { + constexpr short EndPortal() + { + return 5145; + } + } + namespace EndPortalFrame + { + constexpr short EndPortalFrame(bool Eye, eBlockFace Facing) + { + if (Eye && Facing == eBlockFace::BLOCK_FACE_ZP) return 5147; + if (Eye && Facing == eBlockFace::BLOCK_FACE_XP) return 5149; + if (!Eye && Facing == eBlockFace::BLOCK_FACE_ZP) return 5151; + if (Eye && Facing == eBlockFace::BLOCK_FACE_ZM) return 5146; + if (Eye && Facing == eBlockFace::BLOCK_FACE_XM) return 5148; + if (!Eye && Facing == eBlockFace::BLOCK_FACE_ZM) return 5150; + if (!Eye && Facing == eBlockFace::BLOCK_FACE_XM) return 5152; + return 5153; + } + short EndPortalFrame(); + bool Eye(short ID); + eBlockFace Facing(short ID); + } + namespace EndRod + { + constexpr short EndRod(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9060; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9061; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9058; + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9062; + if (Facing == eBlockFace::BLOCK_FACE_XP) return 9059; + return 9063; + } + short EndRod(); + eBlockFace Facing(short ID); + } + namespace EndStone + { + constexpr short EndStone() + { + return 5154; + } + } + namespace EndStoneBrickSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short EndStoneBrickSlab(enum Type Type) + { + if (Type == Type::Double && !false) return 10824; + if (Type == Type::Bottom && false) return 10821; + if (Type == Type::Bottom && !false) return 10822; + if (Type == Type::Top && false) return 10819; + if (Type == Type::Double && false) return 10823; + return 10820; + } + short EndStoneBrickSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace EndStoneBrickStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short EndStoneBrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10087; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10088; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10089; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10090; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10091; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10092; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10093; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10094; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10095; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10096; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10097; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10098; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10099; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10100; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10101; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10102; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10103; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10104; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10105; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10106; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10107; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10108; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10109; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10110; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10111; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10112; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10113; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10114; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10115; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10116; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10117; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10118; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10119; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10120; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10121; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10122; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10123; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10124; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10125; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10126; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10127; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10128; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10129; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10130; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10131; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10132; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10133; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10134; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10135; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10136; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10137; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10138; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10139; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10140; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10141; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10142; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10143; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10144; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10145; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10146; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10147; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10148; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10069; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10070; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10071; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10072; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10073; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10074; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10075; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10076; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10077; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10078; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10079; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10080; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10081; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10082; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10083; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10084; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10085; + return 10086; + } + short EndStoneBrickStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace EndStoneBrickWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short EndStoneBrickWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 14108; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 14112; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 14116; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 14120; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 14124; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 14128; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 14132; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 14136; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 14140; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 14144; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 14148; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 14152; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 14156; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 14160; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 14164; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 14168; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 14172; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 14176; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 14180; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 14184; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 14188; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 14192; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 14196; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 14200; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 14204; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 14208; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 14212; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 14216; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 14220; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 14224; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 14228; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 14232; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 14236; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 14240; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 14244; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 14248; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 14252; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 14256; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 14260; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 14264; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 14268; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 14272; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 14276; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 14280; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 14284; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 14288; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 14292; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 14296; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 14300; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 14304; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 14308; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 14312; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 14316; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 14320; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 14324; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 14328; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 14332; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 14336; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 14340; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 14344; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 14348; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 14352; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 14356; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 14360; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14364; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 14368; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 14372; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14376; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 14380; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 14384; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14388; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 14392; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14396; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14400; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14404; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14408; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14412; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14416; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14420; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14424; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14428; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 14109; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 14113; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 14117; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 14121; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 14125; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 14129; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 14133; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 14137; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 14141; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 14145; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 14149; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 14153; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 14157; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 14161; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 14165; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 14169; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 14173; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 14177; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 14181; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 14185; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 14189; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 14193; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 14197; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 14201; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 14205; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 14209; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 14213; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 14217; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 14221; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 14225; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 14229; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 14233; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 14237; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 14241; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 14245; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 14249; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 14253; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 14257; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 14261; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 14265; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 14269; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 14273; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 14277; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 14281; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 14285; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 14289; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 14293; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 14297; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 14301; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 14305; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 14309; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 14313; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 14317; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 14321; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 14325; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 14329; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 14333; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 14337; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 14341; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 14345; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 14349; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 14353; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 14357; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14361; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 14365; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14369; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14373; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 14377; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14381; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14385; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 14389; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14393; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14397; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14401; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14405; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14409; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14413; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14417; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14421; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14425; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14429; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 14110; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 14114; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 14118; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 14122; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 14126; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 14130; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 14134; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 14138; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 14142; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 14146; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 14150; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 14154; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 14158; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 14162; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 14166; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 14170; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 14174; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 14178; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 14182; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 14186; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 14190; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 14194; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 14198; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 14202; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 14206; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 14210; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 14214; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 14218; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 14222; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 14226; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 14230; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 14234; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 14238; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 14242; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 14246; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 14250; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 14254; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 14258; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 14262; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 14266; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 14270; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 14274; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 14278; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 14282; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 14286; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 14290; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 14294; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 14298; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 14302; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 14306; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 14310; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 14314; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 14318; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 14322; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 14326; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 14330; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14334; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 14338; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 14342; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14346; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 14350; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 14354; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14358; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 14362; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14366; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14370; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 14374; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14378; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14382; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 14386; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14390; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14394; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 14398; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14402; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14406; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 14410; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14414; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14418; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 14422; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14426; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14430; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 14107; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 14111; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 14115; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 14119; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 14123; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 14127; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 14131; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 14135; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 14139; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 14143; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 14147; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 14151; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 14155; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 14159; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 14163; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 14167; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 14171; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 14175; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 14179; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 14183; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 14187; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 14191; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 14195; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 14199; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 14203; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 14207; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 14211; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 14215; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 14219; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 14223; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 14227; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 14231; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 14235; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 14239; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 14243; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 14247; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 14251; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 14255; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 14259; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 14263; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 14267; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 14271; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 14275; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 14279; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 14283; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 14287; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 14291; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 14295; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 14299; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 14303; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 14307; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 14311; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 14315; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 14319; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 14323; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 14327; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14331; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 14335; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 14339; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14343; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 14347; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 14351; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14355; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 14359; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 14363; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14367; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 14371; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 14375; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14379; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 14383; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 14387; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14391; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 14395; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14399; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14403; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 14407; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14411; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14415; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 14419; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14423; + return 14427; + } + short EndStoneBrickWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace EndStoneBricks + { + constexpr short EndStoneBricks() + { + return 9218; + } + } + namespace EnderChest + { + constexpr short EnderChest(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 5252; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 5254; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 5256; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 5251; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 5253; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 5255; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 5257; + return 5258; + } + short EnderChest(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace Farmland + { + constexpr short Farmland(unsigned char Moisture) + { + if (Moisture == 0) return 3365; + if (Moisture == 1) return 3366; + if (Moisture == 2) return 3367; + if (Moisture == 3) return 3368; + if (Moisture == 4) return 3369; + if (Moisture == 5) return 3370; + if (Moisture == 6) return 3371; + return 3372; + } + short Farmland(); + unsigned char Moisture(short ID); + } + namespace Fern + { + constexpr short Fern() + { + return 1343; + } + } + namespace Fire + { + constexpr short Fire(unsigned char Age, bool East, bool North, bool South, bool Up, bool West) + { + if (Up && !West && East && South && Age == 2 && !North) return 1513; + if (Up && !West && East && South && Age == 10 && !North) return 1769; + if (!Up && West && East && South && Age == 2 && !North) return 1514; + if (!Up && West && East && South && Age == 10 && !North) return 1770; + if (!Up && !West && East && South && Age == 2 && !North) return 1515; + if (!Up && !West && East && South && Age == 10 && !North) return 1771; + if (Up && West && East && !South && Age == 2 && !North) return 1516; + if (Up && West && East && !South && Age == 10 && !North) return 1772; + if (Up && !West && East && !South && Age == 2 && !North) return 1517; + if (Up && !West && East && !South && Age == 10 && !North) return 1773; + if (!Up && West && East && !South && Age == 2 && !North) return 1518; + if (!Up && West && East && !South && Age == 10 && !North) return 1774; + if (!Up && !West && East && !South && Age == 2 && !North) return 1519; + if (!Up && !West && East && !South && Age == 10 && !North) return 1775; + if (Up && West && !East && South && Age == 2 && North) return 1520; + if (Up && West && !East && South && Age == 10 && North) return 1776; + if (Up && !West && !East && South && Age == 2 && North) return 1521; + if (Up && !West && !East && South && Age == 10 && North) return 1777; + if (!Up && West && !East && South && Age == 2 && North) return 1522; + if (!Up && West && !East && South && Age == 10 && North) return 1778; + if (!Up && !West && !East && South && Age == 2 && North) return 1523; + if (!Up && !West && !East && South && Age == 10 && North) return 1779; + if (Up && West && !East && !South && Age == 2 && North) return 1524; + if (Up && West && !East && !South && Age == 10 && North) return 1780; + if (Up && !West && !East && !South && Age == 2 && North) return 1525; + if (Up && !West && !East && !South && Age == 10 && North) return 1781; + if (!Up && West && !East && !South && Age == 2 && North) return 1526; + if (!Up && West && !East && !South && Age == 10 && North) return 1782; + if (!Up && !West && !East && !South && Age == 2 && North) return 1527; + if (!Up && !West && !East && !South && Age == 10 && North) return 1783; + if (Up && West && !East && South && Age == 2 && !North) return 1528; + if (Up && West && !East && South && Age == 10 && !North) return 1784; + if (Up && !West && !East && South && Age == 2 && !North) return 1529; + if (Up && !West && !East && South && Age == 10 && !North) return 1785; + if (!Up && West && !East && South && Age == 2 && !North) return 1530; + if (!Up && West && !East && South && Age == 10 && !North) return 1786; + if (!Up && !West && !East && South && Age == 2 && !North) return 1531; + if (!Up && !West && !East && South && Age == 10 && !North) return 1787; + if (Up && West && !East && !South && Age == 2 && !North) return 1532; + if (Up && West && !East && !South && Age == 10 && !North) return 1788; + if (Up && !West && !East && !South && Age == 2 && !North) return 1533; + if (Up && !West && !East && !South && Age == 10 && !North) return 1789; + if (!Up && West && !East && !South && Age == 2 && !North) return 1534; + if (!Up && West && !East && !South && Age == 10 && !North) return 1790; + if (!Up && !West && !East && !South && Age == 2 && !North) return 1535; + if (!Up && !West && !East && !South && Age == 10 && !North) return 1791; + if (Up && West && East && South && Age == 3 && North) return 1536; + if (Up && West && East && South && Age == 11 && North) return 1792; + if (Up && !West && East && South && Age == 3 && North) return 1537; + if (Up && !West && East && South && Age == 11 && North) return 1793; + if (!Up && West && East && South && Age == 3 && North) return 1538; + if (!Up && West && East && South && Age == 11 && North) return 1794; + if (!Up && !West && East && South && Age == 3 && North) return 1539; + if (!Up && !West && East && South && Age == 11 && North) return 1795; + if (Up && West && East && !South && Age == 3 && North) return 1540; + if (Up && West && East && !South && Age == 11 && North) return 1796; + if (Up && !West && East && !South && Age == 3 && North) return 1541; + if (Up && !West && East && !South && Age == 11 && North) return 1797; + if (!Up && West && East && !South && Age == 3 && North) return 1542; + if (!Up && West && East && !South && Age == 11 && North) return 1798; + if (!Up && !West && East && !South && Age == 3 && North) return 1543; + if (!Up && !West && East && !South && Age == 11 && North) return 1799; + if (Up && West && East && South && Age == 3 && !North) return 1544; + if (Up && West && East && South && Age == 11 && !North) return 1800; + if (Up && !West && East && South && Age == 3 && !North) return 1545; + if (Up && !West && East && South && Age == 11 && !North) return 1801; + if (!Up && West && East && South && Age == 3 && !North) return 1546; + if (!Up && West && East && South && Age == 11 && !North) return 1802; + if (!Up && !West && East && South && Age == 3 && !North) return 1547; + if (!Up && !West && East && South && Age == 11 && !North) return 1803; + if (Up && West && East && !South && Age == 3 && !North) return 1548; + if (Up && West && East && !South && Age == 11 && !North) return 1804; + if (Up && !West && East && !South && Age == 3 && !North) return 1549; + if (Up && !West && East && !South && Age == 11 && !North) return 1805; + if (!Up && West && East && !South && Age == 3 && !North) return 1550; + if (!Up && West && East && !South && Age == 11 && !North) return 1806; + if (!Up && !West && East && !South && Age == 3 && !North) return 1551; + if (!Up && !West && East && !South && Age == 11 && !North) return 1807; + if (Up && West && !East && South && Age == 3 && North) return 1552; + if (Up && West && !East && South && Age == 11 && North) return 1808; + if (Up && !West && !East && South && Age == 3 && North) return 1553; + if (Up && !West && !East && South && Age == 11 && North) return 1809; + if (!Up && West && !East && South && Age == 3 && North) return 1554; + if (!Up && West && !East && South && Age == 11 && North) return 1810; + if (!Up && !West && !East && South && Age == 3 && North) return 1555; + if (!Up && !West && !East && South && Age == 11 && North) return 1811; + if (Up && West && !East && !South && Age == 3 && North) return 1556; + if (Up && West && !East && !South && Age == 11 && North) return 1812; + if (Up && !West && !East && !South && Age == 3 && North) return 1557; + if (Up && !West && !East && !South && Age == 11 && North) return 1813; + if (!Up && West && !East && !South && Age == 3 && North) return 1558; + if (!Up && West && !East && !South && Age == 11 && North) return 1814; + if (!Up && !West && !East && !South && Age == 3 && North) return 1559; + if (!Up && !West && !East && !South && Age == 11 && North) return 1815; + if (Up && West && !East && South && Age == 3 && !North) return 1560; + if (Up && West && !East && South && Age == 11 && !North) return 1816; + if (Up && !West && !East && South && Age == 3 && !North) return 1561; + if (Up && !West && !East && South && Age == 11 && !North) return 1817; + if (!Up && West && !East && South && Age == 3 && !North) return 1562; + if (!Up && West && !East && South && Age == 11 && !North) return 1818; + if (!Up && !West && !East && South && Age == 3 && !North) return 1563; + if (!Up && !West && !East && South && Age == 11 && !North) return 1819; + if (Up && West && !East && !South && Age == 3 && !North) return 1564; + if (Up && West && !East && !South && Age == 11 && !North) return 1820; + if (Up && !West && !East && !South && Age == 3 && !North) return 1565; + if (Up && !West && !East && !South && Age == 11 && !North) return 1821; + if (!Up && West && !East && !South && Age == 3 && !North) return 1566; + if (!Up && West && !East && !South && Age == 11 && !North) return 1822; + if (!Up && !West && !East && !South && Age == 3 && !North) return 1567; + if (!Up && !West && !East && !South && Age == 11 && !North) return 1823; + if (Up && West && East && South && Age == 4 && North) return 1568; + if (Up && West && East && South && Age == 12 && North) return 1824; + if (Up && !West && East && South && Age == 4 && North) return 1569; + if (Up && !West && East && South && Age == 12 && North) return 1825; + if (!Up && West && East && South && Age == 4 && North) return 1570; + if (!Up && West && East && South && Age == 12 && North) return 1826; + if (!Up && !West && East && South && Age == 4 && North) return 1571; + if (!Up && !West && East && South && Age == 12 && North) return 1827; + if (Up && West && East && !South && Age == 4 && North) return 1572; + if (Up && West && East && !South && Age == 12 && North) return 1828; + if (Up && !West && East && !South && Age == 4 && North) return 1573; + if (Up && !West && East && !South && Age == 12 && North) return 1829; + if (!Up && West && East && !South && Age == 4 && North) return 1574; + if (!Up && West && East && !South && Age == 12 && North) return 1830; + if (!Up && !West && East && !South && Age == 4 && North) return 1575; + if (!Up && !West && East && !South && Age == 12 && North) return 1831; + if (Up && West && East && South && Age == 4 && !North) return 1576; + if (Up && West && East && South && Age == 12 && !North) return 1832; + if (Up && !West && East && South && Age == 4 && !North) return 1577; + if (Up && !West && East && South && Age == 12 && !North) return 1833; + if (!Up && West && East && South && Age == 4 && !North) return 1578; + if (!Up && West && East && South && Age == 12 && !North) return 1834; + if (!Up && !West && East && South && Age == 4 && !North) return 1579; + if (!Up && !West && East && South && Age == 12 && !North) return 1835; + if (Up && West && East && !South && Age == 4 && !North) return 1580; + if (Up && West && East && !South && Age == 12 && !North) return 1836; + if (Up && !West && East && !South && Age == 4 && !North) return 1581; + if (Up && !West && East && !South && Age == 12 && !North) return 1837; + if (!Up && West && East && !South && Age == 4 && !North) return 1582; + if (!Up && West && East && !South && Age == 12 && !North) return 1838; + if (!Up && !West && East && !South && Age == 4 && !North) return 1583; + if (!Up && !West && East && !South && Age == 12 && !North) return 1839; + if (Up && West && !East && South && Age == 4 && North) return 1584; + if (Up && West && !East && South && Age == 12 && North) return 1840; + if (Up && !West && !East && South && Age == 4 && North) return 1585; + if (Up && !West && !East && South && Age == 12 && North) return 1841; + if (!Up && West && !East && South && Age == 4 && North) return 1586; + if (!Up && West && !East && South && Age == 12 && North) return 1842; + if (!Up && !West && !East && South && Age == 4 && North) return 1587; + if (!Up && !West && !East && South && Age == 12 && North) return 1843; + if (Up && West && !East && !South && Age == 4 && North) return 1588; + if (Up && West && !East && !South && Age == 12 && North) return 1844; + if (Up && !West && !East && !South && Age == 4 && North) return 1589; + if (Up && !West && !East && !South && Age == 12 && North) return 1845; + if (!Up && West && !East && !South && Age == 4 && North) return 1590; + if (!Up && West && !East && !South && Age == 12 && North) return 1846; + if (!Up && !West && !East && !South && Age == 4 && North) return 1591; + if (!Up && !West && !East && !South && Age == 12 && North) return 1847; + if (Up && West && !East && South && Age == 4 && !North) return 1592; + if (Up && West && !East && South && Age == 12 && !North) return 1848; + if (Up && !West && !East && South && Age == 4 && !North) return 1593; + if (Up && !West && !East && South && Age == 12 && !North) return 1849; + if (!Up && West && !East && South && Age == 4 && !North) return 1594; + if (!Up && West && !East && South && Age == 12 && !North) return 1850; + if (!Up && !West && !East && South && Age == 4 && !North) return 1595; + if (!Up && !West && !East && South && Age == 12 && !North) return 1851; + if (Up && West && !East && !South && Age == 4 && !North) return 1596; + if (Up && West && !East && !South && Age == 12 && !North) return 1852; + if (Up && !West && !East && !South && Age == 4 && !North) return 1597; + if (Up && !West && !East && !South && Age == 12 && !North) return 1853; + if (!Up && West && !East && !South && Age == 4 && !North) return 1598; + if (!Up && West && !East && !South && Age == 12 && !North) return 1854; + if (!Up && !West && !East && !South && Age == 4 && !North) return 1599; + if (!Up && !West && !East && !South && Age == 12 && !North) return 1855; + if (Up && West && East && South && Age == 5 && North) return 1600; + if (Up && West && East && South && Age == 13 && North) return 1856; + if (Up && !West && East && South && Age == 5 && North) return 1601; + if (Up && !West && East && South && Age == 13 && North) return 1857; + if (!Up && West && East && South && Age == 5 && North) return 1602; + if (!Up && West && East && South && Age == 13 && North) return 1858; + if (!Up && !West && East && South && Age == 5 && North) return 1603; + if (!Up && !West && East && South && Age == 13 && North) return 1859; + if (Up && West && East && !South && Age == 5 && North) return 1604; + if (Up && West && East && !South && Age == 13 && North) return 1860; + if (Up && !West && East && !South && Age == 5 && North) return 1605; + if (Up && !West && East && !South && Age == 13 && North) return 1861; + if (!Up && West && East && !South && Age == 5 && North) return 1606; + if (!Up && West && East && !South && Age == 13 && North) return 1862; + if (!Up && !West && East && !South && Age == 5 && North) return 1607; + if (!Up && !West && East && !South && Age == 13 && North) return 1863; + if (Up && West && East && South && Age == 5 && !North) return 1608; + if (Up && West && East && South && Age == 13 && !North) return 1864; + if (Up && !West && East && South && Age == 5 && !North) return 1609; + if (Up && !West && East && South && Age == 13 && !North) return 1865; + if (!Up && West && East && South && Age == 5 && !North) return 1610; + if (!Up && West && East && South && Age == 13 && !North) return 1866; + if (!Up && !West && East && South && Age == 5 && !North) return 1611; + if (!Up && !West && East && South && Age == 13 && !North) return 1867; + if (Up && West && East && !South && Age == 5 && !North) return 1612; + if (Up && West && East && !South && Age == 13 && !North) return 1868; + if (Up && !West && East && !South && Age == 5 && !North) return 1613; + if (Up && !West && East && !South && Age == 13 && !North) return 1869; + if (!Up && West && East && !South && Age == 5 && !North) return 1614; + if (!Up && West && East && !South && Age == 13 && !North) return 1870; + if (!Up && !West && East && !South && Age == 5 && !North) return 1615; + if (!Up && !West && East && !South && Age == 13 && !North) return 1871; + if (Up && West && !East && South && Age == 5 && North) return 1616; + if (Up && West && !East && South && Age == 13 && North) return 1872; + if (Up && !West && !East && South && Age == 5 && North) return 1617; + if (Up && !West && !East && South && Age == 13 && North) return 1873; + if (!Up && West && !East && South && Age == 5 && North) return 1618; + if (!Up && West && !East && South && Age == 13 && North) return 1874; + if (!Up && !West && !East && South && Age == 5 && North) return 1619; + if (!Up && !West && !East && South && Age == 13 && North) return 1875; + if (Up && West && !East && !South && Age == 5 && North) return 1620; + if (Up && West && !East && !South && Age == 13 && North) return 1876; + if (Up && !West && !East && !South && Age == 5 && North) return 1621; + if (Up && !West && !East && !South && Age == 13 && North) return 1877; + if (!Up && West && !East && !South && Age == 5 && North) return 1622; + if (!Up && West && !East && !South && Age == 13 && North) return 1878; + if (!Up && !West && !East && !South && Age == 5 && North) return 1623; + if (!Up && !West && !East && !South && Age == 13 && North) return 1879; + if (Up && West && !East && South && Age == 5 && !North) return 1624; + if (Up && West && !East && South && Age == 13 && !North) return 1880; + if (Up && !West && !East && South && Age == 5 && !North) return 1625; + if (Up && !West && !East && South && Age == 13 && !North) return 1881; + if (!Up && West && !East && South && Age == 5 && !North) return 1626; + if (!Up && West && !East && South && Age == 13 && !North) return 1882; + if (!Up && !West && !East && South && Age == 5 && !North) return 1627; + if (!Up && !West && !East && South && Age == 13 && !North) return 1883; + if (Up && West && !East && !South && Age == 5 && !North) return 1628; + if (Up && West && !East && !South && Age == 13 && !North) return 1884; + if (Up && !West && !East && !South && Age == 5 && !North) return 1629; + if (Up && !West && !East && !South && Age == 13 && !North) return 1885; + if (!Up && West && !East && !South && Age == 5 && !North) return 1630; + if (!Up && West && !East && !South && Age == 13 && !North) return 1886; + if (!Up && !West && !East && !South && Age == 5 && !North) return 1631; + if (!Up && !West && !East && !South && Age == 13 && !North) return 1887; + if (Up && West && East && South && Age == 6 && North) return 1632; + if (Up && West && East && South && Age == 14 && North) return 1888; + if (Up && !West && East && South && Age == 6 && North) return 1633; + if (Up && !West && East && South && Age == 14 && North) return 1889; + if (!Up && West && East && South && Age == 6 && North) return 1634; + if (!Up && West && East && South && Age == 14 && North) return 1890; + if (!Up && !West && East && South && Age == 6 && North) return 1635; + if (!Up && !West && East && South && Age == 14 && North) return 1891; + if (Up && West && East && !South && Age == 6 && North) return 1636; + if (Up && West && East && !South && Age == 14 && North) return 1892; + if (Up && !West && East && !South && Age == 6 && North) return 1637; + if (Up && !West && East && !South && Age == 14 && North) return 1893; + if (!Up && West && East && !South && Age == 6 && North) return 1638; + if (!Up && West && East && !South && Age == 14 && North) return 1894; + if (!Up && !West && East && !South && Age == 6 && North) return 1639; + if (!Up && !West && East && !South && Age == 14 && North) return 1895; + if (Up && West && East && South && Age == 6 && !North) return 1640; + if (Up && West && East && South && Age == 14 && !North) return 1896; + if (Up && !West && East && South && Age == 6 && !North) return 1641; + if (Up && !West && East && South && Age == 14 && !North) return 1897; + if (!Up && West && East && South && Age == 6 && !North) return 1642; + if (!Up && West && East && South && Age == 14 && !North) return 1898; + if (!Up && !West && East && South && Age == 6 && !North) return 1643; + if (!Up && !West && East && South && Age == 14 && !North) return 1899; + if (Up && West && East && !South && Age == 6 && !North) return 1644; + if (Up && West && East && !South && Age == 14 && !North) return 1900; + if (Up && !West && East && !South && Age == 6 && !North) return 1645; + if (Up && !West && East && !South && Age == 14 && !North) return 1901; + if (!Up && West && East && !South && Age == 6 && !North) return 1646; + if (!Up && West && East && !South && Age == 14 && !North) return 1902; + if (!Up && !West && East && !South && Age == 6 && !North) return 1647; + if (!Up && !West && East && !South && Age == 14 && !North) return 1903; + if (Up && West && !East && South && Age == 6 && North) return 1648; + if (Up && West && !East && South && Age == 14 && North) return 1904; + if (Up && !West && !East && South && Age == 6 && North) return 1649; + if (Up && !West && !East && South && Age == 14 && North) return 1905; + if (!Up && West && !East && South && Age == 6 && North) return 1650; + if (!Up && West && !East && South && Age == 14 && North) return 1906; + if (!Up && !West && !East && South && Age == 6 && North) return 1651; + if (!Up && !West && !East && South && Age == 14 && North) return 1907; + if (Up && West && !East && !South && Age == 6 && North) return 1652; + if (Up && West && !East && !South && Age == 14 && North) return 1908; + if (Up && !West && !East && !South && Age == 6 && North) return 1653; + if (Up && !West && !East && !South && Age == 14 && North) return 1909; + if (!Up && West && !East && !South && Age == 6 && North) return 1654; + if (!Up && West && !East && !South && Age == 14 && North) return 1910; + if (!Up && !West && !East && !South && Age == 6 && North) return 1655; + if (!Up && !West && !East && !South && Age == 14 && North) return 1911; + if (Up && West && !East && South && Age == 6 && !North) return 1656; + if (Up && West && !East && South && Age == 14 && !North) return 1912; + if (Up && !West && !East && South && Age == 6 && !North) return 1657; + if (Up && !West && !East && South && Age == 14 && !North) return 1913; + if (!Up && West && !East && South && Age == 6 && !North) return 1658; + if (!Up && West && !East && South && Age == 14 && !North) return 1914; + if (!Up && !West && !East && South && Age == 6 && !North) return 1659; + if (!Up && !West && !East && South && Age == 14 && !North) return 1915; + if (Up && West && !East && !South && Age == 6 && !North) return 1660; + if (Up && West && !East && !South && Age == 14 && !North) return 1916; + if (Up && !West && !East && !South && Age == 6 && !North) return 1661; + if (Up && !West && !East && !South && Age == 14 && !North) return 1917; + if (!Up && West && !East && !South && Age == 6 && !North) return 1662; + if (!Up && West && !East && !South && Age == 14 && !North) return 1918; + if (!Up && !West && !East && !South && Age == 6 && !North) return 1663; + if (!Up && !West && !East && !South && Age == 14 && !North) return 1919; + if (Up && West && East && South && Age == 7 && North) return 1664; + if (Up && West && East && South && Age == 15 && North) return 1920; + if (Up && !West && East && South && Age == 7 && North) return 1665; + if (Up && !West && East && South && Age == 15 && North) return 1921; + if (!Up && West && East && South && Age == 7 && North) return 1666; + if (!Up && West && East && South && Age == 15 && North) return 1922; + if (!Up && !West && East && South && Age == 7 && North) return 1667; + if (!Up && !West && East && South && Age == 15 && North) return 1923; + if (Up && West && East && !South && Age == 7 && North) return 1668; + if (Up && West && East && !South && Age == 15 && North) return 1924; + if (Up && !West && East && !South && Age == 7 && North) return 1669; + if (Up && !West && East && !South && Age == 15 && North) return 1925; + if (!Up && West && East && !South && Age == 7 && North) return 1670; + if (!Up && West && East && !South && Age == 15 && North) return 1926; + if (!Up && !West && East && !South && Age == 7 && North) return 1671; + if (!Up && !West && East && !South && Age == 15 && North) return 1927; + if (Up && West && East && South && Age == 7 && !North) return 1672; + if (Up && West && East && South && Age == 15 && !North) return 1928; + if (Up && !West && East && South && Age == 7 && !North) return 1673; + if (Up && !West && East && South && Age == 15 && !North) return 1929; + if (!Up && West && East && South && Age == 7 && !North) return 1674; + if (!Up && West && East && South && Age == 15 && !North) return 1930; + if (!Up && !West && East && South && Age == 7 && !North) return 1675; + if (!Up && !West && East && South && Age == 15 && !North) return 1931; + if (Up && West && East && !South && Age == 7 && !North) return 1676; + if (Up && West && East && !South && Age == 15 && !North) return 1932; + if (Up && !West && East && !South && Age == 7 && !North) return 1677; + if (Up && !West && East && !South && Age == 15 && !North) return 1933; + if (!Up && West && East && !South && Age == 7 && !North) return 1678; + if (!Up && West && East && !South && Age == 15 && !North) return 1934; + if (!Up && !West && East && !South && Age == 7 && !North) return 1679; + if (!Up && !West && East && !South && Age == 15 && !North) return 1935; + if (Up && West && !East && South && Age == 7 && North) return 1680; + if (Up && West && !East && South && Age == 15 && North) return 1936; + if (Up && !West && !East && South && Age == 7 && North) return 1681; + if (Up && !West && !East && South && Age == 15 && North) return 1937; + if (!Up && West && !East && South && Age == 7 && North) return 1682; + if (!Up && West && !East && South && Age == 15 && North) return 1938; + if (!Up && !West && !East && South && Age == 7 && North) return 1683; + if (!Up && !West && !East && South && Age == 15 && North) return 1939; + if (Up && West && !East && !South && Age == 7 && North) return 1684; + if (Up && West && !East && !South && Age == 15 && North) return 1940; + if (Up && !West && !East && !South && Age == 7 && North) return 1685; + if (Up && !West && !East && !South && Age == 15 && North) return 1941; + if (!Up && West && !East && !South && Age == 7 && North) return 1686; + if (!Up && West && !East && !South && Age == 15 && North) return 1942; + if (!Up && !West && !East && !South && Age == 7 && North) return 1687; + if (!Up && !West && !East && !South && Age == 15 && North) return 1943; + if (Up && West && !East && South && Age == 7 && !North) return 1688; + if (Up && West && !East && South && Age == 15 && !North) return 1944; + if (Up && !West && !East && South && Age == 7 && !North) return 1689; + if (Up && !West && !East && South && Age == 15 && !North) return 1945; + if (!Up && West && !East && South && Age == 7 && !North) return 1690; + if (!Up && West && !East && South && Age == 15 && !North) return 1946; + if (!Up && !West && !East && South && Age == 7 && !North) return 1691; + if (!Up && !West && !East && South && Age == 15 && !North) return 1947; + if (Up && West && !East && !South && Age == 7 && !North) return 1692; + if (Up && West && !East && !South && Age == 15 && !North) return 1948; + if (Up && !West && !East && !South && Age == 7 && !North) return 1693; + if (Up && !West && !East && !South && Age == 15 && !North) return 1949; + if (!Up && West && !East && !South && Age == 7 && !North) return 1694; + if (!Up && West && !East && !South && Age == 15 && !North) return 1950; + if (!Up && !West && !East && !South && Age == 7 && !North) return 1695; + if (Up && West && East && South && Age == 0 && North) return 1440; + if (Up && West && East && South && Age == 8 && North) return 1696; + if (Up && !West && East && South && Age == 0 && North) return 1441; + if (Up && !West && East && South && Age == 8 && North) return 1697; + if (!Up && West && East && South && Age == 0 && North) return 1442; + if (!Up && West && East && South && Age == 8 && North) return 1698; + if (!Up && !West && East && South && Age == 0 && North) return 1443; + if (!Up && !West && East && South && Age == 8 && North) return 1699; + if (Up && West && East && !South && Age == 0 && North) return 1444; + if (Up && West && East && !South && Age == 8 && North) return 1700; + if (Up && !West && East && !South && Age == 0 && North) return 1445; + if (Up && !West && East && !South && Age == 8 && North) return 1701; + if (!Up && West && East && !South && Age == 0 && North) return 1446; + if (!Up && West && East && !South && Age == 8 && North) return 1702; + if (!Up && !West && East && !South && Age == 0 && North) return 1447; + if (!Up && !West && East && !South && Age == 8 && North) return 1703; + if (Up && West && East && South && Age == 0 && !North) return 1448; + if (Up && West && East && South && Age == 8 && !North) return 1704; + if (Up && !West && East && South && Age == 0 && !North) return 1449; + if (Up && !West && East && South && Age == 8 && !North) return 1705; + if (!Up && West && East && South && Age == 0 && !North) return 1450; + if (!Up && West && East && South && Age == 8 && !North) return 1706; + if (!Up && !West && East && South && Age == 0 && !North) return 1451; + if (!Up && !West && East && South && Age == 8 && !North) return 1707; + if (Up && West && East && !South && Age == 0 && !North) return 1452; + if (Up && West && East && !South && Age == 8 && !North) return 1708; + if (Up && !West && East && !South && Age == 0 && !North) return 1453; + if (Up && !West && East && !South && Age == 8 && !North) return 1709; + if (!Up && West && East && !South && Age == 0 && !North) return 1454; + if (!Up && West && East && !South && Age == 8 && !North) return 1710; + if (!Up && !West && East && !South && Age == 0 && !North) return 1455; + if (!Up && !West && East && !South && Age == 8 && !North) return 1711; + if (Up && West && !East && South && Age == 0 && North) return 1456; + if (Up && West && !East && South && Age == 8 && North) return 1712; + if (Up && !West && !East && South && Age == 0 && North) return 1457; + if (Up && !West && !East && South && Age == 8 && North) return 1713; + if (!Up && West && !East && South && Age == 0 && North) return 1458; + if (!Up && West && !East && South && Age == 8 && North) return 1714; + if (!Up && !West && !East && South && Age == 0 && North) return 1459; + if (!Up && !West && !East && South && Age == 8 && North) return 1715; + if (Up && West && !East && !South && Age == 0 && North) return 1460; + if (Up && West && !East && !South && Age == 8 && North) return 1716; + if (Up && !West && !East && !South && Age == 0 && North) return 1461; + if (Up && !West && !East && !South && Age == 8 && North) return 1717; + if (!Up && West && !East && !South && Age == 0 && North) return 1462; + if (!Up && West && !East && !South && Age == 8 && North) return 1718; + if (!Up && !West && !East && !South && Age == 0 && North) return 1463; + if (!Up && !West && !East && !South && Age == 8 && North) return 1719; + if (Up && West && !East && South && Age == 0 && !North) return 1464; + if (Up && West && !East && South && Age == 8 && !North) return 1720; + if (Up && !West && !East && South && Age == 0 && !North) return 1465; + if (Up && !West && !East && South && Age == 8 && !North) return 1721; + if (!Up && West && !East && South && Age == 0 && !North) return 1466; + if (!Up && West && !East && South && Age == 8 && !North) return 1722; + if (!Up && !West && !East && South && Age == 0 && !North) return 1467; + if (!Up && !West && !East && South && Age == 8 && !North) return 1723; + if (Up && West && !East && !South && Age == 0 && !North) return 1468; + if (Up && West && !East && !South && Age == 8 && !North) return 1724; + if (Up && !West && !East && !South && Age == 0 && !North) return 1469; + if (Up && !West && !East && !South && Age == 8 && !North) return 1725; + if (!Up && West && !East && !South && Age == 0 && !North) return 1470; + if (!Up && West && !East && !South && Age == 8 && !North) return 1726; + if (!Up && !West && !East && !South && Age == 0 && !North) return 1471; + if (!Up && !West && !East && !South && Age == 8 && !North) return 1727; + if (Up && West && East && South && Age == 1 && North) return 1472; + if (Up && West && East && South && Age == 9 && North) return 1728; + if (Up && !West && East && South && Age == 1 && North) return 1473; + if (Up && !West && East && South && Age == 9 && North) return 1729; + if (!Up && West && East && South && Age == 1 && North) return 1474; + if (!Up && West && East && South && Age == 9 && North) return 1730; + if (!Up && !West && East && South && Age == 1 && North) return 1475; + if (!Up && !West && East && South && Age == 9 && North) return 1731; + if (Up && West && East && !South && Age == 1 && North) return 1476; + if (Up && West && East && !South && Age == 9 && North) return 1732; + if (Up && !West && East && !South && Age == 1 && North) return 1477; + if (Up && !West && East && !South && Age == 9 && North) return 1733; + if (!Up && West && East && !South && Age == 1 && North) return 1478; + if (!Up && West && East && !South && Age == 9 && North) return 1734; + if (!Up && !West && East && !South && Age == 1 && North) return 1479; + if (!Up && !West && East && !South && Age == 9 && North) return 1735; + if (Up && West && East && South && Age == 1 && !North) return 1480; + if (Up && West && East && South && Age == 9 && !North) return 1736; + if (Up && !West && East && South && Age == 1 && !North) return 1481; + if (Up && !West && East && South && Age == 9 && !North) return 1737; + if (!Up && West && East && South && Age == 1 && !North) return 1482; + if (!Up && West && East && South && Age == 9 && !North) return 1738; + if (!Up && !West && East && South && Age == 1 && !North) return 1483; + if (!Up && !West && East && South && Age == 9 && !North) return 1739; + if (Up && West && East && !South && Age == 1 && !North) return 1484; + if (Up && West && East && !South && Age == 9 && !North) return 1740; + if (Up && !West && East && !South && Age == 1 && !North) return 1485; + if (Up && !West && East && !South && Age == 9 && !North) return 1741; + if (!Up && West && East && !South && Age == 1 && !North) return 1486; + if (!Up && West && East && !South && Age == 9 && !North) return 1742; + if (!Up && !West && East && !South && Age == 1 && !North) return 1487; + if (!Up && !West && East && !South && Age == 9 && !North) return 1743; + if (Up && West && !East && South && Age == 1 && North) return 1488; + if (Up && West && !East && South && Age == 9 && North) return 1744; + if (Up && !West && !East && South && Age == 1 && North) return 1489; + if (Up && !West && !East && South && Age == 9 && North) return 1745; + if (!Up && West && !East && South && Age == 1 && North) return 1490; + if (!Up && West && !East && South && Age == 9 && North) return 1746; + if (!Up && !West && !East && South && Age == 1 && North) return 1491; + if (!Up && !West && !East && South && Age == 9 && North) return 1747; + if (Up && West && !East && !South && Age == 1 && North) return 1492; + if (Up && West && !East && !South && Age == 9 && North) return 1748; + if (Up && !West && !East && !South && Age == 1 && North) return 1493; + if (Up && !West && !East && !South && Age == 9 && North) return 1749; + if (!Up && West && !East && !South && Age == 1 && North) return 1494; + if (!Up && West && !East && !South && Age == 9 && North) return 1750; + if (!Up && !West && !East && !South && Age == 1 && North) return 1495; + if (!Up && !West && !East && !South && Age == 9 && North) return 1751; + if (Up && West && !East && South && Age == 1 && !North) return 1496; + if (Up && West && !East && South && Age == 9 && !North) return 1752; + if (Up && !West && !East && South && Age == 1 && !North) return 1497; + if (Up && !West && !East && South && Age == 9 && !North) return 1753; + if (!Up && West && !East && South && Age == 1 && !North) return 1498; + if (!Up && West && !East && South && Age == 9 && !North) return 1754; + if (!Up && !West && !East && South && Age == 1 && !North) return 1499; + if (!Up && !West && !East && South && Age == 9 && !North) return 1755; + if (Up && West && !East && !South && Age == 1 && !North) return 1500; + if (Up && West && !East && !South && Age == 9 && !North) return 1756; + if (Up && !West && !East && !South && Age == 1 && !North) return 1501; + if (Up && !West && !East && !South && Age == 9 && !North) return 1757; + if (!Up && West && !East && !South && Age == 1 && !North) return 1502; + if (!Up && West && !East && !South && Age == 9 && !North) return 1758; + if (!Up && !West && !East && !South && Age == 1 && !North) return 1503; + if (!Up && !West && !East && !South && Age == 9 && !North) return 1759; + if (Up && West && East && South && Age == 2 && North) return 1504; + if (Up && West && East && South && Age == 10 && North) return 1760; + if (Up && !West && East && South && Age == 2 && North) return 1505; + if (Up && !West && East && South && Age == 10 && North) return 1761; + if (!Up && West && East && South && Age == 2 && North) return 1506; + if (!Up && West && East && South && Age == 10 && North) return 1762; + if (!Up && !West && East && South && Age == 2 && North) return 1507; + if (!Up && !West && East && South && Age == 10 && North) return 1763; + if (Up && West && East && !South && Age == 2 && North) return 1508; + if (Up && West && East && !South && Age == 10 && North) return 1764; + if (Up && !West && East && !South && Age == 2 && North) return 1509; + if (Up && !West && East && !South && Age == 10 && North) return 1765; + if (!Up && West && East && !South && Age == 2 && North) return 1510; + if (!Up && West && East && !South && Age == 10 && North) return 1766; + if (!Up && !West && East && !South && Age == 2 && North) return 1511; + if (!Up && !West && East && !South && Age == 10 && North) return 1767; + if (Up && West && East && South && Age == 2 && !North) return 1512; + if (Up && West && East && South && Age == 10 && !North) return 1768; + return 1951; + } + short Fire(); + unsigned char Age(short ID); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Up(short ID); + bool West(short ID); + } + namespace FireCoral + { + constexpr short FireCoral() + { + if (false) return 9536; + return 9537; + } + bool Waterlogged(short ID); + } + namespace FireCoralBlock + { + constexpr short FireCoralBlock() + { + return 9518; + } + } + namespace FireCoralFan + { + constexpr short FireCoralFan() + { + if (false) return 9556; + return 9557; + } + bool Waterlogged(short ID); + } + namespace FireCoralWallFan + { + constexpr short FireCoralWallFan(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 9627; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 9624; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 9628; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 9625; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 9629; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 9626; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 9630; + return 9631; + } + short FireCoralWallFan(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace FletchingTable + { + constexpr short FletchingTable() + { + return 14820; + } + } + namespace FlowerPot + { + constexpr short FlowerPot() + { + return 6305; + } + } + namespace FrostedIce + { + constexpr short FrostedIce(unsigned char Age) + { + if (Age == 0) return 9249; + if (Age == 2) return 9251; + if (Age == 1) return 9250; + return 9252; + } + short FrostedIce(); + unsigned char Age(short ID); + } + namespace Furnace + { + constexpr short Furnace(eBlockFace Facing, bool Lit) + { + if (Facing == eBlockFace::BLOCK_FACE_XP && Lit) return 3379; + if (Facing == eBlockFace::BLOCK_FACE_ZM && Lit) return 3373; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !Lit) return 3374; + if (Facing == eBlockFace::BLOCK_FACE_ZP && Lit) return 3375; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !Lit) return 3376; + if (Facing == eBlockFace::BLOCK_FACE_XM && Lit) return 3377; + if (Facing == eBlockFace::BLOCK_FACE_XM && !Lit) return 3378; + return 3380; + } + short Furnace(); + eBlockFace Facing(short ID); + bool Lit(short ID); + } + namespace GildedBlackstone + { + constexpr short GildedBlackstone() + { + return 16664; + } + } + namespace Glass + { + constexpr short Glass() + { + return 231; + } + } + namespace GlassPane + { + constexpr short GlassPane(bool East, bool North, bool South, bool West) + { + if (!false && !South && West && !East && !North) return 4761; + if (!false && South && !West && East && North) return 4734; + if (!false && !South && !West && East && North) return 4738; + if (!false && South && !West && East && !North) return 4742; + if (!false && !South && !West && East && !North) return 4746; + if (!false && South && !West && !East && North) return 4750; + if (!false && !South && !West && !East && North) return 4754; + if (!false && South && !West && !East && !North) return 4758; + if (false && South && West && East && North) return 4731; + if (false && !South && West && East && North) return 4735; + if (false && South && West && East && !North) return 4739; + if (false && !South && West && East && !North) return 4743; + if (false && South && West && !East && North) return 4747; + if (false && !South && West && !East && North) return 4751; + if (false && South && West && !East && !North) return 4755; + if (false && !South && West && !East && !North) return 4759; + if (false && South && !West && East && North) return 4732; + if (false && !South && !West && East && North) return 4736; + if (false && South && !West && East && !North) return 4740; + if (false && !South && !West && East && !North) return 4744; + if (false && South && !West && !East && North) return 4748; + if (false && !South && !West && !East && North) return 4752; + if (false && South && !West && !East && !North) return 4756; + if (false && !South && !West && !East && !North) return 4760; + if (!false && South && West && East && North) return 4733; + if (!false && !South && West && East && North) return 4737; + if (!false && South && West && East && !North) return 4741; + if (!false && !South && West && East && !North) return 4745; + if (!false && South && West && !East && North) return 4749; + if (!false && !South && West && !East && North) return 4753; + if (!false && South && West && !East && !North) return 4757; + return 4762; + } + short GlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace Glowstone + { + constexpr short Glowstone() + { + return 4013; + } + } + namespace GoldBlock + { + constexpr short GoldBlock() + { + return 1427; + } + } + namespace GoldOre + { + constexpr short GoldOre() + { + return 69; + } + } + namespace Granite + { + constexpr short Granite() + { + return 2; + } + } + namespace GraniteSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short GraniteSlab(enum Type Type) + { + if (Type == Type::Top && !false) return 10838; + if (Type == Type::Double && !false) return 10842; + if (Type == Type::Bottom && false) return 10839; + if (Type == Type::Bottom && !false) return 10840; + if (Type == Type::Top && false) return 10837; + return 10841; + } + short GraniteSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace GraniteStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short GraniteStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10468; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10389; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10390; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10391; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10392; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10393; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10394; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10395; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10396; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10397; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10398; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10399; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10400; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10401; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10402; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10403; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10404; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10405; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10406; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10407; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10408; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10409; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10410; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10411; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10412; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10413; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10414; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10415; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10416; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10417; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10418; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10419; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10420; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10421; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10422; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10423; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10424; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10425; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10426; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10427; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10428; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10429; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10430; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10431; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10432; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10433; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10434; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10435; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10436; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10437; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10438; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10439; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10440; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10441; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10442; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10443; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10444; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10445; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10446; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10447; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10448; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10449; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10450; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10451; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10452; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10453; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10454; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10455; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10456; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10457; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10458; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10459; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10460; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10461; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10462; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10463; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10464; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10465; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10466; + return 10467; + } + short GraniteStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace GraniteWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short GraniteWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 12164; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 12168; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 12172; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 12176; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 12180; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 12184; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 12188; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 12192; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 12196; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 12200; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 12204; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 12208; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 12212; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 12216; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 12220; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 12224; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 12228; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 12232; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 12236; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 12240; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 12244; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 12248; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 12252; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 12256; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 12260; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 12264; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 12268; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 12272; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 12276; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 12280; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 12284; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 12288; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 12292; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 12296; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 12300; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 12304; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 12308; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 12312; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 12316; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 12320; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 12324; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 12328; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 12332; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 12336; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 12340; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 12344; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12348; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 12352; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 12356; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12360; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 12364; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 12368; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12372; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 12376; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 12380; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 12384; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 12388; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 12392; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 12396; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 12400; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 12404; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 12408; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 12412; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 12416; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12420; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 12424; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 12428; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12432; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 12436; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 12440; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12444; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 12448; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12452; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12456; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12460; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12464; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12468; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12472; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12476; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12480; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12484; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 12165; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 12169; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 12173; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 12177; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 12181; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 12185; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 12189; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 12193; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 12197; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 12201; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 12205; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 12209; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 12213; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 12217; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 12221; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 12225; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 12229; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 12233; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 12237; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 12241; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 12245; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 12249; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 12253; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 12257; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 12261; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 12265; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 12269; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 12273; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 12277; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 12281; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 12285; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 12289; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 12293; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 12297; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 12301; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 12305; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 12309; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 12313; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 12317; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 12321; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 12325; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 12329; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 12333; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 12337; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 12341; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12345; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 12349; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12353; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12357; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 12361; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12365; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12369; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 12373; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12377; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 12381; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 12385; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 12389; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 12393; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 12397; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 12401; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 12405; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 12409; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 12413; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12417; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 12421; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12425; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12429; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 12433; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12437; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12441; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 12445; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12449; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12453; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12457; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12461; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12465; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12469; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12473; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12477; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12481; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12485; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 12166; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 12170; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 12174; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 12178; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 12182; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 12186; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 12190; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 12194; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 12198; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 12202; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 12206; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 12210; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 12214; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 12218; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 12222; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 12226; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 12230; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 12234; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 12238; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 12242; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12246; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 12250; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 12254; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12258; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 12262; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 12266; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12270; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 12274; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 12278; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 12282; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 12286; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 12290; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 12294; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 12298; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 12302; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 12306; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 12310; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 12314; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12318; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 12322; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 12326; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12330; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 12334; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 12338; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12342; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 12346; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12350; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12354; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 12358; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12362; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12366; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 12370; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12374; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12378; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 12382; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 12386; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12390; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 12394; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 12398; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12402; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 12406; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 12410; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12414; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 12418; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12422; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12426; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 12430; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12434; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12438; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 12442; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12446; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12450; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 12454; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12458; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12462; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 12466; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12470; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12474; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 12478; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12482; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12486; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 12163; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 12167; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 12171; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 12175; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 12179; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 12183; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 12187; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 12191; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 12195; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 12199; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 12203; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 12207; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 12211; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 12215; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 12219; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 12223; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 12227; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 12231; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 12235; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 12239; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12243; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 12247; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 12251; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12255; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 12259; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 12263; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12267; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 12271; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 12275; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 12279; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 12283; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 12287; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 12291; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 12295; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 12299; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 12303; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 12307; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 12311; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12315; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 12319; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 12323; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12327; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 12331; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 12335; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12339; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 12343; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 12347; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12351; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 12355; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 12359; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12363; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 12367; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 12371; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12375; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 12379; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 12383; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12387; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 12391; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 12395; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12399; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 12403; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 12407; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12411; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 12415; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 12419; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12423; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 12427; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 12431; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12435; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 12439; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 12443; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12447; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 12451; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12455; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12459; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 12463; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12467; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12471; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 12475; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12479; + return 12483; + } + short GraniteWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace Grass + { + constexpr short Grass() + { + return 1342; + } + } + namespace GrassBlock + { + constexpr short GrassBlock(bool Snowy) + { + if (Snowy) return 8; + return 9; + } + short GrassBlock(); + bool Snowy(short ID); + } + namespace GrassPath + { + constexpr short GrassPath() + { + return 9223; + } + } + namespace Gravel + { + constexpr short Gravel() + { + return 68; + } + } + namespace GrayBanner + { + constexpr short GrayBanner(unsigned char Rotation) + { + if (Rotation == 2) return 8011; + if (Rotation == 3) return 8012; + if (Rotation == 4) return 8013; + if (Rotation == 5) return 8014; + if (Rotation == 6) return 8015; + if (Rotation == 7) return 8016; + if (Rotation == 8) return 8017; + if (Rotation == 9) return 8018; + if (Rotation == 10) return 8019; + if (Rotation == 11) return 8020; + if (Rotation == 12) return 8021; + if (Rotation == 13) return 8022; + if (Rotation == 14) return 8023; + if (Rotation == 0) return 8009; + if (Rotation == 1) return 8010; + return 8024; + } + short GrayBanner(); + unsigned char Rotation(short ID); + } + namespace GrayBed + { + enum class Part + { + Head, + Foot + }; + constexpr short GrayBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1167; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1171; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1175; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1164; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1168; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1172; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1161; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1165; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1169; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1173; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1162; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1166; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1170; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1174; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1163; + return 1176; + } + short GrayBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace GrayCarpet + { + constexpr short GrayCarpet() + { + return 7873; + } + } + namespace GrayConcrete + { + constexpr short GrayConcrete() + { + return 9445; + } + } + namespace GrayConcretePowder + { + constexpr short GrayConcretePowder() + { + return 9461; + } + } + namespace GrayGlazedTerracotta + { + constexpr short GrayGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9402; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9404; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9403; + return 9405; + } + short GrayGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace GrayShulkerBox + { + constexpr short GrayShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9323; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9320; + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9324; + if (Facing == eBlockFace::BLOCK_FACE_XP) return 9321; + if (Facing == eBlockFace::BLOCK_FACE_YM) return 9325; + return 9322; + } + short GrayShulkerBox(); + eBlockFace Facing(short ID); + } + namespace GrayStainedGlass + { + constexpr short GrayStainedGlass() + { + return 4102; + } + } + namespace GrayStainedGlassPane + { + constexpr short GrayStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (!false && !South && West && !East && !North) return 7117; + if (!false && South && !West && East && North) return 7090; + if (!false && !South && !West && East && North) return 7094; + if (!false && South && !West && East && !North) return 7098; + if (!false && !South && !West && East && !North) return 7102; + if (!false && South && !West && !East && North) return 7106; + if (!false && !South && !West && !East && North) return 7110; + if (!false && South && !West && !East && !North) return 7114; + if (false && South && West && East && North) return 7087; + if (false && !South && West && East && North) return 7091; + if (false && South && West && East && !North) return 7095; + if (false && !South && West && East && !North) return 7099; + if (false && South && West && !East && North) return 7103; + if (false && !South && West && !East && North) return 7107; + if (false && South && West && !East && !North) return 7111; + if (false && !South && West && !East && !North) return 7115; + if (false && South && !West && East && North) return 7088; + if (false && !South && !West && East && North) return 7092; + if (false && South && !West && East && !North) return 7096; + if (false && !South && !West && East && !North) return 7100; + if (false && South && !West && !East && North) return 7104; + if (false && !South && !West && !East && North) return 7108; + if (false && South && !West && !East && !North) return 7112; + if (false && !South && !West && !East && !North) return 7116; + if (!false && South && West && East && North) return 7089; + if (!false && !South && West && East && North) return 7093; + if (!false && South && West && East && !North) return 7097; + if (!false && !South && West && East && !North) return 7101; + if (!false && South && West && !East && North) return 7105; + if (!false && !South && West && !East && North) return 7109; + if (!false && South && West && !East && !North) return 7113; + return 7118; + } + short GrayStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace GrayTerracotta + { + constexpr short GrayTerracotta() + { + return 6854; + } + } + namespace GrayWallBanner + { + constexpr short GrayWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8182; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8183; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8181; + return 8184; + } + short GrayWallBanner(); + eBlockFace Facing(short ID); + } + namespace GrayWool + { + constexpr short GrayWool() + { + return 1391; + } + } + namespace GreenBanner + { + constexpr short GreenBanner(unsigned char Rotation) + { + if (Rotation == 11) return 8116; + if (Rotation == 12) return 8117; + if (Rotation == 13) return 8118; + if (Rotation == 14) return 8119; + if (Rotation == 0) return 8105; + if (Rotation == 1) return 8106; + if (Rotation == 2) return 8107; + if (Rotation == 3) return 8108; + if (Rotation == 4) return 8109; + if (Rotation == 5) return 8110; + if (Rotation == 6) return 8111; + if (Rotation == 7) return 8112; + if (Rotation == 8) return 8113; + if (Rotation == 9) return 8114; + if (Rotation == 10) return 8115; + return 8120; + } + short GreenBanner(); + unsigned char Rotation(short ID); + } + namespace GreenBed + { + enum class Part + { + Head, + Foot + }; + constexpr short GreenBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1257; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1261; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1265; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1269; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1258; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1262; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1266; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1270; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1259; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1263; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1267; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1271; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1260; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1264; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1268; + return 1272; + } + short GreenBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace GreenCarpet + { + constexpr short GreenCarpet() + { + return 7879; + } + } + namespace GreenConcrete + { + constexpr short GreenConcrete() + { + return 9451; + } + } + namespace GreenConcretePowder + { + constexpr short GreenConcretePowder() + { + return 9467; + } + } + namespace GreenGlazedTerracotta + { + constexpr short GreenGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9426; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9428; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9427; + return 9429; + } + short GreenGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace GreenShulkerBox + { + constexpr short GreenShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_YM) return 9361; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9358; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9359; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9356; + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9360; + return 9357; + } + short GreenShulkerBox(); + eBlockFace Facing(short ID); + } + namespace GreenStainedGlass + { + constexpr short GreenStainedGlass() + { + return 4108; + } + } + namespace GreenStainedGlassPane + { + constexpr short GreenStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (false && South && West && !East && !North) return 7303; + if (false && !South && West && !East && !North) return 7307; + if (false && South && !West && East && North) return 7280; + if (false && !South && !West && East && North) return 7284; + if (false && South && !West && East && !North) return 7288; + if (false && !South && !West && East && !North) return 7292; + if (false && South && !West && !East && North) return 7296; + if (false && !South && !West && !East && North) return 7300; + if (false && South && !West && !East && !North) return 7304; + if (false && !South && !West && !East && !North) return 7308; + if (!false && South && West && East && North) return 7281; + if (!false && !South && West && East && North) return 7285; + if (!false && South && West && East && !North) return 7289; + if (!false && !South && West && East && !North) return 7293; + if (!false && South && West && !East && North) return 7297; + if (!false && !South && West && !East && North) return 7301; + if (!false && South && West && !East && !North) return 7305; + if (!false && !South && West && !East && !North) return 7309; + if (!false && South && !West && East && North) return 7282; + if (!false && !South && !West && East && North) return 7286; + if (!false && South && !West && East && !North) return 7290; + if (!false && !South && !West && East && !North) return 7294; + if (!false && South && !West && !East && North) return 7298; + if (!false && !South && !West && !East && North) return 7302; + if (!false && South && !West && !East && !North) return 7306; + if (false && South && West && East && North) return 7279; + if (false && !South && West && East && North) return 7283; + if (false && South && West && East && !North) return 7287; + if (false && !South && West && East && !North) return 7291; + if (false && South && West && !East && North) return 7295; + if (false && !South && West && !East && North) return 7299; + return 7310; + } + short GreenStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace GreenTerracotta + { + constexpr short GreenTerracotta() + { + return 6860; + } + } + namespace GreenWallBanner + { + constexpr short GreenWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8205; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8207; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8206; + return 8208; + } + short GreenWallBanner(); + eBlockFace Facing(short ID); + } + namespace GreenWool + { + constexpr short GreenWool() + { + return 1397; + } + } + namespace Grindstone + { + enum class Face + { + Floor, + Wall, + Ceiling + }; + constexpr short Grindstone(enum Face Face, eBlockFace Facing) + { + if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP) return 14822; + if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP) return 14824; + if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP) return 14826; + if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP) return 14828; + if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP) return 14830; + if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XP) return 14832; + if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM) return 14821; + if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM) return 14823; + if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM) return 14825; + if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM) return 14827; + if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM) return 14829; + return 14831; + } + short Grindstone(); + enum Face Face(short ID); + eBlockFace Facing(short ID); + } + namespace HayBale + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short HayBale(enum Axis Axis) + { + if (Axis == Axis::Y) return 7864; + if (Axis == Axis::Z) return 7865; + return 7863; + } + short HayBale(); + enum Axis Axis(short ID); + } + namespace HeavyWeightedPressurePlate + { + constexpr short HeavyWeightedPressurePlate(unsigned char Power) + { + if (Power == 14) return 6676; + if (Power == 0) return 6662; + if (Power == 1) return 6663; + if (Power == 2) return 6664; + if (Power == 3) return 6665; + if (Power == 4) return 6666; + if (Power == 5) return 6667; + if (Power == 6) return 6668; + if (Power == 7) return 6669; + if (Power == 8) return 6670; + if (Power == 9) return 6671; + if (Power == 10) return 6672; + if (Power == 11) return 6673; + if (Power == 12) return 6674; + if (Power == 13) return 6675; + return 6677; + } + short HeavyWeightedPressurePlate(); + unsigned char Power(short ID); + } + namespace HoneyBlock + { + constexpr short HoneyBlock() + { + return 15824; + } + } + namespace HoneycombBlock + { + constexpr short HoneycombBlock() + { + return 15825; + } + } + namespace Hopper + { + constexpr short Hopper(bool Enabled, eBlockFace Facing) + { + if (!Enabled && Facing == eBlockFace::BLOCK_FACE_XM) return 6736; + if (!Enabled && Facing == eBlockFace::BLOCK_FACE_XP) return 6737; + if (Enabled && Facing == eBlockFace::BLOCK_FACE_YM) return 6728; + if (Enabled && Facing == eBlockFace::BLOCK_FACE_ZM) return 6729; + if (Enabled && Facing == eBlockFace::BLOCK_FACE_ZP) return 6730; + if (Enabled && Facing == eBlockFace::BLOCK_FACE_XM) return 6731; + if (Enabled && Facing == eBlockFace::BLOCK_FACE_XP) return 6732; + if (!Enabled && Facing == eBlockFace::BLOCK_FACE_YM) return 6733; + if (!Enabled && Facing == eBlockFace::BLOCK_FACE_ZM) return 6734; + return 6735; + } + short Hopper(); + bool Enabled(short ID); + eBlockFace Facing(short ID); + } + namespace HornCoral + { + constexpr short HornCoral() + { + if (false) return 9538; + return 9539; + } + bool Waterlogged(short ID); + } + namespace HornCoralBlock + { + constexpr short HornCoralBlock() + { + return 9519; + } + } + namespace HornCoralFan + { + constexpr short HornCoralFan() + { + if (false) return 9558; + return 9559; + } + bool Waterlogged(short ID); + } + namespace HornCoralWallFan + { + constexpr short HornCoralWallFan(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 9634; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 9638; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 9635; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 9632; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 9636; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 9633; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 9637; + return 9639; + } + short HornCoralWallFan(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace Ice + { + constexpr short Ice() + { + return 3929; + } + } + namespace InfestedChiseledStoneBricks + { + constexpr short InfestedChiseledStoneBricks() + { + return 4504; + } + } + namespace InfestedCobblestone + { + constexpr short InfestedCobblestone() + { + return 4500; + } + } + namespace InfestedCrackedStoneBricks + { + constexpr short InfestedCrackedStoneBricks() + { + return 4503; + } + } + namespace InfestedMossyStoneBricks + { + constexpr short InfestedMossyStoneBricks() + { + return 4502; + } + } + namespace InfestedStone + { + constexpr short InfestedStone() + { + return 4499; + } + } + namespace InfestedStoneBricks + { + constexpr short InfestedStoneBricks() + { + return 4501; + } + } + namespace IronBars + { + constexpr short IronBars(bool East, bool North, bool South, bool West) + { + if (!false && South && West && East && North) return 4699; + if (!false && !South && West && East && North) return 4703; + if (!false && South && West && East && !North) return 4707; + if (!false && !South && West && East && !North) return 4711; + if (!false && South && West && !East && North) return 4715; + if (!false && !South && West && !East && North) return 4719; + if (!false && South && West && !East && !North) return 4723; + if (!false && !South && West && !East && !North) return 4727; + if (!false && South && !West && East && North) return 4700; + if (!false && !South && !West && East && North) return 4704; + if (!false && South && !West && East && !North) return 4708; + if (!false && !South && !West && East && !North) return 4712; + if (!false && South && !West && !East && North) return 4716; + if (!false && !South && !West && !East && North) return 4720; + if (!false && South && !West && !East && !North) return 4724; + if (false && South && West && East && North) return 4697; + if (false && !South && West && East && North) return 4701; + if (false && South && West && East && !North) return 4705; + if (false && !South && West && East && !North) return 4709; + if (false && South && West && !East && North) return 4713; + if (false && !South && West && !East && North) return 4717; + if (false && South && West && !East && !North) return 4721; + if (false && !South && West && !East && !North) return 4725; + if (false && South && !West && East && North) return 4698; + if (false && !South && !West && East && North) return 4702; + if (false && South && !West && East && !North) return 4706; + if (false && !South && !West && East && !North) return 4710; + if (false && South && !West && !East && North) return 4714; + if (false && !South && !West && !East && North) return 4718; + if (false && South && !West && !East && !North) return 4722; + if (false && !South && !West && !East && !North) return 4726; + return 4728; + } + short IronBars(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace IronBlock + { + constexpr short IronBlock() + { + return 1428; + } + } + namespace IronDoor + { + enum class Half + { + Upper, + Lower + }; + enum class Hinge + { + Left, + Right + }; + constexpr short IronDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered) + { + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 3862; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 3870; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 3815; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 3823; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 3831; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 3839; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 3847; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 3855; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 3863; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 3871; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 3816; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 3824; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 3832; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 3840; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 3848; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 3856; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Right) return 3864; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 3809; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 3817; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 3825; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 3833; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 3841; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 3849; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 3857; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 3865; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 3810; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 3818; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 3826; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 3834; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 3842; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 3850; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 3858; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 3866; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 3811; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 3819; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 3827; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 3835; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 3843; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 3851; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 3859; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 3867; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 3812; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 3820; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 3828; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 3836; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 3844; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 3852; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 3860; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 3868; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 3813; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 3821; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 3829; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 3837; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 3845; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 3853; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 3861; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 3869; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 3814; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 3822; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 3830; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 3838; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 3846; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 3854; + return 3872; + } + short IronDoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Hinge Hinge(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace IronOre + { + constexpr short IronOre() + { + return 70; + } + } + namespace IronTrapdoor + { + enum class Half + { + Top, + Bottom + }; + constexpr short IronTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered) + { + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 7597; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 7550; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 7566; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 7582; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 7598; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 7551; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 7567; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 7583; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 7599; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 7552; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 7568; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 7584; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 7537; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 7553; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 7569; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 7585; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 7538; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 7554; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 7570; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 7586; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 7539; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 7555; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 7571; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 7587; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 7540; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 7556; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 7572; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 7588; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 7541; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 7557; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 7573; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 7589; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 7542; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 7558; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 7574; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 7590; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 7543; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 7559; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 7575; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 7591; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 7544; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 7560; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 7576; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 7592; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 7545; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 7561; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 7577; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 7593; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 7546; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 7562; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 7578; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 7594; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 7547; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 7563; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 7579; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 7595; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 7548; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 7564; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 7580; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 7596; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 7549; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 7565; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 7581; + return 7600; + } + short IronTrapdoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + bool Open(short ID); + bool Powered(short ID); + bool Waterlogged(short ID); + } + namespace JackOLantern + { + constexpr short JackOLantern(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 4021; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 4020; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 4022; + return 4023; + } + short JackOLantern(); + eBlockFace Facing(short ID); + } + namespace Jigsaw + { + enum class Orientation + { + DownEast, + DownNorth, + DownSouth, + DownWest, + UpEast, + UpNorth, + UpSouth, + UpWest, + WestUp, + EastUp, + NorthUp, + SouthUp + }; + constexpr short Jigsaw(enum Orientation Orientation) + { + if (Orientation == Orientation::SouthUp) return 15750; + if (Orientation == Orientation::DownEast) return 15739; + if (Orientation == Orientation::DownSouth) return 15741; + if (Orientation == Orientation::UpEast) return 15743; + if (Orientation == Orientation::UpSouth) return 15745; + if (Orientation == Orientation::WestUp) return 15747; + if (Orientation == Orientation::NorthUp) return 15749; + if (Orientation == Orientation::DownNorth) return 15740; + if (Orientation == Orientation::DownWest) return 15742; + if (Orientation == Orientation::UpNorth) return 15744; + if (Orientation == Orientation::UpWest) return 15746; + return 15748; + } + short Jigsaw(); + enum Orientation Orientation(short ID); + } + namespace Jukebox + { + constexpr short Jukebox(bool HasRecord) + { + if (HasRecord) return 3964; + return 3965; + } + short Jukebox(); + bool HasRecord(short ID); + } + namespace JungleButton + { + enum class Face + { + Floor, + Wall, + Ceiling + }; + constexpr short JungleButton(enum Face Face, eBlockFace Facing, bool Powered) + { + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6435; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6439; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6420; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6424; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6428; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6432; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6436; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6440; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6421; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6425; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6429; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6433; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6437; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6441; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6418; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6422; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6426; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6430; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6434; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6438; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6419; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6423; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6427; + return 6431; + } + short JungleButton(); + enum Face Face(short ID); + eBlockFace Facing(short ID); + bool Powered(short ID); + } + namespace JungleDoor + { + enum class Half + { + Upper, + Lower + }; + enum class Hinge + { + Left, + Right + }; + constexpr short JungleDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered) + { + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 8892; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 8924; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 8893; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 8925; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 8894; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 8926; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 8895; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 8927; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 8896; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 8928; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 8897; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 8866; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 8898; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 8867; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 8899; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 8868; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 8900; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 8869; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 8901; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 8870; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 8902; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 8871; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 8903; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 8872; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 8904; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 8873; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 8905; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 8874; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 8906; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 8875; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 8907; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 8876; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 8908; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 8877; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 8909; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 8878; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 8910; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 8879; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 8911; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 8880; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 8912; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 8881; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 8913; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 8882; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 8914; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 8883; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 8915; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 8884; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 8916; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 8885; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 8917; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 8886; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 8918; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 8887; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 8919; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 8888; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 8920; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 8889; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Right) return 8921; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 8890; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 8922; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 8891; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 8923; + return 8929; + } + short JungleDoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Hinge Hinge(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace JungleFence + { + constexpr short JungleFence(bool East, bool North, bool South, bool West) + { + if (false && !South && West && East && North) return 8646; + if (false && !South && West && East && !North) return 8654; + if (false && !South && West && !East && North) return 8662; + if (false && !South && West && !East && !North) return 8670; + if (false && !South && !West && East && North) return 8647; + if (false && !South && !West && East && !North) return 8655; + if (false && !South && !West && !East && North) return 8663; + if (false && !South && !West && !East && !North) return 8671; + if (!false && !South && West && East && North) return 8648; + if (!false && !South && West && East && !North) return 8656; + if (!false && !South && West && !East && North) return 8664; + if (!false && !South && West && !East && !North) return 8672; + if (!false && !South && !West && East && North) return 8649; + if (!false && !South && !West && East && !North) return 8657; + if (!false && !South && !West && !East && North) return 8665; + if (false && South && West && East && North) return 8642; + if (false && South && West && East && !North) return 8650; + if (false && South && West && !East && North) return 8658; + if (false && South && West && !East && !North) return 8666; + if (false && South && !West && East && North) return 8643; + if (false && South && !West && East && !North) return 8651; + if (false && South && !West && !East && North) return 8659; + if (false && South && !West && !East && !North) return 8667; + if (!false && South && West && East && North) return 8644; + if (!false && South && West && East && !North) return 8652; + if (!false && South && West && !East && North) return 8660; + if (!false && South && West && !East && !North) return 8668; + if (!false && South && !West && East && North) return 8645; + if (!false && South && !West && East && !North) return 8653; + if (!false && South && !West && !East && North) return 8661; + if (!false && South && !West && !East && !North) return 8669; + return 8673; + } + short JungleFence(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace JungleFenceGate + { + constexpr short JungleFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered) + { + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8491; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8499; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8507; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8484; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8492; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8500; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8508; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8485; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8493; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8501; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8509; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8486; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8494; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8502; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8510; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8487; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8495; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8503; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8511; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8488; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8496; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8504; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8512; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8489; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8497; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8505; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8482; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8490; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8498; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8506; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8483; + return 8513; + } + short JungleFenceGate(); + eBlockFace Facing(short ID); + bool InWall(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace JungleLeaves + { + constexpr short JungleLeaves(unsigned char Distance, bool Persistent) + { + if (!Persistent && Distance == 6) return 198; + if (Persistent && Distance == 3) return 191; + if (Persistent && Distance == 7) return 199; + if (!Persistent && Distance == 3) return 192; + if (!Persistent && Distance == 7) return 200; + if (Persistent && Distance == 4) return 193; + if (!Persistent && Distance == 4) return 194; + if (Persistent && Distance == 1) return 187; + if (Persistent && Distance == 5) return 195; + if (!Persistent && Distance == 1) return 188; + if (!Persistent && Distance == 5) return 196; + if (Persistent && Distance == 2) return 189; + if (Persistent && Distance == 6) return 197; + return 190; + } + short JungleLeaves(); + unsigned char Distance(short ID); + bool Persistent(short ID); + } + namespace JungleLog + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short JungleLog(enum Axis Axis) + { + if (Axis == Axis::X) return 82; + if (Axis == Axis::Y) return 83; + return 84; + } + short JungleLog(); + enum Axis Axis(short ID); + } + namespace JunglePlanks + { + constexpr short JunglePlanks() + { + return 18; + } + } + namespace JunglePressurePlate + { + constexpr short JunglePressurePlate(bool Powered) + { + if (Powered) return 3879; + return 3880; + } + short JunglePressurePlate(); + bool Powered(short ID); + } + namespace JungleSapling + { + constexpr short JungleSapling(unsigned char Stage) + { + if (Stage == 0) return 27; + return 28; + } + short JungleSapling(); + unsigned char Stage(short ID); + } + namespace JungleSign + { + constexpr short JungleSign(unsigned char Rotation) + { + if (Rotation == 2 && !false) return 3514; + if (Rotation == 3 && !false) return 3516; + if (Rotation == 4 && !false) return 3518; + if (Rotation == 5 && !false) return 3520; + if (Rotation == 6 && !false) return 3522; + if (Rotation == 7 && !false) return 3524; + if (Rotation == 8 && !false) return 3526; + if (Rotation == 9 && !false) return 3528; + if (Rotation == 10 && !false) return 3530; + if (Rotation == 11 && !false) return 3532; + if (Rotation == 12 && !false) return 3534; + if (Rotation == 13 && !false) return 3536; + if (Rotation == 14 && !false) return 3538; + if (Rotation == 0 && false) return 3509; + if (Rotation == 1 && false) return 3511; + if (Rotation == 2 && false) return 3513; + if (Rotation == 3 && false) return 3515; + if (Rotation == 4 && false) return 3517; + if (Rotation == 5 && false) return 3519; + if (Rotation == 6 && false) return 3521; + if (Rotation == 7 && false) return 3523; + if (Rotation == 8 && false) return 3525; + if (Rotation == 9 && false) return 3527; + if (Rotation == 10 && false) return 3529; + if (Rotation == 11 && false) return 3531; + if (Rotation == 12 && false) return 3533; + if (Rotation == 13 && false) return 3535; + if (Rotation == 14 && false) return 3537; + if (Rotation == 15 && false) return 3539; + if (Rotation == 0 && !false) return 3510; + if (Rotation == 1 && !false) return 3512; + return 3540; + } + short JungleSign(); + unsigned char Rotation(short ID); + bool Waterlogged(short ID); + } + namespace JungleSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short JungleSlab(enum Type Type) + { + if (Type == Type::Top && false) return 8318; + if (Type == Type::Double && false) return 8322; + if (Type == Type::Top && !false) return 8319; + if (Type == Type::Double && !false) return 8323; + if (Type == Type::Bottom && false) return 8320; + return 8321; + } + short JungleSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace JungleStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short JungleStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5584; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5585; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5586; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5587; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5588; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5589; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5590; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5591; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5592; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5593; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5594; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5595; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5596; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5597; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5598; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5599; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5600; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5601; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5602; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5603; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5604; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5605; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5606; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5607; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5608; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5609; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5610; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5611; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5612; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5613; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5614; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5615; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5616; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5617; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5618; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5619; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5620; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5621; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5622; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5623; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5624; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5625; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5626; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5627; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5564; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5628; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5565; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5629; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5566; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5630; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5567; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5631; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5568; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5632; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5569; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5633; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5570; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5634; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5571; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5635; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5572; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5636; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5573; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5637; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5574; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5638; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5575; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5639; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5576; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5640; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5577; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5641; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5578; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5642; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5579; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5643; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5580; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5581; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5582; + return 5583; + } + short JungleStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace JungleTrapdoor + { + enum class Half + { + Top, + Bottom + }; + constexpr short JungleTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered) + { + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4321; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4337; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4353; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4306; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4322; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4338; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4354; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4307; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4323; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4339; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4355; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4308; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4324; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4340; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4356; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4309; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4325; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4341; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4357; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4310; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4326; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4342; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4358; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4311; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4327; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4343; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4359; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4312; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4328; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4344; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4360; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4313; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4329; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4345; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4361; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4314; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4330; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4346; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4362; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4315; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4331; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4347; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4363; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4316; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4332; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4348; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4364; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4317; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4333; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4349; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4365; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4318; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4334; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4350; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4303; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4319; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4335; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4351; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4304; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4320; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4336; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4352; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4305; + return 4366; + } + short JungleTrapdoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + bool Open(short ID); + bool Powered(short ID); + bool Waterlogged(short ID); + } + namespace JungleWallSign + { + constexpr short JungleWallSign(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 3771; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 3772; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 3773; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 3767; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 3768; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 3769; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 3770; + return 3774; + } + short JungleWallSign(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace JungleWood + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short JungleWood(enum Axis Axis) + { + if (Axis == Axis::X) return 118; + if (Axis == Axis::Y) return 119; + return 120; + } + short JungleWood(); + enum Axis Axis(short ID); + } + namespace Kelp + { + constexpr short Kelp(unsigned char Age) + { + if (Age == 13) return 9483; + if (Age == 21) return 9491; + if (Age == 6) return 9476; + if (Age == 14) return 9484; + if (Age == 22) return 9492; + if (Age == 7) return 9477; + if (Age == 15) return 9485; + if (Age == 23) return 9493; + if (Age == 0) return 9470; + if (Age == 8) return 9478; + if (Age == 16) return 9486; + if (Age == 24) return 9494; + if (Age == 1) return 9471; + if (Age == 9) return 9479; + if (Age == 17) return 9487; + if (Age == 25) return 9495; + if (Age == 2) return 9472; + if (Age == 10) return 9480; + if (Age == 18) return 9488; + if (Age == 3) return 9473; + if (Age == 11) return 9481; + if (Age == 19) return 9489; + if (Age == 4) return 9474; + if (Age == 12) return 9482; + if (Age == 20) return 9490; + return 9475; + } + short Kelp(); + unsigned char Age(short ID); + } + namespace KelpPlant + { + constexpr short KelpPlant() + { + return 9496; + } + } + namespace Ladder + { + constexpr short Ladder(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 3638; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 3639; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 3640; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 3641; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 3642; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 3643; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 3637; + return 3644; + } + short Ladder(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace Lantern + { + constexpr short Lantern(bool Hanging) + { + if (Hanging) return 14886; + return 14887; + } + short Lantern(); + bool Hanging(short ID); + } + namespace LapisBlock + { + constexpr short LapisBlock() + { + return 233; + } + } + namespace LapisOre + { + constexpr short LapisOre() + { + return 232; + } + } + namespace LargeFern + { + enum class Half + { + Upper, + Lower + }; + constexpr short LargeFern(enum Half Half) + { + if (Half == Half::Upper) return 7895; + return 7896; + } + short LargeFern(); + enum Half Half(short ID); + } + namespace Lava + { + constexpr short Lava(unsigned char Level) + { + if (Level == 11) return 61; + if (Level == 13) return 63; + if (Level == 0) return 50; + if (Level == 2) return 52; + if (Level == 4) return 54; + if (Level == 6) return 56; + if (Level == 8) return 58; + if (Level == 10) return 60; + if (Level == 12) return 62; + if (Level == 14) return 64; + if (Level == 1) return 51; + if (Level == 3) return 53; + if (Level == 5) return 55; + if (Level == 7) return 57; + if (Level == 9) return 59; + return 65; + } + short Lava(); + unsigned char Level(short ID); + } + namespace Lectern + { + constexpr short Lectern(eBlockFace Facing, bool HasBook, bool Powered) + { + if (!HasBook && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 14835; + if (HasBook && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 14837; + if (!HasBook && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 14839; + if (HasBook && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 14841; + if (!HasBook && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 14843; + if (HasBook && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 14845; + if (!HasBook && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 14847; + if (HasBook && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 14834; + if (!HasBook && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 14836; + if (HasBook && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 14838; + if (!HasBook && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 14840; + if (HasBook && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 14842; + if (!HasBook && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 14844; + if (HasBook && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 14846; + if (HasBook && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 14833; + return 14848; + } + short Lectern(); + eBlockFace Facing(short ID); + bool HasBook(short ID); + bool Powered(short ID); + } + namespace Lever + { + enum class Face + { + Floor, + Wall, + Ceiling + }; + constexpr short Lever(enum Face Face, eBlockFace Facing, bool Powered) + { + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 3793; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 3795; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 3797; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 3799; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 3801; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 3803; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 3805; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 3784; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 3786; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 3788; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 3790; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 3792; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 3794; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 3796; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 3798; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 3800; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 3802; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 3804; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 3806; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 3783; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 3785; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 3787; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 3789; + return 3791; + } + short Lever(); + enum Face Face(short ID); + eBlockFace Facing(short ID); + bool Powered(short ID); + } + namespace LightBlueBanner + { + constexpr short LightBlueBanner(unsigned char Rotation) + { + if (Rotation == 6) return 7951; + if (Rotation == 7) return 7952; + if (Rotation == 8) return 7953; + if (Rotation == 9) return 7954; + if (Rotation == 10) return 7955; + if (Rotation == 11) return 7956; + if (Rotation == 12) return 7957; + if (Rotation == 13) return 7958; + if (Rotation == 14) return 7959; + if (Rotation == 0) return 7945; + if (Rotation == 1) return 7946; + if (Rotation == 2) return 7947; + if (Rotation == 3) return 7948; + if (Rotation == 4) return 7949; + if (Rotation == 5) return 7950; + return 7960; + } + short LightBlueBanner(); + unsigned char Rotation(short ID); + } + namespace LightBlueBed + { + enum class Part + { + Head, + Foot + }; + constexpr short LightBlueBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1107; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1111; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1100; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1104; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1108; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1097; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1101; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1105; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1109; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1098; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1102; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1106; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1110; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1099; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1103; + return 1112; + } + short LightBlueBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace LightBlueCarpet + { + constexpr short LightBlueCarpet() + { + return 7869; + } + } + namespace LightBlueConcrete + { + constexpr short LightBlueConcrete() + { + return 9441; + } + } + namespace LightBlueConcretePowder + { + constexpr short LightBlueConcretePowder() + { + return 9457; + } + } + namespace LightBlueGlazedTerracotta + { + constexpr short LightBlueGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9387; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9386; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9388; + return 9389; + } + short LightBlueGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace LightBlueShulkerBox + { + constexpr short LightBlueShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9298; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9299; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9296; + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9300; + if (Facing == eBlockFace::BLOCK_FACE_XP) return 9297; + return 9301; + } + short LightBlueShulkerBox(); + eBlockFace Facing(short ID); + } + namespace LightBlueStainedGlass + { + constexpr short LightBlueStainedGlass() + { + return 4098; + } + } + namespace LightBlueStainedGlassPane + { + constexpr short LightBlueStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (!false && South && !West && East && North) return 6962; + if (!false && !South && !West && East && North) return 6966; + if (!false && South && !West && East && !North) return 6970; + if (!false && !South && !West && East && !North) return 6974; + if (!false && South && !West && !East && North) return 6978; + if (!false && !South && !West && !East && North) return 6982; + if (!false && South && !West && !East && !North) return 6986; + if (false && South && West && East && North) return 6959; + if (false && !South && West && East && North) return 6963; + if (false && South && West && East && !North) return 6967; + if (false && !South && West && East && !North) return 6971; + if (false && South && West && !East && North) return 6975; + if (false && !South && West && !East && North) return 6979; + if (false && South && West && !East && !North) return 6983; + if (false && !South && West && !East && !North) return 6987; + if (false && South && !West && East && North) return 6960; + if (false && !South && !West && East && North) return 6964; + if (false && South && !West && East && !North) return 6968; + if (false && !South && !West && East && !North) return 6972; + if (false && South && !West && !East && North) return 6976; + if (false && !South && !West && !East && North) return 6980; + if (false && South && !West && !East && !North) return 6984; + if (false && !South && !West && !East && !North) return 6988; + if (!false && South && West && East && North) return 6961; + if (!false && !South && West && East && North) return 6965; + if (!false && South && West && East && !North) return 6969; + if (!false && !South && West && East && !North) return 6973; + if (!false && South && West && !East && North) return 6977; + if (!false && !South && West && !East && North) return 6981; + if (!false && South && West && !East && !North) return 6985; + if (!false && !South && West && !East && !North) return 6989; + return 6990; + } + short LightBlueStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace LightBlueTerracotta + { + constexpr short LightBlueTerracotta() + { + return 6850; + } + } + namespace LightBlueWallBanner + { + constexpr short LightBlueWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8167; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8165; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8166; + return 8168; + } + short LightBlueWallBanner(); + eBlockFace Facing(short ID); + } + namespace LightBlueWool + { + constexpr short LightBlueWool() + { + return 1387; + } + } + namespace LightGrayBanner + { + constexpr short LightGrayBanner(unsigned char Rotation) + { + if (Rotation == 1) return 8026; + if (Rotation == 2) return 8027; + if (Rotation == 3) return 8028; + if (Rotation == 4) return 8029; + if (Rotation == 5) return 8030; + if (Rotation == 6) return 8031; + if (Rotation == 7) return 8032; + if (Rotation == 8) return 8033; + if (Rotation == 9) return 8034; + if (Rotation == 10) return 8035; + if (Rotation == 11) return 8036; + if (Rotation == 12) return 8037; + if (Rotation == 13) return 8038; + if (Rotation == 14) return 8039; + if (Rotation == 0) return 8025; + return 8040; + } + short LightGrayBanner(); + unsigned char Rotation(short ID); + } + namespace LightGrayBed + { + enum class Part + { + Head, + Foot + }; + constexpr short LightGrayBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1182; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1186; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1190; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1179; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1183; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1187; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1191; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1180; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1184; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1188; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1177; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1181; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1185; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1189; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1178; + return 1192; + } + short LightGrayBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace LightGrayCarpet + { + constexpr short LightGrayCarpet() + { + return 7874; + } + } + namespace LightGrayConcrete + { + constexpr short LightGrayConcrete() + { + return 9446; + } + } + namespace LightGrayConcretePowder + { + constexpr short LightGrayConcretePowder() + { + return 9462; + } + } + namespace LightGrayGlazedTerracotta + { + constexpr short LightGrayGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9408; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9407; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9406; + return 9409; + } + short LightGrayGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace LightGrayShulkerBox + { + constexpr short LightGrayShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9326; + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9330; + if (Facing == eBlockFace::BLOCK_FACE_XP) return 9327; + if (Facing == eBlockFace::BLOCK_FACE_YM) return 9331; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9328; + return 9329; + } + short LightGrayShulkerBox(); + eBlockFace Facing(short ID); + } + namespace LightGrayStainedGlass + { + constexpr short LightGrayStainedGlass() + { + return 4103; + } + } + namespace LightGrayStainedGlassPane + { + constexpr short LightGrayStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (false && !South && !West && !East && !North) return 7148; + if (!false && South && West && East && North) return 7121; + if (!false && !South && West && East && North) return 7125; + if (!false && South && West && East && !North) return 7129; + if (!false && !South && West && East && !North) return 7133; + if (!false && South && West && !East && North) return 7137; + if (!false && !South && West && !East && North) return 7141; + if (!false && South && West && !East && !North) return 7145; + if (!false && !South && West && !East && !North) return 7149; + if (!false && South && !West && East && North) return 7122; + if (!false && !South && !West && East && North) return 7126; + if (!false && South && !West && East && !North) return 7130; + if (!false && !South && !West && East && !North) return 7134; + if (!false && South && !West && !East && North) return 7138; + if (!false && !South && !West && !East && North) return 7142; + if (!false && South && !West && !East && !North) return 7146; + if (false && South && West && East && North) return 7119; + if (false && !South && West && East && North) return 7123; + if (false && South && West && East && !North) return 7127; + if (false && !South && West && East && !North) return 7131; + if (false && South && West && !East && North) return 7135; + if (false && !South && West && !East && North) return 7139; + if (false && South && West && !East && !North) return 7143; + if (false && !South && West && !East && !North) return 7147; + if (false && South && !West && East && North) return 7120; + if (false && !South && !West && East && North) return 7124; + if (false && South && !West && East && !North) return 7128; + if (false && !South && !West && East && !North) return 7132; + if (false && South && !West && !East && North) return 7136; + if (false && !South && !West && !East && North) return 7140; + if (false && South && !West && !East && !North) return 7144; + return 7150; + } + short LightGrayStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace LightGrayTerracotta + { + constexpr short LightGrayTerracotta() + { + return 6855; + } + } + namespace LightGrayWallBanner + { + constexpr short LightGrayWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8185; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8186; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8187; + return 8188; + } + short LightGrayWallBanner(); + eBlockFace Facing(short ID); + } + namespace LightGrayWool + { + constexpr short LightGrayWool() + { + return 1392; + } + } + namespace LightWeightedPressurePlate + { + constexpr short LightWeightedPressurePlate(unsigned char Power) + { + if (Power == 0) return 6646; + if (Power == 1) return 6647; + if (Power == 2) return 6648; + if (Power == 3) return 6649; + if (Power == 4) return 6650; + if (Power == 5) return 6651; + if (Power == 6) return 6652; + if (Power == 7) return 6653; + if (Power == 8) return 6654; + if (Power == 9) return 6655; + if (Power == 10) return 6656; + if (Power == 11) return 6657; + if (Power == 12) return 6658; + if (Power == 13) return 6659; + if (Power == 14) return 6660; + return 6661; + } + short LightWeightedPressurePlate(); + unsigned char Power(short ID); + } + namespace Lilac + { + enum class Half + { + Upper, + Lower + }; + constexpr short Lilac(enum Half Half) + { + if (Half == Half::Upper) return 7887; + return 7888; + } + short Lilac(); + enum Half Half(short ID); + } + namespace LilyOfTheValley + { + constexpr short LilyOfTheValley() + { + return 1424; + } + } + namespace LilyPad + { + constexpr short LilyPad() + { + return 5014; + } + } + namespace LimeBanner + { + constexpr short LimeBanner(unsigned char Rotation) + { + if (Rotation == 4) return 7981; + if (Rotation == 5) return 7982; + if (Rotation == 6) return 7983; + if (Rotation == 7) return 7984; + if (Rotation == 8) return 7985; + if (Rotation == 9) return 7986; + if (Rotation == 10) return 7987; + if (Rotation == 11) return 7988; + if (Rotation == 12) return 7989; + if (Rotation == 13) return 7990; + if (Rotation == 14) return 7991; + if (Rotation == 0) return 7977; + if (Rotation == 1) return 7978; + if (Rotation == 2) return 7979; + if (Rotation == 3) return 7980; + return 7992; + } + short LimeBanner(); + unsigned char Rotation(short ID); + } + namespace LimeBed + { + enum class Part + { + Head, + Foot + }; + constexpr short LimeBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1137; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1141; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1130; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1134; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1138; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1142; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1131; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1135; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1139; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1143; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1132; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1136; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1140; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1129; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1133; + return 1144; + } + short LimeBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace LimeCarpet + { + constexpr short LimeCarpet() + { + return 7871; + } + } + namespace LimeConcrete + { + constexpr short LimeConcrete() + { + return 9443; + } + } + namespace LimeConcretePowder + { + constexpr short LimeConcretePowder() + { + return 9459; + } + } + namespace LimeGlazedTerracotta + { + constexpr short LimeGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9396; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9395; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9394; + return 9397; + } + short LimeGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace LimeShulkerBox + { + constexpr short LimeShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9312; + if (Facing == eBlockFace::BLOCK_FACE_XP) return 9309; + if (Facing == eBlockFace::BLOCK_FACE_YM) return 9313; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9310; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9311; + return 9308; + } + short LimeShulkerBox(); + eBlockFace Facing(short ID); + } + namespace LimeStainedGlass + { + constexpr short LimeStainedGlass() + { + return 4100; + } + } + namespace LimeStainedGlassPane + { + constexpr short LimeStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (false && South && !West && East && North) return 7024; + if (false && !South && !West && East && North) return 7028; + if (false && South && !West && East && !North) return 7032; + if (false && !South && !West && East && !North) return 7036; + if (false && South && !West && !East && North) return 7040; + if (false && !South && !West && !East && North) return 7044; + if (false && South && !West && !East && !North) return 7048; + if (false && !South && !West && !East && !North) return 7052; + if (!false && South && West && East && North) return 7025; + if (!false && !South && West && East && North) return 7029; + if (!false && South && West && East && !North) return 7033; + if (!false && !South && West && East && !North) return 7037; + if (!false && South && West && !East && North) return 7041; + if (!false && !South && West && !East && North) return 7045; + if (!false && South && West && !East && !North) return 7049; + if (!false && !South && West && !East && !North) return 7053; + if (!false && South && !West && East && North) return 7026; + if (!false && !South && !West && East && North) return 7030; + if (!false && South && !West && East && !North) return 7034; + if (!false && !South && !West && East && !North) return 7038; + if (!false && South && !West && !East && North) return 7042; + if (!false && !South && !West && !East && North) return 7046; + if (!false && South && !West && !East && !North) return 7050; + if (false && South && West && East && North) return 7023; + if (false && !South && West && East && North) return 7027; + if (false && South && West && East && !North) return 7031; + if (false && !South && West && East && !North) return 7035; + if (false && South && West && !East && North) return 7039; + if (false && !South && West && !East && North) return 7043; + if (false && South && West && !East && !North) return 7047; + if (false && !South && West && !East && !North) return 7051; + return 7054; + } + short LimeStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace LimeTerracotta + { + constexpr short LimeTerracotta() + { + return 6852; + } + } + namespace LimeWallBanner + { + constexpr short LimeWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8173; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8174; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8175; + return 8176; + } + short LimeWallBanner(); + eBlockFace Facing(short ID); + } + namespace LimeWool + { + constexpr short LimeWool() + { + return 1389; + } + } + namespace Lodestone + { + constexpr short Lodestone() + { + return 15838; + } + } + namespace Loom + { + constexpr short Loom(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 14787; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 14789; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 14788; + return 14790; + } + short Loom(); + eBlockFace Facing(short ID); + } + namespace MagentaBanner + { + constexpr short MagentaBanner(unsigned char Rotation) + { + if (Rotation == 7) return 7936; + if (Rotation == 8) return 7937; + if (Rotation == 9) return 7938; + if (Rotation == 10) return 7939; + if (Rotation == 11) return 7940; + if (Rotation == 12) return 7941; + if (Rotation == 13) return 7942; + if (Rotation == 14) return 7943; + if (Rotation == 0) return 7929; + if (Rotation == 1) return 7930; + if (Rotation == 2) return 7931; + if (Rotation == 3) return 7932; + if (Rotation == 4) return 7933; + if (Rotation == 5) return 7934; + if (Rotation == 6) return 7935; + return 7944; + } + short MagentaBanner(); + unsigned char Rotation(short ID); + } + namespace MagentaBed + { + enum class Part + { + Head, + Foot + }; + constexpr short MagentaBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1092; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1081; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1085; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1089; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1093; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1082; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1086; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1090; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1094; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1083; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1087; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1091; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1095; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1084; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1088; + return 1096; + } + short MagentaBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace MagentaCarpet + { + constexpr short MagentaCarpet() + { + return 7868; + } + } + namespace MagentaConcrete + { + constexpr short MagentaConcrete() + { + return 9440; + } + } + namespace MagentaConcretePowder + { + constexpr short MagentaConcretePowder() + { + return 9456; + } + } + namespace MagentaGlazedTerracotta + { + constexpr short MagentaGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9384; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9383; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9382; + return 9385; + } + short MagentaGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace MagentaShulkerBox + { + constexpr short MagentaShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XP) return 9291; + if (Facing == eBlockFace::BLOCK_FACE_YM) return 9295; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9292; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9293; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9290; + return 9294; + } + short MagentaShulkerBox(); + eBlockFace Facing(short ID); + } + namespace MagentaStainedGlass + { + constexpr short MagentaStainedGlass() + { + return 4097; + } + } + namespace MagentaStainedGlassPane + { + constexpr short MagentaStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (false && !South && West && East && North) return 6931; + if (false && South && West && East && !North) return 6935; + if (false && !South && West && East && !North) return 6939; + if (false && South && West && !East && North) return 6943; + if (false && !South && West && !East && North) return 6947; + if (false && South && West && !East && !North) return 6951; + if (false && !South && West && !East && !North) return 6955; + if (false && South && !West && East && North) return 6928; + if (false && !South && !West && East && North) return 6932; + if (false && South && !West && East && !North) return 6936; + if (false && !South && !West && East && !North) return 6940; + if (false && South && !West && !East && North) return 6944; + if (false && !South && !West && !East && North) return 6948; + if (false && South && !West && !East && !North) return 6952; + if (false && !South && !West && !East && !North) return 6956; + if (!false && South && West && East && North) return 6929; + if (!false && !South && West && East && North) return 6933; + if (!false && South && West && East && !North) return 6937; + if (!false && !South && West && East && !North) return 6941; + if (!false && South && West && !East && North) return 6945; + if (!false && !South && West && !East && North) return 6949; + if (!false && South && West && !East && !North) return 6953; + if (!false && !South && West && !East && !North) return 6957; + if (!false && South && !West && East && North) return 6930; + if (!false && !South && !West && East && North) return 6934; + if (!false && South && !West && East && !North) return 6938; + if (!false && !South && !West && East && !North) return 6942; + if (!false && South && !West && !East && North) return 6946; + if (!false && !South && !West && !East && North) return 6950; + if (!false && South && !West && !East && !North) return 6954; + if (false && South && West && East && North) return 6927; + return 6958; + } + short MagentaStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace MagentaTerracotta + { + constexpr short MagentaTerracotta() + { + return 6849; + } + } + namespace MagentaWallBanner + { + constexpr short MagentaWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8161; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8162; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8163; + return 8164; + } + short MagentaWallBanner(); + eBlockFace Facing(short ID); + } + namespace MagentaWool + { + constexpr short MagentaWool() + { + return 1386; + } + } + namespace MagmaBlock + { + constexpr short MagmaBlock() + { + return 9253; + } + } + namespace Melon + { + constexpr short Melon() + { + return 4763; + } + } + namespace MelonStem + { + constexpr short MelonStem(unsigned char Age) + { + if (Age == 3) return 4783; + if (Age == 5) return 4785; + if (Age == 0) return 4780; + if (Age == 2) return 4782; + if (Age == 4) return 4784; + if (Age == 6) return 4786; + if (Age == 1) return 4781; + return 4787; + } + short MelonStem(); + unsigned char Age(short ID); + } + namespace MossyCobblestone + { + constexpr short MossyCobblestone() + { + return 1433; + } + } + namespace MossyCobblestoneSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short MossyCobblestoneSlab(enum Type Type) + { + if (Type == Type::Double && false) return 10817; + if (Type == Type::Top && !false) return 10814; + if (Type == Type::Double && !false) return 10818; + if (Type == Type::Bottom && false) return 10815; + if (Type == Type::Bottom && !false) return 10816; + return 10813; + } + short MossyCobblestoneSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace MossyCobblestoneStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short MossyCobblestoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9989; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9990; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9991; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9992; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9993; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9994; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9995; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9996; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9997; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9998; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9999; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10000; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10001; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10002; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10003; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10004; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10005; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10006; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10007; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10008; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10009; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10010; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10011; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10012; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10013; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10014; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10015; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10016; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10017; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10018; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10019; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10020; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10021; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10022; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10023; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10024; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10025; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10026; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10027; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10028; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10029; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10030; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10031; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10032; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10033; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10034; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10035; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10036; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10037; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10038; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10039; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10040; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10041; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10042; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10043; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10044; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10045; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10046; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10047; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10048; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10049; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10050; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10051; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10052; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10053; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10054; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10055; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10056; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10057; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10058; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10059; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10060; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10061; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10062; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10063; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10064; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10065; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10066; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10067; + return 10068; + } + short MossyCobblestoneStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace MossyCobblestoneWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short MossyCobblestoneWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 6036; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 6038; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 6040; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 6042; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 6044; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 6046; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 6048; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 6050; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 6052; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 6054; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 6056; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 6058; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 6060; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 6062; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 6064; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 6066; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 6068; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 6070; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 6072; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 6074; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 6076; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 6078; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 6080; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 6082; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 6084; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 6086; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 6088; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 6090; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 6092; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 6094; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 6096; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 6098; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 6100; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 6102; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 6104; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 6106; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 6108; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 6110; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 6112; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 6114; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 6116; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 6118; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 6120; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 6122; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 6124; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 6126; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 6128; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 6130; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 6132; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 6134; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 6136; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 6138; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 6140; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 6142; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 6144; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 6146; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 6148; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 6150; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 6152; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 6154; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 6156; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 6158; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 6160; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 6162; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 6164; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 6166; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 6168; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 6170; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 6172; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 6174; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 6176; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 6178; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 6180; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 6182; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 6184; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 6186; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 6188; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 6190; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 6192; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 6194; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 6196; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 6198; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 6200; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 6202; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 6204; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 6206; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 6208; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 6210; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 6212; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 6214; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 6216; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 6218; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 6220; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 6222; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 6224; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 6226; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 6228; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 6230; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 6232; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 6234; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 6236; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 6238; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 6240; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 6242; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 6244; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 6246; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 6248; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 6250; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 6252; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 6254; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 6256; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 6258; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 6260; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 6262; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 6264; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 6266; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 6268; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 6270; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 6272; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 6274; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 6276; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 6278; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 6280; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 6282; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 6284; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 6286; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 6288; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 6290; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 6292; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 6294; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 6296; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 6298; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 6300; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 6302; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 6304; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 5981; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 5983; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 5985; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 5987; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 5989; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 5991; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 5993; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 5995; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 5997; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 5999; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 6001; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 6003; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 6005; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 6007; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 6009; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 6011; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 6013; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 6015; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 6017; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 6019; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 6021; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 6023; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 6025; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 6027; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 6029; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 6031; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 6033; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 6035; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 6037; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 6039; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 6041; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 6043; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 6045; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 6047; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 6049; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 6051; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 6053; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 6055; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 6057; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 6059; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 6061; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 6063; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 6065; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 6067; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 6069; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 6071; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 6073; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 6075; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 6077; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 6079; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 6081; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 6083; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 6085; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 6087; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 6089; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 6091; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 6093; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 6095; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 6097; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 6099; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 6101; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 6103; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 6105; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 6107; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 6109; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 6111; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 6113; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 6115; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 6117; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 6119; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 6121; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 6123; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 6125; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 6127; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 6129; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 6131; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 6133; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 6135; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 6137; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 6139; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 6141; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 6143; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 6145; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 6147; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 6149; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 6151; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 6153; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 6155; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 6157; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 6159; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 6161; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 6163; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 6165; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 6167; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 6169; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 6171; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 6173; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 6175; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 6177; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 6179; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 6181; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 6183; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 6185; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 6187; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 6189; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 6191; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 6193; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 6195; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 6197; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 6199; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 6201; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 6203; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 6205; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 6207; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 6209; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 6211; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 6213; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 6215; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 6217; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 6219; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 6221; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 6223; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 6225; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 6227; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 6229; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 6231; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 6233; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 6235; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 6237; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 6239; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 6241; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 6243; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 6245; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 6247; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 6249; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 6251; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 6253; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 6255; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 6257; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 6259; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 6261; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 6263; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 6265; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 6267; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 6269; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 6271; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 6273; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 6275; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 6277; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 6279; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 6281; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 6283; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 6285; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 6287; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 6289; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 6291; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 6293; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 6295; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 6297; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 6299; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 6301; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 6303; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 5982; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 5984; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 5986; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 5988; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 5990; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 5992; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 5994; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 5996; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 5998; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 6000; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 6002; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 6004; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 6006; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 6008; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 6010; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 6012; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 6014; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 6016; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 6018; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 6020; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 6022; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 6024; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 6026; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 6028; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 6030; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 6032; + return 6034; + } + short MossyCobblestoneWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace MossyStoneBrickSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short MossyStoneBrickSlab(enum Type Type) + { + if (Type == Type::Bottom && false) return 10803; + if (Type == Type::Bottom && !false) return 10804; + if (Type == Type::Top && false) return 10801; + if (Type == Type::Double && false) return 10805; + if (Type == Type::Top && !false) return 10802; + return 10806; + } + short MossyStoneBrickSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace MossyStoneBrickStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short MossyStoneBrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9833; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9834; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9835; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9836; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9837; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9838; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9839; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9840; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9841; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9842; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9843; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9844; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9845; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9846; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9847; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9848; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9849; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9850; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9851; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9852; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9853; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9854; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9855; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9856; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9857; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9858; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9859; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9860; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9861; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9862; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9863; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9864; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9865; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9866; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9867; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9868; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9869; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9870; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9871; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9872; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9873; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9874; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9875; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9876; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9877; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9878; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9879; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9880; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9881; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9882; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9883; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9884; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9885; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9886; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9887; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9888; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9889; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9890; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9891; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9892; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9893; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9894; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9895; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9896; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9897; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9898; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9899; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9900; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9901; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9902; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9903; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9904; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9905; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9906; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9907; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9908; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9829; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9830; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9831; + return 9832; + } + short MossyStoneBrickStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace MossyStoneBrickWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short MossyStoneBrickWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 12056; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 12060; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 12064; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 12068; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 12072; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 12076; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 12080; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 12084; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 12088; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 12092; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12096; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 12100; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 12104; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12108; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 12112; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 12116; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12120; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 12124; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12128; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12132; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12136; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12140; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12144; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12148; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12152; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12156; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12160; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 11841; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 11845; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 11849; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 11853; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 11857; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 11861; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 11865; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 11869; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 11873; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 11877; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 11881; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 11885; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 11889; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 11893; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 11897; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 11901; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 11905; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 11909; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 11913; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 11917; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 11921; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 11925; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 11929; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 11933; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 11937; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 11941; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 11945; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 11949; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 11953; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 11957; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 11961; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 11965; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 11969; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 11973; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 11977; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 11981; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 11985; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 11989; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 11993; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 11997; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 12001; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 12005; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 12009; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 12013; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 12017; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12021; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 12025; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12029; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12033; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 12037; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12041; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12045; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 12049; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12053; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 12057; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 12061; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 12065; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 12069; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 12073; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 12077; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 12081; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 12085; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 12089; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12093; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 12097; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12101; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12105; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 12109; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12113; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12117; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 12121; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12125; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12129; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12133; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12137; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12141; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12145; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12149; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12153; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12157; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12161; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 11842; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 11846; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 11850; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 11854; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 11858; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 11862; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 11866; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 11870; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 11874; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 11878; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 11882; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 11886; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 11890; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 11894; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 11898; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 11902; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 11906; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 11910; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 11914; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 11918; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11922; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 11926; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 11930; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11934; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 11938; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 11942; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11946; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 11950; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 11954; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 11958; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 11962; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 11966; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 11970; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 11974; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 11978; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 11982; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 11986; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 11990; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11994; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 11998; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 12002; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12006; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 12010; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 12014; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12018; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 12022; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12026; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12030; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 12034; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12038; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12042; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 12046; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12050; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12054; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 12058; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 12062; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12066; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 12070; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 12074; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12078; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 12082; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 12086; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12090; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 12094; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12098; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12102; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 12106; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12110; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12114; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 12118; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12122; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12126; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 12130; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12134; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12138; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 12142; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12146; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12150; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 12154; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12158; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12162; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 11839; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 11843; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 11847; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 11851; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 11855; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 11859; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 11863; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 11867; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 11871; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 11875; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 11879; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 11883; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 11887; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 11891; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 11895; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 11899; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 11903; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 11907; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 11911; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 11915; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11919; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 11923; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 11927; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11931; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 11935; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 11939; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11943; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 11947; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 11951; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 11955; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 11959; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 11963; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 11967; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 11971; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 11975; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 11979; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 11983; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 11987; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11991; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 11995; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 11999; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12003; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 12007; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 12011; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12015; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 12019; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 12023; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12027; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 12031; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 12035; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12039; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 12043; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 12047; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12051; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 12055; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 12059; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12063; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 12067; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 12071; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12075; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 12079; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 12083; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12087; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 12091; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 12095; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12099; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 12103; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 12107; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12111; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 12115; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 12119; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12123; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 12127; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12131; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12135; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 12139; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12143; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12147; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 12151; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12155; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12159; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 11840; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 11844; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 11848; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 11852; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 11856; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 11860; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 11864; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 11868; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 11872; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 11876; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 11880; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 11884; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 11888; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 11892; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 11896; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 11900; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 11904; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 11908; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 11912; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 11916; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 11920; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 11924; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 11928; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 11932; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 11936; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 11940; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 11944; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 11948; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 11952; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 11956; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 11960; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 11964; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 11968; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 11972; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 11976; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 11980; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 11984; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 11988; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 11992; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 11996; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 12000; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 12004; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 12008; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 12012; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 12016; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 12020; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12024; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 12028; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 12032; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12036; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 12040; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 12044; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12048; + return 12052; + } + short MossyStoneBrickWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace MossyStoneBricks + { + constexpr short MossyStoneBricks() + { + return 4496; + } + } + namespace MovingPiston + { + enum class Type + { + Normal, + Sticky + }; + constexpr short MovingPiston(eBlockFace Facing, enum Type Type) + { + if (Facing == eBlockFace::BLOCK_FACE_XM && Type == Type::Sticky) return 1407; + if (Facing == eBlockFace::BLOCK_FACE_YM && Type == Type::Sticky) return 1411; + if (Facing == eBlockFace::BLOCK_FACE_ZM && Type == Type::Normal) return 1400; + if (Facing == eBlockFace::BLOCK_FACE_ZP && Type == Type::Normal) return 1404; + if (Facing == eBlockFace::BLOCK_FACE_YP && Type == Type::Normal) return 1408; + if (Facing == eBlockFace::BLOCK_FACE_ZM && Type == Type::Sticky) return 1401; + if (Facing == eBlockFace::BLOCK_FACE_ZP && Type == Type::Sticky) return 1405; + if (Facing == eBlockFace::BLOCK_FACE_YP && Type == Type::Sticky) return 1409; + if (Facing == eBlockFace::BLOCK_FACE_XP && Type == Type::Normal) return 1402; + if (Facing == eBlockFace::BLOCK_FACE_XM && Type == Type::Normal) return 1406; + if (Facing == eBlockFace::BLOCK_FACE_YM && Type == Type::Normal) return 1410; + return 1403; + } + short MovingPiston(); + eBlockFace Facing(short ID); + enum Type Type(short ID); + } + namespace MushroomStem + { + constexpr short MushroomStem(bool Down, bool East, bool North, bool South, bool Up, bool West) + { + if (!Up && !West && East && South && Down && North) return 4636; + if (!Up && !West && !East && South && Down && North) return 4652; + if (!Up && !West && East && South && !Down && North) return 4668; + if (!Up && !West && !East && South && !Down && North) return 4684; + if (Up && West && East && !South && Down && North) return 4637; + if (Up && West && !East && !South && Down && North) return 4653; + if (Up && West && East && !South && !Down && North) return 4669; + if (Up && West && !East && !South && !Down && North) return 4685; + if (Up && !West && East && !South && Down && North) return 4638; + if (Up && !West && !East && !South && Down && North) return 4654; + if (Up && !West && East && !South && !Down && North) return 4670; + if (Up && !West && !East && !South && !Down && North) return 4686; + if (!Up && West && East && !South && Down && North) return 4639; + if (!Up && West && !East && !South && Down && North) return 4655; + if (!Up && West && East && !South && !Down && North) return 4671; + if (!Up && West && !East && !South && !Down && North) return 4687; + if (!Up && !West && East && !South && Down && North) return 4640; + if (!Up && !West && !East && !South && Down && North) return 4656; + if (!Up && !West && East && !South && !Down && North) return 4672; + if (!Up && !West && !East && !South && !Down && North) return 4688; + if (Up && West && East && South && Down && !North) return 4641; + if (Up && West && !East && South && Down && !North) return 4657; + if (Up && West && East && South && !Down && !North) return 4673; + if (Up && West && !East && South && !Down && !North) return 4689; + if (Up && !West && East && South && Down && !North) return 4642; + if (Up && !West && !East && South && Down && !North) return 4658; + if (Up && !West && East && South && !Down && !North) return 4674; + if (Up && !West && !East && South && !Down && !North) return 4690; + if (!Up && West && East && South && Down && !North) return 4643; + if (!Up && West && !East && South && Down && !North) return 4659; + if (!Up && West && East && South && !Down && !North) return 4675; + if (!Up && West && !East && South && !Down && !North) return 4691; + if (!Up && !West && East && South && Down && !North) return 4644; + if (!Up && !West && !East && South && Down && !North) return 4660; + if (!Up && !West && East && South && !Down && !North) return 4676; + if (!Up && !West && !East && South && !Down && !North) return 4692; + if (Up && West && East && !South && Down && !North) return 4645; + if (Up && West && !East && !South && Down && !North) return 4661; + if (Up && West && East && !South && !Down && !North) return 4677; + if (Up && West && !East && !South && !Down && !North) return 4693; + if (Up && !West && East && !South && Down && !North) return 4646; + if (Up && !West && !East && !South && Down && !North) return 4662; + if (Up && !West && East && !South && !Down && !North) return 4678; + if (Up && !West && !East && !South && !Down && !North) return 4694; + if (!Up && West && East && !South && Down && !North) return 4647; + if (!Up && West && !East && !South && Down && !North) return 4663; + if (!Up && West && East && !South && !Down && !North) return 4679; + if (!Up && West && !East && !South && !Down && !North) return 4695; + if (!Up && !West && East && !South && Down && !North) return 4648; + if (!Up && !West && !East && !South && Down && !North) return 4664; + if (!Up && !West && East && !South && !Down && !North) return 4680; + if (Up && West && East && South && Down && North) return 4633; + if (Up && West && !East && South && Down && North) return 4649; + if (Up && West && East && South && !Down && North) return 4665; + if (Up && West && !East && South && !Down && North) return 4681; + if (Up && !West && East && South && Down && North) return 4634; + if (Up && !West && !East && South && Down && North) return 4650; + if (Up && !West && East && South && !Down && North) return 4666; + if (Up && !West && !East && South && !Down && North) return 4682; + if (!Up && West && East && South && Down && North) return 4635; + if (!Up && West && !East && South && Down && North) return 4651; + if (!Up && West && East && South && !Down && North) return 4667; + if (!Up && West && !East && South && !Down && North) return 4683; + return 4696; + } + short MushroomStem(); + bool Down(short ID); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Up(short ID); + bool West(short ID); + } + namespace Mycelium + { + constexpr short Mycelium(bool Snowy) + { + if (Snowy) return 5012; + return 5013; + } + short Mycelium(); + bool Snowy(short ID); + } + namespace NetherBrickFence + { + constexpr short NetherBrickFence(bool East, bool North, bool South, bool West) + { + if (false && South && West && !East && !North) return 5040; + if (false && !South && West && !East && !North) return 5044; + if (false && South && !West && East && North) return 5017; + if (false && !South && !West && East && North) return 5021; + if (false && South && !West && East && !North) return 5025; + if (false && !South && !West && East && !North) return 5029; + if (false && South && !West && !East && North) return 5033; + if (false && !South && !West && !East && North) return 5037; + if (false && South && !West && !East && !North) return 5041; + if (false && !South && !West && !East && !North) return 5045; + if (!false && South && West && East && North) return 5018; + if (!false && !South && West && East && North) return 5022; + if (!false && South && West && East && !North) return 5026; + if (!false && !South && West && East && !North) return 5030; + if (!false && South && West && !East && North) return 5034; + if (!false && !South && West && !East && North) return 5038; + if (!false && South && West && !East && !North) return 5042; + if (!false && !South && West && !East && !North) return 5046; + if (!false && South && !West && East && North) return 5019; + if (!false && !South && !West && East && North) return 5023; + if (!false && South && !West && East && !North) return 5027; + if (!false && !South && !West && East && !North) return 5031; + if (!false && South && !West && !East && North) return 5035; + if (!false && !South && !West && !East && North) return 5039; + if (!false && South && !West && !East && !North) return 5043; + if (false && South && West && East && North) return 5016; + if (false && !South && West && East && North) return 5020; + if (false && South && West && East && !North) return 5024; + if (false && !South && West && East && !North) return 5028; + if (false && South && West && !East && North) return 5032; + if (false && !South && West && !East && North) return 5036; + return 5047; + } + short NetherBrickFence(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace NetherBrickSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short NetherBrickSlab(enum Type Type) + { + if (Type == Type::Double && false) return 8388; + if (Type == Type::Top && !false) return 8385; + if (Type == Type::Double && !false) return 8389; + if (Type == Type::Bottom && false) return 8386; + if (Type == Type::Bottom && !false) return 8387; + return 8384; + } + short NetherBrickSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace NetherBrickStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short NetherBrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5076; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5077; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5078; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5079; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5080; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5081; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5082; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5083; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5084; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5085; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5086; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5087; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5088; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5089; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5090; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5091; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5092; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5093; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5094; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5095; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5096; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5097; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5098; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5099; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5100; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5101; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5102; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5103; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5104; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5105; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5106; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5107; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5108; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5109; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5110; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5111; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5048; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5112; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5049; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5113; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5050; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5114; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5051; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5115; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5052; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5116; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5053; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5117; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5054; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5118; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5055; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5119; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5056; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5120; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5057; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5121; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5058; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5122; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5059; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5123; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5060; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5124; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5061; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5125; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5062; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5126; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5063; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5127; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5064; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5065; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5066; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5067; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5068; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5069; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5070; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5071; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5072; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5073; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5074; + return 5075; + } + short NetherBrickStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace NetherBrickWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short NetherBrickWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 13078; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13082; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13086; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 13090; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13094; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13098; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 13102; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13106; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13110; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 13114; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13118; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13122; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 13126; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13130; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13134; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 12811; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 12815; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 12819; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 12823; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 12827; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 12831; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 12835; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 12839; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 12843; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 12847; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 12851; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 12855; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 12859; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 12863; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 12867; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 12871; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 12875; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 12879; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 12883; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 12887; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12891; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 12895; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 12899; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12903; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 12907; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 12911; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12915; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 12919; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 12923; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 12927; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 12931; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 12935; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 12939; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 12943; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 12947; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 12951; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 12955; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 12959; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12963; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 12967; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 12971; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12975; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 12979; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 12983; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12987; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 12991; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 12995; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12999; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 13003; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 13007; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13011; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 13015; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 13019; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13023; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 13027; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 13031; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13035; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 13039; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 13043; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13047; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 13051; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 13055; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13059; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 13063; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 13067; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13071; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 13075; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 13079; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13083; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 13087; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 13091; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13095; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 13099; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13103; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13107; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 13111; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13115; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13119; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 13123; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13127; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13131; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 12812; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 12816; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 12820; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 12824; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 12828; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 12832; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 12836; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 12840; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 12844; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 12848; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 12852; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 12856; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 12860; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 12864; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 12868; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 12872; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 12876; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 12880; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 12884; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 12888; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 12892; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 12896; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 12900; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 12904; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 12908; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 12912; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 12916; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 12920; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 12924; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 12928; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 12932; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 12936; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 12940; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 12944; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 12948; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 12952; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 12956; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 12960; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 12964; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 12968; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 12972; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 12976; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 12980; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 12984; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 12988; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 12992; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12996; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 13000; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 13004; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13008; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 13012; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 13016; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13020; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 13024; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 13028; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 13032; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 13036; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 13040; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 13044; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 13048; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 13052; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 13056; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 13060; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 13064; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13068; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 13072; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 13076; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13080; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 13084; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 13088; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13092; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 13096; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13100; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13104; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13108; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13112; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13116; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13120; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13124; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13128; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13132; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 12813; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 12817; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 12821; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 12825; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 12829; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 12833; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 12837; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 12841; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 12845; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 12849; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 12853; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 12857; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 12861; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 12865; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 12869; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 12873; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 12877; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 12881; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 12885; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 12889; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 12893; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 12897; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 12901; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 12905; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 12909; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 12913; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 12917; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 12921; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 12925; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 12929; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 12933; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 12937; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 12941; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 12945; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 12949; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 12953; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 12957; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 12961; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 12965; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 12969; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 12973; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 12977; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 12981; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 12985; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 12989; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12993; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 12997; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13001; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13005; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 13009; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13013; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13017; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 13021; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13025; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 13029; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 13033; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 13037; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 13041; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 13045; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 13049; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 13053; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 13057; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 13061; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13065; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 13069; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13073; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13077; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 13081; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13085; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13089; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 13093; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13097; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13101; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13105; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13109; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13113; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13117; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13121; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13125; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13129; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13133; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 12814; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 12818; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 12822; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 12826; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 12830; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 12834; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 12838; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 12842; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 12846; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 12850; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 12854; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 12858; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 12862; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 12866; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 12870; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 12874; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 12878; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 12882; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 12886; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 12890; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12894; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 12898; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 12902; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12906; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 12910; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 12914; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12918; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 12922; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 12926; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 12930; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 12934; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 12938; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 12942; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 12946; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 12950; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 12954; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 12958; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 12962; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12966; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 12970; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 12974; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12978; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 12982; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 12986; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12990; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 12994; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12998; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13002; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 13006; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13010; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13014; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 13018; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13022; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13026; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 13030; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 13034; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13038; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 13042; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 13046; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13050; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 13054; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 13058; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13062; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 13066; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13070; + return 13074; + } + short NetherBrickWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace NetherBricks + { + constexpr short NetherBricks() + { + return 5015; + } + } + namespace NetherGoldOre + { + constexpr short NetherGoldOre() + { + return 72; + } + } + namespace NetherPortal + { + enum class Axis + { + X, + Z + }; + constexpr short NetherPortal(enum Axis Axis) + { + if (Axis == Axis::X) return 4014; + return 4015; + } + short NetherPortal(); + enum Axis Axis(short ID); + } + namespace NetherQuartzOre + { + constexpr short NetherQuartzOre() + { + return 6727; + } + } + namespace NetherSprouts + { + constexpr short NetherSprouts() + { + return 14974; + } + } + namespace NetherWart + { + constexpr short NetherWart(unsigned char Age) + { + if (Age == 0) return 5128; + if (Age == 1) return 5129; + if (Age == 2) return 5130; + return 5131; + } + short NetherWart(); + unsigned char Age(short ID); + } + namespace NetherWartBlock + { + constexpr short NetherWartBlock() + { + return 9254; + } + } + namespace NetheriteBlock + { + constexpr short NetheriteBlock() + { + return 15826; + } + } + namespace Netherrack + { + constexpr short Netherrack() + { + return 3999; + } + } + namespace NoteBlock + { + enum class Instrument + { + Harp, + Basedrum, + Snare, + Hat, + Bass, + Flute, + Bell, + Guitar, + Chime, + Xylophone, + IronXylophone, + CowBell, + Didgeridoo, + Bit, + Banjo, + Pling + }; + constexpr short NoteBlock(enum Instrument Instrument, unsigned char Note, bool Powered) + { + if (Instrument == Instrument::Harp && Note == 0 && Powered) return 249; + if (Instrument == Instrument::Harp && Note == 0 && !Powered) return 250; + if (Instrument == Instrument::Harp && Note == 1 && Powered) return 251; + if (Instrument == Instrument::Harp && Note == 1 && !Powered) return 252; + if (Instrument == Instrument::Harp && Note == 2 && Powered) return 253; + if (Instrument == Instrument::Harp && Note == 2 && !Powered) return 254; + if (Instrument == Instrument::Harp && Note == 3 && Powered) return 255; + if (Instrument == Instrument::Harp && Note == 3 && !Powered) return 256; + if (Instrument == Instrument::Harp && Note == 4 && Powered) return 257; + if (Instrument == Instrument::Harp && Note == 4 && !Powered) return 258; + if (Instrument == Instrument::Harp && Note == 5 && Powered) return 259; + if (Instrument == Instrument::Harp && Note == 5 && !Powered) return 260; + if (Instrument == Instrument::Harp && Note == 6 && Powered) return 261; + if (Instrument == Instrument::Harp && Note == 6 && !Powered) return 262; + if (Instrument == Instrument::Harp && Note == 7 && Powered) return 263; + if (Instrument == Instrument::Harp && Note == 7 && !Powered) return 264; + if (Instrument == Instrument::Harp && Note == 8 && Powered) return 265; + if (Instrument == Instrument::Harp && Note == 8 && !Powered) return 266; + if (Instrument == Instrument::Harp && Note == 9 && Powered) return 267; + if (Instrument == Instrument::Harp && Note == 9 && !Powered) return 268; + if (Instrument == Instrument::Harp && Note == 10 && Powered) return 269; + if (Instrument == Instrument::Harp && Note == 10 && !Powered) return 270; + if (Instrument == Instrument::Harp && Note == 11 && Powered) return 271; + if (Instrument == Instrument::Harp && Note == 11 && !Powered) return 272; + if (Instrument == Instrument::Harp && Note == 12 && Powered) return 273; + if (Instrument == Instrument::Harp && Note == 12 && !Powered) return 274; + if (Instrument == Instrument::Harp && Note == 13 && Powered) return 275; + if (Instrument == Instrument::Harp && Note == 13 && !Powered) return 276; + if (Instrument == Instrument::Harp && Note == 14 && Powered) return 277; + if (Instrument == Instrument::Harp && Note == 14 && !Powered) return 278; + if (Instrument == Instrument::Harp && Note == 15 && Powered) return 279; + if (Instrument == Instrument::Harp && Note == 15 && !Powered) return 280; + if (Instrument == Instrument::Harp && Note == 16 && Powered) return 281; + if (Instrument == Instrument::Harp && Note == 16 && !Powered) return 282; + if (Instrument == Instrument::Harp && Note == 17 && Powered) return 283; + if (Instrument == Instrument::Harp && Note == 17 && !Powered) return 284; + if (Instrument == Instrument::Harp && Note == 18 && Powered) return 285; + if (Instrument == Instrument::Harp && Note == 18 && !Powered) return 286; + if (Instrument == Instrument::Harp && Note == 19 && Powered) return 287; + if (Instrument == Instrument::Harp && Note == 19 && !Powered) return 288; + if (Instrument == Instrument::Harp && Note == 20 && Powered) return 289; + if (Instrument == Instrument::Harp && Note == 20 && !Powered) return 290; + if (Instrument == Instrument::Harp && Note == 21 && Powered) return 291; + if (Instrument == Instrument::Harp && Note == 21 && !Powered) return 292; + if (Instrument == Instrument::Harp && Note == 22 && Powered) return 293; + if (Instrument == Instrument::Harp && Note == 22 && !Powered) return 294; + if (Instrument == Instrument::Harp && Note == 23 && Powered) return 295; + if (Instrument == Instrument::Harp && Note == 23 && !Powered) return 296; + if (Instrument == Instrument::Harp && Note == 24 && Powered) return 297; + if (Instrument == Instrument::Harp && Note == 24 && !Powered) return 298; + if (Instrument == Instrument::Basedrum && Note == 0 && Powered) return 299; + if (Instrument == Instrument::Basedrum && Note == 0 && !Powered) return 300; + if (Instrument == Instrument::Basedrum && Note == 1 && Powered) return 301; + if (Instrument == Instrument::Basedrum && Note == 1 && !Powered) return 302; + if (Instrument == Instrument::Basedrum && Note == 2 && Powered) return 303; + if (Instrument == Instrument::Basedrum && Note == 2 && !Powered) return 304; + if (Instrument == Instrument::Basedrum && Note == 3 && Powered) return 305; + if (Instrument == Instrument::Basedrum && Note == 3 && !Powered) return 306; + if (Instrument == Instrument::Basedrum && Note == 4 && Powered) return 307; + if (Instrument == Instrument::Basedrum && Note == 4 && !Powered) return 308; + if (Instrument == Instrument::Basedrum && Note == 5 && Powered) return 309; + if (Instrument == Instrument::Basedrum && Note == 5 && !Powered) return 310; + if (Instrument == Instrument::Basedrum && Note == 6 && Powered) return 311; + if (Instrument == Instrument::Basedrum && Note == 6 && !Powered) return 312; + if (Instrument == Instrument::Basedrum && Note == 7 && Powered) return 313; + if (Instrument == Instrument::Basedrum && Note == 7 && !Powered) return 314; + if (Instrument == Instrument::Basedrum && Note == 8 && Powered) return 315; + if (Instrument == Instrument::Basedrum && Note == 8 && !Powered) return 316; + if (Instrument == Instrument::Basedrum && Note == 9 && Powered) return 317; + if (Instrument == Instrument::Basedrum && Note == 9 && !Powered) return 318; + if (Instrument == Instrument::Basedrum && Note == 10 && Powered) return 319; + if (Instrument == Instrument::Basedrum && Note == 10 && !Powered) return 320; + if (Instrument == Instrument::Basedrum && Note == 11 && Powered) return 321; + if (Instrument == Instrument::Basedrum && Note == 11 && !Powered) return 322; + if (Instrument == Instrument::Basedrum && Note == 12 && Powered) return 323; + if (Instrument == Instrument::Basedrum && Note == 12 && !Powered) return 324; + if (Instrument == Instrument::Basedrum && Note == 13 && Powered) return 325; + if (Instrument == Instrument::Basedrum && Note == 13 && !Powered) return 326; + if (Instrument == Instrument::Basedrum && Note == 14 && Powered) return 327; + if (Instrument == Instrument::Basedrum && Note == 14 && !Powered) return 328; + if (Instrument == Instrument::Basedrum && Note == 15 && Powered) return 329; + if (Instrument == Instrument::Basedrum && Note == 15 && !Powered) return 330; + if (Instrument == Instrument::Basedrum && Note == 16 && Powered) return 331; + if (Instrument == Instrument::Basedrum && Note == 16 && !Powered) return 332; + if (Instrument == Instrument::Basedrum && Note == 17 && Powered) return 333; + if (Instrument == Instrument::Basedrum && Note == 17 && !Powered) return 334; + if (Instrument == Instrument::Basedrum && Note == 18 && Powered) return 335; + if (Instrument == Instrument::Basedrum && Note == 18 && !Powered) return 336; + if (Instrument == Instrument::Basedrum && Note == 19 && Powered) return 337; + if (Instrument == Instrument::Basedrum && Note == 19 && !Powered) return 338; + if (Instrument == Instrument::Basedrum && Note == 20 && Powered) return 339; + if (Instrument == Instrument::Basedrum && Note == 20 && !Powered) return 340; + if (Instrument == Instrument::Basedrum && Note == 21 && Powered) return 341; + if (Instrument == Instrument::Basedrum && Note == 21 && !Powered) return 342; + if (Instrument == Instrument::Basedrum && Note == 22 && Powered) return 343; + if (Instrument == Instrument::Basedrum && Note == 22 && !Powered) return 344; + if (Instrument == Instrument::Basedrum && Note == 23 && Powered) return 345; + if (Instrument == Instrument::Basedrum && Note == 23 && !Powered) return 346; + if (Instrument == Instrument::Basedrum && Note == 24 && Powered) return 347; + if (Instrument == Instrument::Basedrum && Note == 24 && !Powered) return 348; + if (Instrument == Instrument::Snare && Note == 0 && Powered) return 349; + if (Instrument == Instrument::Snare && Note == 0 && !Powered) return 350; + if (Instrument == Instrument::Snare && Note == 1 && Powered) return 351; + if (Instrument == Instrument::Snare && Note == 1 && !Powered) return 352; + if (Instrument == Instrument::Snare && Note == 2 && Powered) return 353; + if (Instrument == Instrument::Snare && Note == 2 && !Powered) return 354; + if (Instrument == Instrument::Snare && Note == 3 && Powered) return 355; + if (Instrument == Instrument::Snare && Note == 3 && !Powered) return 356; + if (Instrument == Instrument::Snare && Note == 4 && Powered) return 357; + if (Instrument == Instrument::Snare && Note == 4 && !Powered) return 358; + if (Instrument == Instrument::Snare && Note == 5 && Powered) return 359; + if (Instrument == Instrument::Snare && Note == 5 && !Powered) return 360; + if (Instrument == Instrument::Snare && Note == 6 && Powered) return 361; + if (Instrument == Instrument::Snare && Note == 6 && !Powered) return 362; + if (Instrument == Instrument::Snare && Note == 7 && Powered) return 363; + if (Instrument == Instrument::Snare && Note == 7 && !Powered) return 364; + if (Instrument == Instrument::Snare && Note == 8 && Powered) return 365; + if (Instrument == Instrument::Snare && Note == 8 && !Powered) return 366; + if (Instrument == Instrument::Snare && Note == 9 && Powered) return 367; + if (Instrument == Instrument::Snare && Note == 9 && !Powered) return 368; + if (Instrument == Instrument::Snare && Note == 10 && Powered) return 369; + if (Instrument == Instrument::Snare && Note == 10 && !Powered) return 370; + if (Instrument == Instrument::Snare && Note == 11 && Powered) return 371; + if (Instrument == Instrument::Snare && Note == 11 && !Powered) return 372; + if (Instrument == Instrument::Snare && Note == 12 && Powered) return 373; + if (Instrument == Instrument::Snare && Note == 12 && !Powered) return 374; + if (Instrument == Instrument::Snare && Note == 13 && Powered) return 375; + if (Instrument == Instrument::Snare && Note == 13 && !Powered) return 376; + if (Instrument == Instrument::Snare && Note == 14 && Powered) return 377; + if (Instrument == Instrument::Snare && Note == 14 && !Powered) return 378; + if (Instrument == Instrument::Snare && Note == 15 && Powered) return 379; + if (Instrument == Instrument::Snare && Note == 15 && !Powered) return 380; + if (Instrument == Instrument::Snare && Note == 16 && Powered) return 381; + if (Instrument == Instrument::Snare && Note == 16 && !Powered) return 382; + if (Instrument == Instrument::Snare && Note == 17 && Powered) return 383; + if (Instrument == Instrument::Snare && Note == 17 && !Powered) return 384; + if (Instrument == Instrument::Snare && Note == 18 && Powered) return 385; + if (Instrument == Instrument::Snare && Note == 18 && !Powered) return 386; + if (Instrument == Instrument::Snare && Note == 19 && Powered) return 387; + if (Instrument == Instrument::Snare && Note == 19 && !Powered) return 388; + if (Instrument == Instrument::Snare && Note == 20 && Powered) return 389; + if (Instrument == Instrument::Snare && Note == 20 && !Powered) return 390; + if (Instrument == Instrument::Snare && Note == 21 && Powered) return 391; + if (Instrument == Instrument::Snare && Note == 21 && !Powered) return 392; + if (Instrument == Instrument::Snare && Note == 22 && Powered) return 393; + if (Instrument == Instrument::Snare && Note == 22 && !Powered) return 394; + if (Instrument == Instrument::Snare && Note == 23 && Powered) return 395; + if (Instrument == Instrument::Snare && Note == 23 && !Powered) return 396; + if (Instrument == Instrument::Snare && Note == 24 && Powered) return 397; + if (Instrument == Instrument::Snare && Note == 24 && !Powered) return 398; + if (Instrument == Instrument::Hat && Note == 0 && Powered) return 399; + if (Instrument == Instrument::Hat && Note == 0 && !Powered) return 400; + if (Instrument == Instrument::Hat && Note == 1 && Powered) return 401; + if (Instrument == Instrument::Hat && Note == 1 && !Powered) return 402; + if (Instrument == Instrument::Hat && Note == 2 && Powered) return 403; + if (Instrument == Instrument::Hat && Note == 2 && !Powered) return 404; + if (Instrument == Instrument::Hat && Note == 3 && Powered) return 405; + if (Instrument == Instrument::Hat && Note == 3 && !Powered) return 406; + if (Instrument == Instrument::Hat && Note == 4 && Powered) return 407; + if (Instrument == Instrument::Hat && Note == 4 && !Powered) return 408; + if (Instrument == Instrument::Hat && Note == 5 && Powered) return 409; + if (Instrument == Instrument::Hat && Note == 5 && !Powered) return 410; + if (Instrument == Instrument::Hat && Note == 6 && Powered) return 411; + if (Instrument == Instrument::Hat && Note == 6 && !Powered) return 412; + if (Instrument == Instrument::Hat && Note == 7 && Powered) return 413; + if (Instrument == Instrument::Hat && Note == 7 && !Powered) return 414; + if (Instrument == Instrument::Hat && Note == 8 && Powered) return 415; + if (Instrument == Instrument::Hat && Note == 8 && !Powered) return 416; + if (Instrument == Instrument::Hat && Note == 9 && Powered) return 417; + if (Instrument == Instrument::Hat && Note == 9 && !Powered) return 418; + if (Instrument == Instrument::Hat && Note == 10 && Powered) return 419; + if (Instrument == Instrument::Hat && Note == 10 && !Powered) return 420; + if (Instrument == Instrument::Hat && Note == 11 && Powered) return 421; + if (Instrument == Instrument::Hat && Note == 11 && !Powered) return 422; + if (Instrument == Instrument::Hat && Note == 12 && Powered) return 423; + if (Instrument == Instrument::Hat && Note == 12 && !Powered) return 424; + if (Instrument == Instrument::Hat && Note == 13 && Powered) return 425; + if (Instrument == Instrument::Hat && Note == 13 && !Powered) return 426; + if (Instrument == Instrument::Hat && Note == 14 && Powered) return 427; + if (Instrument == Instrument::Hat && Note == 14 && !Powered) return 428; + if (Instrument == Instrument::Hat && Note == 15 && Powered) return 429; + if (Instrument == Instrument::Hat && Note == 15 && !Powered) return 430; + if (Instrument == Instrument::Hat && Note == 16 && Powered) return 431; + if (Instrument == Instrument::Hat && Note == 16 && !Powered) return 432; + if (Instrument == Instrument::Hat && Note == 17 && Powered) return 433; + if (Instrument == Instrument::Hat && Note == 17 && !Powered) return 434; + if (Instrument == Instrument::Hat && Note == 18 && Powered) return 435; + if (Instrument == Instrument::Hat && Note == 18 && !Powered) return 436; + if (Instrument == Instrument::Hat && Note == 19 && Powered) return 437; + if (Instrument == Instrument::Hat && Note == 19 && !Powered) return 438; + if (Instrument == Instrument::Hat && Note == 20 && Powered) return 439; + if (Instrument == Instrument::Hat && Note == 20 && !Powered) return 440; + if (Instrument == Instrument::Hat && Note == 21 && Powered) return 441; + if (Instrument == Instrument::Hat && Note == 21 && !Powered) return 442; + if (Instrument == Instrument::Hat && Note == 22 && Powered) return 443; + if (Instrument == Instrument::Hat && Note == 22 && !Powered) return 444; + if (Instrument == Instrument::Hat && Note == 23 && Powered) return 445; + if (Instrument == Instrument::Hat && Note == 23 && !Powered) return 446; + if (Instrument == Instrument::Hat && Note == 24 && Powered) return 447; + if (Instrument == Instrument::Hat && Note == 24 && !Powered) return 448; + if (Instrument == Instrument::Bass && Note == 0 && Powered) return 449; + if (Instrument == Instrument::Bass && Note == 0 && !Powered) return 450; + if (Instrument == Instrument::Bass && Note == 1 && Powered) return 451; + if (Instrument == Instrument::Bass && Note == 1 && !Powered) return 452; + if (Instrument == Instrument::Bass && Note == 2 && Powered) return 453; + if (Instrument == Instrument::Bass && Note == 2 && !Powered) return 454; + if (Instrument == Instrument::Bass && Note == 3 && Powered) return 455; + if (Instrument == Instrument::Bass && Note == 3 && !Powered) return 456; + if (Instrument == Instrument::Bass && Note == 4 && Powered) return 457; + if (Instrument == Instrument::Bass && Note == 4 && !Powered) return 458; + if (Instrument == Instrument::Bass && Note == 5 && Powered) return 459; + if (Instrument == Instrument::Bass && Note == 5 && !Powered) return 460; + if (Instrument == Instrument::Bass && Note == 6 && Powered) return 461; + if (Instrument == Instrument::Bass && Note == 6 && !Powered) return 462; + if (Instrument == Instrument::Bass && Note == 7 && Powered) return 463; + if (Instrument == Instrument::Bass && Note == 7 && !Powered) return 464; + if (Instrument == Instrument::Bass && Note == 8 && Powered) return 465; + if (Instrument == Instrument::Bass && Note == 8 && !Powered) return 466; + if (Instrument == Instrument::Bass && Note == 9 && Powered) return 467; + if (Instrument == Instrument::Bass && Note == 9 && !Powered) return 468; + if (Instrument == Instrument::Bass && Note == 10 && Powered) return 469; + if (Instrument == Instrument::Bass && Note == 10 && !Powered) return 470; + if (Instrument == Instrument::Bass && Note == 11 && Powered) return 471; + if (Instrument == Instrument::Bass && Note == 11 && !Powered) return 472; + if (Instrument == Instrument::Bass && Note == 12 && Powered) return 473; + if (Instrument == Instrument::Bass && Note == 12 && !Powered) return 474; + if (Instrument == Instrument::Bass && Note == 13 && Powered) return 475; + if (Instrument == Instrument::Bass && Note == 13 && !Powered) return 476; + if (Instrument == Instrument::Bass && Note == 14 && Powered) return 477; + if (Instrument == Instrument::Bass && Note == 14 && !Powered) return 478; + if (Instrument == Instrument::Bass && Note == 15 && Powered) return 479; + if (Instrument == Instrument::Bass && Note == 15 && !Powered) return 480; + if (Instrument == Instrument::Bass && Note == 16 && Powered) return 481; + if (Instrument == Instrument::Bass && Note == 16 && !Powered) return 482; + if (Instrument == Instrument::Bass && Note == 17 && Powered) return 483; + if (Instrument == Instrument::Bass && Note == 17 && !Powered) return 484; + if (Instrument == Instrument::Bass && Note == 18 && Powered) return 485; + if (Instrument == Instrument::Bass && Note == 18 && !Powered) return 486; + if (Instrument == Instrument::Bass && Note == 19 && Powered) return 487; + if (Instrument == Instrument::Bass && Note == 19 && !Powered) return 488; + if (Instrument == Instrument::Bass && Note == 20 && Powered) return 489; + if (Instrument == Instrument::Bass && Note == 20 && !Powered) return 490; + if (Instrument == Instrument::Bass && Note == 21 && Powered) return 491; + if (Instrument == Instrument::Bass && Note == 21 && !Powered) return 492; + if (Instrument == Instrument::Bass && Note == 22 && Powered) return 493; + if (Instrument == Instrument::Bass && Note == 22 && !Powered) return 494; + if (Instrument == Instrument::Bass && Note == 23 && Powered) return 495; + if (Instrument == Instrument::Bass && Note == 23 && !Powered) return 496; + if (Instrument == Instrument::Bass && Note == 24 && Powered) return 497; + if (Instrument == Instrument::Bass && Note == 24 && !Powered) return 498; + if (Instrument == Instrument::Flute && Note == 0 && Powered) return 499; + if (Instrument == Instrument::Flute && Note == 0 && !Powered) return 500; + if (Instrument == Instrument::Flute && Note == 1 && Powered) return 501; + if (Instrument == Instrument::Flute && Note == 1 && !Powered) return 502; + if (Instrument == Instrument::Flute && Note == 2 && Powered) return 503; + if (Instrument == Instrument::Flute && Note == 2 && !Powered) return 504; + if (Instrument == Instrument::Flute && Note == 3 && Powered) return 505; + if (Instrument == Instrument::Flute && Note == 3 && !Powered) return 506; + if (Instrument == Instrument::Flute && Note == 4 && Powered) return 507; + if (Instrument == Instrument::Flute && Note == 4 && !Powered) return 508; + if (Instrument == Instrument::Flute && Note == 5 && Powered) return 509; + if (Instrument == Instrument::Flute && Note == 5 && !Powered) return 510; + if (Instrument == Instrument::Flute && Note == 6 && Powered) return 511; + if (Instrument == Instrument::Flute && Note == 6 && !Powered) return 512; + if (Instrument == Instrument::Flute && Note == 7 && Powered) return 513; + if (Instrument == Instrument::Flute && Note == 7 && !Powered) return 514; + if (Instrument == Instrument::Flute && Note == 8 && Powered) return 515; + if (Instrument == Instrument::Flute && Note == 8 && !Powered) return 516; + if (Instrument == Instrument::Flute && Note == 9 && Powered) return 517; + if (Instrument == Instrument::Flute && Note == 9 && !Powered) return 518; + if (Instrument == Instrument::Flute && Note == 10 && Powered) return 519; + if (Instrument == Instrument::Flute && Note == 10 && !Powered) return 520; + if (Instrument == Instrument::Flute && Note == 11 && Powered) return 521; + if (Instrument == Instrument::Flute && Note == 11 && !Powered) return 522; + if (Instrument == Instrument::Flute && Note == 12 && Powered) return 523; + if (Instrument == Instrument::Flute && Note == 12 && !Powered) return 524; + if (Instrument == Instrument::Flute && Note == 13 && Powered) return 525; + if (Instrument == Instrument::Flute && Note == 13 && !Powered) return 526; + if (Instrument == Instrument::Flute && Note == 14 && Powered) return 527; + if (Instrument == Instrument::Flute && Note == 14 && !Powered) return 528; + if (Instrument == Instrument::Flute && Note == 15 && Powered) return 529; + if (Instrument == Instrument::Flute && Note == 15 && !Powered) return 530; + if (Instrument == Instrument::Flute && Note == 16 && Powered) return 531; + if (Instrument == Instrument::Flute && Note == 16 && !Powered) return 532; + if (Instrument == Instrument::Flute && Note == 17 && Powered) return 533; + if (Instrument == Instrument::Flute && Note == 17 && !Powered) return 534; + if (Instrument == Instrument::Flute && Note == 18 && Powered) return 535; + if (Instrument == Instrument::Flute && Note == 18 && !Powered) return 536; + if (Instrument == Instrument::Flute && Note == 19 && Powered) return 537; + if (Instrument == Instrument::Flute && Note == 19 && !Powered) return 538; + if (Instrument == Instrument::Flute && Note == 20 && Powered) return 539; + if (Instrument == Instrument::Flute && Note == 20 && !Powered) return 540; + if (Instrument == Instrument::Flute && Note == 21 && Powered) return 541; + if (Instrument == Instrument::Flute && Note == 21 && !Powered) return 542; + if (Instrument == Instrument::Flute && Note == 22 && Powered) return 543; + if (Instrument == Instrument::Flute && Note == 22 && !Powered) return 544; + if (Instrument == Instrument::Flute && Note == 23 && Powered) return 545; + if (Instrument == Instrument::Flute && Note == 23 && !Powered) return 546; + if (Instrument == Instrument::Flute && Note == 24 && Powered) return 547; + if (Instrument == Instrument::Flute && Note == 24 && !Powered) return 548; + if (Instrument == Instrument::Bell && Note == 0 && Powered) return 549; + if (Instrument == Instrument::Bell && Note == 0 && !Powered) return 550; + if (Instrument == Instrument::Bell && Note == 1 && Powered) return 551; + if (Instrument == Instrument::Bell && Note == 1 && !Powered) return 552; + if (Instrument == Instrument::Bell && Note == 2 && Powered) return 553; + if (Instrument == Instrument::Bell && Note == 2 && !Powered) return 554; + if (Instrument == Instrument::Bell && Note == 3 && Powered) return 555; + if (Instrument == Instrument::Bell && Note == 3 && !Powered) return 556; + if (Instrument == Instrument::Bell && Note == 4 && Powered) return 557; + if (Instrument == Instrument::Bell && Note == 4 && !Powered) return 558; + if (Instrument == Instrument::Bell && Note == 5 && Powered) return 559; + if (Instrument == Instrument::Bell && Note == 5 && !Powered) return 560; + if (Instrument == Instrument::Bell && Note == 6 && Powered) return 561; + if (Instrument == Instrument::Bell && Note == 6 && !Powered) return 562; + if (Instrument == Instrument::Bell && Note == 7 && Powered) return 563; + if (Instrument == Instrument::Bell && Note == 7 && !Powered) return 564; + if (Instrument == Instrument::Bell && Note == 8 && Powered) return 565; + if (Instrument == Instrument::Bell && Note == 8 && !Powered) return 566; + if (Instrument == Instrument::Bell && Note == 9 && Powered) return 567; + if (Instrument == Instrument::Bell && Note == 9 && !Powered) return 568; + if (Instrument == Instrument::Bell && Note == 10 && Powered) return 569; + if (Instrument == Instrument::Bell && Note == 10 && !Powered) return 570; + if (Instrument == Instrument::Bell && Note == 11 && Powered) return 571; + if (Instrument == Instrument::Bell && Note == 11 && !Powered) return 572; + if (Instrument == Instrument::Bell && Note == 12 && Powered) return 573; + if (Instrument == Instrument::Bell && Note == 12 && !Powered) return 574; + if (Instrument == Instrument::Bell && Note == 13 && Powered) return 575; + if (Instrument == Instrument::Bell && Note == 13 && !Powered) return 576; + if (Instrument == Instrument::Bell && Note == 14 && Powered) return 577; + if (Instrument == Instrument::Bell && Note == 14 && !Powered) return 578; + if (Instrument == Instrument::Bell && Note == 15 && Powered) return 579; + if (Instrument == Instrument::Bell && Note == 15 && !Powered) return 580; + if (Instrument == Instrument::Bell && Note == 16 && Powered) return 581; + if (Instrument == Instrument::Bell && Note == 16 && !Powered) return 582; + if (Instrument == Instrument::Bell && Note == 17 && Powered) return 583; + if (Instrument == Instrument::Bell && Note == 17 && !Powered) return 584; + if (Instrument == Instrument::Bell && Note == 18 && Powered) return 585; + if (Instrument == Instrument::Bell && Note == 18 && !Powered) return 586; + if (Instrument == Instrument::Bell && Note == 19 && Powered) return 587; + if (Instrument == Instrument::Bell && Note == 19 && !Powered) return 588; + if (Instrument == Instrument::Bell && Note == 20 && Powered) return 589; + if (Instrument == Instrument::Bell && Note == 20 && !Powered) return 590; + if (Instrument == Instrument::Bell && Note == 21 && Powered) return 591; + if (Instrument == Instrument::Bell && Note == 21 && !Powered) return 592; + if (Instrument == Instrument::Bell && Note == 22 && Powered) return 593; + if (Instrument == Instrument::Bell && Note == 22 && !Powered) return 594; + if (Instrument == Instrument::Bell && Note == 23 && Powered) return 595; + if (Instrument == Instrument::Bell && Note == 23 && !Powered) return 596; + if (Instrument == Instrument::Bell && Note == 24 && Powered) return 597; + if (Instrument == Instrument::Bell && Note == 24 && !Powered) return 598; + if (Instrument == Instrument::Guitar && Note == 0 && Powered) return 599; + if (Instrument == Instrument::Guitar && Note == 0 && !Powered) return 600; + if (Instrument == Instrument::Guitar && Note == 1 && Powered) return 601; + if (Instrument == Instrument::Guitar && Note == 1 && !Powered) return 602; + if (Instrument == Instrument::Guitar && Note == 2 && Powered) return 603; + if (Instrument == Instrument::Guitar && Note == 2 && !Powered) return 604; + if (Instrument == Instrument::Guitar && Note == 3 && Powered) return 605; + if (Instrument == Instrument::Guitar && Note == 3 && !Powered) return 606; + if (Instrument == Instrument::Guitar && Note == 4 && Powered) return 607; + if (Instrument == Instrument::Guitar && Note == 4 && !Powered) return 608; + if (Instrument == Instrument::Guitar && Note == 5 && Powered) return 609; + if (Instrument == Instrument::Guitar && Note == 5 && !Powered) return 610; + if (Instrument == Instrument::Guitar && Note == 6 && Powered) return 611; + if (Instrument == Instrument::Guitar && Note == 6 && !Powered) return 612; + if (Instrument == Instrument::Guitar && Note == 7 && Powered) return 613; + if (Instrument == Instrument::Guitar && Note == 7 && !Powered) return 614; + if (Instrument == Instrument::Guitar && Note == 8 && Powered) return 615; + if (Instrument == Instrument::Guitar && Note == 8 && !Powered) return 616; + if (Instrument == Instrument::Guitar && Note == 9 && Powered) return 617; + if (Instrument == Instrument::Guitar && Note == 9 && !Powered) return 618; + if (Instrument == Instrument::Guitar && Note == 10 && Powered) return 619; + if (Instrument == Instrument::Guitar && Note == 10 && !Powered) return 620; + if (Instrument == Instrument::Guitar && Note == 11 && Powered) return 621; + if (Instrument == Instrument::Guitar && Note == 11 && !Powered) return 622; + if (Instrument == Instrument::Guitar && Note == 12 && Powered) return 623; + if (Instrument == Instrument::Guitar && Note == 12 && !Powered) return 624; + if (Instrument == Instrument::Guitar && Note == 13 && Powered) return 625; + if (Instrument == Instrument::Guitar && Note == 13 && !Powered) return 626; + if (Instrument == Instrument::Guitar && Note == 14 && Powered) return 627; + if (Instrument == Instrument::Guitar && Note == 14 && !Powered) return 628; + if (Instrument == Instrument::Guitar && Note == 15 && Powered) return 629; + if (Instrument == Instrument::Guitar && Note == 15 && !Powered) return 630; + if (Instrument == Instrument::Guitar && Note == 16 && Powered) return 631; + if (Instrument == Instrument::Guitar && Note == 16 && !Powered) return 632; + if (Instrument == Instrument::Guitar && Note == 17 && Powered) return 633; + if (Instrument == Instrument::Guitar && Note == 17 && !Powered) return 634; + if (Instrument == Instrument::Guitar && Note == 18 && Powered) return 635; + if (Instrument == Instrument::Guitar && Note == 18 && !Powered) return 636; + if (Instrument == Instrument::Guitar && Note == 19 && Powered) return 637; + if (Instrument == Instrument::Guitar && Note == 19 && !Powered) return 638; + if (Instrument == Instrument::Guitar && Note == 20 && Powered) return 639; + if (Instrument == Instrument::Guitar && Note == 20 && !Powered) return 640; + if (Instrument == Instrument::Guitar && Note == 21 && Powered) return 641; + if (Instrument == Instrument::Guitar && Note == 21 && !Powered) return 642; + if (Instrument == Instrument::Guitar && Note == 22 && Powered) return 643; + if (Instrument == Instrument::Guitar && Note == 22 && !Powered) return 644; + if (Instrument == Instrument::Guitar && Note == 23 && Powered) return 645; + if (Instrument == Instrument::Guitar && Note == 23 && !Powered) return 646; + if (Instrument == Instrument::Guitar && Note == 24 && Powered) return 647; + if (Instrument == Instrument::Guitar && Note == 24 && !Powered) return 648; + if (Instrument == Instrument::Chime && Note == 0 && Powered) return 649; + if (Instrument == Instrument::Chime && Note == 0 && !Powered) return 650; + if (Instrument == Instrument::Chime && Note == 1 && Powered) return 651; + if (Instrument == Instrument::Chime && Note == 1 && !Powered) return 652; + if (Instrument == Instrument::Chime && Note == 2 && Powered) return 653; + if (Instrument == Instrument::Chime && Note == 2 && !Powered) return 654; + if (Instrument == Instrument::Chime && Note == 3 && Powered) return 655; + if (Instrument == Instrument::Chime && Note == 3 && !Powered) return 656; + if (Instrument == Instrument::Chime && Note == 4 && Powered) return 657; + if (Instrument == Instrument::Chime && Note == 4 && !Powered) return 658; + if (Instrument == Instrument::Chime && Note == 5 && Powered) return 659; + if (Instrument == Instrument::Chime && Note == 5 && !Powered) return 660; + if (Instrument == Instrument::Chime && Note == 6 && Powered) return 661; + if (Instrument == Instrument::Chime && Note == 6 && !Powered) return 662; + if (Instrument == Instrument::Chime && Note == 7 && Powered) return 663; + if (Instrument == Instrument::Chime && Note == 7 && !Powered) return 664; + if (Instrument == Instrument::Chime && Note == 8 && Powered) return 665; + if (Instrument == Instrument::Chime && Note == 8 && !Powered) return 666; + if (Instrument == Instrument::Chime && Note == 9 && Powered) return 667; + if (Instrument == Instrument::Chime && Note == 9 && !Powered) return 668; + if (Instrument == Instrument::Chime && Note == 10 && Powered) return 669; + if (Instrument == Instrument::Chime && Note == 10 && !Powered) return 670; + if (Instrument == Instrument::Chime && Note == 11 && Powered) return 671; + if (Instrument == Instrument::Chime && Note == 11 && !Powered) return 672; + if (Instrument == Instrument::Chime && Note == 12 && Powered) return 673; + if (Instrument == Instrument::Chime && Note == 12 && !Powered) return 674; + if (Instrument == Instrument::Chime && Note == 13 && Powered) return 675; + if (Instrument == Instrument::Chime && Note == 13 && !Powered) return 676; + if (Instrument == Instrument::Chime && Note == 14 && Powered) return 677; + if (Instrument == Instrument::Chime && Note == 14 && !Powered) return 678; + if (Instrument == Instrument::Chime && Note == 15 && Powered) return 679; + if (Instrument == Instrument::Chime && Note == 15 && !Powered) return 680; + if (Instrument == Instrument::Chime && Note == 16 && Powered) return 681; + if (Instrument == Instrument::Chime && Note == 16 && !Powered) return 682; + if (Instrument == Instrument::Chime && Note == 17 && Powered) return 683; + if (Instrument == Instrument::Chime && Note == 17 && !Powered) return 684; + if (Instrument == Instrument::Chime && Note == 18 && Powered) return 685; + if (Instrument == Instrument::Chime && Note == 18 && !Powered) return 686; + if (Instrument == Instrument::Chime && Note == 19 && Powered) return 687; + if (Instrument == Instrument::Chime && Note == 19 && !Powered) return 688; + if (Instrument == Instrument::Chime && Note == 20 && Powered) return 689; + if (Instrument == Instrument::Chime && Note == 20 && !Powered) return 690; + if (Instrument == Instrument::Chime && Note == 21 && Powered) return 691; + if (Instrument == Instrument::Chime && Note == 21 && !Powered) return 692; + if (Instrument == Instrument::Chime && Note == 22 && Powered) return 693; + if (Instrument == Instrument::Chime && Note == 22 && !Powered) return 694; + if (Instrument == Instrument::Chime && Note == 23 && Powered) return 695; + if (Instrument == Instrument::Chime && Note == 23 && !Powered) return 696; + if (Instrument == Instrument::Chime && Note == 24 && Powered) return 697; + if (Instrument == Instrument::Chime && Note == 24 && !Powered) return 698; + if (Instrument == Instrument::Xylophone && Note == 0 && Powered) return 699; + if (Instrument == Instrument::Xylophone && Note == 0 && !Powered) return 700; + if (Instrument == Instrument::Xylophone && Note == 1 && Powered) return 701; + if (Instrument == Instrument::Xylophone && Note == 1 && !Powered) return 702; + if (Instrument == Instrument::Xylophone && Note == 2 && Powered) return 703; + if (Instrument == Instrument::Xylophone && Note == 2 && !Powered) return 704; + if (Instrument == Instrument::Xylophone && Note == 3 && Powered) return 705; + if (Instrument == Instrument::Xylophone && Note == 3 && !Powered) return 706; + if (Instrument == Instrument::Xylophone && Note == 4 && Powered) return 707; + if (Instrument == Instrument::Xylophone && Note == 4 && !Powered) return 708; + if (Instrument == Instrument::Xylophone && Note == 5 && Powered) return 709; + if (Instrument == Instrument::Xylophone && Note == 5 && !Powered) return 710; + if (Instrument == Instrument::Xylophone && Note == 6 && Powered) return 711; + if (Instrument == Instrument::Xylophone && Note == 6 && !Powered) return 712; + if (Instrument == Instrument::Xylophone && Note == 7 && Powered) return 713; + if (Instrument == Instrument::Xylophone && Note == 7 && !Powered) return 714; + if (Instrument == Instrument::Xylophone && Note == 8 && Powered) return 715; + if (Instrument == Instrument::Xylophone && Note == 8 && !Powered) return 716; + if (Instrument == Instrument::Xylophone && Note == 9 && Powered) return 717; + if (Instrument == Instrument::Xylophone && Note == 9 && !Powered) return 718; + if (Instrument == Instrument::Xylophone && Note == 10 && Powered) return 719; + if (Instrument == Instrument::Xylophone && Note == 10 && !Powered) return 720; + if (Instrument == Instrument::Xylophone && Note == 11 && Powered) return 721; + if (Instrument == Instrument::Xylophone && Note == 11 && !Powered) return 722; + if (Instrument == Instrument::Xylophone && Note == 12 && Powered) return 723; + if (Instrument == Instrument::Xylophone && Note == 12 && !Powered) return 724; + if (Instrument == Instrument::Xylophone && Note == 13 && Powered) return 725; + if (Instrument == Instrument::Xylophone && Note == 13 && !Powered) return 726; + if (Instrument == Instrument::Xylophone && Note == 14 && Powered) return 727; + if (Instrument == Instrument::Xylophone && Note == 14 && !Powered) return 728; + if (Instrument == Instrument::Xylophone && Note == 15 && Powered) return 729; + if (Instrument == Instrument::Xylophone && Note == 15 && !Powered) return 730; + if (Instrument == Instrument::Xylophone && Note == 16 && Powered) return 731; + if (Instrument == Instrument::Xylophone && Note == 16 && !Powered) return 732; + if (Instrument == Instrument::Xylophone && Note == 17 && Powered) return 733; + if (Instrument == Instrument::Xylophone && Note == 17 && !Powered) return 734; + if (Instrument == Instrument::Xylophone && Note == 18 && Powered) return 735; + if (Instrument == Instrument::Xylophone && Note == 18 && !Powered) return 736; + if (Instrument == Instrument::Xylophone && Note == 19 && Powered) return 737; + if (Instrument == Instrument::Xylophone && Note == 19 && !Powered) return 738; + if (Instrument == Instrument::Xylophone && Note == 20 && Powered) return 739; + if (Instrument == Instrument::Xylophone && Note == 20 && !Powered) return 740; + if (Instrument == Instrument::Xylophone && Note == 21 && Powered) return 741; + if (Instrument == Instrument::Xylophone && Note == 21 && !Powered) return 742; + if (Instrument == Instrument::Xylophone && Note == 22 && Powered) return 743; + if (Instrument == Instrument::Xylophone && Note == 22 && !Powered) return 744; + if (Instrument == Instrument::Xylophone && Note == 23 && Powered) return 745; + if (Instrument == Instrument::Xylophone && Note == 23 && !Powered) return 746; + if (Instrument == Instrument::Xylophone && Note == 24 && Powered) return 747; + if (Instrument == Instrument::Xylophone && Note == 24 && !Powered) return 748; + if (Instrument == Instrument::IronXylophone && Note == 0 && Powered) return 749; + if (Instrument == Instrument::IronXylophone && Note == 0 && !Powered) return 750; + if (Instrument == Instrument::IronXylophone && Note == 1 && Powered) return 751; + if (Instrument == Instrument::IronXylophone && Note == 1 && !Powered) return 752; + if (Instrument == Instrument::IronXylophone && Note == 2 && Powered) return 753; + if (Instrument == Instrument::IronXylophone && Note == 2 && !Powered) return 754; + if (Instrument == Instrument::IronXylophone && Note == 3 && Powered) return 755; + if (Instrument == Instrument::IronXylophone && Note == 3 && !Powered) return 756; + if (Instrument == Instrument::IronXylophone && Note == 4 && Powered) return 757; + if (Instrument == Instrument::IronXylophone && Note == 4 && !Powered) return 758; + if (Instrument == Instrument::IronXylophone && Note == 5 && Powered) return 759; + if (Instrument == Instrument::IronXylophone && Note == 5 && !Powered) return 760; + if (Instrument == Instrument::IronXylophone && Note == 6 && Powered) return 761; + if (Instrument == Instrument::IronXylophone && Note == 6 && !Powered) return 762; + if (Instrument == Instrument::IronXylophone && Note == 7 && Powered) return 763; + if (Instrument == Instrument::IronXylophone && Note == 7 && !Powered) return 764; + if (Instrument == Instrument::IronXylophone && Note == 8 && Powered) return 765; + if (Instrument == Instrument::IronXylophone && Note == 8 && !Powered) return 766; + if (Instrument == Instrument::IronXylophone && Note == 9 && Powered) return 767; + if (Instrument == Instrument::IronXylophone && Note == 9 && !Powered) return 768; + if (Instrument == Instrument::IronXylophone && Note == 10 && Powered) return 769; + if (Instrument == Instrument::IronXylophone && Note == 10 && !Powered) return 770; + if (Instrument == Instrument::IronXylophone && Note == 11 && Powered) return 771; + if (Instrument == Instrument::IronXylophone && Note == 11 && !Powered) return 772; + if (Instrument == Instrument::IronXylophone && Note == 12 && Powered) return 773; + if (Instrument == Instrument::IronXylophone && Note == 12 && !Powered) return 774; + if (Instrument == Instrument::IronXylophone && Note == 13 && Powered) return 775; + if (Instrument == Instrument::IronXylophone && Note == 13 && !Powered) return 776; + if (Instrument == Instrument::IronXylophone && Note == 14 && Powered) return 777; + if (Instrument == Instrument::IronXylophone && Note == 14 && !Powered) return 778; + if (Instrument == Instrument::IronXylophone && Note == 15 && Powered) return 779; + if (Instrument == Instrument::IronXylophone && Note == 15 && !Powered) return 780; + if (Instrument == Instrument::IronXylophone && Note == 16 && Powered) return 781; + if (Instrument == Instrument::IronXylophone && Note == 16 && !Powered) return 782; + if (Instrument == Instrument::IronXylophone && Note == 17 && Powered) return 783; + if (Instrument == Instrument::IronXylophone && Note == 17 && !Powered) return 784; + if (Instrument == Instrument::IronXylophone && Note == 18 && Powered) return 785; + if (Instrument == Instrument::IronXylophone && Note == 18 && !Powered) return 786; + if (Instrument == Instrument::IronXylophone && Note == 19 && Powered) return 787; + if (Instrument == Instrument::IronXylophone && Note == 19 && !Powered) return 788; + if (Instrument == Instrument::IronXylophone && Note == 20 && Powered) return 789; + if (Instrument == Instrument::IronXylophone && Note == 20 && !Powered) return 790; + if (Instrument == Instrument::IronXylophone && Note == 21 && Powered) return 791; + if (Instrument == Instrument::IronXylophone && Note == 21 && !Powered) return 792; + if (Instrument == Instrument::IronXylophone && Note == 22 && Powered) return 793; + if (Instrument == Instrument::IronXylophone && Note == 22 && !Powered) return 794; + if (Instrument == Instrument::IronXylophone && Note == 23 && Powered) return 795; + if (Instrument == Instrument::IronXylophone && Note == 23 && !Powered) return 796; + if (Instrument == Instrument::IronXylophone && Note == 24 && Powered) return 797; + if (Instrument == Instrument::IronXylophone && Note == 24 && !Powered) return 798; + if (Instrument == Instrument::CowBell && Note == 0 && Powered) return 799; + if (Instrument == Instrument::CowBell && Note == 0 && !Powered) return 800; + if (Instrument == Instrument::CowBell && Note == 1 && Powered) return 801; + if (Instrument == Instrument::CowBell && Note == 1 && !Powered) return 802; + if (Instrument == Instrument::CowBell && Note == 2 && Powered) return 803; + if (Instrument == Instrument::CowBell && Note == 2 && !Powered) return 804; + if (Instrument == Instrument::CowBell && Note == 3 && Powered) return 805; + if (Instrument == Instrument::CowBell && Note == 3 && !Powered) return 806; + if (Instrument == Instrument::CowBell && Note == 4 && Powered) return 807; + if (Instrument == Instrument::CowBell && Note == 4 && !Powered) return 808; + if (Instrument == Instrument::CowBell && Note == 5 && Powered) return 809; + if (Instrument == Instrument::CowBell && Note == 5 && !Powered) return 810; + if (Instrument == Instrument::CowBell && Note == 6 && Powered) return 811; + if (Instrument == Instrument::CowBell && Note == 6 && !Powered) return 812; + if (Instrument == Instrument::CowBell && Note == 7 && Powered) return 813; + if (Instrument == Instrument::CowBell && Note == 7 && !Powered) return 814; + if (Instrument == Instrument::CowBell && Note == 8 && Powered) return 815; + if (Instrument == Instrument::CowBell && Note == 8 && !Powered) return 816; + if (Instrument == Instrument::CowBell && Note == 9 && Powered) return 817; + if (Instrument == Instrument::CowBell && Note == 9 && !Powered) return 818; + if (Instrument == Instrument::CowBell && Note == 10 && Powered) return 819; + if (Instrument == Instrument::CowBell && Note == 10 && !Powered) return 820; + if (Instrument == Instrument::CowBell && Note == 11 && Powered) return 821; + if (Instrument == Instrument::CowBell && Note == 11 && !Powered) return 822; + if (Instrument == Instrument::CowBell && Note == 12 && Powered) return 823; + if (Instrument == Instrument::CowBell && Note == 12 && !Powered) return 824; + if (Instrument == Instrument::CowBell && Note == 13 && Powered) return 825; + if (Instrument == Instrument::CowBell && Note == 13 && !Powered) return 826; + if (Instrument == Instrument::CowBell && Note == 14 && Powered) return 827; + if (Instrument == Instrument::CowBell && Note == 14 && !Powered) return 828; + if (Instrument == Instrument::CowBell && Note == 15 && Powered) return 829; + if (Instrument == Instrument::CowBell && Note == 15 && !Powered) return 830; + if (Instrument == Instrument::CowBell && Note == 16 && Powered) return 831; + if (Instrument == Instrument::CowBell && Note == 16 && !Powered) return 832; + if (Instrument == Instrument::CowBell && Note == 17 && Powered) return 833; + if (Instrument == Instrument::CowBell && Note == 17 && !Powered) return 834; + if (Instrument == Instrument::CowBell && Note == 18 && Powered) return 835; + if (Instrument == Instrument::CowBell && Note == 18 && !Powered) return 836; + if (Instrument == Instrument::CowBell && Note == 19 && Powered) return 837; + if (Instrument == Instrument::CowBell && Note == 19 && !Powered) return 838; + if (Instrument == Instrument::CowBell && Note == 20 && Powered) return 839; + if (Instrument == Instrument::CowBell && Note == 20 && !Powered) return 840; + if (Instrument == Instrument::CowBell && Note == 21 && Powered) return 841; + if (Instrument == Instrument::CowBell && Note == 21 && !Powered) return 842; + if (Instrument == Instrument::CowBell && Note == 22 && Powered) return 843; + if (Instrument == Instrument::CowBell && Note == 22 && !Powered) return 844; + if (Instrument == Instrument::CowBell && Note == 23 && Powered) return 845; + if (Instrument == Instrument::CowBell && Note == 23 && !Powered) return 846; + if (Instrument == Instrument::CowBell && Note == 24 && Powered) return 847; + if (Instrument == Instrument::CowBell && Note == 24 && !Powered) return 848; + if (Instrument == Instrument::Didgeridoo && Note == 0 && Powered) return 849; + if (Instrument == Instrument::Didgeridoo && Note == 0 && !Powered) return 850; + if (Instrument == Instrument::Didgeridoo && Note == 1 && Powered) return 851; + if (Instrument == Instrument::Didgeridoo && Note == 1 && !Powered) return 852; + if (Instrument == Instrument::Didgeridoo && Note == 2 && Powered) return 853; + if (Instrument == Instrument::Didgeridoo && Note == 2 && !Powered) return 854; + if (Instrument == Instrument::Didgeridoo && Note == 3 && Powered) return 855; + if (Instrument == Instrument::Didgeridoo && Note == 3 && !Powered) return 856; + if (Instrument == Instrument::Didgeridoo && Note == 4 && Powered) return 857; + if (Instrument == Instrument::Didgeridoo && Note == 4 && !Powered) return 858; + if (Instrument == Instrument::Didgeridoo && Note == 5 && Powered) return 859; + if (Instrument == Instrument::Didgeridoo && Note == 5 && !Powered) return 860; + if (Instrument == Instrument::Didgeridoo && Note == 6 && Powered) return 861; + if (Instrument == Instrument::Didgeridoo && Note == 6 && !Powered) return 862; + if (Instrument == Instrument::Didgeridoo && Note == 7 && Powered) return 863; + if (Instrument == Instrument::Didgeridoo && Note == 7 && !Powered) return 864; + if (Instrument == Instrument::Didgeridoo && Note == 8 && Powered) return 865; + if (Instrument == Instrument::Didgeridoo && Note == 8 && !Powered) return 866; + if (Instrument == Instrument::Didgeridoo && Note == 9 && Powered) return 867; + if (Instrument == Instrument::Didgeridoo && Note == 9 && !Powered) return 868; + if (Instrument == Instrument::Didgeridoo && Note == 10 && Powered) return 869; + if (Instrument == Instrument::Didgeridoo && Note == 10 && !Powered) return 870; + if (Instrument == Instrument::Didgeridoo && Note == 11 && Powered) return 871; + if (Instrument == Instrument::Didgeridoo && Note == 11 && !Powered) return 872; + if (Instrument == Instrument::Didgeridoo && Note == 12 && Powered) return 873; + if (Instrument == Instrument::Didgeridoo && Note == 12 && !Powered) return 874; + if (Instrument == Instrument::Didgeridoo && Note == 13 && Powered) return 875; + if (Instrument == Instrument::Didgeridoo && Note == 13 && !Powered) return 876; + if (Instrument == Instrument::Didgeridoo && Note == 14 && Powered) return 877; + if (Instrument == Instrument::Didgeridoo && Note == 14 && !Powered) return 878; + if (Instrument == Instrument::Didgeridoo && Note == 15 && Powered) return 879; + if (Instrument == Instrument::Didgeridoo && Note == 15 && !Powered) return 880; + if (Instrument == Instrument::Didgeridoo && Note == 16 && Powered) return 881; + if (Instrument == Instrument::Didgeridoo && Note == 16 && !Powered) return 882; + if (Instrument == Instrument::Didgeridoo && Note == 17 && Powered) return 883; + if (Instrument == Instrument::Didgeridoo && Note == 17 && !Powered) return 884; + if (Instrument == Instrument::Didgeridoo && Note == 18 && Powered) return 885; + if (Instrument == Instrument::Didgeridoo && Note == 18 && !Powered) return 886; + if (Instrument == Instrument::Didgeridoo && Note == 19 && Powered) return 887; + if (Instrument == Instrument::Didgeridoo && Note == 19 && !Powered) return 888; + if (Instrument == Instrument::Didgeridoo && Note == 20 && Powered) return 889; + if (Instrument == Instrument::Didgeridoo && Note == 20 && !Powered) return 890; + if (Instrument == Instrument::Didgeridoo && Note == 21 && Powered) return 891; + if (Instrument == Instrument::Didgeridoo && Note == 21 && !Powered) return 892; + if (Instrument == Instrument::Didgeridoo && Note == 22 && Powered) return 893; + if (Instrument == Instrument::Didgeridoo && Note == 22 && !Powered) return 894; + if (Instrument == Instrument::Didgeridoo && Note == 23 && Powered) return 895; + if (Instrument == Instrument::Didgeridoo && Note == 23 && !Powered) return 896; + if (Instrument == Instrument::Didgeridoo && Note == 24 && Powered) return 897; + if (Instrument == Instrument::Didgeridoo && Note == 24 && !Powered) return 898; + if (Instrument == Instrument::Bit && Note == 0 && Powered) return 899; + if (Instrument == Instrument::Bit && Note == 0 && !Powered) return 900; + if (Instrument == Instrument::Bit && Note == 1 && Powered) return 901; + if (Instrument == Instrument::Bit && Note == 1 && !Powered) return 902; + if (Instrument == Instrument::Bit && Note == 2 && Powered) return 903; + if (Instrument == Instrument::Bit && Note == 2 && !Powered) return 904; + if (Instrument == Instrument::Bit && Note == 3 && Powered) return 905; + if (Instrument == Instrument::Bit && Note == 3 && !Powered) return 906; + if (Instrument == Instrument::Bit && Note == 4 && Powered) return 907; + if (Instrument == Instrument::Bit && Note == 4 && !Powered) return 908; + if (Instrument == Instrument::Bit && Note == 5 && Powered) return 909; + if (Instrument == Instrument::Bit && Note == 5 && !Powered) return 910; + if (Instrument == Instrument::Bit && Note == 6 && Powered) return 911; + if (Instrument == Instrument::Bit && Note == 6 && !Powered) return 912; + if (Instrument == Instrument::Bit && Note == 7 && Powered) return 913; + if (Instrument == Instrument::Bit && Note == 7 && !Powered) return 914; + if (Instrument == Instrument::Bit && Note == 8 && Powered) return 915; + if (Instrument == Instrument::Bit && Note == 8 && !Powered) return 916; + if (Instrument == Instrument::Bit && Note == 9 && Powered) return 917; + if (Instrument == Instrument::Bit && Note == 9 && !Powered) return 918; + if (Instrument == Instrument::Bit && Note == 10 && Powered) return 919; + if (Instrument == Instrument::Bit && Note == 10 && !Powered) return 920; + if (Instrument == Instrument::Bit && Note == 11 && Powered) return 921; + if (Instrument == Instrument::Bit && Note == 11 && !Powered) return 922; + if (Instrument == Instrument::Bit && Note == 12 && Powered) return 923; + if (Instrument == Instrument::Bit && Note == 12 && !Powered) return 924; + if (Instrument == Instrument::Bit && Note == 13 && Powered) return 925; + if (Instrument == Instrument::Bit && Note == 13 && !Powered) return 926; + if (Instrument == Instrument::Bit && Note == 14 && Powered) return 927; + if (Instrument == Instrument::Bit && Note == 14 && !Powered) return 928; + if (Instrument == Instrument::Bit && Note == 15 && Powered) return 929; + if (Instrument == Instrument::Bit && Note == 15 && !Powered) return 930; + if (Instrument == Instrument::Bit && Note == 16 && Powered) return 931; + if (Instrument == Instrument::Bit && Note == 16 && !Powered) return 932; + if (Instrument == Instrument::Bit && Note == 17 && Powered) return 933; + if (Instrument == Instrument::Bit && Note == 17 && !Powered) return 934; + if (Instrument == Instrument::Bit && Note == 18 && Powered) return 935; + if (Instrument == Instrument::Bit && Note == 18 && !Powered) return 936; + if (Instrument == Instrument::Bit && Note == 19 && Powered) return 937; + if (Instrument == Instrument::Bit && Note == 19 && !Powered) return 938; + if (Instrument == Instrument::Bit && Note == 20 && Powered) return 939; + if (Instrument == Instrument::Bit && Note == 20 && !Powered) return 940; + if (Instrument == Instrument::Bit && Note == 21 && Powered) return 941; + if (Instrument == Instrument::Bit && Note == 21 && !Powered) return 942; + if (Instrument == Instrument::Bit && Note == 22 && Powered) return 943; + if (Instrument == Instrument::Bit && Note == 22 && !Powered) return 944; + if (Instrument == Instrument::Bit && Note == 23 && Powered) return 945; + if (Instrument == Instrument::Bit && Note == 23 && !Powered) return 946; + if (Instrument == Instrument::Bit && Note == 24 && Powered) return 947; + if (Instrument == Instrument::Bit && Note == 24 && !Powered) return 948; + if (Instrument == Instrument::Banjo && Note == 0 && Powered) return 949; + if (Instrument == Instrument::Banjo && Note == 0 && !Powered) return 950; + if (Instrument == Instrument::Banjo && Note == 1 && Powered) return 951; + if (Instrument == Instrument::Banjo && Note == 1 && !Powered) return 952; + if (Instrument == Instrument::Banjo && Note == 2 && Powered) return 953; + if (Instrument == Instrument::Banjo && Note == 2 && !Powered) return 954; + if (Instrument == Instrument::Banjo && Note == 3 && Powered) return 955; + if (Instrument == Instrument::Banjo && Note == 3 && !Powered) return 956; + if (Instrument == Instrument::Banjo && Note == 4 && Powered) return 957; + if (Instrument == Instrument::Banjo && Note == 4 && !Powered) return 958; + if (Instrument == Instrument::Banjo && Note == 5 && Powered) return 959; + if (Instrument == Instrument::Banjo && Note == 5 && !Powered) return 960; + if (Instrument == Instrument::Banjo && Note == 6 && Powered) return 961; + if (Instrument == Instrument::Banjo && Note == 6 && !Powered) return 962; + if (Instrument == Instrument::Banjo && Note == 7 && Powered) return 963; + if (Instrument == Instrument::Banjo && Note == 7 && !Powered) return 964; + if (Instrument == Instrument::Banjo && Note == 8 && Powered) return 965; + if (Instrument == Instrument::Banjo && Note == 8 && !Powered) return 966; + if (Instrument == Instrument::Banjo && Note == 9 && Powered) return 967; + if (Instrument == Instrument::Banjo && Note == 9 && !Powered) return 968; + if (Instrument == Instrument::Banjo && Note == 10 && Powered) return 969; + if (Instrument == Instrument::Banjo && Note == 10 && !Powered) return 970; + if (Instrument == Instrument::Banjo && Note == 11 && Powered) return 971; + if (Instrument == Instrument::Banjo && Note == 11 && !Powered) return 972; + if (Instrument == Instrument::Banjo && Note == 12 && Powered) return 973; + if (Instrument == Instrument::Banjo && Note == 12 && !Powered) return 974; + if (Instrument == Instrument::Banjo && Note == 13 && Powered) return 975; + if (Instrument == Instrument::Banjo && Note == 13 && !Powered) return 976; + if (Instrument == Instrument::Banjo && Note == 14 && Powered) return 977; + if (Instrument == Instrument::Banjo && Note == 14 && !Powered) return 978; + if (Instrument == Instrument::Banjo && Note == 15 && Powered) return 979; + if (Instrument == Instrument::Banjo && Note == 15 && !Powered) return 980; + if (Instrument == Instrument::Banjo && Note == 16 && Powered) return 981; + if (Instrument == Instrument::Banjo && Note == 16 && !Powered) return 982; + if (Instrument == Instrument::Banjo && Note == 17 && Powered) return 983; + if (Instrument == Instrument::Banjo && Note == 17 && !Powered) return 984; + if (Instrument == Instrument::Banjo && Note == 18 && Powered) return 985; + if (Instrument == Instrument::Banjo && Note == 18 && !Powered) return 986; + if (Instrument == Instrument::Banjo && Note == 19 && Powered) return 987; + if (Instrument == Instrument::Banjo && Note == 19 && !Powered) return 988; + if (Instrument == Instrument::Banjo && Note == 20 && Powered) return 989; + if (Instrument == Instrument::Banjo && Note == 20 && !Powered) return 990; + if (Instrument == Instrument::Banjo && Note == 21 && Powered) return 991; + if (Instrument == Instrument::Banjo && Note == 21 && !Powered) return 992; + if (Instrument == Instrument::Banjo && Note == 22 && Powered) return 993; + if (Instrument == Instrument::Banjo && Note == 22 && !Powered) return 994; + if (Instrument == Instrument::Banjo && Note == 23 && Powered) return 995; + if (Instrument == Instrument::Banjo && Note == 23 && !Powered) return 996; + if (Instrument == Instrument::Banjo && Note == 24 && Powered) return 997; + if (Instrument == Instrument::Banjo && Note == 24 && !Powered) return 998; + if (Instrument == Instrument::Pling && Note == 0 && Powered) return 999; + if (Instrument == Instrument::Pling && Note == 0 && !Powered) return 1000; + if (Instrument == Instrument::Pling && Note == 1 && Powered) return 1001; + if (Instrument == Instrument::Pling && Note == 1 && !Powered) return 1002; + if (Instrument == Instrument::Pling && Note == 2 && Powered) return 1003; + if (Instrument == Instrument::Pling && Note == 2 && !Powered) return 1004; + if (Instrument == Instrument::Pling && Note == 3 && Powered) return 1005; + if (Instrument == Instrument::Pling && Note == 3 && !Powered) return 1006; + if (Instrument == Instrument::Pling && Note == 4 && Powered) return 1007; + if (Instrument == Instrument::Pling && Note == 4 && !Powered) return 1008; + if (Instrument == Instrument::Pling && Note == 5 && Powered) return 1009; + if (Instrument == Instrument::Pling && Note == 5 && !Powered) return 1010; + if (Instrument == Instrument::Pling && Note == 6 && Powered) return 1011; + if (Instrument == Instrument::Pling && Note == 6 && !Powered) return 1012; + if (Instrument == Instrument::Pling && Note == 7 && Powered) return 1013; + if (Instrument == Instrument::Pling && Note == 7 && !Powered) return 1014; + if (Instrument == Instrument::Pling && Note == 8 && Powered) return 1015; + if (Instrument == Instrument::Pling && Note == 8 && !Powered) return 1016; + if (Instrument == Instrument::Pling && Note == 9 && Powered) return 1017; + if (Instrument == Instrument::Pling && Note == 9 && !Powered) return 1018; + if (Instrument == Instrument::Pling && Note == 10 && Powered) return 1019; + if (Instrument == Instrument::Pling && Note == 10 && !Powered) return 1020; + if (Instrument == Instrument::Pling && Note == 11 && Powered) return 1021; + if (Instrument == Instrument::Pling && Note == 11 && !Powered) return 1022; + if (Instrument == Instrument::Pling && Note == 12 && Powered) return 1023; + if (Instrument == Instrument::Pling && Note == 12 && !Powered) return 1024; + if (Instrument == Instrument::Pling && Note == 23 && Powered) return 1045; + if (Instrument == Instrument::Pling && Note == 23 && !Powered) return 1046; + if (Instrument == Instrument::Pling && Note == 24 && Powered) return 1047; + if (Instrument == Instrument::Pling && Note == 24 && !Powered) return 1048; + if (Instrument == Instrument::Pling && Note == 13 && Powered) return 1025; + if (Instrument == Instrument::Pling && Note == 13 && !Powered) return 1026; + if (Instrument == Instrument::Pling && Note == 14 && Powered) return 1027; + if (Instrument == Instrument::Pling && Note == 14 && !Powered) return 1028; + if (Instrument == Instrument::Pling && Note == 15 && Powered) return 1029; + if (Instrument == Instrument::Pling && Note == 15 && !Powered) return 1030; + if (Instrument == Instrument::Pling && Note == 16 && Powered) return 1031; + if (Instrument == Instrument::Pling && Note == 16 && !Powered) return 1032; + if (Instrument == Instrument::Pling && Note == 17 && Powered) return 1033; + if (Instrument == Instrument::Pling && Note == 17 && !Powered) return 1034; + if (Instrument == Instrument::Pling && Note == 18 && Powered) return 1035; + if (Instrument == Instrument::Pling && Note == 18 && !Powered) return 1036; + if (Instrument == Instrument::Pling && Note == 19 && Powered) return 1037; + if (Instrument == Instrument::Pling && Note == 19 && !Powered) return 1038; + if (Instrument == Instrument::Pling && Note == 20 && Powered) return 1039; + if (Instrument == Instrument::Pling && Note == 20 && !Powered) return 1040; + if (Instrument == Instrument::Pling && Note == 21 && Powered) return 1041; + if (Instrument == Instrument::Pling && Note == 21 && !Powered) return 1042; + if (Instrument == Instrument::Pling && Note == 22 && Powered) return 1043; + return 1044; + } + short NoteBlock(); + enum Instrument Instrument(short ID); + unsigned char Note(short ID); + bool Powered(short ID); + } + namespace OakButton + { + enum class Face + { + Floor, + Wall, + Ceiling + }; + constexpr short OakButton(enum Face Face, eBlockFace Facing, bool Powered) + { + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6346; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6350; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6354; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6358; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6362; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6366; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6347; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6351; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6355; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6359; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6363; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6367; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6348; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6352; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6356; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6360; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6364; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6368; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6349; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6353; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6357; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6361; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6365; + return 6369; + } + short OakButton(); + enum Face Face(short ID); + eBlockFace Facing(short ID); + bool Powered(short ID); + } + namespace OakDoor + { + enum class Half + { + Upper, + Lower + }; + enum class Hinge + { + Left, + Right + }; + constexpr short OakDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered) + { + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 3610; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 3618; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 3626; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 3634; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 3579; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 3587; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 3595; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 3603; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 3611; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 3619; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 3627; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 3635; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 3580; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 3588; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 3596; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 3604; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 3612; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 3620; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Right) return 3628; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 3573; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 3581; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 3589; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 3597; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 3605; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 3613; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 3621; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 3629; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 3574; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 3582; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 3590; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 3598; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 3606; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 3614; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 3622; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 3630; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 3575; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 3583; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 3591; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 3599; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 3607; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 3615; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 3623; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 3631; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 3576; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 3584; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 3592; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 3600; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 3608; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 3616; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 3624; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 3632; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 3577; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 3585; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 3593; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 3601; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 3609; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 3617; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 3625; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 3633; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 3578; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 3586; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 3594; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 3602; + return 3636; + } + short OakDoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Hinge Hinge(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace OakFence + { + constexpr short OakFence(bool East, bool North, bool South, bool West) + { + if (false && !South && !West && East && !North) return 3979; + if (!false && !South && !West && East && !North) return 3981; + if (false && South && !West && !East && North) return 3983; + if (!false && South && !West && !East && North) return 3985; + if (false && !South && !West && !East && North) return 3987; + if (!false && !South && !West && !East && North) return 3989; + if (false && South && !West && !East && !North) return 3991; + if (!false && South && !West && !East && !North) return 3993; + if (false && !South && !West && !East && !North) return 3995; + if (false && South && West && East && North) return 3966; + if (!false && South && West && East && North) return 3968; + if (false && !South && West && East && North) return 3970; + if (!false && !South && West && East && North) return 3972; + if (false && South && West && East && !North) return 3974; + if (!false && South && West && East && !North) return 3976; + if (false && !South && West && East && !North) return 3978; + if (!false && !South && West && East && !North) return 3980; + if (false && South && West && !East && North) return 3982; + if (!false && South && West && !East && North) return 3984; + if (false && !South && West && !East && North) return 3986; + if (!false && !South && West && !East && North) return 3988; + if (false && South && West && !East && !North) return 3990; + if (!false && South && West && !East && !North) return 3992; + if (false && !South && West && !East && !North) return 3994; + if (!false && !South && West && !East && !North) return 3996; + if (false && South && !West && East && North) return 3967; + if (!false && South && !West && East && North) return 3969; + if (false && !South && !West && East && North) return 3971; + if (!false && !South && !West && East && North) return 3973; + if (false && South && !West && East && !North) return 3975; + if (!false && South && !West && East && !North) return 3977; + return 3997; + } + short OakFence(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace OakFenceGate + { + constexpr short OakFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered) + { + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 4823; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 4827; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 4831; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 4835; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 4839; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 4843; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 4847; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 4820; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 4824; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 4828; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 4832; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 4836; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 4840; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 4844; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 4848; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 4821; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 4825; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 4829; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 4833; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 4837; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 4841; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 4845; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 4849; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 4822; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 4826; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 4830; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 4834; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 4838; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 4842; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 4846; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 4850; + return 4851; + } + short OakFenceGate(); + eBlockFace Facing(short ID); + bool InWall(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace OakLeaves + { + constexpr short OakLeaves(unsigned char Distance, bool Persistent) + { + if (Persistent && Distance == 5) return 153; + if (!Persistent && Distance == 1) return 146; + if (!Persistent && Distance == 5) return 154; + if (Persistent && Distance == 2) return 147; + if (Persistent && Distance == 6) return 155; + if (!Persistent && Distance == 2) return 148; + if (!Persistent && Distance == 6) return 156; + if (Persistent && Distance == 3) return 149; + if (Persistent && Distance == 7) return 157; + if (!Persistent && Distance == 3) return 150; + if (!Persistent && Distance == 7) return 158; + if (Persistent && Distance == 4) return 151; + if (!Persistent && Distance == 4) return 152; + return 145; + } + short OakLeaves(); + unsigned char Distance(short ID); + bool Persistent(short ID); + } + namespace OakLog + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short OakLog(enum Axis Axis) + { + if (Axis == Axis::X) return 73; + if (Axis == Axis::Y) return 74; + return 75; + } + short OakLog(); + enum Axis Axis(short ID); + } + namespace OakPlanks + { + constexpr short OakPlanks() + { + return 15; + } + } + namespace OakPressurePlate + { + constexpr short OakPressurePlate(bool Powered) + { + if (Powered) return 3873; + return 3874; + } + short OakPressurePlate(); + bool Powered(short ID); + } + namespace OakSapling + { + constexpr short OakSapling(unsigned char Stage) + { + if (Stage == 0) return 21; + return 22; + } + short OakSapling(); + unsigned char Stage(short ID); + } + namespace OakSign + { + constexpr short OakSign(unsigned char Rotation) + { + if (Rotation == 4 && !false) return 3390; + if (Rotation == 5 && !false) return 3392; + if (Rotation == 6 && !false) return 3394; + if (Rotation == 7 && !false) return 3396; + if (Rotation == 8 && !false) return 3398; + if (Rotation == 9 && !false) return 3400; + if (Rotation == 10 && !false) return 3402; + if (Rotation == 11 && !false) return 3404; + if (Rotation == 12 && !false) return 3406; + if (Rotation == 13 && !false) return 3408; + if (Rotation == 14 && !false) return 3410; + if (Rotation == 0 && false) return 3381; + if (Rotation == 1 && false) return 3383; + if (Rotation == 2 && false) return 3385; + if (Rotation == 3 && false) return 3387; + if (Rotation == 4 && false) return 3389; + if (Rotation == 5 && false) return 3391; + if (Rotation == 6 && false) return 3393; + if (Rotation == 7 && false) return 3395; + if (Rotation == 8 && false) return 3397; + if (Rotation == 9 && false) return 3399; + if (Rotation == 10 && false) return 3401; + if (Rotation == 11 && false) return 3403; + if (Rotation == 12 && false) return 3405; + if (Rotation == 13 && false) return 3407; + if (Rotation == 14 && false) return 3409; + if (Rotation == 15 && false) return 3411; + if (Rotation == 0 && !false) return 3382; + if (Rotation == 1 && !false) return 3384; + if (Rotation == 2 && !false) return 3386; + if (Rotation == 3 && !false) return 3388; + return 3412; + } + short OakSign(); + unsigned char Rotation(short ID); + bool Waterlogged(short ID); + } + namespace OakSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short OakSlab(enum Type Type) + { + if (Type == Type::Double && false) return 8304; + if (Type == Type::Top && !false) return 8301; + if (Type == Type::Double && !false) return 8305; + if (Type == Type::Bottom && false) return 8302; + if (Type == Type::Bottom && !false) return 8303; + return 8300; + } + short OakSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace OakStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short OakStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 2031; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 1968; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 1984; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 2000; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 2016; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 2032; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 1969; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 1985; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 2001; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 2017; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 2033; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 1954; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 1970; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 1986; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 2002; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 2018; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 1955; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 1971; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 1987; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 2003; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 2019; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 1956; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 1972; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 1988; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 2004; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 2020; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 1957; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 1973; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 1989; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 2005; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 2021; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 1958; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 1974; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 1990; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 2006; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 2022; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 1959; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 1975; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 1991; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 2007; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 2023; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 1960; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 1976; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 1992; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 2008; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 2024; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 1961; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 1977; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 1993; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 2009; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 2025; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 1962; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 1978; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 1994; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 2010; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 2026; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 1963; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 1979; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 1995; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 2011; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 2027; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 1964; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 1980; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 1996; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 2012; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 2028; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 1965; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 1981; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 1997; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 2013; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 2029; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 1966; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 1982; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 1998; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 2014; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 2030; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 1967; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 1983; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 1999; + return 2015; + } + short OakStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace OakTrapdoor + { + enum class Half + { + Top, + Bottom + }; + constexpr short OakTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered) + { + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4132; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4148; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4164; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4117; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4133; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4149; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4165; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4118; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4134; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4150; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4166; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4119; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4135; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4151; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4167; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4120; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4136; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4152; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4168; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4121; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4137; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4153; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4169; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4122; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4138; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4154; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4170; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4123; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4139; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4155; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4171; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4124; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4140; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4156; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4172; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4125; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4141; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4157; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4173; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4126; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4142; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4158; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4111; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4127; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4143; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4159; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4112; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4128; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4144; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4160; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4113; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4129; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4145; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4161; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4114; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4130; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4146; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4162; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4115; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4131; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4147; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4163; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4116; + return 4174; + } + short OakTrapdoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + bool Open(short ID); + bool Powered(short ID); + bool Waterlogged(short ID); + } + namespace OakWallSign + { + constexpr short OakWallSign(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 3736; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 3737; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 3738; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 3739; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 3740; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 3741; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 3735; + return 3742; + } + short OakWallSign(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace OakWood + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short OakWood(enum Axis Axis) + { + if (Axis == Axis::X) return 109; + if (Axis == Axis::Y) return 110; + return 111; + } + short OakWood(); + enum Axis Axis(short ID); + } + namespace Observer + { + constexpr short Observer(eBlockFace Facing, bool Powered) + { + if (Facing == eBlockFace::BLOCK_FACE_YM && Powered) return 9270; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 9261; + if (Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 9263; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 9265; + if (Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 9267; + if (Facing == eBlockFace::BLOCK_FACE_YP && !Powered) return 9269; + if (Facing == eBlockFace::BLOCK_FACE_YM && !Powered) return 9271; + if (Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 9260; + if (Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 9262; + if (Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 9264; + if (Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 9266; + return 9268; + } + short Observer(); + eBlockFace Facing(short ID); + bool Powered(short ID); + } + namespace Obsidian + { + constexpr short Obsidian() + { + return 1434; + } + } + namespace OrangeBanner + { + constexpr short OrangeBanner(unsigned char Rotation) + { + if (Rotation == 8) return 7921; + if (Rotation == 9) return 7922; + if (Rotation == 10) return 7923; + if (Rotation == 11) return 7924; + if (Rotation == 12) return 7925; + if (Rotation == 13) return 7926; + if (Rotation == 14) return 7927; + if (Rotation == 0) return 7913; + if (Rotation == 1) return 7914; + if (Rotation == 2) return 7915; + if (Rotation == 3) return 7916; + if (Rotation == 4) return 7917; + if (Rotation == 5) return 7918; + if (Rotation == 6) return 7919; + if (Rotation == 7) return 7920; + return 7928; + } + short OrangeBanner(); + unsigned char Rotation(short ID); + } + namespace OrangeBed + { + enum class Part + { + Head, + Foot + }; + constexpr short OrangeBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1077; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1066; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1070; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1074; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1078; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1067; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1071; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1075; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1079; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1068; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1072; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1076; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1065; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1069; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1073; + return 1080; + } + short OrangeBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace OrangeCarpet + { + constexpr short OrangeCarpet() + { + return 7867; + } + } + namespace OrangeConcrete + { + constexpr short OrangeConcrete() + { + return 9439; + } + } + namespace OrangeConcretePowder + { + constexpr short OrangeConcretePowder() + { + return 9455; + } + } + namespace OrangeGlazedTerracotta + { + constexpr short OrangeGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9378; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9380; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9379; + return 9381; + } + short OrangeGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace OrangeShulkerBox + { + constexpr short OrangeShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9284; + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9288; + if (Facing == eBlockFace::BLOCK_FACE_XP) return 9285; + if (Facing == eBlockFace::BLOCK_FACE_YM) return 9289; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9286; + return 9287; + } + short OrangeShulkerBox(); + eBlockFace Facing(short ID); + } + namespace OrangeStainedGlass + { + constexpr short OrangeStainedGlass() + { + return 4096; + } + } + namespace OrangeStainedGlassPane + { + constexpr short OrangeStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (false && !South && !West && East && North) return 6900; + if (false && South && !West && East && !North) return 6904; + if (false && !South && !West && East && !North) return 6908; + if (false && South && !West && !East && North) return 6912; + if (false && !South && !West && !East && North) return 6916; + if (false && South && !West && !East && !North) return 6920; + if (false && !South && !West && !East && !North) return 6924; + if (!false && South && West && East && North) return 6897; + if (!false && !South && West && East && North) return 6901; + if (!false && South && West && East && !North) return 6905; + if (!false && !South && West && East && !North) return 6909; + if (!false && South && West && !East && North) return 6913; + if (!false && !South && West && !East && North) return 6917; + if (!false && South && West && !East && !North) return 6921; + if (!false && !South && West && !East && !North) return 6925; + if (!false && South && !West && East && North) return 6898; + if (!false && !South && !West && East && North) return 6902; + if (!false && South && !West && East && !North) return 6906; + if (!false && !South && !West && East && !North) return 6910; + if (!false && South && !West && !East && North) return 6914; + if (!false && !South && !West && !East && North) return 6918; + if (!false && South && !West && !East && !North) return 6922; + if (false && South && West && East && North) return 6895; + if (false && !South && West && East && North) return 6899; + if (false && South && West && East && !North) return 6903; + if (false && !South && West && East && !North) return 6907; + if (false && South && West && !East && North) return 6911; + if (false && !South && West && !East && North) return 6915; + if (false && South && West && !East && !North) return 6919; + if (false && !South && West && !East && !North) return 6923; + if (false && South && !West && East && North) return 6896; + return 6926; + } + short OrangeStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace OrangeTerracotta + { + constexpr short OrangeTerracotta() + { + return 6848; + } + } + namespace OrangeTulip + { + constexpr short OrangeTulip() + { + return 1418; + } + } + namespace OrangeWallBanner + { + constexpr short OrangeWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8158; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8159; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8157; + return 8160; + } + short OrangeWallBanner(); + eBlockFace Facing(short ID); + } + namespace OrangeWool + { + constexpr short OrangeWool() + { + return 1385; + } + } + namespace OxeyeDaisy + { + constexpr short OxeyeDaisy() + { + return 1421; + } + } + namespace PackedIce + { + constexpr short PackedIce() + { + return 7884; + } + } + namespace Peony + { + enum class Half + { + Upper, + Lower + }; + constexpr short Peony(enum Half Half) + { + if (Half == Half::Upper) return 7891; + return 7892; + } + short Peony(); + enum Half Half(short ID); + } + namespace PetrifiedOakSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short PetrifiedOakSlab(enum Type Type) + { + if (Type == Type::Top && false) return 8360; + if (Type == Type::Double && false) return 8364; + if (Type == Type::Top && !false) return 8361; + if (Type == Type::Double && !false) return 8365; + if (Type == Type::Bottom && false) return 8362; + return 8363; + } + short PetrifiedOakSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace PinkBanner + { + constexpr short PinkBanner(unsigned char Rotation) + { + if (Rotation == 3) return 7996; + if (Rotation == 4) return 7997; + if (Rotation == 5) return 7998; + if (Rotation == 6) return 7999; + if (Rotation == 7) return 8000; + if (Rotation == 8) return 8001; + if (Rotation == 9) return 8002; + if (Rotation == 10) return 8003; + if (Rotation == 11) return 8004; + if (Rotation == 12) return 8005; + if (Rotation == 13) return 8006; + if (Rotation == 14) return 8007; + if (Rotation == 0) return 7993; + if (Rotation == 1) return 7994; + if (Rotation == 2) return 7995; + return 8008; + } + short PinkBanner(); + unsigned char Rotation(short ID); + } + namespace PinkBed + { + enum class Part + { + Head, + Foot + }; + constexpr short PinkBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1152; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1156; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1145; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1149; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1153; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1157; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1146; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1150; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1154; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1158; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1147; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1151; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1155; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1159; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1148; + return 1160; + } + short PinkBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace PinkCarpet + { + constexpr short PinkCarpet() + { + return 7872; + } + } + namespace PinkConcrete + { + constexpr short PinkConcrete() + { + return 9444; + } + } + namespace PinkConcretePowder + { + constexpr short PinkConcretePowder() + { + return 9460; + } + } + namespace PinkGlazedTerracotta + { + constexpr short PinkGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9399; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9398; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9400; + return 9401; + } + short PinkGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace PinkShulkerBox + { + constexpr short PinkShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_YM) return 9319; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9316; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9317; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9314; + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9318; + return 9315; + } + short PinkShulkerBox(); + eBlockFace Facing(short ID); + } + namespace PinkStainedGlass + { + constexpr short PinkStainedGlass() + { + return 4101; + } + } + namespace PinkStainedGlassPane + { + constexpr short PinkStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (false && South && West && East && North) return 7055; + if (false && !South && West && East && North) return 7059; + if (false && South && West && East && !North) return 7063; + if (false && !South && West && East && !North) return 7067; + if (false && South && West && !East && North) return 7071; + if (false && !South && West && !East && North) return 7075; + if (false && South && West && !East && !North) return 7079; + if (false && !South && West && !East && !North) return 7083; + if (false && South && !West && East && North) return 7056; + if (false && !South && !West && East && North) return 7060; + if (false && South && !West && East && !North) return 7064; + if (false && !South && !West && East && !North) return 7068; + if (false && South && !West && !East && North) return 7072; + if (false && !South && !West && !East && North) return 7076; + if (false && South && !West && !East && !North) return 7080; + if (false && !South && !West && !East && !North) return 7084; + if (!false && South && West && East && North) return 7057; + if (!false && !South && West && East && North) return 7061; + if (!false && South && West && East && !North) return 7065; + if (!false && !South && West && East && !North) return 7069; + if (!false && South && West && !East && North) return 7073; + if (!false && !South && West && !East && North) return 7077; + if (!false && South && West && !East && !North) return 7081; + if (!false && !South && West && !East && !North) return 7085; + if (!false && South && !West && East && North) return 7058; + if (!false && !South && !West && East && North) return 7062; + if (!false && South && !West && East && !North) return 7066; + if (!false && !South && !West && East && !North) return 7070; + if (!false && South && !West && !East && North) return 7074; + if (!false && !South && !West && !East && North) return 7078; + if (!false && South && !West && !East && !North) return 7082; + return 7086; + } + short PinkStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace PinkTerracotta + { + constexpr short PinkTerracotta() + { + return 6853; + } + } + namespace PinkTulip + { + constexpr short PinkTulip() + { + return 1420; + } + } + namespace PinkWallBanner + { + constexpr short PinkWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8179; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8177; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8178; + return 8180; + } + short PinkWallBanner(); + eBlockFace Facing(short ID); + } + namespace PinkWool + { + constexpr short PinkWool() + { + return 1390; + } + } + namespace Piston + { + constexpr short Piston(bool Extended, eBlockFace Facing) + { + if (Extended && Facing == eBlockFace::BLOCK_FACE_XM) return 1351; + if (!Extended && Facing == eBlockFace::BLOCK_FACE_XP) return 1355; + if (!Extended && Facing == eBlockFace::BLOCK_FACE_YM) return 1359; + if (Extended && Facing == eBlockFace::BLOCK_FACE_ZM) return 1348; + if (Extended && Facing == eBlockFace::BLOCK_FACE_YP) return 1352; + if (!Extended && Facing == eBlockFace::BLOCK_FACE_ZP) return 1356; + if (Extended && Facing == eBlockFace::BLOCK_FACE_XP) return 1349; + if (Extended && Facing == eBlockFace::BLOCK_FACE_YM) return 1353; + if (!Extended && Facing == eBlockFace::BLOCK_FACE_XM) return 1357; + if (Extended && Facing == eBlockFace::BLOCK_FACE_ZP) return 1350; + if (!Extended && Facing == eBlockFace::BLOCK_FACE_ZM) return 1354; + return 1358; + } + short Piston(); + bool Extended(short ID); + eBlockFace Facing(short ID); + } + namespace PistonHead + { + enum class Type + { + Normal, + Sticky + }; + constexpr short PistonHead(eBlockFace Facing, bool Short, enum Type Type) + { + if (Short && Type == Type::Normal && Facing == eBlockFace::BLOCK_FACE_ZM) return 1360; + if (Short && Type == Type::Sticky && Facing == eBlockFace::BLOCK_FACE_ZM) return 1361; + if (!Short && Type == Type::Normal && Facing == eBlockFace::BLOCK_FACE_ZM) return 1362; + if (!Short && Type == Type::Sticky && Facing == eBlockFace::BLOCK_FACE_ZM) return 1363; + if (Short && Type == Type::Normal && Facing == eBlockFace::BLOCK_FACE_XP) return 1364; + if (Short && Type == Type::Sticky && Facing == eBlockFace::BLOCK_FACE_XP) return 1365; + if (!Short && Type == Type::Normal && Facing == eBlockFace::BLOCK_FACE_XP) return 1366; + if (!Short && Type == Type::Sticky && Facing == eBlockFace::BLOCK_FACE_XP) return 1367; + if (Short && Type == Type::Normal && Facing == eBlockFace::BLOCK_FACE_ZP) return 1368; + if (Short && Type == Type::Sticky && Facing == eBlockFace::BLOCK_FACE_ZP) return 1369; + if (!Short && Type == Type::Normal && Facing == eBlockFace::BLOCK_FACE_ZP) return 1370; + if (!Short && Type == Type::Sticky && Facing == eBlockFace::BLOCK_FACE_ZP) return 1371; + if (Short && Type == Type::Normal && Facing == eBlockFace::BLOCK_FACE_XM) return 1372; + if (Short && Type == Type::Sticky && Facing == eBlockFace::BLOCK_FACE_XM) return 1373; + if (!Short && Type == Type::Normal && Facing == eBlockFace::BLOCK_FACE_XM) return 1374; + if (!Short && Type == Type::Sticky && Facing == eBlockFace::BLOCK_FACE_XM) return 1375; + if (Short && Type == Type::Normal && Facing == eBlockFace::BLOCK_FACE_YP) return 1376; + if (Short && Type == Type::Sticky && Facing == eBlockFace::BLOCK_FACE_YP) return 1377; + if (!Short && Type == Type::Normal && Facing == eBlockFace::BLOCK_FACE_YP) return 1378; + if (!Short && Type == Type::Sticky && Facing == eBlockFace::BLOCK_FACE_YP) return 1379; + if (Short && Type == Type::Normal && Facing == eBlockFace::BLOCK_FACE_YM) return 1380; + if (Short && Type == Type::Sticky && Facing == eBlockFace::BLOCK_FACE_YM) return 1381; + if (!Short && Type == Type::Normal && Facing == eBlockFace::BLOCK_FACE_YM) return 1382; + return 1383; + } + short PistonHead(); + eBlockFace Facing(short ID); + bool Short(short ID); + enum Type Type(short ID); + } + namespace PlayerHead + { + constexpr short PlayerHead(unsigned char Rotation) + { + if (Rotation == 6) return 6556; + if (Rotation == 7) return 6557; + if (Rotation == 8) return 6558; + if (Rotation == 9) return 6559; + if (Rotation == 10) return 6560; + if (Rotation == 11) return 6561; + if (Rotation == 12) return 6562; + if (Rotation == 13) return 6563; + if (Rotation == 14) return 6564; + if (Rotation == 0) return 6550; + if (Rotation == 1) return 6551; + if (Rotation == 2) return 6552; + if (Rotation == 3) return 6553; + if (Rotation == 4) return 6554; + if (Rotation == 5) return 6555; + return 6565; + } + short PlayerHead(); + unsigned char Rotation(short ID); + } + namespace PlayerWallHead + { + constexpr short PlayerWallHead(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 6568; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6566; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6567; + return 6569; + } + short PlayerWallHead(); + eBlockFace Facing(short ID); + } + namespace Podzol + { + constexpr short Podzol(bool Snowy) + { + if (Snowy) return 12; + return 13; + } + short Podzol(); + bool Snowy(short ID); + } + namespace PolishedAndesite + { + constexpr short PolishedAndesite() + { + return 7; + } + } + namespace PolishedAndesiteSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short PolishedAndesiteSlab(enum Type Type) + { + if (Type == Type::Double && false) return 10859; + if (Type == Type::Top && !false) return 10856; + if (Type == Type::Double && !false) return 10860; + if (Type == Type::Bottom && false) return 10857; + if (Type == Type::Bottom && !false) return 10858; + return 10855; + } + short PolishedAndesiteSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace PolishedAndesiteStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short PolishedAndesiteStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10629; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10630; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10631; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10632; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10633; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10634; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10635; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10636; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10637; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10638; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10639; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10640; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10641; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10642; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10643; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10644; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10645; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10646; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10647; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10648; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10649; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10650; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10651; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10652; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10653; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10654; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10655; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10656; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10657; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10658; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10659; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10660; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10661; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10662; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10663; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10664; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10665; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10666; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10667; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10668; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10669; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10670; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10671; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10672; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10673; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10674; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10675; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10676; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10677; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10678; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10679; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10680; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10681; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10682; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10683; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10684; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10685; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10686; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10687; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10688; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10689; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10690; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10691; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10692; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10693; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10694; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10695; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10696; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10697; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10698; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10699; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10700; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10701; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10702; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10703; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10704; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10705; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10706; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10707; + return 10708; + } + short PolishedAndesiteStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace PolishedBasalt + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short PolishedBasalt(enum Axis Axis) + { + if (Axis == Axis::Y) return 4006; + if (Axis == Axis::X) return 4005; + return 4007; + } + short PolishedBasalt(); + enum Axis Axis(short ID); + } + namespace PolishedBlackstone + { + constexpr short PolishedBlackstone() + { + return 16250; + } + } + namespace PolishedBlackstoneBrickSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short PolishedBlackstoneBrickSlab(enum Type Type) + { + if (Type == Type::Bottom && false) return 16256; + if (Type == Type::Bottom && !false) return 16257; + if (Type == Type::Top && false) return 16254; + if (Type == Type::Double && false) return 16258; + if (Type == Type::Top && !false) return 16255; + return 16259; + } + short PolishedBlackstoneBrickSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace PolishedBlackstoneBrickStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short PolishedBlackstoneBrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 16310; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 16311; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16312; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16313; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 16314; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 16315; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16316; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16317; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 16318; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 16319; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 16320; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 16321; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 16322; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 16323; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16324; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16325; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 16326; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 16327; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16328; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16329; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 16330; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 16331; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 16332; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 16333; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16334; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16335; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 16336; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 16337; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16338; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16339; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16260; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16261; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16262; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16263; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16264; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16265; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16266; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16267; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16268; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16269; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16270; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16271; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16272; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16273; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16274; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16275; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16276; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16277; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16278; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16279; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16280; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16281; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16282; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16283; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16284; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16285; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16286; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16287; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16288; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16289; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16290; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16291; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16292; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16293; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16294; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16295; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16296; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16297; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16298; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16299; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 16300; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 16301; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16302; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16303; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 16304; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 16305; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16306; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16307; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 16308; + return 16309; + } + short PolishedBlackstoneBrickStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace PolishedBlackstoneBrickWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short PolishedBlackstoneBrickWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 16415; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16423; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 16431; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 16439; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16447; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 16455; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 16463; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 16471; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 16479; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 16487; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16495; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 16503; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 16511; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16519; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16527; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 16535; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16543; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16551; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 16559; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 16567; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 16575; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 16583; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 16591; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 16599; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 16607; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 16615; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 16623; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 16631; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 16639; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 16647; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 16655; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 16663; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 16340; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 16344; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 16348; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 16352; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 16356; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 16360; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 16364; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 16368; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 16372; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 16376; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 16380; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 16384; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 16392; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 16400; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 16408; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 16416; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 16424; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16432; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 16440; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 16448; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 16456; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 16464; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 16472; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 16480; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 16488; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 16496; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16504; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 16512; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 16520; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16528; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 16536; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 16544; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16552; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 16560; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 16568; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 16576; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 16584; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 16592; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 16600; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 16608; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 16616; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 16624; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 16632; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 16640; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 16648; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 16656; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 16385; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 16393; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 16401; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 16409; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 16417; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 16425; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 16433; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 16441; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 16449; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 16457; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 16465; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 16473; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 16481; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 16489; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 16497; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 16505; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 16513; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 16521; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 16529; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16537; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 16545; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 16553; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 16561; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 16569; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 16577; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 16585; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 16593; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 16601; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 16609; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 16617; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 16625; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 16633; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 16641; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 16649; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 16657; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 16341; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 16345; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 16349; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 16353; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 16357; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 16361; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 16365; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 16369; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 16373; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 16377; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 16381; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 16386; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 16394; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 16402; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 16410; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 16418; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 16426; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 16434; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 16442; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 16450; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 16458; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 16466; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 16474; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 16482; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 16490; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 16498; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 16506; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 16514; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16522; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16530; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 16538; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16546; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16554; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 16562; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 16570; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 16578; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 16586; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 16594; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 16602; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 16610; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 16618; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 16626; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 16634; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 16642; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 16650; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 16658; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 16387; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 16395; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 16403; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 16411; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 16419; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 16427; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16435; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 16443; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 16451; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 16459; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 16467; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 16475; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 16483; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 16491; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 16499; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16507; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 16515; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 16523; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16531; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16539; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 16547; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16555; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 16563; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 16571; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 16579; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 16587; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 16595; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 16603; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 16611; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 16619; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 16627; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 16635; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 16643; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 16651; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 16659; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 16342; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 16346; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 16350; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 16354; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 16358; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 16362; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 16366; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 16370; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 16374; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 16378; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 16382; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 16388; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 16396; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 16404; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 16412; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16420; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 16428; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 16436; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16444; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 16452; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 16460; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 16468; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 16476; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 16484; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16492; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 16500; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 16508; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16516; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 16524; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 16532; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16540; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 16548; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 16556; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 16564; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 16572; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 16580; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 16588; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 16596; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 16604; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 16612; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 16620; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 16628; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 16636; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 16644; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 16652; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 16660; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 16389; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 16397; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 16405; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 16413; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 16421; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 16429; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 16437; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 16445; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 16453; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 16461; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 16469; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 16477; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 16485; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 16493; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 16501; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 16509; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 16517; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16525; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 16533; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 16541; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16549; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 16557; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 16565; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 16573; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 16581; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 16589; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 16597; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 16605; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 16613; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 16621; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 16629; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 16637; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 16645; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 16653; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 16661; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 16343; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 16347; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 16351; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 16355; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 16359; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 16363; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 16367; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 16371; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 16375; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 16379; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 16383; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 16390; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 16398; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 16406; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 16414; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 16422; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 16430; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 16438; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 16446; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 16454; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 16462; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 16470; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 16478; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 16486; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 16494; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 16502; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 16510; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 16518; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 16526; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16534; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16542; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 16550; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 16558; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 16566; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 16574; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 16582; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 16590; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 16598; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 16606; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 16614; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 16622; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 16630; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 16638; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 16646; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 16654; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 16662; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 16391; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 16399; + return 16407; + } + short PolishedBlackstoneBrickWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace PolishedBlackstoneBricks + { + constexpr short PolishedBlackstoneBricks() + { + return 16251; + } + } + namespace PolishedBlackstoneButton + { + enum class Face + { + Floor, + Wall, + Ceiling + }; + constexpr short PolishedBlackstoneButton(enum Face Face, eBlockFace Facing, bool Powered) + { + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 16765; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 16766; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 16767; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 16768; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 16753; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 16769; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 16754; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 16770; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 16755; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 16771; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 16756; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 16772; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 16757; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 16773; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 16758; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 16774; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 16759; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 16775; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 16760; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 16776; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 16761; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 16762; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 16763; + return 16764; + } + short PolishedBlackstoneButton(); + enum Face Face(short ID); + eBlockFace Facing(short ID); + bool Powered(short ID); + } + namespace PolishedBlackstonePressurePlate + { + constexpr short PolishedBlackstonePressurePlate(bool Powered) + { + if (Powered) return 16751; + return 16752; + } + short PolishedBlackstonePressurePlate(); + bool Powered(short ID); + } + namespace PolishedBlackstoneSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short PolishedBlackstoneSlab(enum Type Type) + { + if (Type == Type::Top && false) return 16745; + if (Type == Type::Top && !false) return 16746; + if (Type == Type::Bottom && false) return 16747; + if (Type == Type::Bottom && !false) return 16748; + if (Type == Type::Double && false) return 16749; + return 16750; + } + short PolishedBlackstoneSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace PolishedBlackstoneStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short PolishedBlackstoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16744; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16665; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16667; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16669; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16671; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16673; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16675; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16677; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16679; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16681; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16683; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16685; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16687; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16689; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16691; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16693; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16695; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16697; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16699; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16701; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16703; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 16705; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16707; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 16709; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16711; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 16713; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 16715; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16717; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 16719; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16721; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 16723; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 16725; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 16727; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16729; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 16731; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16733; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 16735; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 16737; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16739; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 16741; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16743; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16666; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16668; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16670; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16672; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16674; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16676; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16678; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16680; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 16682; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 16684; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16686; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16688; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16690; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16692; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16694; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16696; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16698; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16700; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 16702; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 16704; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 16706; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16708; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 16710; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16712; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 16714; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 16716; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16718; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 16720; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 16722; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 16724; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 16726; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 16728; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16730; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 16732; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16734; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 16736; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 16738; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 16740; + return 16742; + } + short PolishedBlackstoneStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace PolishedBlackstoneWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short PolishedBlackstoneWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 16926; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 16934; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 16942; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 16950; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 16958; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 16966; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16974; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 16982; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 16990; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 16998; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 17006; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 17014; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 17022; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 17030; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 17038; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 17046; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 17054; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 17062; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 17070; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 17078; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 17086; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 17094; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 16783; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 16791; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 16799; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 16807; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 16815; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 16823; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 16831; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 16839; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 16847; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 16855; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 16863; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 16871; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 16879; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 16887; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 16895; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 16903; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 16911; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 16919; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 16927; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 16935; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 16943; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 16951; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16959; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16967; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 16975; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16983; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16991; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 16999; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 17007; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 17015; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 17023; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 17031; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 17039; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 17047; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 17055; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 17063; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 17071; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 17079; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 17087; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 17095; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 16784; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 16792; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 16800; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 16808; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 16816; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 16824; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 16832; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 16840; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 16848; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 16856; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 16864; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16872; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 16880; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 16888; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 16896; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 16904; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 16912; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 16920; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 16928; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 16936; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16944; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 16952; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 16960; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16968; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16976; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 16984; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16992; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 17000; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 17008; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 17016; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 17024; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 17032; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 17040; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 17048; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 17056; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 17064; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 17072; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 17080; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 17088; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 17096; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 16777; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 16785; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 16793; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 16801; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 16809; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 16817; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 16825; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 16833; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 16841; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 16849; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16857; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 16865; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 16873; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16881; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 16889; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 16897; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 16905; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 16913; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 16921; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16929; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 16937; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 16945; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16953; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 16961; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 16969; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16977; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 16985; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 16993; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 17001; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 17009; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 17017; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 17025; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 17033; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 17041; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 17049; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 17057; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 17065; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 17073; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 17081; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 17089; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 17097; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 16778; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 16786; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 16794; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 16802; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 16810; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 16818; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 16826; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 16834; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 16842; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 16850; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 16858; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 16866; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 16874; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 16882; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 16890; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 16898; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 16906; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 16914; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 16922; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 16930; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 16938; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 16946; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 16954; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16962; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 16970; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 16978; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16986; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 16994; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 17002; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 17010; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 17018; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 17026; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 17034; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 17042; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 17050; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 17058; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 17066; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 17074; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 17082; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 17090; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 17098; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 16779; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 16787; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 16795; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 16803; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 16811; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 16819; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 16827; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 16835; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 16843; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 16851; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 16859; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 16867; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 16875; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 16883; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 16891; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 16899; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 16907; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 16915; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 16923; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 16931; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 16939; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 16947; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 16955; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 16963; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 16971; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16979; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 16987; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 16995; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 17003; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 17011; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 17019; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 17027; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 17035; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 17043; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 17051; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 17059; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 17067; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 17075; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 17083; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 17091; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 17099; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 16780; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 16788; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 16796; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 16804; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 16812; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 16820; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 16828; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 16836; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 16844; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 16852; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16860; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 16868; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 16876; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16884; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 16892; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 16900; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 16908; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 16916; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 16924; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16932; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 16940; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 16948; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16956; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16964; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 16972; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16980; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 16988; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 16996; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 17004; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 17012; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 17020; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 17028; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 17036; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 17044; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 17052; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 17060; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 17068; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 17076; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 17084; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 17092; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 17100; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 16781; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 16789; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 16797; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 16805; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 16813; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 16821; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 16829; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 16837; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 16845; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 16853; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 16861; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 16869; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 16877; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 16885; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 16893; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 16901; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 16909; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 16917; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 16925; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 16933; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 16941; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 16949; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 16957; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16965; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 16973; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 16981; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 16989; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 16997; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 17005; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 17013; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 17021; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 17029; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 17037; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 17045; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 17053; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 17061; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 17069; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 17077; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 17085; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 17093; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 16782; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 16790; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 16798; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 16806; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 16814; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 16822; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 16830; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 16838; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 16846; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 16854; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 16862; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 16870; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 16878; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 16886; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 16894; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 16902; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 16910; + return 16918; + } + short PolishedBlackstoneWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace PolishedDiorite + { + constexpr short PolishedDiorite() + { + return 5; + } + } + namespace PolishedDioriteSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short PolishedDioriteSlab(enum Type Type) + { + if (Type == Type::Bottom && !false) return 10810; + if (Type == Type::Top && false) return 10807; + if (Type == Type::Double && false) return 10811; + if (Type == Type::Top && !false) return 10808; + if (Type == Type::Double && !false) return 10812; + return 10809; + } + short PolishedDioriteSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace PolishedDioriteStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short PolishedDioriteStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9960; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9961; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9962; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9963; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9964; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9965; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9966; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9967; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9968; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9969; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9970; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9971; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9972; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9973; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9974; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9975; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9976; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9977; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9978; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9979; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9980; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9981; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9982; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9983; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9984; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9985; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9986; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9987; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9988; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9909; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9910; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9911; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9912; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9913; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9914; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9915; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9916; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9917; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9918; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9919; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9920; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9921; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9922; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9923; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9924; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9925; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9926; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9927; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9928; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9929; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9930; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9931; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9932; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9933; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9934; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9935; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9936; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9937; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9938; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9939; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9940; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9941; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9942; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9943; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9944; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9945; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9946; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9947; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9948; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9949; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9950; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9951; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9952; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9953; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9954; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9955; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9956; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9957; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9958; + return 9959; + } + short PolishedDioriteStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace PolishedGranite + { + constexpr short PolishedGranite() + { + return 3; + } + } + namespace PolishedGraniteSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short PolishedGraniteSlab(enum Type Type) + { + if (Type == Type::Top && false) return 10789; + if (Type == Type::Double && false) return 10793; + if (Type == Type::Top && !false) return 10790; + if (Type == Type::Double && !false) return 10794; + if (Type == Type::Bottom && false) return 10791; + return 10792; + } + short PolishedGraniteSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace PolishedGraniteStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short PolishedGraniteStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9706; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9707; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9708; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9709; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9710; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9711; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9712; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9713; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9714; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9715; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9716; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9717; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9718; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9719; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9720; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9721; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9722; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9723; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9724; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9725; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9726; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9727; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9728; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9729; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9730; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9731; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9732; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9733; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9734; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9735; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9736; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9737; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9738; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9739; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9740; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9741; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9742; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9743; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9744; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9745; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9746; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9747; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9748; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9669; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9670; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9671; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9672; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9673; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9674; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9675; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9676; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9677; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9678; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9679; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9680; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9681; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9682; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9683; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9684; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9685; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9686; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9687; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9688; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9689; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9690; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9691; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9692; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9693; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9694; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9695; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9696; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9697; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9698; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9699; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9700; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9701; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9702; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9703; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9704; + return 9705; + } + short PolishedGraniteStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace Poppy + { + constexpr short Poppy() + { + return 1413; + } + } + namespace Potatoes + { + constexpr short Potatoes(unsigned char Age) + { + if (Age == 6) return 6344; + if (Age == 1) return 6339; + if (Age == 3) return 6341; + if (Age == 5) return 6343; + if (Age == 0) return 6338; + if (Age == 2) return 6340; + if (Age == 4) return 6342; + return 6345; + } + short Potatoes(); + unsigned char Age(short ID); + } + namespace PottedAcaciaSapling + { + constexpr short PottedAcaciaSapling() + { + return 6310; + } + } + namespace PottedAllium + { + constexpr short PottedAllium() + { + return 6316; + } + } + namespace PottedAzureBluet + { + constexpr short PottedAzureBluet() + { + return 6317; + } + } + namespace PottedBamboo + { + constexpr short PottedBamboo() + { + return 9664; + } + } + namespace PottedBirchSapling + { + constexpr short PottedBirchSapling() + { + return 6308; + } + } + namespace PottedBlueOrchid + { + constexpr short PottedBlueOrchid() + { + return 6315; + } + } + namespace PottedBrownMushroom + { + constexpr short PottedBrownMushroom() + { + return 6327; + } + } + namespace PottedCactus + { + constexpr short PottedCactus() + { + return 6329; + } + } + namespace PottedCornflower + { + constexpr short PottedCornflower() + { + return 6323; + } + } + namespace PottedCrimsonFungus + { + constexpr short PottedCrimsonFungus() + { + return 15834; + } + } + namespace PottedCrimsonRoots + { + constexpr short PottedCrimsonRoots() + { + return 15836; + } + } + namespace PottedDandelion + { + constexpr short PottedDandelion() + { + return 6313; + } + } + namespace PottedDarkOakSapling + { + constexpr short PottedDarkOakSapling() + { + return 6311; + } + } + namespace PottedDeadBush + { + constexpr short PottedDeadBush() + { + return 6328; + } + } + namespace PottedFern + { + constexpr short PottedFern() + { + return 6312; + } + } + namespace PottedJungleSapling + { + constexpr short PottedJungleSapling() + { + return 6309; + } + } + namespace PottedLilyOfTheValley + { + constexpr short PottedLilyOfTheValley() + { + return 6324; + } + } + namespace PottedOakSapling + { + constexpr short PottedOakSapling() + { + return 6306; + } + } + namespace PottedOrangeTulip + { + constexpr short PottedOrangeTulip() + { + return 6319; + } + } + namespace PottedOxeyeDaisy + { + constexpr short PottedOxeyeDaisy() + { + return 6322; + } + } + namespace PottedPinkTulip + { + constexpr short PottedPinkTulip() + { + return 6321; + } + } + namespace PottedPoppy + { + constexpr short PottedPoppy() + { + return 6314; + } + } + namespace PottedRedMushroom + { + constexpr short PottedRedMushroom() + { + return 6326; + } + } + namespace PottedRedTulip + { + constexpr short PottedRedTulip() + { + return 6318; + } + } + namespace PottedSpruceSapling + { + constexpr short PottedSpruceSapling() + { + return 6307; + } + } + namespace PottedWarpedFungus + { + constexpr short PottedWarpedFungus() + { + return 15835; + } + } + namespace PottedWarpedRoots + { + constexpr short PottedWarpedRoots() + { + return 15837; + } + } + namespace PottedWhiteTulip + { + constexpr short PottedWhiteTulip() + { + return 6320; + } + } + namespace PottedWitherRose + { + constexpr short PottedWitherRose() + { + return 6325; + } + } + namespace PoweredRail + { + enum class Shape + { + NorthSouth, + EastWest, + AscendingEast, + AscendingWest, + AscendingNorth, + AscendingSouth + }; + constexpr short PoweredRail(bool Powered, enum Shape Shape) + { + if (Shape == Shape::EastWest && Powered) return 1306; + if (Shape == Shape::AscendingSouth && Powered) return 1310; + if (Shape == Shape::AscendingWest && !Powered) return 1314; + if (Shape == Shape::AscendingEast && Powered) return 1307; + if (Shape == Shape::NorthSouth && !Powered) return 1311; + if (Shape == Shape::AscendingNorth && !Powered) return 1315; + if (Shape == Shape::AscendingWest && Powered) return 1308; + if (Shape == Shape::EastWest && !Powered) return 1312; + if (Shape == Shape::AscendingSouth && !Powered) return 1316; + if (Shape == Shape::NorthSouth && Powered) return 1305; + if (Shape == Shape::AscendingNorth && Powered) return 1309; + return 1313; + } + short PoweredRail(); + bool Powered(short ID); + enum Shape Shape(short ID); + } + namespace Prismarine + { + constexpr short Prismarine() + { + return 7601; + } + } + namespace PrismarineBrickSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short PrismarineBrickSlab(enum Type Type) + { + if (Type == Type::Top && !false) return 7851; + if (Type == Type::Bottom && !false) return 7853; + if (Type == Type::Double && !false) return 7855; + if (Type == Type::Top && false) return 7850; + if (Type == Type::Bottom && false) return 7852; + return 7854; + } + short PrismarineBrickSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace PrismarineBrickStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short PrismarineBrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7743; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7744; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7745; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7746; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7747; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7684; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7748; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7685; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7749; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7686; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7750; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7687; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7751; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7688; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7752; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7689; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7753; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7690; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7754; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7691; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7755; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7692; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7756; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7693; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7757; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7694; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7758; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7695; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7759; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7696; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7760; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7697; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7761; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7698; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7762; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7699; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7763; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7700; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7701; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7702; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7703; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7704; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7705; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7706; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7707; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7708; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7709; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7710; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7711; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7712; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7713; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7714; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7715; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7716; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7717; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7718; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7719; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7720; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7721; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7722; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7723; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7724; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7725; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7726; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7727; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7728; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7729; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7730; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7731; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7732; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7733; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7734; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7735; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7736; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7737; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7738; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7739; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7740; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7741; + return 7742; + } + short PrismarineBrickStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace PrismarineBricks + { + constexpr short PrismarineBricks() + { + return 7602; + } + } + namespace PrismarineSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short PrismarineSlab(enum Type Type) + { + if (Type == Type::Double && !false) return 7849; + if (Type == Type::Top && false) return 7844; + if (Type == Type::Bottom && false) return 7846; + if (Type == Type::Double && false) return 7848; + if (Type == Type::Top && !false) return 7845; + return 7847; + } + short PrismarineSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace PrismarineStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short PrismarineStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7679; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7616; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7680; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7617; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7681; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7618; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7682; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7619; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7683; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7620; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7621; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7622; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7623; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7624; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7625; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7626; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7627; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7628; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7629; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7630; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7631; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7632; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7633; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7634; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7635; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7636; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7637; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7638; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7639; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7640; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 7641; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7642; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 7643; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7644; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7645; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7646; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7647; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7648; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7649; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7650; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7651; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7652; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7653; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7654; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 7655; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7656; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7657; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7658; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7659; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7660; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 7661; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7662; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 7663; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7664; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7665; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7666; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7667; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7604; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7668; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7605; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7669; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7606; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7670; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7607; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7671; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7608; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7672; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7609; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7673; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7610; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7674; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 7611; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 7675; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7612; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7676; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7613; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 7677; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 7614; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 7678; + return 7615; + } + short PrismarineStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace PrismarineWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short PrismarineWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 11194; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 11198; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 11202; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 11206; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 11210; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 11214; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 11218; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 11222; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 11226; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 11230; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 11234; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 11238; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 11242; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 11246; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 11250; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 11254; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 11258; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 11262; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 11266; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 11270; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11274; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 11278; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 11282; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11286; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 11290; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 11294; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11298; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 11302; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 11306; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 11310; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 11314; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 11318; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 11322; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 11326; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 11330; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 11334; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 11338; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 11342; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11346; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 11350; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 11354; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11358; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 11362; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 11366; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11370; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 11374; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11378; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11382; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 11386; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11390; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11394; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 11398; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11402; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11406; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 11410; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 11414; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11418; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 11422; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 11426; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11430; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 11434; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 11438; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11442; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 11446; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11450; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11454; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 11458; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11462; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11466; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 11470; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11474; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11478; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 11482; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11486; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11490; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 11494; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11498; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11502; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 11506; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11510; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11514; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 11191; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 11195; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 11199; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 11203; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 11207; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 11211; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 11215; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 11219; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 11223; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 11227; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 11231; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 11235; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 11239; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 11243; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 11247; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 11251; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 11255; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 11259; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 11263; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 11267; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11271; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 11275; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 11279; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11283; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 11287; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 11291; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11295; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 11299; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 11303; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 11307; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 11311; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 11315; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 11319; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 11323; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 11327; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 11331; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 11335; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 11339; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11343; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 11347; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 11351; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11355; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 11359; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 11363; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11367; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 11371; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 11375; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11379; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 11383; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 11387; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11391; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 11395; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 11399; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11403; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 11407; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 11411; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11415; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 11419; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 11423; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11427; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 11431; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 11435; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11439; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 11443; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 11447; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11451; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 11455; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 11459; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11463; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 11467; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 11471; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11475; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 11479; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11483; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11487; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 11491; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11495; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11499; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 11503; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11507; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11511; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 11192; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 11196; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 11200; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 11204; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 11208; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 11212; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 11216; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 11220; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 11224; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 11228; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 11232; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 11236; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 11240; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 11244; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 11248; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 11252; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 11256; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 11260; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 11264; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 11268; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 11272; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 11276; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 11280; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 11284; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 11288; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 11292; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 11296; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 11300; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 11304; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 11308; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 11312; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 11316; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 11320; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 11324; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 11328; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 11332; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 11336; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 11340; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 11344; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 11348; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 11352; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 11356; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 11360; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 11364; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 11368; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 11372; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11376; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 11380; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 11384; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11388; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 11392; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 11396; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11400; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 11404; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 11408; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 11412; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 11416; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 11420; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 11424; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 11428; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 11432; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 11436; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 11440; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 11444; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11448; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 11452; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 11456; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11460; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 11464; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 11468; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11472; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 11476; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11480; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11484; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11488; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11492; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11496; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11500; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11504; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11508; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11512; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 11193; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 11197; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 11201; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 11205; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 11209; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 11213; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 11217; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 11221; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 11225; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 11229; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 11233; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 11237; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 11241; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 11245; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 11249; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 11253; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 11257; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 11261; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 11265; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 11269; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 11273; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 11277; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 11281; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 11285; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 11289; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 11293; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 11297; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 11301; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 11305; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 11309; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 11313; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 11317; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 11321; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 11325; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 11329; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 11333; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 11337; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 11341; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 11345; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 11349; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 11353; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 11357; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 11361; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 11365; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 11369; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11373; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 11377; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11381; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11385; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 11389; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11393; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11397; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 11401; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11405; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 11409; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 11413; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 11417; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 11421; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 11425; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 11429; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 11433; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 11437; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 11441; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11445; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 11449; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11453; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11457; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 11461; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11465; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11469; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 11473; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11477; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11481; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11485; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11489; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11493; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11497; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11501; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11505; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11509; + return 11513; + } + short PrismarineWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace Pumpkin + { + constexpr short Pumpkin() + { + return 3998; + } + } + namespace PumpkinStem + { + constexpr short PumpkinStem(unsigned char Age) + { + if (Age == 4) return 4776; + if (Age == 6) return 4778; + if (Age == 1) return 4773; + if (Age == 3) return 4775; + if (Age == 5) return 4777; + if (Age == 0) return 4772; + if (Age == 2) return 4774; + return 4779; + } + short PumpkinStem(); + unsigned char Age(short ID); + } + namespace PurpleBanner + { + constexpr short PurpleBanner(unsigned char Rotation) + { + if (Rotation == 14) return 8071; + if (Rotation == 0) return 8057; + if (Rotation == 1) return 8058; + if (Rotation == 2) return 8059; + if (Rotation == 3) return 8060; + if (Rotation == 4) return 8061; + if (Rotation == 5) return 8062; + if (Rotation == 6) return 8063; + if (Rotation == 7) return 8064; + if (Rotation == 8) return 8065; + if (Rotation == 9) return 8066; + if (Rotation == 10) return 8067; + if (Rotation == 11) return 8068; + if (Rotation == 12) return 8069; + if (Rotation == 13) return 8070; + return 8072; + } + short PurpleBanner(); + unsigned char Rotation(short ID); + } + namespace PurpleBed + { + enum class Part + { + Head, + Foot + }; + constexpr short PurpleBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1212; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1216; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1220; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1209; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1213; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1217; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1221; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1210; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1214; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1218; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1222; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1211; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1215; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1219; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1223; + return 1224; + } + short PurpleBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace PurpleCarpet + { + constexpr short PurpleCarpet() + { + return 7876; + } + } + namespace PurpleConcrete + { + constexpr short PurpleConcrete() + { + return 9448; + } + } + namespace PurpleConcretePowder + { + constexpr short PurpleConcretePowder() + { + return 9464; + } + } + namespace PurpleGlazedTerracotta + { + constexpr short PurpleGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9414; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9416; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9415; + return 9417; + } + short PurpleGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace PurpleShulkerBox + { + constexpr short PurpleShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9340; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9341; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9338; + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9342; + if (Facing == eBlockFace::BLOCK_FACE_XP) return 9339; + return 9343; + } + short PurpleShulkerBox(); + eBlockFace Facing(short ID); + } + namespace PurpleStainedGlass + { + constexpr short PurpleStainedGlass() + { + return 4105; + } + } + namespace PurpleStainedGlassPane + { + constexpr short PurpleStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (!false && South && !West && !East && !North) return 7210; + if (false && South && West && East && North) return 7183; + if (false && !South && West && East && North) return 7187; + if (false && South && West && East && !North) return 7191; + if (false && !South && West && East && !North) return 7195; + if (false && South && West && !East && North) return 7199; + if (false && !South && West && !East && North) return 7203; + if (false && South && West && !East && !North) return 7207; + if (false && !South && West && !East && !North) return 7211; + if (false && South && !West && East && North) return 7184; + if (false && !South && !West && East && North) return 7188; + if (false && South && !West && East && !North) return 7192; + if (false && !South && !West && East && !North) return 7196; + if (false && South && !West && !East && North) return 7200; + if (false && !South && !West && !East && North) return 7204; + if (false && South && !West && !East && !North) return 7208; + if (false && !South && !West && !East && !North) return 7212; + if (!false && South && West && East && North) return 7185; + if (!false && !South && West && East && North) return 7189; + if (!false && South && West && East && !North) return 7193; + if (!false && !South && West && East && !North) return 7197; + if (!false && South && West && !East && North) return 7201; + if (!false && !South && West && !East && North) return 7205; + if (!false && South && West && !East && !North) return 7209; + if (!false && !South && West && !East && !North) return 7213; + if (!false && South && !West && East && North) return 7186; + if (!false && !South && !West && East && North) return 7190; + if (!false && South && !West && East && !North) return 7194; + if (!false && !South && !West && East && !North) return 7198; + if (!false && South && !West && !East && North) return 7202; + if (!false && !South && !West && !East && North) return 7206; + return 7214; + } + short PurpleStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace PurpleTerracotta + { + constexpr short PurpleTerracotta() + { + return 6857; + } + } + namespace PurpleWallBanner + { + constexpr short PurpleWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8193; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8195; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8194; + return 8196; + } + short PurpleWallBanner(); + eBlockFace Facing(short ID); + } + namespace PurpleWool + { + constexpr short PurpleWool() + { + return 1394; + } + } + namespace PurpurBlock + { + constexpr short PurpurBlock() + { + return 9134; + } + } + namespace PurpurPillar + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short PurpurPillar(enum Axis Axis) + { + if (Axis == Axis::X) return 9135; + if (Axis == Axis::Z) return 9137; + return 9136; + } + short PurpurPillar(); + enum Axis Axis(short ID); + } + namespace PurpurSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short PurpurSlab(enum Type Type) + { + if (Type == Type::Top && !false) return 8409; + if (Type == Type::Double && !false) return 8413; + if (Type == Type::Bottom && false) return 8410; + if (Type == Type::Bottom && !false) return 8411; + if (Type == Type::Top && false) return 8408; + return 8412; + } + short PurpurSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace PurpurStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short PurpurStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9198; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9199; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9200; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9201; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9202; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9203; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9204; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9205; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9206; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9207; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9208; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9209; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9210; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9211; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9212; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9213; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9214; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9215; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9216; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9217; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9138; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9139; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9140; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9141; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9142; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9143; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9144; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9145; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9146; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9147; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9148; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9149; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9150; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9151; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9152; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9153; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9154; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9155; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9156; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9157; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9158; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9159; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9160; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9161; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9162; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9163; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9164; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9165; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9166; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9167; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9168; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9169; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9170; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9171; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9172; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9173; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9174; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9175; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9176; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9177; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9178; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9179; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9180; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9181; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9182; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9183; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9184; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9185; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9186; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9187; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9188; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9189; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9190; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9191; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9192; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9193; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9194; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9195; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9196; + return 9197; + } + short PurpurStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace QuartzBlock + { + constexpr short QuartzBlock() + { + return 6738; + } + } + namespace QuartzBricks + { + constexpr short QuartzBricks() + { + return 17103; + } + } + namespace QuartzPillar + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short QuartzPillar(enum Axis Axis) + { + if (Axis == Axis::Z) return 6742; + if (Axis == Axis::X) return 6740; + return 6741; + } + short QuartzPillar(); + enum Axis Axis(short ID); + } + namespace QuartzSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short QuartzSlab(enum Type Type) + { + if (Type == Type::Double && !false) return 8395; + if (Type == Type::Bottom && false) return 8392; + if (Type == Type::Bottom && !false) return 8393; + if (Type == Type::Top && false) return 8390; + if (Type == Type::Double && false) return 8394; + return 8391; + } + short QuartzSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace QuartzStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short QuartzStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 6790; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 6791; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 6792; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 6793; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 6794; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 6795; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 6796; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 6797; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 6798; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 6799; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 6800; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 6801; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 6802; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 6803; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 6804; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 6805; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 6806; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 6743; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 6807; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 6744; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 6808; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 6745; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 6809; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 6746; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 6810; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 6747; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 6811; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 6748; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 6812; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 6749; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 6813; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 6750; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 6814; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 6751; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 6815; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 6752; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 6816; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 6753; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 6817; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 6754; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 6818; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 6755; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 6819; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 6756; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 6820; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 6757; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 6821; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 6758; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 6822; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 6759; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 6760; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 6761; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 6762; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 6763; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 6764; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 6765; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 6766; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 6767; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 6768; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 6769; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 6770; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 6771; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 6772; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 6773; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 6774; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 6775; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 6776; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 6777; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 6778; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 6779; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 6780; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 6781; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 6782; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 6783; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 6784; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 6785; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 6786; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 6787; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 6788; + return 6789; + } + short QuartzStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace Rail + { + enum class Shape + { + NorthSouth, + EastWest, + AscendingEast, + AscendingWest, + AscendingNorth, + AscendingSouth, + SouthEast, + SouthWest, + NorthWest, + NorthEast + }; + constexpr short Rail(enum Shape Shape) + { + if (Shape == Shape::EastWest) return 3646; + if (Shape == Shape::NorthEast) return 3654; + if (Shape == Shape::AscendingEast) return 3647; + if (Shape == Shape::AscendingWest) return 3648; + if (Shape == Shape::AscendingNorth) return 3649; + if (Shape == Shape::AscendingSouth) return 3650; + if (Shape == Shape::SouthEast) return 3651; + if (Shape == Shape::SouthWest) return 3652; + if (Shape == Shape::NorthSouth) return 3645; + return 3653; + } + short Rail(); + enum Shape Shape(short ID); + } + namespace RedBanner + { + constexpr short RedBanner(unsigned char Rotation) + { + if (Rotation == 10) return 8131; + if (Rotation == 11) return 8132; + if (Rotation == 12) return 8133; + if (Rotation == 13) return 8134; + if (Rotation == 14) return 8135; + if (Rotation == 0) return 8121; + if (Rotation == 1) return 8122; + if (Rotation == 2) return 8123; + if (Rotation == 3) return 8124; + if (Rotation == 4) return 8125; + if (Rotation == 5) return 8126; + if (Rotation == 6) return 8127; + if (Rotation == 7) return 8128; + if (Rotation == 8) return 8129; + if (Rotation == 9) return 8130; + return 8136; + } + short RedBanner(); + unsigned char Rotation(short ID); + } + namespace RedBed + { + enum class Part + { + Head, + Foot + }; + constexpr short RedBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1287; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1276; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1280; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1284; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1273; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1277; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1281; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1285; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1274; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1278; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1282; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1286; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1275; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1279; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1283; + return 1288; + } + short RedBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace RedCarpet + { + constexpr short RedCarpet() + { + return 7880; + } + } + namespace RedConcrete + { + constexpr short RedConcrete() + { + return 9452; + } + } + namespace RedConcretePowder + { + constexpr short RedConcretePowder() + { + return 9468; + } + } + namespace RedGlazedTerracotta + { + constexpr short RedGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9432; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9431; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9430; + return 9433; + } + short RedGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace RedMushroom + { + constexpr short RedMushroom() + { + return 1426; + } + } + namespace RedMushroomBlock + { + constexpr short RedMushroomBlock(bool Down, bool East, bool North, bool South, bool Up, bool West) + { + if (Up && West && East && !South && Down && North) return 4573; + if (Up && West && !East && !South && Down && North) return 4589; + if (Up && West && East && !South && !Down && North) return 4605; + if (Up && West && !East && !South && !Down && North) return 4621; + if (Up && !West && East && !South && Down && North) return 4574; + if (Up && !West && !East && !South && Down && North) return 4590; + if (Up && !West && East && !South && !Down && North) return 4606; + if (Up && !West && !East && !South && !Down && North) return 4622; + if (!Up && West && East && !South && Down && North) return 4575; + if (!Up && West && !East && !South && Down && North) return 4591; + if (!Up && West && East && !South && !Down && North) return 4607; + if (!Up && West && !East && !South && !Down && North) return 4623; + if (!Up && !West && East && !South && Down && North) return 4576; + if (!Up && !West && !East && !South && Down && North) return 4592; + if (!Up && !West && East && !South && !Down && North) return 4608; + if (!Up && !West && !East && !South && !Down && North) return 4624; + if (Up && West && East && South && Down && !North) return 4577; + if (Up && West && !East && South && Down && !North) return 4593; + if (Up && West && East && South && !Down && !North) return 4609; + if (Up && West && !East && South && !Down && !North) return 4625; + if (Up && !West && East && South && Down && !North) return 4578; + if (Up && !West && !East && South && Down && !North) return 4594; + if (Up && !West && East && South && !Down && !North) return 4610; + if (Up && !West && !East && South && !Down && !North) return 4626; + if (!Up && West && East && South && Down && !North) return 4579; + if (!Up && West && !East && South && Down && !North) return 4595; + if (!Up && West && East && South && !Down && !North) return 4611; + if (!Up && West && !East && South && !Down && !North) return 4627; + if (!Up && !West && East && South && Down && !North) return 4580; + if (!Up && !West && !East && South && Down && !North) return 4596; + if (!Up && !West && East && South && !Down && !North) return 4612; + if (!Up && !West && !East && South && !Down && !North) return 4628; + if (Up && West && East && !South && Down && !North) return 4581; + if (Up && West && !East && !South && Down && !North) return 4597; + if (Up && West && East && !South && !Down && !North) return 4613; + if (Up && West && !East && !South && !Down && !North) return 4629; + if (Up && !West && East && !South && Down && !North) return 4582; + if (Up && !West && !East && !South && Down && !North) return 4598; + if (Up && !West && East && !South && !Down && !North) return 4614; + if (Up && !West && !East && !South && !Down && !North) return 4630; + if (!Up && West && East && !South && Down && !North) return 4583; + if (!Up && West && !East && !South && Down && !North) return 4599; + if (!Up && West && East && !South && !Down && !North) return 4615; + if (!Up && West && !East && !South && !Down && !North) return 4631; + if (!Up && !West && East && !South && Down && !North) return 4584; + if (!Up && !West && !East && !South && Down && !North) return 4600; + if (!Up && !West && East && !South && !Down && !North) return 4616; + if (Up && West && East && South && Down && North) return 4569; + if (Up && West && !East && South && Down && North) return 4585; + if (Up && West && East && South && !Down && North) return 4601; + if (Up && West && !East && South && !Down && North) return 4617; + if (Up && !West && East && South && Down && North) return 4570; + if (Up && !West && !East && South && Down && North) return 4586; + if (Up && !West && East && South && !Down && North) return 4602; + if (Up && !West && !East && South && !Down && North) return 4618; + if (!Up && West && East && South && Down && North) return 4571; + if (!Up && West && !East && South && Down && North) return 4587; + if (!Up && West && East && South && !Down && North) return 4603; + if (!Up && West && !East && South && !Down && North) return 4619; + if (!Up && !West && East && South && Down && North) return 4572; + if (!Up && !West && !East && South && Down && North) return 4588; + if (!Up && !West && East && South && !Down && North) return 4604; + if (!Up && !West && !East && South && !Down && North) return 4620; + return 4632; + } + short RedMushroomBlock(); + bool Down(short ID); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Up(short ID); + bool West(short ID); + } + namespace RedNetherBrickSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short RedNetherBrickSlab(enum Type Type) + { + if (Type == Type::Bottom && !false) return 10852; + if (Type == Type::Top && false) return 10849; + if (Type == Type::Double && false) return 10853; + if (Type == Type::Top && !false) return 10850; + if (Type == Type::Double && !false) return 10854; + return 10851; + } + short RedNetherBrickSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace RedNetherBrickStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short RedNetherBrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10595; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10596; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10597; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10598; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10599; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10600; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10601; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10602; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10603; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10604; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10605; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10606; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10607; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10608; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10609; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10610; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10611; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10612; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10613; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10614; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10615; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10616; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10617; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10618; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10619; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10620; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10621; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10622; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10623; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10624; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10625; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10626; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10627; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10628; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10549; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10550; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10551; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10552; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10553; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10554; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10555; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10556; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10557; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10558; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10559; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10560; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10561; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10562; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10563; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10564; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10565; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10566; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10567; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10568; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10569; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10570; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10571; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10572; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10573; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10574; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10575; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10576; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10577; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10578; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10579; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10580; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10581; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10582; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10583; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10584; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10585; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10586; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10587; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10588; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10589; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10590; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10591; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10592; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10593; + return 10594; + } + short RedNetherBrickStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace RedNetherBrickWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short RedNetherBrickWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 13589; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 13593; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 13597; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 13601; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 13605; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 13609; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 13613; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 13617; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 13621; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 13625; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 13629; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 13633; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 13637; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13641; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 13645; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13649; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13653; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 13657; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13661; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13665; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 13669; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13673; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 13677; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 13681; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 13685; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 13689; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 13693; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 13697; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 13701; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 13705; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 13709; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13713; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 13717; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13721; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13725; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 13729; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13733; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13737; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 13741; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13745; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13749; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13753; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13757; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13761; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13765; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13769; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13773; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13777; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13781; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 13462; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 13466; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 13470; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 13474; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 13478; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 13482; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 13486; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 13490; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 13494; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 13498; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 13502; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 13506; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 13510; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 13514; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 13518; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 13522; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 13526; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 13530; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 13534; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 13538; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13542; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 13546; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 13550; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13554; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 13558; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 13562; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13566; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 13570; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 13574; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 13578; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 13582; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 13586; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 13590; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 13594; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 13598; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 13602; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 13606; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 13610; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13614; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 13618; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 13622; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13626; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 13630; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 13634; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13638; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 13642; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13646; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13650; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 13654; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13658; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13662; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 13666; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13670; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13674; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 13678; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 13682; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13686; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 13690; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 13694; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13698; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 13702; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 13706; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13710; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 13714; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13718; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13722; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 13726; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13730; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13734; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 13738; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 13742; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13746; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 13750; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13754; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13758; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 13762; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13766; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13770; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 13774; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 13778; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13782; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 13459; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 13463; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 13467; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 13471; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 13475; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 13479; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 13483; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 13487; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 13491; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 13495; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 13499; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 13503; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 13507; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 13511; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 13515; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 13519; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 13523; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 13527; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 13531; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 13535; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13539; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 13543; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 13547; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13551; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 13555; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 13559; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13563; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 13567; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 13571; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 13575; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 13579; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 13583; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 13587; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 13591; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 13595; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 13599; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 13603; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 13607; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13611; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 13615; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 13619; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13623; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 13627; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 13631; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13635; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 13639; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 13643; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13647; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 13651; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 13655; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13659; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 13663; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 13667; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13671; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 13675; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 13679; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13683; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 13687; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 13691; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13695; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 13699; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 13703; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 13707; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 13711; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 13715; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13719; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 13723; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 13727; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13731; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 13735; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 13739; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 13743; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 13747; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13751; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13755; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 13759; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13763; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13767; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 13771; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13775; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 13779; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 13460; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 13464; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 13468; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 13472; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 13476; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 13480; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 13484; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 13488; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 13492; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 13496; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 13500; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 13504; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 13508; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 13512; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 13516; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 13520; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 13524; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 13528; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 13532; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 13536; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 13540; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 13544; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 13548; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 13552; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 13556; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 13560; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 13564; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 13568; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 13572; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 13576; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 13580; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 13584; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 13588; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 13592; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 13596; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 13600; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 13604; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 13608; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 13612; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 13616; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 13620; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 13624; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 13628; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 13632; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 13636; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 13640; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13644; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 13648; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 13652; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13656; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 13660; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 13664; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13668; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 13672; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 13676; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 13680; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 13684; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 13688; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 13692; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 13696; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 13700; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 13704; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 13708; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 13712; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13716; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 13720; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 13724; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13728; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 13732; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 13736; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 13740; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 13744; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13748; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13752; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13756; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13760; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13764; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13768; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 13772; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 13776; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 13780; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 13461; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 13465; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 13469; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 13473; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 13477; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 13481; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 13485; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 13489; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 13493; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 13497; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 13501; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 13505; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 13509; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 13513; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 13517; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 13521; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 13525; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 13529; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 13533; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 13537; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 13541; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 13545; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 13549; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 13553; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 13557; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 13561; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 13565; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 13569; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 13573; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 13577; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 13581; + return 13585; + } + short RedNetherBrickWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace RedNetherBricks + { + constexpr short RedNetherBricks() + { + return 9255; + } + } + namespace RedSand + { + constexpr short RedSand() + { + return 67; + } + } + namespace RedSandstone + { + constexpr short RedSandstone() + { + return 8217; + } + } + namespace RedSandstoneSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short RedSandstoneSlab(enum Type Type) + { + if (Type == Type::Bottom && !false) return 8399; + if (Type == Type::Top && false) return 8396; + if (Type == Type::Double && false) return 8400; + if (Type == Type::Top && !false) return 8397; + if (Type == Type::Double && !false) return 8401; + return 8398; + } + short RedSandstoneSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace RedSandstoneStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short RedSandstoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 8220; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 8221; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 8222; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 8223; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 8224; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 8225; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 8226; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 8227; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 8228; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 8229; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 8230; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 8231; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 8232; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 8233; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 8234; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 8235; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 8236; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 8237; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 8238; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 8239; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 8240; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 8241; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 8242; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 8243; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 8244; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 8245; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 8246; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 8247; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 8248; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 8249; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 8250; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 8251; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 8252; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 8253; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 8254; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 8255; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 8256; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 8257; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 8258; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 8259; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 8260; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 8261; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 8262; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 8263; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 8264; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 8265; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 8266; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 8267; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 8268; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 8269; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 8270; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 8271; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 8272; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 8273; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 8274; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 8275; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 8276; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 8277; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 8278; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 8279; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 8280; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 8281; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 8282; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 8283; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 8284; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 8285; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 8286; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 8287; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 8288; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 8289; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 8290; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 8291; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 8292; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 8293; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 8294; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 8295; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 8296; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 8297; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 8298; + return 8299; + } + short RedSandstoneStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace RedSandstoneWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short RedSandstoneWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 11545; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 11549; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 11553; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 11557; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 11561; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 11565; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 11569; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 11573; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 11577; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 11581; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 11585; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 11589; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 11593; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 11597; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 11601; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 11605; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 11609; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 11613; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 11617; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 11621; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 11625; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 11629; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 11633; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 11637; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 11641; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 11645; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 11649; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 11653; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 11657; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 11661; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 11665; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 11669; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 11673; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 11677; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 11681; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 11685; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 11689; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 11693; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11697; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 11701; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11705; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11709; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 11713; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11717; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11721; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 11725; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11729; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 11733; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 11737; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 11741; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 11745; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 11749; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 11753; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 11757; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 11761; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 11765; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11769; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 11773; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11777; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11781; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 11785; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11789; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11793; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 11797; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11801; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11805; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11809; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11813; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11817; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11821; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11825; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11829; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11833; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11837; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 11518; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 11522; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 11526; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 11530; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 11534; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 11538; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 11542; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 11546; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 11550; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 11554; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 11558; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 11562; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 11566; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 11570; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 11574; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 11578; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 11582; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 11586; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 11590; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 11594; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11598; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 11602; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 11606; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11610; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 11614; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 11618; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11622; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 11626; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 11630; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 11634; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 11638; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 11642; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 11646; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 11650; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 11654; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 11658; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 11662; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 11666; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11670; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 11674; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 11678; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11682; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 11686; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 11690; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11694; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 11698; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11702; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11706; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 11710; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11714; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11718; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 11722; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 11726; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11730; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 11734; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 11738; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11742; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 11746; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 11750; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11754; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 11758; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 11762; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11766; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 11770; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11774; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11778; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 11782; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11786; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11790; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 11794; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 11798; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11802; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 11806; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11810; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11814; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 11818; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11822; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11826; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 11830; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 11834; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11838; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 11515; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 11519; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 11523; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 11527; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 11531; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 11535; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 11539; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 11543; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 11547; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 11551; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 11555; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 11559; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 11563; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 11567; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 11571; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 11575; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 11579; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 11583; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 11587; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 11591; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11595; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 11599; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 11603; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11607; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 11611; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 11615; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 11619; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 11623; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 11627; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 11631; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 11635; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 11639; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 11643; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 11647; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 11651; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 11655; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 11659; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 11663; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11667; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 11671; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 11675; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11679; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 11683; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 11687; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 11691; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 11695; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 11699; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11703; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 11707; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 11711; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11715; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 11719; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 11723; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 11727; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 11731; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 11735; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11739; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 11743; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 11747; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11751; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 11755; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 11759; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 11763; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 11767; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 11771; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11775; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 11779; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 11783; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11787; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 11791; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 11795; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 11799; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 11803; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11807; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11811; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 11815; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11819; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11823; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 11827; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11831; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 11835; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 11516; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 11520; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 11524; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 11528; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 11532; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 11536; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 11540; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 11544; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 11548; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 11552; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 11556; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 11560; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 11564; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 11568; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 11572; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 11576; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 11580; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 11584; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 11588; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 11592; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 11596; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 11600; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 11604; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 11608; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 11612; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 11616; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 11620; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 11624; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 11628; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 11632; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 11636; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 11640; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 11644; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 11648; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 11652; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 11656; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 11660; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 11664; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 11668; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 11672; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 11676; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 11680; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 11684; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 11688; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 11692; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 11696; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11700; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 11704; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 11708; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11712; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 11716; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 11720; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 11724; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 11728; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 11732; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 11736; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 11740; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 11744; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 11748; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 11752; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 11756; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 11760; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 11764; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 11768; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11772; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 11776; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 11780; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11784; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 11788; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 11792; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 11796; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 11800; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11804; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11808; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11812; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11816; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11820; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11824; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 11828; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 11832; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 11836; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 11517; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 11521; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 11525; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 11529; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 11533; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 11537; + return 11541; + } + short RedSandstoneWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace RedShulkerBox + { + constexpr short RedShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9365; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9362; + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9366; + if (Facing == eBlockFace::BLOCK_FACE_XP) return 9363; + if (Facing == eBlockFace::BLOCK_FACE_YM) return 9367; + return 9364; + } + short RedShulkerBox(); + eBlockFace Facing(short ID); + } + namespace RedStainedGlass + { + constexpr short RedStainedGlass() + { + return 4109; + } + } + namespace RedStainedGlassPane + { + constexpr short RedStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (!false && !South && !West && !East && North) return 7334; + if (!false && South && !West && !East && !North) return 7338; + if (false && South && West && East && North) return 7311; + if (false && !South && West && East && North) return 7315; + if (false && South && West && East && !North) return 7319; + if (false && !South && West && East && !North) return 7323; + if (false && South && West && !East && North) return 7327; + if (false && !South && West && !East && North) return 7331; + if (false && South && West && !East && !North) return 7335; + if (false && !South && West && !East && !North) return 7339; + if (false && South && !West && East && North) return 7312; + if (false && !South && !West && East && North) return 7316; + if (false && South && !West && East && !North) return 7320; + if (false && !South && !West && East && !North) return 7324; + if (false && South && !West && !East && North) return 7328; + if (false && !South && !West && !East && North) return 7332; + if (false && South && !West && !East && !North) return 7336; + if (false && !South && !West && !East && !North) return 7340; + if (!false && South && West && East && North) return 7313; + if (!false && !South && West && East && North) return 7317; + if (!false && South && West && East && !North) return 7321; + if (!false && !South && West && East && !North) return 7325; + if (!false && South && West && !East && North) return 7329; + if (!false && !South && West && !East && North) return 7333; + if (!false && South && West && !East && !North) return 7337; + if (!false && !South && West && !East && !North) return 7341; + if (!false && South && !West && East && North) return 7314; + if (!false && !South && !West && East && North) return 7318; + if (!false && South && !West && East && !North) return 7322; + if (!false && !South && !West && East && !North) return 7326; + if (!false && South && !West && !East && North) return 7330; + return 7342; + } + short RedStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace RedTerracotta + { + constexpr short RedTerracotta() + { + return 6861; + } + } + namespace RedTulip + { + constexpr short RedTulip() + { + return 1417; + } + } + namespace RedWallBanner + { + constexpr short RedWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8211; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8210; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8209; + return 8212; + } + short RedWallBanner(); + eBlockFace Facing(short ID); + } + namespace RedWool + { + constexpr short RedWool() + { + return 1398; + } + } + namespace RedstoneBlock + { + constexpr short RedstoneBlock() + { + return 6726; + } + } + namespace RedstoneLamp + { + constexpr short RedstoneLamp(bool Lit) + { + if (Lit) return 5156; + return 5157; + } + short RedstoneLamp(); + bool Lit(short ID); + } + namespace RedstoneOre + { + constexpr short RedstoneOre(bool Lit) + { + if (Lit) return 3885; + return 3886; + } + short RedstoneOre(); + bool Lit(short ID); + } + namespace RedstoneTorch + { + constexpr short RedstoneTorch(bool Lit) + { + if (Lit) return 3887; + return 3888; + } + short RedstoneTorch(); + bool Lit(short ID); + } + namespace RedstoneWallTorch + { + constexpr short RedstoneWallTorch(eBlockFace Facing, bool Lit) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM && !Lit) return 3890; + if (Facing == eBlockFace::BLOCK_FACE_ZP && Lit) return 3891; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !Lit) return 3892; + if (Facing == eBlockFace::BLOCK_FACE_XM && Lit) return 3893; + if (Facing == eBlockFace::BLOCK_FACE_XM && !Lit) return 3894; + if (Facing == eBlockFace::BLOCK_FACE_XP && Lit) return 3895; + if (Facing == eBlockFace::BLOCK_FACE_ZM && Lit) return 3889; + return 3896; + } + short RedstoneWallTorch(); + eBlockFace Facing(short ID); + bool Lit(short ID); + } + namespace RedstoneWire + { + enum class East + { + Up, + Side, + None + }; + enum class North + { + Up, + Side, + None + }; + enum class South + { + Up, + Side, + None + }; + enum class West + { + Up, + Side, + None + }; + constexpr short RedstoneWire(enum East East, enum North North, unsigned char Power, enum South South, enum West West) + { + if (Power == 15 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 3061; + if (Power == 15 && South == South::None && West == West::None && East == East::None && North == North::Up) return 3065; + if (Power == 0 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3069; + if (Power == 0 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3073; + if (Power == 1 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3077; + if (Power == 1 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3081; + if (Power == 2 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3085; + if (Power == 2 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3089; + if (Power == 3 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3093; + if (Power == 3 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3097; + if (Power == 3 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3101; + if (Power == 4 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3105; + if (Power == 4 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3109; + if (Power == 5 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3113; + if (Power == 5 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3117; + if (Power == 6 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3121; + if (Power == 6 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3125; + if (Power == 7 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3129; + if (Power == 7 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3133; + if (Power == 7 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3137; + if (Power == 8 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3141; + if (Power == 8 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3145; + if (Power == 9 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3149; + if (Power == 9 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3153; + if (Power == 10 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3157; + if (Power == 10 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3161; + if (Power == 11 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3165; + if (Power == 11 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3169; + if (Power == 11 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3173; + if (Power == 12 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3177; + if (Power == 12 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3181; + if (Power == 13 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3185; + if (Power == 13 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3189; + if (Power == 14 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3193; + if (Power == 14 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3197; + if (Power == 15 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3201; + if (Power == 15 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3205; + if (Power == 15 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3209; + if (Power == 0 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3213; + if (Power == 0 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3217; + if (Power == 1 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3221; + if (Power == 1 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3225; + if (Power == 2 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3229; + if (Power == 2 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3233; + if (Power == 3 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3237; + if (Power == 3 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3241; + if (Power == 3 && South == South::None && West == West::None && East == East::None && North == North::None) return 3245; + if (Power == 4 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3249; + if (Power == 4 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3253; + if (Power == 5 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3257; + if (Power == 5 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3261; + if (Power == 6 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3265; + if (Power == 6 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3269; + if (Power == 7 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3273; + if (Power == 7 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3277; + if (Power == 7 && South == South::None && West == West::None && East == East::None && North == North::None) return 3281; + if (Power == 8 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3285; + if (Power == 8 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3289; + if (Power == 9 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3293; + if (Power == 9 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3297; + if (Power == 10 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3301; + if (Power == 10 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3305; + if (Power == 11 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3309; + if (Power == 11 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3313; + if (Power == 11 && South == South::None && West == West::None && East == East::None && North == North::None) return 3317; + if (Power == 12 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3321; + if (Power == 12 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3325; + if (Power == 13 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3329; + if (Power == 13 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3333; + if (Power == 14 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3337; + if (Power == 14 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3341; + if (Power == 15 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3345; + if (Power == 15 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3349; + if (Power == 15 && South == South::None && West == West::None && East == East::None && North == North::None) return 3353; + if (Power == 0 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2058; + if (Power == 0 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2062; + if (Power == 0 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2066; + if (Power == 1 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2070; + if (Power == 1 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2074; + if (Power == 2 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2078; + if (Power == 2 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2082; + if (Power == 3 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2086; + if (Power == 3 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2090; + if (Power == 4 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2094; + if (Power == 4 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2098; + if (Power == 4 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2102; + if (Power == 5 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2106; + if (Power == 5 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2110; + if (Power == 6 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2114; + if (Power == 6 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2118; + if (Power == 7 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2122; + if (Power == 7 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2126; + if (Power == 8 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2130; + if (Power == 8 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2134; + if (Power == 8 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2138; + if (Power == 9 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2142; + if (Power == 9 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2146; + if (Power == 10 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2150; + if (Power == 10 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2154; + if (Power == 11 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2158; + if (Power == 11 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2162; + if (Power == 12 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2166; + if (Power == 12 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2170; + if (Power == 12 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2174; + if (Power == 13 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2178; + if (Power == 13 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2182; + if (Power == 14 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2186; + if (Power == 14 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2190; + if (Power == 15 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2194; + if (Power == 15 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2198; + if (Power == 0 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2202; + if (Power == 0 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2206; + if (Power == 0 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2210; + if (Power == 1 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2214; + if (Power == 1 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2218; + if (Power == 2 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2222; + if (Power == 2 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2226; + if (Power == 3 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2230; + if (Power == 3 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2234; + if (Power == 4 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2238; + if (Power == 4 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2242; + if (Power == 4 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2246; + if (Power == 5 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2250; + if (Power == 5 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2254; + if (Power == 6 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2258; + if (Power == 6 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2262; + if (Power == 7 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2266; + if (Power == 7 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2270; + if (Power == 8 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2274; + if (Power == 8 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2278; + if (Power == 8 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2282; + if (Power == 9 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2286; + if (Power == 9 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2290; + if (Power == 10 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2294; + if (Power == 10 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2298; + if (Power == 11 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2302; + if (Power == 11 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2306; + if (Power == 12 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2310; + if (Power == 12 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2314; + if (Power == 12 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2318; + if (Power == 13 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2322; + if (Power == 13 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2326; + if (Power == 14 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2330; + if (Power == 14 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2334; + if (Power == 15 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2338; + if (Power == 15 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2342; + if (Power == 0 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2346; + if (Power == 0 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2350; + if (Power == 0 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2354; + if (Power == 1 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2358; + if (Power == 1 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2362; + if (Power == 2 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2366; + if (Power == 2 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2370; + if (Power == 3 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2374; + if (Power == 3 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2378; + if (Power == 4 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2382; + if (Power == 4 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2386; + if (Power == 4 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2390; + if (Power == 5 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2394; + if (Power == 5 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2398; + if (Power == 6 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2402; + if (Power == 6 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2406; + if (Power == 7 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2410; + if (Power == 7 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2414; + if (Power == 8 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2418; + if (Power == 8 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2422; + if (Power == 8 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2426; + if (Power == 9 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2430; + if (Power == 9 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2434; + if (Power == 10 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2438; + if (Power == 10 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2442; + if (Power == 11 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2446; + if (Power == 11 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2450; + if (Power == 12 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2454; + if (Power == 12 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2458; + if (Power == 12 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2462; + if (Power == 13 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2466; + if (Power == 13 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2470; + if (Power == 14 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2474; + if (Power == 14 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2478; + if (Power == 15 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2482; + if (Power == 15 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2486; + if (Power == 0 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2490; + if (Power == 0 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2494; + if (Power == 0 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2498; + if (Power == 1 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2502; + if (Power == 1 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2506; + if (Power == 2 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2510; + if (Power == 2 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2514; + if (Power == 3 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2518; + if (Power == 3 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2522; + if (Power == 4 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2526; + if (Power == 4 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2530; + if (Power == 4 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2534; + if (Power == 5 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2538; + if (Power == 5 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2542; + if (Power == 6 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2546; + if (Power == 6 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2550; + if (Power == 7 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2554; + if (Power == 7 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2558; + if (Power == 8 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2562; + if (Power == 8 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2566; + if (Power == 8 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2570; + if (Power == 9 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2574; + if (Power == 9 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2578; + if (Power == 10 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2582; + if (Power == 10 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2586; + if (Power == 11 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2590; + if (Power == 11 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2594; + if (Power == 12 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2598; + if (Power == 12 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2602; + if (Power == 12 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2606; + if (Power == 13 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2610; + if (Power == 13 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2614; + if (Power == 14 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2618; + if (Power == 14 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2622; + if (Power == 15 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2626; + if (Power == 15 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2630; + if (Power == 0 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2634; + if (Power == 0 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2638; + if (Power == 0 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2642; + if (Power == 1 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2646; + if (Power == 1 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2650; + if (Power == 2 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2654; + if (Power == 2 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2658; + if (Power == 3 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2662; + if (Power == 3 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2666; + if (Power == 4 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2670; + if (Power == 4 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2674; + if (Power == 4 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2678; + if (Power == 5 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2682; + if (Power == 5 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2686; + if (Power == 6 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2690; + if (Power == 6 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2694; + if (Power == 7 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2698; + if (Power == 7 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2702; + if (Power == 8 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2706; + if (Power == 8 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2710; + if (Power == 8 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2714; + if (Power == 9 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2718; + if (Power == 9 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2722; + if (Power == 10 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2726; + if (Power == 10 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2730; + if (Power == 11 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2734; + if (Power == 11 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2738; + if (Power == 12 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2742; + if (Power == 12 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2746; + if (Power == 12 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2750; + if (Power == 13 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2754; + if (Power == 13 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2758; + if (Power == 14 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2762; + if (Power == 14 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2766; + if (Power == 15 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2770; + if (Power == 15 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2774; + if (Power == 0 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2778; + if (Power == 0 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2782; + if (Power == 0 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2786; + if (Power == 1 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2790; + if (Power == 1 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2794; + if (Power == 2 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2798; + if (Power == 2 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2802; + if (Power == 3 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2806; + if (Power == 3 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2810; + if (Power == 4 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2814; + if (Power == 4 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2818; + if (Power == 4 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2822; + if (Power == 5 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2826; + if (Power == 5 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2830; + if (Power == 6 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2834; + if (Power == 6 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2838; + if (Power == 7 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2842; + if (Power == 7 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2846; + if (Power == 8 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2850; + if (Power == 8 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2854; + if (Power == 8 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2858; + if (Power == 9 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2862; + if (Power == 9 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2866; + if (Power == 10 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2870; + if (Power == 10 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2874; + if (Power == 11 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2878; + if (Power == 11 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2882; + if (Power == 12 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2886; + if (Power == 12 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2890; + if (Power == 12 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2894; + if (Power == 13 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2898; + if (Power == 13 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2902; + if (Power == 14 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2906; + if (Power == 14 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2910; + if (Power == 15 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2914; + if (Power == 15 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2918; + if (Power == 0 && South == South::Up && West == West::Up && East == East::None && North == North::Up) return 2922; + if (Power == 0 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 2926; + if (Power == 0 && South == South::None && West == West::None && East == East::None && North == North::Up) return 2930; + if (Power == 1 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 2934; + if (Power == 1 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 2938; + if (Power == 2 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 2942; + if (Power == 2 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 2946; + if (Power == 3 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 2950; + if (Power == 3 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 2954; + if (Power == 4 && South == South::Up && West == West::Up && East == East::None && North == North::Up) return 2958; + if (Power == 4 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 2962; + if (Power == 4 && South == South::None && West == West::None && East == East::None && North == North::Up) return 2966; + if (Power == 5 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 2970; + if (Power == 5 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 2974; + if (Power == 6 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 2978; + if (Power == 6 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 2982; + if (Power == 7 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 2986; + if (Power == 7 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 2990; + if (Power == 8 && South == South::Up && West == West::Up && East == East::None && North == North::Up) return 2994; + if (Power == 8 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 2998; + if (Power == 8 && South == South::None && West == West::None && East == East::None && North == North::Up) return 3002; + if (Power == 9 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 3006; + if (Power == 9 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 3010; + if (Power == 10 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 3014; + if (Power == 10 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 3018; + if (Power == 11 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 3022; + if (Power == 11 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 3026; + if (Power == 12 && South == South::Up && West == West::Up && East == East::None && North == North::Up) return 3030; + if (Power == 12 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 3034; + if (Power == 12 && South == South::None && West == West::None && East == East::None && North == North::Up) return 3038; + if (Power == 13 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 3042; + if (Power == 13 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 3046; + if (Power == 14 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 3050; + if (Power == 14 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 3054; + if (Power == 15 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 3058; + if (Power == 15 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 3062; + if (Power == 0 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3066; + if (Power == 0 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3070; + if (Power == 0 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3074; + if (Power == 1 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3078; + if (Power == 1 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3082; + if (Power == 2 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3086; + if (Power == 2 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3090; + if (Power == 3 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3094; + if (Power == 3 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3098; + if (Power == 4 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3102; + if (Power == 4 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3106; + if (Power == 4 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3110; + if (Power == 5 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3114; + if (Power == 5 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3118; + if (Power == 6 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3122; + if (Power == 6 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3126; + if (Power == 7 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3130; + if (Power == 7 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3134; + if (Power == 8 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3138; + if (Power == 8 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3142; + if (Power == 8 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3146; + if (Power == 9 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3150; + if (Power == 9 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3154; + if (Power == 10 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3158; + if (Power == 10 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3162; + if (Power == 11 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3166; + if (Power == 11 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3170; + if (Power == 12 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3174; + if (Power == 12 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3178; + if (Power == 12 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3182; + if (Power == 13 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3186; + if (Power == 13 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3190; + if (Power == 14 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3194; + if (Power == 14 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3198; + if (Power == 15 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3202; + if (Power == 15 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3206; + if (Power == 0 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3210; + if (Power == 0 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3214; + if (Power == 0 && South == South::None && West == West::None && East == East::None && North == North::None) return 3218; + if (Power == 1 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3222; + if (Power == 1 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3226; + if (Power == 2 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3230; + if (Power == 2 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3234; + if (Power == 3 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3238; + if (Power == 3 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3242; + if (Power == 4 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3246; + if (Power == 4 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3250; + if (Power == 4 && South == South::None && West == West::None && East == East::None && North == North::None) return 3254; + if (Power == 5 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3258; + if (Power == 5 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3262; + if (Power == 6 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3266; + if (Power == 6 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3270; + if (Power == 7 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3274; + if (Power == 7 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3278; + if (Power == 8 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3282; + if (Power == 8 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3286; + if (Power == 8 && South == South::None && West == West::None && East == East::None && North == North::None) return 3290; + if (Power == 9 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3294; + if (Power == 9 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3298; + if (Power == 10 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3302; + if (Power == 10 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3306; + if (Power == 11 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3310; + if (Power == 11 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3314; + if (Power == 12 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3318; + if (Power == 12 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3322; + if (Power == 12 && South == South::None && West == West::None && East == East::None && North == North::None) return 3326; + if (Power == 13 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3330; + if (Power == 13 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3334; + if (Power == 14 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3338; + if (Power == 14 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3342; + if (Power == 15 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3346; + if (Power == 15 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3350; + if (Power == 0 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2059; + if (Power == 0 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2063; + if (Power == 1 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2067; + if (Power == 1 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2071; + if (Power == 1 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2075; + if (Power == 2 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2079; + if (Power == 2 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2083; + if (Power == 3 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2087; + if (Power == 3 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2091; + if (Power == 4 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2095; + if (Power == 4 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2099; + if (Power == 5 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2103; + if (Power == 5 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2107; + if (Power == 5 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2111; + if (Power == 6 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2115; + if (Power == 6 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2119; + if (Power == 7 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2123; + if (Power == 7 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2127; + if (Power == 8 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2131; + if (Power == 8 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2135; + if (Power == 9 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2139; + if (Power == 9 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2143; + if (Power == 9 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2147; + if (Power == 10 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2151; + if (Power == 10 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2155; + if (Power == 11 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2159; + if (Power == 11 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2163; + if (Power == 12 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2167; + if (Power == 12 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2171; + if (Power == 13 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2175; + if (Power == 13 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2179; + if (Power == 13 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2183; + if (Power == 14 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2187; + if (Power == 14 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2191; + if (Power == 15 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2195; + if (Power == 15 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2199; + if (Power == 0 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2203; + if (Power == 0 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2207; + if (Power == 1 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2211; + if (Power == 1 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2215; + if (Power == 1 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2219; + if (Power == 2 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2223; + if (Power == 2 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2227; + if (Power == 3 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2231; + if (Power == 3 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2235; + if (Power == 4 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2239; + if (Power == 4 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2243; + if (Power == 5 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2247; + if (Power == 5 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2251; + if (Power == 5 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2255; + if (Power == 6 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2259; + if (Power == 6 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2263; + if (Power == 7 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2267; + if (Power == 7 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2271; + if (Power == 8 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2275; + if (Power == 8 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2279; + if (Power == 9 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2283; + if (Power == 9 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2287; + if (Power == 9 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2291; + if (Power == 10 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2295; + if (Power == 10 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2299; + if (Power == 11 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2303; + if (Power == 11 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2307; + if (Power == 12 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2311; + if (Power == 12 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2315; + if (Power == 13 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2319; + if (Power == 13 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2323; + if (Power == 13 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2327; + if (Power == 14 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2331; + if (Power == 14 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2335; + if (Power == 15 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2339; + if (Power == 15 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2343; + if (Power == 0 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2347; + if (Power == 0 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2351; + if (Power == 1 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2355; + if (Power == 1 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2359; + if (Power == 1 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2363; + if (Power == 2 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2367; + if (Power == 2 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2371; + if (Power == 3 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2375; + if (Power == 3 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2379; + if (Power == 4 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2383; + if (Power == 4 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2387; + if (Power == 5 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2391; + if (Power == 5 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2395; + if (Power == 5 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2399; + if (Power == 6 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2403; + if (Power == 6 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2407; + if (Power == 7 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2411; + if (Power == 7 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2415; + if (Power == 8 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2419; + if (Power == 8 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2423; + if (Power == 9 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2427; + if (Power == 9 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2431; + if (Power == 9 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2435; + if (Power == 10 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2439; + if (Power == 10 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2443; + if (Power == 11 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2447; + if (Power == 11 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2451; + if (Power == 12 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2455; + if (Power == 12 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2459; + if (Power == 13 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2463; + if (Power == 13 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2467; + if (Power == 13 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2471; + if (Power == 14 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2475; + if (Power == 14 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2479; + if (Power == 15 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2483; + if (Power == 15 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2487; + if (Power == 0 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2491; + if (Power == 0 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2495; + if (Power == 1 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2499; + if (Power == 1 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2503; + if (Power == 1 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2507; + if (Power == 2 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2511; + if (Power == 2 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2515; + if (Power == 3 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2519; + if (Power == 3 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2523; + if (Power == 4 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2527; + if (Power == 4 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2531; + if (Power == 5 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2535; + if (Power == 5 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2539; + if (Power == 5 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2543; + if (Power == 6 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2547; + if (Power == 6 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2551; + if (Power == 7 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2555; + if (Power == 7 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2559; + if (Power == 8 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2563; + if (Power == 8 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2567; + if (Power == 9 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2571; + if (Power == 9 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2575; + if (Power == 9 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2579; + if (Power == 10 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2583; + if (Power == 10 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2587; + if (Power == 11 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2591; + if (Power == 11 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2595; + if (Power == 12 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2599; + if (Power == 12 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2603; + if (Power == 13 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2607; + if (Power == 13 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2611; + if (Power == 13 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2615; + if (Power == 14 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2619; + if (Power == 14 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2623; + if (Power == 15 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2627; + if (Power == 15 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2631; + if (Power == 0 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2635; + if (Power == 0 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2639; + if (Power == 1 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2643; + if (Power == 1 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2647; + if (Power == 1 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2651; + if (Power == 2 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2655; + if (Power == 2 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2659; + if (Power == 3 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2663; + if (Power == 3 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2667; + if (Power == 4 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2671; + if (Power == 4 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2675; + if (Power == 5 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2679; + if (Power == 5 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2683; + if (Power == 5 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2687; + if (Power == 6 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2691; + if (Power == 6 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2695; + if (Power == 7 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2699; + if (Power == 7 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2703; + if (Power == 8 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2707; + if (Power == 8 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2711; + if (Power == 9 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2715; + if (Power == 9 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2719; + if (Power == 9 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2723; + if (Power == 10 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2727; + if (Power == 10 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2731; + if (Power == 11 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2735; + if (Power == 11 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2739; + if (Power == 12 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2743; + if (Power == 12 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2747; + if (Power == 13 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2751; + if (Power == 13 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2755; + if (Power == 13 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2759; + if (Power == 14 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2763; + if (Power == 14 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2767; + if (Power == 15 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2771; + if (Power == 15 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2775; + if (Power == 0 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2779; + if (Power == 0 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2783; + if (Power == 1 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2787; + if (Power == 1 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2791; + if (Power == 1 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2795; + if (Power == 2 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2799; + if (Power == 2 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2803; + if (Power == 3 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2807; + if (Power == 3 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2811; + if (Power == 4 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2815; + if (Power == 4 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2819; + if (Power == 5 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2823; + if (Power == 5 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2827; + if (Power == 5 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2831; + if (Power == 6 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2835; + if (Power == 6 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2839; + if (Power == 7 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2843; + if (Power == 7 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2847; + if (Power == 8 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2851; + if (Power == 8 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2855; + if (Power == 9 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2859; + if (Power == 9 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2863; + if (Power == 9 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2867; + if (Power == 10 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2871; + if (Power == 10 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2875; + if (Power == 11 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2879; + if (Power == 11 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2883; + if (Power == 12 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2887; + if (Power == 12 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2891; + if (Power == 13 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2895; + if (Power == 13 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2899; + if (Power == 13 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2903; + if (Power == 14 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2907; + if (Power == 14 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2911; + if (Power == 15 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2915; + if (Power == 15 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2919; + if (Power == 0 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 2923; + if (Power == 0 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 2927; + if (Power == 1 && South == South::Up && West == West::Up && East == East::None && North == North::Up) return 2931; + if (Power == 1 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 2935; + if (Power == 1 && South == South::None && West == West::None && East == East::None && North == North::Up) return 2939; + if (Power == 2 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 2943; + if (Power == 2 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 2947; + if (Power == 3 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 2951; + if (Power == 3 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 2955; + if (Power == 4 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 2959; + if (Power == 4 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 2963; + if (Power == 5 && South == South::Up && West == West::Up && East == East::None && North == North::Up) return 2967; + if (Power == 5 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 2971; + if (Power == 5 && South == South::None && West == West::None && East == East::None && North == North::Up) return 2975; + if (Power == 6 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 2979; + if (Power == 6 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 2983; + if (Power == 7 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 2987; + if (Power == 7 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 2991; + if (Power == 8 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 2995; + if (Power == 8 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 2999; + if (Power == 9 && South == South::Up && West == West::Up && East == East::None && North == North::Up) return 3003; + if (Power == 9 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 3007; + if (Power == 9 && South == South::None && West == West::None && East == East::None && North == North::Up) return 3011; + if (Power == 10 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 3015; + if (Power == 10 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 3019; + if (Power == 11 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 3023; + if (Power == 11 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 3027; + if (Power == 12 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 3031; + if (Power == 12 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 3035; + if (Power == 13 && South == South::Up && West == West::Up && East == East::None && North == North::Up) return 3039; + if (Power == 13 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 3043; + if (Power == 13 && South == South::None && West == West::None && East == East::None && North == North::Up) return 3047; + if (Power == 14 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 3051; + if (Power == 14 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 3055; + if (Power == 15 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 3059; + if (Power == 15 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 3063; + if (Power == 0 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3067; + if (Power == 0 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3071; + if (Power == 1 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3075; + if (Power == 1 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3079; + if (Power == 1 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3083; + if (Power == 2 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3087; + if (Power == 2 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3091; + if (Power == 3 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3095; + if (Power == 3 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3099; + if (Power == 4 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3103; + if (Power == 4 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3107; + if (Power == 5 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3111; + if (Power == 5 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3115; + if (Power == 5 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3119; + if (Power == 6 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3123; + if (Power == 6 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3127; + if (Power == 7 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3131; + if (Power == 7 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3135; + if (Power == 8 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3139; + if (Power == 8 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3143; + if (Power == 9 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3147; + if (Power == 9 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3151; + if (Power == 9 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3155; + if (Power == 10 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3159; + if (Power == 10 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3163; + if (Power == 11 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3167; + if (Power == 11 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3171; + if (Power == 12 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3175; + if (Power == 12 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3179; + if (Power == 13 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3183; + if (Power == 13 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3187; + if (Power == 13 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3191; + if (Power == 14 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3195; + if (Power == 14 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3199; + if (Power == 15 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3203; + if (Power == 15 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3207; + if (Power == 0 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3211; + if (Power == 0 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3215; + if (Power == 1 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3219; + if (Power == 1 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3223; + if (Power == 1 && South == South::None && West == West::None && East == East::None && North == North::None) return 3227; + if (Power == 2 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3231; + if (Power == 2 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3235; + if (Power == 3 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3239; + if (Power == 3 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3243; + if (Power == 4 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3247; + if (Power == 4 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3251; + if (Power == 5 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3255; + if (Power == 5 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3259; + if (Power == 5 && South == South::None && West == West::None && East == East::None && North == North::None) return 3263; + if (Power == 6 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3267; + if (Power == 6 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3271; + if (Power == 7 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3275; + if (Power == 7 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3279; + if (Power == 8 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3283; + if (Power == 8 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3287; + if (Power == 9 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3291; + if (Power == 9 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3295; + if (Power == 9 && South == South::None && West == West::None && East == East::None && North == North::None) return 3299; + if (Power == 10 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3303; + if (Power == 10 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3307; + if (Power == 11 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3311; + if (Power == 11 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3315; + if (Power == 12 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3319; + if (Power == 12 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3323; + if (Power == 13 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3327; + if (Power == 13 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3331; + if (Power == 13 && South == South::None && West == West::None && East == East::None && North == North::None) return 3335; + if (Power == 14 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3339; + if (Power == 14 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3343; + if (Power == 15 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3347; + if (Power == 15 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3351; + if (Power == 0 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2060; + if (Power == 0 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2064; + if (Power == 1 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2068; + if (Power == 1 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2072; + if (Power == 2 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2076; + if (Power == 2 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2080; + if (Power == 2 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2084; + if (Power == 3 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2088; + if (Power == 3 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2092; + if (Power == 4 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2096; + if (Power == 4 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2100; + if (Power == 5 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2104; + if (Power == 5 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2108; + if (Power == 6 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2112; + if (Power == 6 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2116; + if (Power == 6 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2120; + if (Power == 7 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2124; + if (Power == 7 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2128; + if (Power == 8 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2132; + if (Power == 8 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2136; + if (Power == 9 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2140; + if (Power == 9 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2144; + if (Power == 10 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2148; + if (Power == 10 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2152; + if (Power == 10 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2156; + if (Power == 11 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2160; + if (Power == 11 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2164; + if (Power == 12 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2168; + if (Power == 12 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2172; + if (Power == 13 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2176; + if (Power == 13 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2180; + if (Power == 14 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2184; + if (Power == 14 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2188; + if (Power == 14 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2192; + if (Power == 15 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2196; + if (Power == 15 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2200; + if (Power == 0 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2204; + if (Power == 0 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2208; + if (Power == 1 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2212; + if (Power == 1 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2216; + if (Power == 2 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2220; + if (Power == 2 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2224; + if (Power == 2 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2228; + if (Power == 3 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2232; + if (Power == 3 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2236; + if (Power == 4 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2240; + if (Power == 4 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2244; + if (Power == 5 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2248; + if (Power == 5 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2252; + if (Power == 6 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2256; + if (Power == 6 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2260; + if (Power == 6 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2264; + if (Power == 7 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2268; + if (Power == 7 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2272; + if (Power == 8 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2276; + if (Power == 8 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2280; + if (Power == 9 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2284; + if (Power == 9 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2288; + if (Power == 10 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2292; + if (Power == 10 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2296; + if (Power == 10 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2300; + if (Power == 11 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2304; + if (Power == 11 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2308; + if (Power == 12 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2312; + if (Power == 12 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2316; + if (Power == 13 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2320; + if (Power == 13 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2324; + if (Power == 14 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2328; + if (Power == 14 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2332; + if (Power == 14 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2336; + if (Power == 15 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2340; + if (Power == 15 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2344; + if (Power == 0 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2348; + if (Power == 0 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2352; + if (Power == 1 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2356; + if (Power == 1 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2360; + if (Power == 2 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2364; + if (Power == 2 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2368; + if (Power == 2 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2372; + if (Power == 3 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2376; + if (Power == 3 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2380; + if (Power == 4 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2384; + if (Power == 4 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2388; + if (Power == 5 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2392; + if (Power == 5 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2396; + if (Power == 6 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2400; + if (Power == 6 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2404; + if (Power == 6 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2408; + if (Power == 7 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2412; + if (Power == 7 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2416; + if (Power == 8 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2420; + if (Power == 8 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2424; + if (Power == 9 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2428; + if (Power == 9 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2432; + if (Power == 10 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2436; + if (Power == 10 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2440; + if (Power == 10 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2444; + if (Power == 11 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2448; + if (Power == 11 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2452; + if (Power == 12 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2456; + if (Power == 12 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2460; + if (Power == 13 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2464; + if (Power == 13 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2468; + if (Power == 14 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2472; + if (Power == 14 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2476; + if (Power == 14 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2480; + if (Power == 15 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2484; + if (Power == 15 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2488; + if (Power == 0 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2492; + if (Power == 0 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2496; + if (Power == 1 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2500; + if (Power == 1 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2504; + if (Power == 2 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2508; + if (Power == 2 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2512; + if (Power == 2 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2516; + if (Power == 3 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2520; + if (Power == 3 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2524; + if (Power == 4 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2528; + if (Power == 4 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2532; + if (Power == 5 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2536; + if (Power == 5 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2540; + if (Power == 6 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2544; + if (Power == 6 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2548; + if (Power == 6 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2552; + if (Power == 7 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2556; + if (Power == 7 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2560; + if (Power == 8 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2564; + if (Power == 8 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2568; + if (Power == 9 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2572; + if (Power == 9 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2576; + if (Power == 10 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2580; + if (Power == 10 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2584; + if (Power == 10 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2588; + if (Power == 11 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2592; + if (Power == 11 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2596; + if (Power == 12 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2600; + if (Power == 12 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2604; + if (Power == 13 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2608; + if (Power == 13 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2612; + if (Power == 14 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2616; + if (Power == 14 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2620; + if (Power == 14 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2624; + if (Power == 15 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2628; + if (Power == 15 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2632; + if (Power == 0 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2636; + if (Power == 0 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2640; + if (Power == 1 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2644; + if (Power == 1 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2648; + if (Power == 2 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2652; + if (Power == 2 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2656; + if (Power == 2 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2660; + if (Power == 3 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2664; + if (Power == 3 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2668; + if (Power == 4 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2672; + if (Power == 4 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2676; + if (Power == 5 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2680; + if (Power == 5 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2684; + if (Power == 6 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2688; + if (Power == 6 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2692; + if (Power == 6 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2696; + if (Power == 7 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2700; + if (Power == 7 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2704; + if (Power == 8 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2708; + if (Power == 8 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2712; + if (Power == 9 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2716; + if (Power == 9 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2720; + if (Power == 10 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2724; + if (Power == 10 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2728; + if (Power == 10 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2732; + if (Power == 11 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2736; + if (Power == 11 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2740; + if (Power == 12 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2744; + if (Power == 12 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2748; + if (Power == 13 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2752; + if (Power == 13 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2756; + if (Power == 14 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2760; + if (Power == 14 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2764; + if (Power == 14 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2768; + if (Power == 15 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2772; + if (Power == 15 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2776; + if (Power == 0 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2780; + if (Power == 0 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2784; + if (Power == 1 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2788; + if (Power == 1 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2792; + if (Power == 2 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2796; + if (Power == 2 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2800; + if (Power == 2 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2804; + if (Power == 3 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2808; + if (Power == 3 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2812; + if (Power == 4 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2816; + if (Power == 4 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2820; + if (Power == 5 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2824; + if (Power == 5 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2828; + if (Power == 6 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2832; + if (Power == 6 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2836; + if (Power == 6 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2840; + if (Power == 7 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2844; + if (Power == 7 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2848; + if (Power == 8 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2852; + if (Power == 8 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2856; + if (Power == 9 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2860; + if (Power == 9 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2864; + if (Power == 10 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2868; + if (Power == 10 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2872; + if (Power == 10 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2876; + if (Power == 11 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2880; + if (Power == 11 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2884; + if (Power == 12 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2888; + if (Power == 12 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2892; + if (Power == 13 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2896; + if (Power == 13 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2900; + if (Power == 14 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2904; + if (Power == 14 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2908; + if (Power == 14 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2912; + if (Power == 15 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2916; + if (Power == 15 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2920; + if (Power == 0 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 2924; + if (Power == 0 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 2928; + if (Power == 1 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 2932; + if (Power == 1 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 2936; + if (Power == 2 && South == South::Up && West == West::Up && East == East::None && North == North::Up) return 2940; + if (Power == 2 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 2944; + if (Power == 2 && South == South::None && West == West::None && East == East::None && North == North::Up) return 2948; + if (Power == 3 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 2952; + if (Power == 3 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 2956; + if (Power == 4 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 2960; + if (Power == 4 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 2964; + if (Power == 5 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 2968; + if (Power == 5 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 2972; + if (Power == 6 && South == South::Up && West == West::Up && East == East::None && North == North::Up) return 2976; + if (Power == 6 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 2980; + if (Power == 6 && South == South::None && West == West::None && East == East::None && North == North::Up) return 2984; + if (Power == 7 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 2988; + if (Power == 7 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 2992; + if (Power == 8 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 2996; + if (Power == 8 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 3000; + if (Power == 9 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 3004; + if (Power == 9 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 3008; + if (Power == 10 && South == South::Up && West == West::Up && East == East::None && North == North::Up) return 3012; + if (Power == 10 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 3016; + if (Power == 10 && South == South::None && West == West::None && East == East::None && North == North::Up) return 3020; + if (Power == 11 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 3024; + if (Power == 11 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 3028; + if (Power == 12 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 3032; + if (Power == 12 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 3036; + if (Power == 13 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 3040; + if (Power == 13 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 3044; + if (Power == 14 && South == South::Up && West == West::Up && East == East::None && North == North::Up) return 3048; + if (Power == 14 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 3052; + if (Power == 14 && South == South::None && West == West::None && East == East::None && North == North::Up) return 3056; + if (Power == 15 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 3060; + if (Power == 15 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 3064; + if (Power == 0 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3068; + if (Power == 0 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3072; + if (Power == 1 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3076; + if (Power == 1 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3080; + if (Power == 2 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3084; + if (Power == 2 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3088; + if (Power == 2 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3092; + if (Power == 3 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3096; + if (Power == 3 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3100; + if (Power == 4 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3104; + if (Power == 4 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3108; + if (Power == 5 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3112; + if (Power == 5 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3116; + if (Power == 6 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3120; + if (Power == 6 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3124; + if (Power == 6 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3128; + if (Power == 7 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3132; + if (Power == 7 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3136; + if (Power == 8 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3140; + if (Power == 8 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3144; + if (Power == 9 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3148; + if (Power == 9 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3152; + if (Power == 10 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3156; + if (Power == 10 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3160; + if (Power == 10 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3164; + if (Power == 11 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3168; + if (Power == 11 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3172; + if (Power == 12 && South == South::Up && West == West::None && East == East::None && North == North::Side) return 3176; + if (Power == 12 && South == South::None && West == West::Up && East == East::None && North == North::Side) return 3180; + if (Power == 13 && South == South::Up && West == West::Side && East == East::None && North == North::Side) return 3184; + if (Power == 13 && South == South::Side && West == West::None && East == East::None && North == North::Side) return 3188; + if (Power == 14 && South == South::Up && West == West::Up && East == East::None && North == North::Side) return 3192; + if (Power == 14 && South == South::Side && West == West::Side && East == East::None && North == North::Side) return 3196; + if (Power == 14 && South == South::None && West == West::None && East == East::None && North == North::Side) return 3200; + if (Power == 15 && South == South::Side && West == West::Up && East == East::None && North == North::Side) return 3204; + if (Power == 15 && South == South::None && West == West::Side && East == East::None && North == North::Side) return 3208; + if (Power == 0 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3212; + if (Power == 0 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3216; + if (Power == 1 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3220; + if (Power == 1 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3224; + if (Power == 2 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3228; + if (Power == 2 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3232; + if (Power == 2 && South == South::None && West == West::None && East == East::None && North == North::None) return 3236; + if (Power == 3 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3240; + if (Power == 3 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3244; + if (Power == 4 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3248; + if (Power == 4 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3252; + if (Power == 5 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3256; + if (Power == 5 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3260; + if (Power == 6 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3264; + if (Power == 6 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3268; + if (Power == 6 && South == South::None && West == West::None && East == East::None && North == North::None) return 3272; + if (Power == 7 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3276; + if (Power == 7 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3280; + if (Power == 8 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3284; + if (Power == 8 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3288; + if (Power == 9 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3292; + if (Power == 9 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3296; + if (Power == 10 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3300; + if (Power == 10 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3304; + if (Power == 10 && South == South::None && West == West::None && East == East::None && North == North::None) return 3308; + if (Power == 11 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3312; + if (Power == 11 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3316; + if (Power == 12 && South == South::Up && West == West::None && East == East::None && North == North::None) return 3320; + if (Power == 12 && South == South::None && West == West::Up && East == East::None && North == North::None) return 3324; + if (Power == 13 && South == South::Up && West == West::Side && East == East::None && North == North::None) return 3328; + if (Power == 13 && South == South::Side && West == West::None && East == East::None && North == North::None) return 3332; + if (Power == 14 && South == South::Up && West == West::Up && East == East::None && North == North::None) return 3336; + if (Power == 14 && South == South::Side && West == West::Side && East == East::None && North == North::None) return 3340; + if (Power == 14 && South == South::None && West == West::None && East == East::None && North == North::None) return 3344; + if (Power == 15 && South == South::Side && West == West::Up && East == East::None && North == North::None) return 3348; + if (Power == 15 && South == South::None && West == West::Side && East == East::None && North == North::None) return 3352; + if (Power == 0 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2061; + if (Power == 0 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2065; + if (Power == 1 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2069; + if (Power == 1 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2073; + if (Power == 2 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2077; + if (Power == 2 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2081; + if (Power == 3 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2085; + if (Power == 3 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2089; + if (Power == 3 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2093; + if (Power == 4 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2097; + if (Power == 4 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2101; + if (Power == 5 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2105; + if (Power == 5 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2109; + if (Power == 6 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2113; + if (Power == 6 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2117; + if (Power == 7 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2121; + if (Power == 7 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2125; + if (Power == 7 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2129; + if (Power == 8 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2133; + if (Power == 8 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2137; + if (Power == 9 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2141; + if (Power == 9 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2145; + if (Power == 10 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2149; + if (Power == 10 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2153; + if (Power == 11 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2157; + if (Power == 11 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2161; + if (Power == 11 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2165; + if (Power == 12 && South == South::Side && West == West::Up && East == East::Up && North == North::Up) return 2169; + if (Power == 12 && South == South::None && West == West::Side && East == East::Up && North == North::Up) return 2173; + if (Power == 13 && South == South::Up && West == West::None && East == East::Up && North == North::Up) return 2177; + if (Power == 13 && South == South::None && West == West::Up && East == East::Up && North == North::Up) return 2181; + if (Power == 14 && South == South::Up && West == West::Side && East == East::Up && North == North::Up) return 2185; + if (Power == 14 && South == South::Side && West == West::None && East == East::Up && North == North::Up) return 2189; + if (Power == 15 && South == South::Up && West == West::Up && East == East::Up && North == North::Up) return 2193; + if (Power == 15 && South == South::Side && West == West::Side && East == East::Up && North == North::Up) return 2197; + if (Power == 15 && South == South::None && West == West::None && East == East::Up && North == North::Up) return 2201; + if (Power == 0 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2205; + if (Power == 0 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2209; + if (Power == 1 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2213; + if (Power == 1 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2217; + if (Power == 2 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2221; + if (Power == 2 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2225; + if (Power == 3 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2229; + if (Power == 3 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2233; + if (Power == 3 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2237; + if (Power == 4 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2241; + if (Power == 4 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2245; + if (Power == 5 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2249; + if (Power == 5 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2253; + if (Power == 6 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2257; + if (Power == 6 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2261; + if (Power == 7 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2265; + if (Power == 7 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2269; + if (Power == 7 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2273; + if (Power == 8 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2277; + if (Power == 8 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2281; + if (Power == 9 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2285; + if (Power == 9 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2289; + if (Power == 10 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2293; + if (Power == 10 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2297; + if (Power == 11 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2301; + if (Power == 11 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2305; + if (Power == 11 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2309; + if (Power == 12 && South == South::Side && West == West::Up && East == East::Up && North == North::Side) return 2313; + if (Power == 12 && South == South::None && West == West::Side && East == East::Up && North == North::Side) return 2317; + if (Power == 13 && South == South::Up && West == West::None && East == East::Up && North == North::Side) return 2321; + if (Power == 13 && South == South::None && West == West::Up && East == East::Up && North == North::Side) return 2325; + if (Power == 14 && South == South::Up && West == West::Side && East == East::Up && North == North::Side) return 2329; + if (Power == 14 && South == South::Side && West == West::None && East == East::Up && North == North::Side) return 2333; + if (Power == 15 && South == South::Up && West == West::Up && East == East::Up && North == North::Side) return 2337; + if (Power == 15 && South == South::Side && West == West::Side && East == East::Up && North == North::Side) return 2341; + if (Power == 15 && South == South::None && West == West::None && East == East::Up && North == North::Side) return 2345; + if (Power == 0 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2349; + if (Power == 0 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2353; + if (Power == 1 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2357; + if (Power == 1 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2361; + if (Power == 2 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2365; + if (Power == 2 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2369; + if (Power == 3 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2373; + if (Power == 3 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2377; + if (Power == 3 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2381; + if (Power == 4 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2385; + if (Power == 4 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2389; + if (Power == 5 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2393; + if (Power == 5 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2397; + if (Power == 6 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2401; + if (Power == 6 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2405; + if (Power == 7 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2409; + if (Power == 7 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2413; + if (Power == 7 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2417; + if (Power == 8 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2421; + if (Power == 8 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2425; + if (Power == 9 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2429; + if (Power == 9 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2433; + if (Power == 10 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2437; + if (Power == 10 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2441; + if (Power == 11 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2445; + if (Power == 11 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2449; + if (Power == 11 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2453; + if (Power == 12 && South == South::Side && West == West::Up && East == East::Up && North == North::None) return 2457; + if (Power == 12 && South == South::None && West == West::Side && East == East::Up && North == North::None) return 2461; + if (Power == 13 && South == South::Up && West == West::None && East == East::Up && North == North::None) return 2465; + if (Power == 13 && South == South::None && West == West::Up && East == East::Up && North == North::None) return 2469; + if (Power == 14 && South == South::Up && West == West::Side && East == East::Up && North == North::None) return 2473; + if (Power == 14 && South == South::Side && West == West::None && East == East::Up && North == North::None) return 2477; + if (Power == 15 && South == South::Up && West == West::Up && East == East::Up && North == North::None) return 2481; + if (Power == 15 && South == South::Side && West == West::Side && East == East::Up && North == North::None) return 2485; + if (Power == 15 && South == South::None && West == West::None && East == East::Up && North == North::None) return 2489; + if (Power == 0 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2493; + if (Power == 0 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2497; + if (Power == 1 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2501; + if (Power == 1 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2505; + if (Power == 2 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2509; + if (Power == 2 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2513; + if (Power == 3 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2517; + if (Power == 3 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2521; + if (Power == 3 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2525; + if (Power == 4 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2529; + if (Power == 4 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2533; + if (Power == 5 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2537; + if (Power == 5 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2541; + if (Power == 6 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2545; + if (Power == 6 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2549; + if (Power == 7 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2553; + if (Power == 7 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2557; + if (Power == 7 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2561; + if (Power == 8 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2565; + if (Power == 8 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2569; + if (Power == 9 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2573; + if (Power == 9 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2577; + if (Power == 10 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2581; + if (Power == 10 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2585; + if (Power == 11 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2589; + if (Power == 11 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2593; + if (Power == 11 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2597; + if (Power == 12 && South == South::Side && West == West::Up && East == East::Side && North == North::Up) return 2601; + if (Power == 12 && South == South::None && West == West::Side && East == East::Side && North == North::Up) return 2605; + if (Power == 13 && South == South::Up && West == West::None && East == East::Side && North == North::Up) return 2609; + if (Power == 13 && South == South::None && West == West::Up && East == East::Side && North == North::Up) return 2613; + if (Power == 14 && South == South::Up && West == West::Side && East == East::Side && North == North::Up) return 2617; + if (Power == 14 && South == South::Side && West == West::None && East == East::Side && North == North::Up) return 2621; + if (Power == 15 && South == South::Up && West == West::Up && East == East::Side && North == North::Up) return 2625; + if (Power == 15 && South == South::Side && West == West::Side && East == East::Side && North == North::Up) return 2629; + if (Power == 15 && South == South::None && West == West::None && East == East::Side && North == North::Up) return 2633; + if (Power == 0 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2637; + if (Power == 0 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2641; + if (Power == 1 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2645; + if (Power == 1 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2649; + if (Power == 2 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2653; + if (Power == 2 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2657; + if (Power == 3 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2661; + if (Power == 3 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2665; + if (Power == 3 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2669; + if (Power == 4 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2673; + if (Power == 4 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2677; + if (Power == 5 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2681; + if (Power == 5 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2685; + if (Power == 6 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2689; + if (Power == 6 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2693; + if (Power == 7 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2697; + if (Power == 7 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2701; + if (Power == 7 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2705; + if (Power == 8 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2709; + if (Power == 8 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2713; + if (Power == 9 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2717; + if (Power == 9 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2721; + if (Power == 10 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2725; + if (Power == 10 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2729; + if (Power == 11 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2733; + if (Power == 11 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2737; + if (Power == 11 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2741; + if (Power == 12 && South == South::Side && West == West::Up && East == East::Side && North == North::Side) return 2745; + if (Power == 12 && South == South::None && West == West::Side && East == East::Side && North == North::Side) return 2749; + if (Power == 13 && South == South::Up && West == West::None && East == East::Side && North == North::Side) return 2753; + if (Power == 13 && South == South::None && West == West::Up && East == East::Side && North == North::Side) return 2757; + if (Power == 14 && South == South::Up && West == West::Side && East == East::Side && North == North::Side) return 2761; + if (Power == 14 && South == South::Side && West == West::None && East == East::Side && North == North::Side) return 2765; + if (Power == 15 && South == South::Up && West == West::Up && East == East::Side && North == North::Side) return 2769; + if (Power == 15 && South == South::Side && West == West::Side && East == East::Side && North == North::Side) return 2773; + if (Power == 15 && South == South::None && West == West::None && East == East::Side && North == North::Side) return 2777; + if (Power == 0 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2781; + if (Power == 0 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2785; + if (Power == 1 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2789; + if (Power == 1 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2793; + if (Power == 2 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2797; + if (Power == 2 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2801; + if (Power == 3 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2805; + if (Power == 3 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2809; + if (Power == 3 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2813; + if (Power == 4 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2817; + if (Power == 4 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2821; + if (Power == 5 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2825; + if (Power == 5 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2829; + if (Power == 6 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2833; + if (Power == 6 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2837; + if (Power == 7 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2841; + if (Power == 7 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2845; + if (Power == 7 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2849; + if (Power == 8 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2853; + if (Power == 8 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2857; + if (Power == 9 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2861; + if (Power == 9 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2865; + if (Power == 10 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2869; + if (Power == 10 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2873; + if (Power == 11 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2877; + if (Power == 11 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2881; + if (Power == 11 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2885; + if (Power == 12 && South == South::Side && West == West::Up && East == East::Side && North == North::None) return 2889; + if (Power == 12 && South == South::None && West == West::Side && East == East::Side && North == North::None) return 2893; + if (Power == 13 && South == South::Up && West == West::None && East == East::Side && North == North::None) return 2897; + if (Power == 13 && South == South::None && West == West::Up && East == East::Side && North == North::None) return 2901; + if (Power == 14 && South == South::Up && West == West::Side && East == East::Side && North == North::None) return 2905; + if (Power == 14 && South == South::Side && West == West::None && East == East::Side && North == North::None) return 2909; + if (Power == 15 && South == South::Up && West == West::Up && East == East::Side && North == North::None) return 2913; + if (Power == 15 && South == South::Side && West == West::Side && East == East::Side && North == North::None) return 2917; + if (Power == 15 && South == South::None && West == West::None && East == East::Side && North == North::None) return 2921; + if (Power == 0 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 2925; + if (Power == 0 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 2929; + if (Power == 1 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 2933; + if (Power == 1 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 2937; + if (Power == 2 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 2941; + if (Power == 2 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 2945; + if (Power == 3 && South == South::Up && West == West::Up && East == East::None && North == North::Up) return 2949; + if (Power == 3 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 2953; + if (Power == 3 && South == South::None && West == West::None && East == East::None && North == North::Up) return 2957; + if (Power == 4 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 2961; + if (Power == 4 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 2965; + if (Power == 5 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 2969; + if (Power == 5 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 2973; + if (Power == 6 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 2977; + if (Power == 6 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 2981; + if (Power == 7 && South == South::Up && West == West::Up && East == East::None && North == North::Up) return 2985; + if (Power == 7 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 2989; + if (Power == 7 && South == South::None && West == West::None && East == East::None && North == North::Up) return 2993; + if (Power == 8 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 2997; + if (Power == 8 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 3001; + if (Power == 9 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 3005; + if (Power == 9 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 3009; + if (Power == 10 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 3013; + if (Power == 10 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 3017; + if (Power == 11 && South == South::Up && West == West::Up && East == East::None && North == North::Up) return 3021; + if (Power == 11 && South == South::Side && West == West::Side && East == East::None && North == North::Up) return 3025; + if (Power == 11 && South == South::None && West == West::None && East == East::None && North == North::Up) return 3029; + if (Power == 12 && South == South::Side && West == West::Up && East == East::None && North == North::Up) return 3033; + if (Power == 12 && South == South::None && West == West::Side && East == East::None && North == North::Up) return 3037; + if (Power == 13 && South == South::Up && West == West::None && East == East::None && North == North::Up) return 3041; + if (Power == 13 && South == South::None && West == West::Up && East == East::None && North == North::Up) return 3045; + if (Power == 14 && South == South::Up && West == West::Side && East == East::None && North == North::Up) return 3049; + if (Power == 14 && South == South::Side && West == West::None && East == East::None && North == North::Up) return 3053; + return 3057; + } + short RedstoneWire(); + enum East East(short ID); + enum North North(short ID); + unsigned char Power(short ID); + enum South South(short ID); + enum West West(short ID); + } + namespace Repeater + { + constexpr short Repeater(unsigned char Delay, eBlockFace Facing, bool Locked, bool Powered) + { + if (Locked && Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4051; + if (Locked && Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XP) return 4059; + if (Locked && Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4067; + if (Locked && Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XP) return 4075; + if (Locked && Powered && Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4083; + if (Locked && Powered && Delay == 4 && Facing == eBlockFace::BLOCK_FACE_XP) return 4091; + if (Locked && !Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4036; + if (Locked && !Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XP) return 4044; + if (Locked && !Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4052; + if (Locked && !Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XP) return 4060; + if (Locked && !Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4068; + if (Locked && !Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XP) return 4076; + if (Locked && !Powered && Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4084; + if (Locked && !Powered && Delay == 4 && Facing == eBlockFace::BLOCK_FACE_XP) return 4092; + if (!Locked && Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4037; + if (!Locked && Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XP) return 4045; + if (!Locked && Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4053; + if (!Locked && Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XP) return 4061; + if (!Locked && Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4069; + if (!Locked && Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XP) return 4077; + if (!Locked && Powered && Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4085; + if (!Locked && Powered && Delay == 4 && Facing == eBlockFace::BLOCK_FACE_XP) return 4093; + if (!Locked && !Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4038; + if (!Locked && !Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XP) return 4046; + if (!Locked && !Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4054; + if (!Locked && !Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XP) return 4062; + if (!Locked && !Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4070; + if (!Locked && !Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XP) return 4078; + if (!Locked && !Powered && Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4086; + if (Locked && Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4031; + if (Locked && Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XM) return 4039; + if (Locked && Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4047; + if (Locked && Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XM) return 4055; + if (Locked && Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4063; + if (Locked && Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XM) return 4071; + if (Locked && Powered && Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4079; + if (Locked && Powered && Delay == 4 && Facing == eBlockFace::BLOCK_FACE_XM) return 4087; + if (Locked && !Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4032; + if (Locked && !Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XM) return 4040; + if (Locked && !Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4048; + if (Locked && !Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XM) return 4056; + if (Locked && !Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4064; + if (Locked && !Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XM) return 4072; + if (Locked && !Powered && Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4080; + if (Locked && !Powered && Delay == 4 && Facing == eBlockFace::BLOCK_FACE_XM) return 4088; + if (!Locked && Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4033; + if (!Locked && Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XM) return 4041; + if (!Locked && Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4049; + if (!Locked && Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XM) return 4057; + if (!Locked && Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4065; + if (!Locked && Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XM) return 4073; + if (!Locked && Powered && Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4081; + if (!Locked && Powered && Delay == 4 && Facing == eBlockFace::BLOCK_FACE_XM) return 4089; + if (!Locked && !Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4034; + if (!Locked && !Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XM) return 4042; + if (!Locked && !Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4050; + if (!Locked && !Powered && Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XM) return 4058; + if (!Locked && !Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4066; + if (!Locked && !Powered && Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XM) return 4074; + if (!Locked && !Powered && Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZM) return 4082; + if (!Locked && !Powered && Delay == 4 && Facing == eBlockFace::BLOCK_FACE_XM) return 4090; + if (Locked && Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZP) return 4035; + if (Locked && Powered && Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XP) return 4043; + return 4094; + } + short Repeater(); + unsigned char Delay(short ID); + eBlockFace Facing(short ID); + bool Locked(short ID); + bool Powered(short ID); + } + namespace RepeatingCommandBlock + { + constexpr short RepeatingCommandBlock(bool Conditional, eBlockFace Facing) + { + if (Conditional && Facing == eBlockFace::BLOCK_FACE_ZM) return 9225; + if (Conditional && Facing == eBlockFace::BLOCK_FACE_ZP) return 9227; + if (Conditional && Facing == eBlockFace::BLOCK_FACE_YP) return 9229; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_ZM) return 9231; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_ZP) return 9233; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_YP) return 9235; + if (Conditional && Facing == eBlockFace::BLOCK_FACE_XP) return 9226; + if (Conditional && Facing == eBlockFace::BLOCK_FACE_XM) return 9228; + if (Conditional && Facing == eBlockFace::BLOCK_FACE_YM) return 9230; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_XP) return 9232; + if (!Conditional && Facing == eBlockFace::BLOCK_FACE_XM) return 9234; + return 9236; + } + short RepeatingCommandBlock(); + bool Conditional(short ID); + eBlockFace Facing(short ID); + } + namespace RespawnAnchor + { + constexpr short RespawnAnchor(unsigned char Charges) + { + if (Charges == 0) return 15829; + if (Charges == 4) return 15833; + if (Charges == 1) return 15830; + if (Charges == 2) return 15831; + return 15832; + } + short RespawnAnchor(); + unsigned char Charges(short ID); + } + namespace RoseBush + { + enum class Half + { + Upper, + Lower + }; + constexpr short RoseBush(enum Half Half) + { + if (Half == Half::Upper) return 7889; + return 7890; + } + short RoseBush(); + enum Half Half(short ID); + } + namespace Sand + { + constexpr short Sand() + { + return 66; + } + } + namespace Sandstone + { + constexpr short Sandstone() + { + return 246; + } + } + namespace SandstoneSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short SandstoneSlab(enum Type Type) + { + if (Type == Type::Double && !false) return 8353; + if (Type == Type::Bottom && false) return 8350; + if (Type == Type::Bottom && !false) return 8351; + if (Type == Type::Top && false) return 8348; + if (Type == Type::Double && false) return 8352; + return 8349; + } + short SandstoneSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace SandstoneStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short SandstoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5203; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5204; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5205; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5206; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5207; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5208; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5209; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5210; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5211; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5212; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5213; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5214; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5215; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5216; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5217; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5218; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5219; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5220; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5221; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5222; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5223; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5224; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5225; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5226; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5227; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5228; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5229; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5230; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5231; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5232; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5233; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5170; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5234; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5171; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5235; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5172; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5236; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5173; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5237; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5174; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5238; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5175; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5239; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5176; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5240; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5177; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5241; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5178; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5242; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5179; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5243; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5180; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5244; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5181; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5245; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5182; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5246; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5183; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5247; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5184; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5248; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5185; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5249; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5186; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5187; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5188; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5189; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5190; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5191; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5192; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5193; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5194; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5195; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5196; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5197; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5198; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5199; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5200; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5201; + return 5202; + } + short SandstoneStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace SandstoneWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short SandstoneWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14100; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14104; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 13785; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 13789; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 13793; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 13797; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 13801; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 13805; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 13809; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 13813; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 13817; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 13821; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 13825; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 13829; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 13833; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 13837; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 13841; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 13845; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 13849; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 13853; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 13857; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 13861; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 13865; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 13869; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 13873; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 13877; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 13881; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 13885; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 13889; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 13893; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 13897; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 13901; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 13905; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 13909; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 13913; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 13917; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 13921; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 13925; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 13929; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 13933; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 13937; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 13941; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 13945; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 13949; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 13953; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 13957; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 13961; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13965; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 13969; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13973; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13977; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 13981; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13985; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13989; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 13993; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13997; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 14001; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 14005; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 14009; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 14013; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 14017; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 14021; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 14025; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 14029; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 14033; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14037; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 14041; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14045; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14049; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 14053; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14057; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14061; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 14065; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14069; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14073; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14077; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14081; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14085; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14089; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14093; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14097; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14101; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14105; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 13786; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 13790; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 13794; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 13798; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 13802; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 13806; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 13810; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 13814; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 13818; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 13822; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 13826; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 13830; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 13834; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 13838; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 13842; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 13846; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 13850; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 13854; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 13858; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 13862; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13866; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 13870; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 13874; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13878; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 13882; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 13886; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13890; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 13894; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 13898; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 13902; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 13906; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 13910; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 13914; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 13918; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 13922; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 13926; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 13930; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 13934; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13938; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 13942; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 13946; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13950; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 13954; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 13958; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13962; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 13966; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13970; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13974; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 13978; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13982; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13986; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 13990; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 13994; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13998; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 14002; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 14006; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14010; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 14014; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 14018; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14022; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 14026; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 14030; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14034; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 14038; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14042; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14046; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 14050; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14054; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14058; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 14062; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 14066; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14070; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 14074; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14078; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14082; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 14086; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14090; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14094; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 14098; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 14102; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14106; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 13783; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 13787; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 13791; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 13795; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 13799; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 13803; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 13807; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 13811; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 13815; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 13819; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 13823; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 13827; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 13831; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 13835; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 13839; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 13843; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 13847; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 13851; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 13855; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 13859; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13863; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 13867; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 13871; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13875; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 13879; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 13883; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 13887; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 13891; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 13895; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 13899; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 13903; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 13907; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 13911; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 13915; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 13919; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 13923; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 13927; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 13931; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13935; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 13939; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 13943; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13947; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 13951; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 13955; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 13959; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 13963; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 13967; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13971; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 13975; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 13979; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13983; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 13987; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 13991; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 13995; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 13999; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 14003; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14007; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 14011; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 14015; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14019; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 14023; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 14027; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 14031; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 14035; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 14039; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14043; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 14047; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 14051; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14055; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 14059; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 14063; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 14067; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 14071; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14075; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14079; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 14083; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14087; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14091; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 14095; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14099; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 14103; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 13784; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 13788; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 13792; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 13796; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 13800; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 13804; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 13808; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 13812; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 13816; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 13820; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 13824; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 13828; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 13832; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 13836; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 13840; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 13844; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 13848; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 13852; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 13856; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 13860; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 13864; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 13868; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 13872; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 13876; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 13880; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 13884; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 13888; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 13892; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 13896; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 13900; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 13904; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 13908; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 13912; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 13916; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 13920; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 13924; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 13928; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 13932; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 13936; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 13940; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 13944; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 13948; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 13952; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 13956; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 13960; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 13964; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13968; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 13972; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 13976; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13980; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 13984; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 13988; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 13992; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 13996; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 14000; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 14004; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 14008; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 14012; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 14016; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 14020; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 14024; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 14028; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 14032; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 14036; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14040; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 14044; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 14048; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14052; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 14056; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 14060; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 14064; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 14068; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14072; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14076; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14080; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 14084; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 14088; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 14092; + return 14096; + } + short SandstoneWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace Scaffolding + { + constexpr short Scaffolding(bool Bottom, unsigned char Distance) + { + if (Distance == 6 && !false && !Bottom) return 14784; + if (Distance == 3 && false && Bottom) return 14761; + if (Distance == 7 && false && Bottom) return 14769; + if (Distance == 3 && false && !Bottom) return 14777; + if (Distance == 7 && false && !Bottom) return 14785; + if (Distance == 3 && !false && Bottom) return 14762; + if (Distance == 7 && !false && Bottom) return 14770; + if (Distance == 3 && !false && !Bottom) return 14778; + if (Distance == 0 && false && Bottom) return 14755; + if (Distance == 4 && false && Bottom) return 14763; + if (Distance == 0 && false && !Bottom) return 14771; + if (Distance == 4 && false && !Bottom) return 14779; + if (Distance == 0 && !false && Bottom) return 14756; + if (Distance == 4 && !false && Bottom) return 14764; + if (Distance == 0 && !false && !Bottom) return 14772; + if (Distance == 4 && !false && !Bottom) return 14780; + if (Distance == 1 && false && Bottom) return 14757; + if (Distance == 5 && false && Bottom) return 14765; + if (Distance == 1 && false && !Bottom) return 14773; + if (Distance == 5 && false && !Bottom) return 14781; + if (Distance == 1 && !false && Bottom) return 14758; + if (Distance == 5 && !false && Bottom) return 14766; + if (Distance == 1 && !false && !Bottom) return 14774; + if (Distance == 5 && !false && !Bottom) return 14782; + if (Distance == 2 && false && Bottom) return 14759; + if (Distance == 6 && false && Bottom) return 14767; + if (Distance == 2 && false && !Bottom) return 14775; + if (Distance == 6 && false && !Bottom) return 14783; + if (Distance == 2 && !false && Bottom) return 14760; + if (Distance == 6 && !false && Bottom) return 14768; + if (Distance == 2 && !false && !Bottom) return 14776; + return 14786; + } + short Scaffolding(); + bool Bottom(short ID); + unsigned char Distance(short ID); + bool Waterlogged(short ID); + } + namespace SeaLantern + { + constexpr short SeaLantern() + { + return 7862; + } + } + namespace SeaPickle + { + constexpr short SeaPickle(unsigned char Pickles) + { + if (Pickles == 1 && !false) return 9641; + if (Pickles == 3 && !false) return 9645; + if (Pickles == 2 && false) return 9642; + if (Pickles == 4 && false) return 9646; + if (Pickles == 2 && !false) return 9643; + if (Pickles == 1 && false) return 9640; + if (Pickles == 3 && false) return 9644; + return 9647; + } + short SeaPickle(); + unsigned char Pickles(short ID); + bool Waterlogged(short ID); + } + namespace Seagrass + { + constexpr short Seagrass() + { + return 1345; + } + } + namespace Shroomlight + { + constexpr short Shroomlight() + { + return 14989; + } + } + namespace ShulkerBox + { + constexpr short ShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_YM) return 9277; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9274; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9275; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9272; + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9276; + return 9273; + } + short ShulkerBox(); + eBlockFace Facing(short ID); + } + namespace SkeletonSkull + { + constexpr short SkeletonSkull(unsigned char Rotation) + { + if (Rotation == 6) return 6496; + if (Rotation == 7) return 6497; + if (Rotation == 8) return 6498; + if (Rotation == 9) return 6499; + if (Rotation == 10) return 6500; + if (Rotation == 11) return 6501; + if (Rotation == 12) return 6502; + if (Rotation == 13) return 6503; + if (Rotation == 14) return 6504; + if (Rotation == 0) return 6490; + if (Rotation == 1) return 6491; + if (Rotation == 2) return 6492; + if (Rotation == 3) return 6493; + if (Rotation == 4) return 6494; + if (Rotation == 5) return 6495; + return 6505; + } + short SkeletonSkull(); + unsigned char Rotation(short ID); + } + namespace SkeletonWallSkull + { + constexpr short SkeletonWallSkull(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 6508; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6506; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6507; + return 6509; + } + short SkeletonWallSkull(); + eBlockFace Facing(short ID); + } + namespace SlimeBlock + { + constexpr short SlimeBlock() + { + return 7535; + } + } + namespace SmithingTable + { + constexpr short SmithingTable() + { + return 14849; + } + } + namespace Smoker + { + constexpr short Smoker(eBlockFace Facing, bool Lit) + { + if (Facing == eBlockFace::BLOCK_FACE_XM && Lit) return 14807; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !Lit) return 14804; + if (Facing == eBlockFace::BLOCK_FACE_XM && !Lit) return 14808; + if (Facing == eBlockFace::BLOCK_FACE_ZP && Lit) return 14805; + if (Facing == eBlockFace::BLOCK_FACE_XP && Lit) return 14809; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !Lit) return 14806; + if (Facing == eBlockFace::BLOCK_FACE_ZM && Lit) return 14803; + return 14810; + } + short Smoker(); + eBlockFace Facing(short ID); + bool Lit(short ID); + } + namespace SmoothQuartz + { + constexpr short SmoothQuartz() + { + return 8416; + } + } + namespace SmoothQuartzSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short SmoothQuartzSlab(enum Type Type) + { + if (Type == Type::Top && false) return 10831; + if (Type == Type::Double && false) return 10835; + if (Type == Type::Top && !false) return 10832; + if (Type == Type::Double && !false) return 10836; + if (Type == Type::Bottom && false) return 10833; + return 10834; + } + short SmoothQuartzSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace SmoothQuartzStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short SmoothQuartzStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10341; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10342; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10343; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10344; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10345; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10346; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10347; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10348; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10349; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10350; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10351; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10352; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10353; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10354; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10355; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10356; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10357; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10358; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10359; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10360; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10361; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10362; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10363; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10364; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10365; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10366; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10367; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10368; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10369; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10370; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10371; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10372; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10373; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10374; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10375; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10376; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10377; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10378; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10379; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10380; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10381; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10382; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10383; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10384; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10385; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10386; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10387; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10388; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10309; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10310; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10311; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10312; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10313; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10314; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10315; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10316; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10317; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10318; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10319; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10320; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10321; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10322; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10323; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10324; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10325; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10326; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10327; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10328; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10329; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10330; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10331; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10332; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10333; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10334; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10335; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10336; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10337; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10338; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10339; + return 10340; + } + short SmoothQuartzStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace SmoothRedSandstone + { + constexpr short SmoothRedSandstone() + { + return 8417; + } + } + namespace SmoothRedSandstoneSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short SmoothRedSandstoneSlab(enum Type Type) + { + if (Type == Type::Top && !false) return 10796; + if (Type == Type::Double && !false) return 10800; + if (Type == Type::Bottom && false) return 10797; + if (Type == Type::Bottom && !false) return 10798; + if (Type == Type::Top && false) return 10795; + return 10799; + } + short SmoothRedSandstoneSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace SmoothRedSandstoneStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short SmoothRedSandstoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9749; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9750; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9751; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9752; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9753; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9754; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9755; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9756; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9757; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9758; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9759; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9760; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9761; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9762; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9763; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9764; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9765; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 9766; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9767; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 9768; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9769; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9770; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9771; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9772; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9773; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9774; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9775; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9776; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9777; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9778; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9779; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9780; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9781; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9782; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9783; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9784; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9785; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 9786; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9787; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 9788; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9789; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9790; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9791; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9792; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9793; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9794; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9795; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9796; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9797; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9798; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9799; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 9800; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9801; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9802; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9803; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9804; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9805; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 9806; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9807; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 9808; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9809; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9810; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9811; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9812; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9813; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9814; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9815; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9816; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9817; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9818; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9819; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 9820; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9821; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9822; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9823; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9824; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9825; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 9826; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 9827; + return 9828; + } + short SmoothRedSandstoneStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace SmoothSandstone + { + constexpr short SmoothSandstone() + { + return 8415; + } + } + namespace SmoothSandstoneSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short SmoothSandstoneSlab(enum Type Type) + { + if (Type == Type::Bottom && !false) return 10828; + if (Type == Type::Top && false) return 10825; + if (Type == Type::Double && false) return 10829; + if (Type == Type::Top && !false) return 10826; + if (Type == Type::Double && !false) return 10830; + return 10827; + } + short SmoothSandstoneSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace SmoothSandstoneStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short SmoothSandstoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10229; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10230; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10231; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10232; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10233; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10234; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10235; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10236; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10237; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10238; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10239; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10240; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10241; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10242; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10243; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10244; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10245; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10246; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10247; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10248; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10249; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10250; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10251; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10252; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10253; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10254; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10255; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10256; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10257; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10258; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10259; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10260; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10261; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10262; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10263; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10264; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10265; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10266; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10267; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10268; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10269; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10270; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10271; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10272; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10273; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10274; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10275; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10276; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10277; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10278; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10279; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10280; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10281; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10282; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10283; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10284; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10285; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10286; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10287; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10288; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10289; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10290; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10291; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10292; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10293; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10294; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10295; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10296; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10297; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10298; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10299; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10300; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10301; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10302; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10303; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10304; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10305; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10306; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10307; + return 10308; + } + short SmoothSandstoneStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace SmoothStone + { + constexpr short SmoothStone() + { + return 8414; + } + } + namespace SmoothStoneSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short SmoothStoneSlab(enum Type Type) + { + if (Type == Type::Double && false) return 8346; + if (Type == Type::Top && !false) return 8343; + if (Type == Type::Double && !false) return 8347; + if (Type == Type::Bottom && false) return 8344; + if (Type == Type::Bottom && !false) return 8345; + return 8342; + } + short SmoothStoneSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace Snow + { + constexpr short Snow(unsigned char Layers) + { + if (Layers == 5) return 3925; + if (Layers == 6) return 3926; + if (Layers == 7) return 3927; + if (Layers == 1) return 3921; + if (Layers == 2) return 3922; + if (Layers == 3) return 3923; + if (Layers == 4) return 3924; + return 3928; + } + short Snow(); + unsigned char Layers(short ID); + } + namespace SnowBlock + { + constexpr short SnowBlock() + { + return 3930; + } + } + namespace SoulCampfire + { + constexpr short SoulCampfire(eBlockFace Facing, bool Lit, bool SignalFire) + { + if (Facing == eBlockFace::BLOCK_FACE_XM && !false && SignalFire && Lit) return 14939; + if (Facing == eBlockFace::BLOCK_FACE_XP && !false && SignalFire && Lit) return 14947; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false && !SignalFire && Lit) return 14924; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false && !SignalFire && Lit) return 14932; + if (Facing == eBlockFace::BLOCK_FACE_XM && false && !SignalFire && Lit) return 14940; + if (Facing == eBlockFace::BLOCK_FACE_XP && false && !SignalFire && Lit) return 14948; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false && !SignalFire && Lit) return 14925; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false && !SignalFire && Lit) return 14933; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false && !SignalFire && Lit) return 14941; + if (Facing == eBlockFace::BLOCK_FACE_XP && !false && !SignalFire && Lit) return 14949; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false && SignalFire && !Lit) return 14926; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false && SignalFire && !Lit) return 14934; + if (Facing == eBlockFace::BLOCK_FACE_XM && false && SignalFire && !Lit) return 14942; + if (Facing == eBlockFace::BLOCK_FACE_XP && false && SignalFire && !Lit) return 14950; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false && SignalFire && !Lit) return 14927; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false && SignalFire && !Lit) return 14935; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false && SignalFire && !Lit) return 14943; + if (Facing == eBlockFace::BLOCK_FACE_XP && !false && SignalFire && !Lit) return 14951; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false && !SignalFire && !Lit) return 14928; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false && !SignalFire && !Lit) return 14936; + if (Facing == eBlockFace::BLOCK_FACE_XM && false && !SignalFire && !Lit) return 14944; + if (Facing == eBlockFace::BLOCK_FACE_XP && false && !SignalFire && !Lit) return 14952; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false && !SignalFire && !Lit) return 14929; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false && !SignalFire && !Lit) return 14937; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false && !SignalFire && !Lit) return 14945; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false && SignalFire && Lit) return 14922; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false && SignalFire && Lit) return 14930; + if (Facing == eBlockFace::BLOCK_FACE_XM && false && SignalFire && Lit) return 14938; + if (Facing == eBlockFace::BLOCK_FACE_XP && false && SignalFire && Lit) return 14946; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false && SignalFire && Lit) return 14923; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false && SignalFire && Lit) return 14931; + return 14953; + } + short SoulCampfire(); + eBlockFace Facing(short ID); + bool Lit(short ID); + bool SignalFire(short ID); + bool Waterlogged(short ID); + } + namespace SoulFire + { + constexpr short SoulFire() + { + return 1952; + } + } + namespace SoulLantern + { + constexpr short SoulLantern(bool Hanging) + { + if (Hanging) return 14888; + return 14889; + } + short SoulLantern(); + bool Hanging(short ID); + } + namespace SoulSand + { + constexpr short SoulSand() + { + return 4000; + } + } + namespace SoulSoil + { + constexpr short SoulSoil() + { + return 4001; + } + } + namespace SoulTorch + { + constexpr short SoulTorch() + { + return 4008; + } + } + namespace SoulWallTorch + { + constexpr short SoulWallTorch(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 4009; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 4011; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 4010; + return 4012; + } + short SoulWallTorch(); + eBlockFace Facing(short ID); + } + namespace Spawner + { + constexpr short Spawner() + { + return 1953; + } + } + namespace Sponge + { + constexpr short Sponge() + { + return 229; + } + } + namespace SpruceButton + { + enum class Face + { + Floor, + Wall, + Ceiling + }; + constexpr short SpruceButton(enum Face Face, eBlockFace Facing, bool Powered) + { + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6373; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6377; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6381; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6385; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6389; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6393; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6370; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6374; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6378; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6382; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6386; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6390; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6371; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6375; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6379; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6383; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 6387; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 6391; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6372; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6376; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6380; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 6384; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 6388; + return 6392; + } + short SpruceButton(); + enum Face Face(short ID); + eBlockFace Facing(short ID); + bool Powered(short ID); + } + namespace SpruceDoor + { + enum class Half + { + Upper, + Lower + }; + enum class Hinge + { + Left, + Right + }; + constexpr short SpruceDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered) + { + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 8766; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 8798; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 8767; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 8799; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 8768; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 8800; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 8769; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 8738; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 8770; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 8739; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 8771; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 8740; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 8772; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 8741; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 8773; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 8742; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 8774; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 8743; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 8775; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 8744; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 8776; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 8745; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 8777; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 8746; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 8778; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 8747; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 8779; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 8748; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 8780; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 8749; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 8781; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 8750; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 8782; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 8751; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 8783; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 8752; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 8784; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 8753; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 8785; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 8754; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 8786; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 8755; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 8787; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 8756; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 8788; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 8757; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 8789; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 8758; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 8790; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 8759; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 8791; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 8760; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 8792; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 8761; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Right) return 8793; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 8762; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 8794; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 8763; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 8795; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 8764; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 8796; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 8765; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 8797; + return 8801; + } + short SpruceDoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Hinge Hinge(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace SpruceFence + { + constexpr short SpruceFence(bool East, bool North, bool South, bool West) + { + if (!false && !South && West && East && North) return 8584; + if (!false && !South && West && East && !North) return 8592; + if (!false && !South && West && !East && North) return 8600; + if (!false && !South && West && !East && !North) return 8608; + if (!false && !South && !West && East && North) return 8585; + if (!false && !South && !West && East && !North) return 8593; + if (!false && !South && !West && !East && North) return 8601; + if (false && South && West && East && North) return 8578; + if (false && South && West && East && !North) return 8586; + if (false && South && West && !East && North) return 8594; + if (false && South && West && !East && !North) return 8602; + if (false && South && !West && East && North) return 8579; + if (false && South && !West && East && !North) return 8587; + if (false && South && !West && !East && North) return 8595; + if (false && South && !West && !East && !North) return 8603; + if (!false && South && West && East && North) return 8580; + if (!false && South && West && East && !North) return 8588; + if (!false && South && West && !East && North) return 8596; + if (!false && South && West && !East && !North) return 8604; + if (!false && South && !West && East && North) return 8581; + if (!false && South && !West && East && !North) return 8589; + if (!false && South && !West && !East && North) return 8597; + if (!false && South && !West && !East && !North) return 8605; + if (false && !South && West && East && North) return 8582; + if (false && !South && West && East && !North) return 8590; + if (false && !South && West && !East && North) return 8598; + if (false && !South && West && !East && !North) return 8606; + if (false && !South && !West && East && North) return 8583; + if (false && !South && !West && East && !North) return 8591; + if (false && !South && !West && !East && North) return 8599; + if (false && !South && !West && !East && !North) return 8607; + return 8609; + } + short SpruceFence(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace SpruceFenceGate + { + constexpr short SpruceFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered) + { + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8429; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8437; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8445; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8422; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8430; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8438; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8446; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8423; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8431; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8439; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8447; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8424; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8432; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8440; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8448; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8425; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8433; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8441; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8418; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8426; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8434; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8442; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8419; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8427; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8435; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8443; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8420; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 8428; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 8436; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 8444; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 8421; + return 8449; + } + short SpruceFenceGate(); + eBlockFace Facing(short ID); + bool InWall(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace SpruceLeaves + { + constexpr short SpruceLeaves(unsigned char Distance, bool Persistent) + { + if (!Persistent && Distance == 5) return 168; + if (Persistent && Distance == 2) return 161; + if (Persistent && Distance == 6) return 169; + if (!Persistent && Distance == 2) return 162; + if (!Persistent && Distance == 6) return 170; + if (Persistent && Distance == 3) return 163; + if (Persistent && Distance == 7) return 171; + if (!Persistent && Distance == 3) return 164; + if (!Persistent && Distance == 7) return 172; + if (Persistent && Distance == 4) return 165; + if (!Persistent && Distance == 4) return 166; + if (Persistent && Distance == 1) return 159; + if (Persistent && Distance == 5) return 167; + return 160; + } + short SpruceLeaves(); + unsigned char Distance(short ID); + bool Persistent(short ID); + } + namespace SpruceLog + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short SpruceLog(enum Axis Axis) + { + if (Axis == Axis::X) return 76; + if (Axis == Axis::Y) return 77; + return 78; + } + short SpruceLog(); + enum Axis Axis(short ID); + } + namespace SprucePlanks + { + constexpr short SprucePlanks() + { + return 16; + } + } + namespace SprucePressurePlate + { + constexpr short SprucePressurePlate(bool Powered) + { + if (Powered) return 3875; + return 3876; + } + short SprucePressurePlate(); + bool Powered(short ID); + } + namespace SpruceSapling + { + constexpr short SpruceSapling(unsigned char Stage) + { + if (Stage == 0) return 23; + return 24; + } + short SpruceSapling(); + unsigned char Stage(short ID); + } + namespace SpruceSign + { + constexpr short SpruceSign(unsigned char Rotation) + { + if (Rotation == 4 && false) return 3421; + if (Rotation == 5 && false) return 3423; + if (Rotation == 6 && false) return 3425; + if (Rotation == 7 && false) return 3427; + if (Rotation == 8 && false) return 3429; + if (Rotation == 9 && false) return 3431; + if (Rotation == 10 && false) return 3433; + if (Rotation == 11 && false) return 3435; + if (Rotation == 12 && false) return 3437; + if (Rotation == 13 && false) return 3439; + if (Rotation == 14 && false) return 3441; + if (Rotation == 15 && false) return 3443; + if (Rotation == 0 && !false) return 3414; + if (Rotation == 1 && !false) return 3416; + if (Rotation == 2 && !false) return 3418; + if (Rotation == 3 && !false) return 3420; + if (Rotation == 4 && !false) return 3422; + if (Rotation == 5 && !false) return 3424; + if (Rotation == 6 && !false) return 3426; + if (Rotation == 7 && !false) return 3428; + if (Rotation == 8 && !false) return 3430; + if (Rotation == 9 && !false) return 3432; + if (Rotation == 10 && !false) return 3434; + if (Rotation == 11 && !false) return 3436; + if (Rotation == 12 && !false) return 3438; + if (Rotation == 13 && !false) return 3440; + if (Rotation == 14 && !false) return 3442; + if (Rotation == 0 && false) return 3413; + if (Rotation == 1 && false) return 3415; + if (Rotation == 2 && false) return 3417; + if (Rotation == 3 && false) return 3419; + return 3444; + } + short SpruceSign(); + unsigned char Rotation(short ID); + bool Waterlogged(short ID); + } + namespace SpruceSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short SpruceSlab(enum Type Type) + { + if (Type == Type::Double && !false) return 8311; + if (Type == Type::Bottom && false) return 8308; + if (Type == Type::Bottom && !false) return 8309; + if (Type == Type::Top && false) return 8306; + if (Type == Type::Double && false) return 8310; + return 8307; + } + short SpruceSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace SpruceStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short SpruceStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5457; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5458; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5459; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5460; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5461; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5462; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5463; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5464; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5465; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5466; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5467; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5404; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5468; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5405; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5469; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5406; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5470; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5407; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5471; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5408; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5472; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5409; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5473; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5410; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5474; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5411; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5475; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5412; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5476; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5413; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5477; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5414; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5478; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5415; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5479; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5416; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5480; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5417; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5481; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5418; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5482; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5419; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5483; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5420; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 5421; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5422; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 5423; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5424; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5425; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5426; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5427; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5428; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5429; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5430; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5431; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5432; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5433; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5434; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5435; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5436; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5437; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5438; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5439; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5440; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 5441; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5442; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 5443; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5444; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5445; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5446; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5447; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5448; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5449; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5450; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 5451; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5452; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 5453; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5454; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 5455; + return 5456; + } + short SpruceStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace SpruceTrapdoor + { + enum class Half + { + Top, + Bottom + }; + constexpr short SpruceTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered) + { + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4195; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4211; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4227; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4180; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4196; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4212; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4228; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4181; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4197; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4213; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4229; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4182; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4198; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4214; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4230; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4183; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4199; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4215; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4231; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4184; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4200; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4216; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4232; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4185; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4201; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4217; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4233; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4186; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4202; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4218; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4234; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4187; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4203; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4219; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4235; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4188; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 4204; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 4220; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 4236; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4189; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4205; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4221; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 4237; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 4190; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 4206; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 4222; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4175; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4191; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4207; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4223; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 4176; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 4192; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 4208; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 4224; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4177; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4193; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4209; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4225; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 4178; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 4194; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 4210; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 4226; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 4179; + return 4238; + } + short SpruceTrapdoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + bool Open(short ID); + bool Powered(short ID); + bool Waterlogged(short ID); + } + namespace SpruceWallSign + { + constexpr short SpruceWallSign(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 3743; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 3744; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 3745; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 3746; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 3747; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 3748; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 3749; + return 3750; + } + short SpruceWallSign(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace SpruceWood + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short SpruceWood(enum Axis Axis) + { + if (Axis == Axis::X) return 112; + if (Axis == Axis::Y) return 113; + return 114; + } + short SpruceWood(); + enum Axis Axis(short ID); + } + namespace StickyPiston + { + constexpr short StickyPiston(bool Extended, eBlockFace Facing) + { + if (Extended && Facing == eBlockFace::BLOCK_FACE_XM) return 1332; + if (!Extended && Facing == eBlockFace::BLOCK_FACE_XP) return 1336; + if (!Extended && Facing == eBlockFace::BLOCK_FACE_YM) return 1340; + if (Extended && Facing == eBlockFace::BLOCK_FACE_ZM) return 1329; + if (Extended && Facing == eBlockFace::BLOCK_FACE_YP) return 1333; + if (!Extended && Facing == eBlockFace::BLOCK_FACE_ZP) return 1337; + if (Extended && Facing == eBlockFace::BLOCK_FACE_XP) return 1330; + if (Extended && Facing == eBlockFace::BLOCK_FACE_YM) return 1334; + if (!Extended && Facing == eBlockFace::BLOCK_FACE_XM) return 1338; + if (Extended && Facing == eBlockFace::BLOCK_FACE_ZP) return 1331; + if (!Extended && Facing == eBlockFace::BLOCK_FACE_ZM) return 1335; + return 1339; + } + short StickyPiston(); + bool Extended(short ID); + eBlockFace Facing(short ID); + } + namespace Stone + { + constexpr short Stone() + { + return 1; + } + } + namespace StoneBrickSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short StoneBrickSlab(enum Type Type) + { + if (Type == Type::Bottom && !false) return 8381; + if (Type == Type::Top && false) return 8378; + if (Type == Type::Double && false) return 8382; + if (Type == Type::Top && !false) return 8379; + if (Type == Type::Double && !false) return 8383; + return 8380; + } + short StoneBrickSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace StoneBrickStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short StoneBrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 4949; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4950; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4951; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4952; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4953; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 4954; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 4955; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4956; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4957; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 4958; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 4959; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4960; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4961; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4962; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4963; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 4964; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 4965; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4966; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4967; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 4968; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 4969; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4970; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 4971; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 4972; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 4973; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4974; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4975; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4976; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4977; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4978; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4979; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4980; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4981; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 4982; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 4983; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4984; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4985; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4986; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4987; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4988; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 4989; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4990; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 4991; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 4992; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 4993; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 4994; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 4995; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4932; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 4996; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4933; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 4997; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 4934; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 4998; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 4935; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 4999; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4936; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5000; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4937; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5001; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 4938; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5002; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 4939; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 5003; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4940; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5004; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4941; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5005; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4942; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5006; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4943; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5007; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 4944; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5008; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 4945; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 5009; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4946; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5010; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 4947; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 5011; + return 4948; + } + short StoneBrickStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace StoneBrickWall + { + enum class East + { + None, + Low, + Tall + }; + enum class North + { + None, + Low, + Tall + }; + enum class South + { + None, + Low, + Tall + }; + enum class West + { + None, + Low, + Tall + }; + constexpr short StoneBrickWall(enum East East, enum North North, enum South South, bool Up, enum West West) + { + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12567; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 12571; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 12575; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12579; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 12583; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 12587; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12591; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 12595; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 12599; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 12603; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 12607; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 12611; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 12615; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 12619; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 12623; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 12627; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 12631; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 12635; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12639; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 12643; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 12647; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12651; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 12655; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 12659; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12663; + if (false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 12667; + if (!false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 12671; + if (false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12675; + if (false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 12679; + if (!false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 12683; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12687; + if (false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 12691; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 12695; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12699; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 12703; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 12707; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12711; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 12715; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 12719; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12723; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 12727; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 12731; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12735; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 12739; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 12743; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12747; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 12751; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 12755; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12759; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 12763; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 12767; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12771; + if (false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 12775; + if (!false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12779; + if (false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12783; + if (false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 12787; + if (!false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12791; + if (false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12795; + if (false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 12799; + if (!false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12803; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12807; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 12488; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 12492; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 12496; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 12500; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 12504; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 12508; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 12512; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 12516; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 12520; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 12524; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 12528; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 12532; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 12536; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 12540; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 12544; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 12548; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 12552; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 12556; + if (false && South == South::None && West == West::Low && Up && East == East::None && North == North::Tall) return 12560; + if (!false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 12564; + if (!false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 12568; + if (false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Tall) return 12572; + if (!false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 12576; + if (!false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 12580; + if (false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Tall) return 12584; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 12588; + if (!false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 12592; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::None) return 12596; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 12600; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 12604; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::None) return 12608; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 12612; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 12616; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::None) return 12620; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 12624; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 12628; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Low) return 12632; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 12636; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 12640; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Low) return 12644; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 12648; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 12652; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Low) return 12656; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 12660; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 12664; + if (false && South == South::None && West == West::Low && Up && East == East::Low && North == North::Tall) return 12668; + if (!false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12672; + if (!false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 12676; + if (false && South == South::Low && West == West::Low && Up && East == East::Low && North == North::Tall) return 12680; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12684; + if (!false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 12688; + if (false && South == South::Tall && West == West::Low && Up && East == East::Low && North == North::Tall) return 12692; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12696; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 12700; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::None) return 12704; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 12708; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 12712; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::None) return 12716; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 12720; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 12724; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::None) return 12728; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 12732; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 12736; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Low) return 12740; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12744; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 12748; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Low) return 12752; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12756; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 12760; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Low) return 12764; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12768; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 12772; + if (false && South == South::None && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12776; + if (!false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12780; + if (!false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12784; + if (false && South == South::Low && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12788; + if (!false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12792; + if (!false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12796; + if (false && South == South::Tall && West == West::Low && Up && East == East::Tall && North == North::Tall) return 12800; + if (!false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12804; + if (!false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12808; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::None) return 12489; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::None) return 12493; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 12497; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::None) return 12501; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::None) return 12505; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 12509; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::None) return 12513; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::None) return 12517; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 12521; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Low) return 12525; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Low) return 12529; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 12533; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Low) return 12537; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Low) return 12541; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 12545; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Low) return 12549; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Low) return 12553; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 12557; + if (false && South == South::None && West == West::Tall && Up && East == East::None && North == North::Tall) return 12561; + if (false && South == South::None && West == West::None && !Up && East == East::None && North == North::Tall) return 12565; + if (!false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 12569; + if (false && South == South::Low && West == West::Tall && Up && East == East::None && North == North::Tall) return 12573; + if (false && South == South::Low && West == West::None && !Up && East == East::None && North == North::Tall) return 12577; + if (!false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 12581; + if (false && South == South::Tall && West == West::Tall && Up && East == East::None && North == North::Tall) return 12585; + if (false && South == South::Tall && West == West::None && !Up && East == East::None && North == North::Tall) return 12589; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 12593; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::None) return 12597; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::None) return 12601; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 12605; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::None) return 12609; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::None) return 12613; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 12617; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::None) return 12621; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::None) return 12625; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 12629; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Low) return 12633; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Low) return 12637; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 12641; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Low) return 12645; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Low) return 12649; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 12653; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Low) return 12657; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Low) return 12661; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 12665; + if (false && South == South::None && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12669; + if (false && South == South::None && West == West::None && !Up && East == East::Low && North == North::Tall) return 12673; + if (!false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12677; + if (false && South == South::Low && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12681; + if (false && South == South::Low && West == West::None && !Up && East == East::Low && North == North::Tall) return 12685; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12689; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Low && North == North::Tall) return 12693; + if (false && South == South::Tall && West == West::None && !Up && East == East::Low && North == North::Tall) return 12697; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12701; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::None) return 12705; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::None) return 12709; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 12713; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::None) return 12717; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::None) return 12721; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 12725; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::None) return 12729; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::None) return 12733; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 12737; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12741; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Low) return 12745; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12749; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12753; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Low) return 12757; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12761; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Low) return 12765; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Low) return 12769; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12773; + if (false && South == South::None && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12777; + if (false && South == South::None && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12781; + if (!false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12785; + if (false && South == South::Low && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12789; + if (false && South == South::Low && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12793; + if (!false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12797; + if (false && South == South::Tall && West == West::Tall && Up && East == East::Tall && North == North::Tall) return 12801; + if (false && South == South::Tall && West == West::None && !Up && East == East::Tall && North == North::Tall) return 12805; + if (!false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12809; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 12490; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::None) return 12494; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 12498; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 12502; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::None) return 12506; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 12510; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 12514; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::None) return 12518; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 12522; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 12526; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Low) return 12530; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 12534; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 12538; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Low) return 12542; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 12546; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 12550; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Low) return 12554; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 12558; + if (!false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 12562; + if (false && South == South::None && West == West::Low && !Up && East == East::None && North == North::Tall) return 12566; + if (!false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12570; + if (!false && South == South::Low && West == West::None && Up && East == East::None && North == North::Tall) return 12574; + if (false && South == South::Low && West == West::Low && !Up && East == East::None && North == North::Tall) return 12578; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12582; + if (!false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Tall) return 12586; + if (false && South == South::Tall && West == West::Low && !Up && East == East::None && North == North::Tall) return 12590; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Tall) return 12594; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::None) return 12598; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::None) return 12602; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::None) return 12606; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::None) return 12610; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::None) return 12614; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::None) return 12618; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::None) return 12622; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::None) return 12626; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::None) return 12630; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Low) return 12634; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Low) return 12638; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12642; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Low) return 12646; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Low) return 12650; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12654; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Low) return 12658; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Low) return 12662; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Low) return 12666; + if (!false && South == South::None && West == West::None && Up && East == East::Low && North == North::Tall) return 12670; + if (false && South == South::None && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12674; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12678; + if (!false && South == South::Low && West == West::None && Up && East == East::Low && North == North::Tall) return 12682; + if (false && South == South::Low && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12686; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12690; + if (!false && South == South::Tall && West == West::None && Up && East == East::Low && North == North::Tall) return 12694; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Low && North == North::Tall) return 12698; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Low && North == North::Tall) return 12702; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::None) return 12706; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::None) return 12710; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12714; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::None) return 12718; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::None) return 12722; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12726; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::None) return 12730; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::None) return 12734; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::None) return 12738; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Low) return 12742; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12746; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12750; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Low) return 12754; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12758; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12762; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Low) return 12766; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Low) return 12770; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Low) return 12774; + if (!false && South == South::None && West == West::None && Up && East == East::Tall && North == North::Tall) return 12778; + if (false && South == South::None && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12782; + if (!false && South == South::None && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12786; + if (!false && South == South::Low && West == West::None && Up && East == East::Tall && North == North::Tall) return 12790; + if (false && South == South::Low && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12794; + if (!false && South == South::Low && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12798; + if (!false && South == South::Tall && West == West::None && Up && East == East::Tall && North == North::Tall) return 12802; + if (false && South == South::Tall && West == West::Low && !Up && East == East::Tall && North == North::Tall) return 12806; + if (!false && South == South::Tall && West == West::Tall && !Up && East == East::Tall && North == North::Tall) return 12810; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::None) return 12487; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::None) return 12491; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::None) return 12495; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::None) return 12499; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::None) return 12503; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::None) return 12507; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::None) return 12511; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::None) return 12515; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::None) return 12519; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Low) return 12523; + if (!false && South == South::None && West == West::Low && Up && East == East::None && North == North::Low) return 12527; + if (false && South == South::None && West == West::Tall && !Up && East == East::None && North == North::Low) return 12531; + if (false && South == South::Low && West == West::None && Up && East == East::None && North == North::Low) return 12535; + if (!false && South == South::Low && West == West::Low && Up && East == East::None && North == North::Low) return 12539; + if (false && South == South::Low && West == West::Tall && !Up && East == East::None && North == North::Low) return 12543; + if (false && South == South::Tall && West == West::None && Up && East == East::None && North == North::Low) return 12547; + if (!false && South == South::Tall && West == West::Low && Up && East == East::None && North == North::Low) return 12551; + if (false && South == South::Tall && West == West::Tall && !Up && East == East::None && North == North::Low) return 12555; + if (false && South == South::None && West == West::None && Up && East == East::None && North == North::Tall) return 12559; + return 12563; + } + short StoneBrickWall(); + enum East East(short ID); + enum North North(short ID); + enum South South(short ID); + bool Up(short ID); + bool Waterlogged(short ID); + enum West West(short ID); + } + namespace StoneBricks + { + constexpr short StoneBricks() + { + return 4495; + } + } + namespace StoneButton + { + enum class Face + { + Floor, + Wall, + Ceiling + }; + constexpr short StoneButton(enum Face Face, eBlockFace Facing, bool Powered) + { + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 3917; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 3919; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 3898; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 3900; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 3902; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 3904; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 3906; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 3908; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 3910; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 3912; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 3914; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 3916; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 3918; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 3920; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 3897; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 3899; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 3901; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 3903; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 3905; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 3907; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 3909; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 3911; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 3913; + return 3915; + } + short StoneButton(); + enum Face Face(short ID); + eBlockFace Facing(short ID); + bool Powered(short ID); + } + namespace StonePressurePlate + { + constexpr short StonePressurePlate(bool Powered) + { + if (Powered) return 3807; + return 3808; + } + short StonePressurePlate(); + bool Powered(short ID); + } + namespace StoneSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short StoneSlab(enum Type Type) + { + if (Type == Type::Bottom && !false) return 8339; + if (Type == Type::Top && false) return 8336; + if (Type == Type::Double && false) return 8340; + if (Type == Type::Top && !false) return 8337; + if (Type == Type::Double && !false) return 8341; + return 8338; + } + short StoneSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace StoneStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short StoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10214; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10215; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10216; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10217; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10218; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10219; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10220; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10221; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10222; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10223; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10224; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10225; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10226; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10227; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 10228; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10149; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10150; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10151; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10152; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10153; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10154; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10155; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10156; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10157; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10158; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10159; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10160; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10161; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10162; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10163; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10164; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10165; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 10166; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10167; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 10168; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10169; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10170; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10171; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10172; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10173; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10174; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10175; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10176; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10177; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10178; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10179; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10180; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10181; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10182; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10183; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10184; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10185; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 10186; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10187; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 10188; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10189; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10190; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10191; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10192; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10193; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10194; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10195; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10196; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10197; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10198; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10199; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 10200; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10201; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10202; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10203; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10204; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10205; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 10206; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10207; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 10208; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10209; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 10210; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10211; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 10212; + return 10213; + } + short StoneStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace Stonecutter + { + constexpr short Stonecutter(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 14850; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 14852; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 14851; + return 14853; + } + short Stonecutter(); + eBlockFace Facing(short ID); + } + namespace StrippedAcaciaLog + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedAcaciaLog(enum Axis Axis) + { + if (Axis == Axis::X) return 100; + if (Axis == Axis::Y) return 101; + return 102; + } + short StrippedAcaciaLog(); + enum Axis Axis(short ID); + } + namespace StrippedAcaciaWood + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedAcaciaWood(enum Axis Axis) + { + if (Axis == Axis::Z) return 141; + if (Axis == Axis::Y) return 140; + return 139; + } + short StrippedAcaciaWood(); + enum Axis Axis(short ID); + } + namespace StrippedBirchLog + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedBirchLog(enum Axis Axis) + { + if (Axis == Axis::X) return 94; + if (Axis == Axis::Y) return 95; + return 96; + } + short StrippedBirchLog(); + enum Axis Axis(short ID); + } + namespace StrippedBirchWood + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedBirchWood(enum Axis Axis) + { + if (Axis == Axis::Z) return 135; + if (Axis == Axis::Y) return 134; + return 133; + } + short StrippedBirchWood(); + enum Axis Axis(short ID); + } + namespace StrippedCrimsonHyphae + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedCrimsonHyphae(enum Axis Axis) + { + if (Axis == Axis::Y) return 14985; + if (Axis == Axis::X) return 14984; + return 14986; + } + short StrippedCrimsonHyphae(); + enum Axis Axis(short ID); + } + namespace StrippedCrimsonStem + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedCrimsonStem(enum Axis Axis) + { + if (Axis == Axis::Y) return 14979; + if (Axis == Axis::X) return 14978; + return 14980; + } + short StrippedCrimsonStem(); + enum Axis Axis(short ID); + } + namespace StrippedDarkOakLog + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedDarkOakLog(enum Axis Axis) + { + if (Axis == Axis::X) return 103; + if (Axis == Axis::Y) return 104; + return 105; + } + short StrippedDarkOakLog(); + enum Axis Axis(short ID); + } + namespace StrippedDarkOakWood + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedDarkOakWood(enum Axis Axis) + { + if (Axis == Axis::Z) return 144; + if (Axis == Axis::Y) return 143; + return 142; + } + short StrippedDarkOakWood(); + enum Axis Axis(short ID); + } + namespace StrippedJungleLog + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedJungleLog(enum Axis Axis) + { + if (Axis == Axis::X) return 97; + if (Axis == Axis::Y) return 98; + return 99; + } + short StrippedJungleLog(); + enum Axis Axis(short ID); + } + namespace StrippedJungleWood + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedJungleWood(enum Axis Axis) + { + if (Axis == Axis::Z) return 138; + if (Axis == Axis::Y) return 137; + return 136; + } + short StrippedJungleWood(); + enum Axis Axis(short ID); + } + namespace StrippedOakLog + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedOakLog(enum Axis Axis) + { + if (Axis == Axis::X) return 106; + if (Axis == Axis::Y) return 107; + return 108; + } + short StrippedOakLog(); + enum Axis Axis(short ID); + } + namespace StrippedOakWood + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedOakWood(enum Axis Axis) + { + if (Axis == Axis::X) return 127; + if (Axis == Axis::Y) return 128; + return 129; + } + short StrippedOakWood(); + enum Axis Axis(short ID); + } + namespace StrippedSpruceLog + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedSpruceLog(enum Axis Axis) + { + if (Axis == Axis::X) return 91; + if (Axis == Axis::Y) return 92; + return 93; + } + short StrippedSpruceLog(); + enum Axis Axis(short ID); + } + namespace StrippedSpruceWood + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedSpruceWood(enum Axis Axis) + { + if (Axis == Axis::Z) return 132; + if (Axis == Axis::Y) return 131; + return 130; + } + short StrippedSpruceWood(); + enum Axis Axis(short ID); + } + namespace StrippedWarpedHyphae + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedWarpedHyphae(enum Axis Axis) + { + if (Axis == Axis::X) return 14967; + if (Axis == Axis::Z) return 14969; + return 14968; + } + short StrippedWarpedHyphae(); + enum Axis Axis(short ID); + } + namespace StrippedWarpedStem + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short StrippedWarpedStem(enum Axis Axis) + { + if (Axis == Axis::X) return 14961; + if (Axis == Axis::Z) return 14963; + return 14962; + } + short StrippedWarpedStem(); + enum Axis Axis(short ID); + } + namespace StructureBlock + { + enum class Mode + { + Save, + Load, + Corner, + Data + }; + constexpr short StructureBlock(enum Mode Mode) + { + if (Mode == Mode::Save) return 15735; + if (Mode == Mode::Corner) return 15737; + if (Mode == Mode::Load) return 15736; + return 15738; + } + short StructureBlock(); + enum Mode Mode(short ID); + } + namespace StructureVoid + { + constexpr short StructureVoid() + { + return 9259; + } + } + namespace SugarCane + { + constexpr short SugarCane(unsigned char Age) + { + if (Age == 13) return 3961; + if (Age == 6) return 3954; + if (Age == 14) return 3962; + if (Age == 7) return 3955; + if (Age == 0) return 3948; + if (Age == 8) return 3956; + if (Age == 1) return 3949; + if (Age == 9) return 3957; + if (Age == 2) return 3950; + if (Age == 10) return 3958; + if (Age == 3) return 3951; + if (Age == 11) return 3959; + if (Age == 4) return 3952; + if (Age == 12) return 3960; + if (Age == 5) return 3953; + return 3963; + } + short SugarCane(); + unsigned char Age(short ID); + } + namespace Sunflower + { + enum class Half + { + Upper, + Lower + }; + constexpr short Sunflower(enum Half Half) + { + if (Half == Half::Upper) return 7885; + return 7886; + } + short Sunflower(); + enum Half Half(short ID); + } + namespace SweetBerryBush + { + constexpr short SweetBerryBush(unsigned char Age) + { + if (Age == 1) return 14955; + if (Age == 0) return 14954; + if (Age == 2) return 14956; + return 14957; + } + short SweetBerryBush(); + unsigned char Age(short ID); + } + namespace TallGrass + { + enum class Half + { + Upper, + Lower + }; + constexpr short TallGrass(enum Half Half) + { + if (Half == Half::Upper) return 7893; + return 7894; + } + short TallGrass(); + enum Half Half(short ID); + } + namespace TallSeagrass + { + enum class Half + { + Upper, + Lower + }; + constexpr short TallSeagrass(enum Half Half) + { + if (Half == Half::Upper) return 1346; + return 1347; + } + short TallSeagrass(); + enum Half Half(short ID); + } + namespace Target + { + constexpr short Target(unsigned char Power) + { + if (Power == 5) return 15765; + if (Power == 7) return 15767; + if (Power == 9) return 15769; + if (Power == 11) return 15771; + if (Power == 13) return 15773; + if (Power == 0) return 15760; + if (Power == 2) return 15762; + if (Power == 4) return 15764; + if (Power == 6) return 15766; + if (Power == 8) return 15768; + if (Power == 10) return 15770; + if (Power == 12) return 15772; + if (Power == 14) return 15774; + if (Power == 1) return 15761; + if (Power == 3) return 15763; + return 15775; + } + short Target(); + unsigned char Power(short ID); + } + namespace Terracotta + { + constexpr short Terracotta() + { + return 7882; + } + } + namespace TNT + { + constexpr short TNT(bool Unstable) + { + if (Unstable) return 1430; + return 1431; + } + short TNT(); + bool Unstable(short ID); + } + namespace Torch + { + constexpr short Torch() + { + return 1435; + } + } + namespace TrappedChest + { + enum class Type + { + Single, + Left, + Right + }; + constexpr short TrappedChest(eBlockFace Facing, enum Type Type) + { + if (Type == Type::Left && !false && Facing == eBlockFace::BLOCK_FACE_ZM) return 6625; + if (Type == Type::Single && !false && Facing == eBlockFace::BLOCK_FACE_ZP) return 6629; + if (Type == Type::Right && !false && Facing == eBlockFace::BLOCK_FACE_ZP) return 6633; + if (Type == Type::Left && !false && Facing == eBlockFace::BLOCK_FACE_XM) return 6637; + if (Type == Type::Single && !false && Facing == eBlockFace::BLOCK_FACE_XP) return 6641; + if (Type == Type::Right && !false && Facing == eBlockFace::BLOCK_FACE_XP) return 6645; + if (Type == Type::Single && false && Facing == eBlockFace::BLOCK_FACE_ZM) return 6622; + if (Type == Type::Right && false && Facing == eBlockFace::BLOCK_FACE_ZM) return 6626; + if (Type == Type::Left && false && Facing == eBlockFace::BLOCK_FACE_ZP) return 6630; + if (Type == Type::Single && false && Facing == eBlockFace::BLOCK_FACE_XM) return 6634; + if (Type == Type::Right && false && Facing == eBlockFace::BLOCK_FACE_XM) return 6638; + if (Type == Type::Left && false && Facing == eBlockFace::BLOCK_FACE_XP) return 6642; + if (Type == Type::Single && !false && Facing == eBlockFace::BLOCK_FACE_ZM) return 6623; + if (Type == Type::Right && !false && Facing == eBlockFace::BLOCK_FACE_ZM) return 6627; + if (Type == Type::Left && !false && Facing == eBlockFace::BLOCK_FACE_ZP) return 6631; + if (Type == Type::Single && !false && Facing == eBlockFace::BLOCK_FACE_XM) return 6635; + if (Type == Type::Right && !false && Facing == eBlockFace::BLOCK_FACE_XM) return 6639; + if (Type == Type::Left && !false && Facing == eBlockFace::BLOCK_FACE_XP) return 6643; + if (Type == Type::Left && false && Facing == eBlockFace::BLOCK_FACE_ZM) return 6624; + if (Type == Type::Single && false && Facing == eBlockFace::BLOCK_FACE_ZP) return 6628; + if (Type == Type::Right && false && Facing == eBlockFace::BLOCK_FACE_ZP) return 6632; + if (Type == Type::Left && false && Facing == eBlockFace::BLOCK_FACE_XM) return 6636; + if (Type == Type::Single && false && Facing == eBlockFace::BLOCK_FACE_XP) return 6640; + return 6644; + } + short TrappedChest(); + eBlockFace Facing(short ID); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace Tripwire + { + constexpr short Tripwire(bool Attached, bool Disarmed, bool East, bool North, bool Powered, bool South, bool West) + { + if (!South && !Attached && West && !Disarmed && !Powered && !East && North) return 5393; + if (!South && Attached && !West && !Disarmed && !Powered && !East && North) return 5330; + if (!South && !Attached && !West && !Disarmed && !Powered && !East && North) return 5394; + if (South && Attached && West && !Disarmed && Powered && !East && !North) return 5331; + if (South && !Attached && West && !Disarmed && Powered && !East && !North) return 5395; + if (South && Attached && !West && !Disarmed && Powered && !East && !North) return 5332; + if (South && !Attached && !West && !Disarmed && Powered && !East && !North) return 5396; + if (!South && Attached && West && !Disarmed && Powered && !East && !North) return 5333; + if (!South && !Attached && West && !Disarmed && Powered && !East && !North) return 5397; + if (!South && Attached && !West && !Disarmed && Powered && !East && !North) return 5334; + if (!South && !Attached && !West && !Disarmed && Powered && !East && !North) return 5398; + if (South && Attached && West && !Disarmed && !Powered && !East && !North) return 5335; + if (South && !Attached && West && !Disarmed && !Powered && !East && !North) return 5399; + if (South && Attached && !West && !Disarmed && !Powered && !East && !North) return 5336; + if (South && !Attached && !West && !Disarmed && !Powered && !East && !North) return 5400; + if (!South && Attached && West && !Disarmed && !Powered && !East && !North) return 5337; + if (!South && !Attached && West && !Disarmed && !Powered && !East && !North) return 5401; + if (!South && Attached && !West && !Disarmed && !Powered && !East && !North) return 5338; + if (South && Attached && West && Disarmed && Powered && East && North) return 5275; + if (South && !Attached && West && Disarmed && Powered && East && North) return 5339; + if (South && Attached && !West && Disarmed && Powered && East && North) return 5276; + if (South && !Attached && !West && Disarmed && Powered && East && North) return 5340; + if (!South && Attached && West && Disarmed && Powered && East && North) return 5277; + if (!South && !Attached && West && Disarmed && Powered && East && North) return 5341; + if (!South && Attached && !West && Disarmed && Powered && East && North) return 5278; + if (!South && !Attached && !West && Disarmed && Powered && East && North) return 5342; + if (South && Attached && West && Disarmed && !Powered && East && North) return 5279; + if (South && !Attached && West && Disarmed && !Powered && East && North) return 5343; + if (South && Attached && !West && Disarmed && !Powered && East && North) return 5280; + if (South && !Attached && !West && Disarmed && !Powered && East && North) return 5344; + if (!South && Attached && West && Disarmed && !Powered && East && North) return 5281; + if (!South && !Attached && West && Disarmed && !Powered && East && North) return 5345; + if (!South && Attached && !West && Disarmed && !Powered && East && North) return 5282; + if (!South && !Attached && !West && Disarmed && !Powered && East && North) return 5346; + if (South && Attached && West && Disarmed && Powered && East && !North) return 5283; + if (South && !Attached && West && Disarmed && Powered && East && !North) return 5347; + if (South && Attached && !West && Disarmed && Powered && East && !North) return 5284; + if (South && !Attached && !West && Disarmed && Powered && East && !North) return 5348; + if (!South && Attached && West && Disarmed && Powered && East && !North) return 5285; + if (!South && !Attached && West && Disarmed && Powered && East && !North) return 5349; + if (!South && Attached && !West && Disarmed && Powered && East && !North) return 5286; + if (!South && !Attached && !West && Disarmed && Powered && East && !North) return 5350; + if (South && Attached && West && Disarmed && !Powered && East && !North) return 5287; + if (South && !Attached && West && Disarmed && !Powered && East && !North) return 5351; + if (South && Attached && !West && Disarmed && !Powered && East && !North) return 5288; + if (South && !Attached && !West && Disarmed && !Powered && East && !North) return 5352; + if (!South && Attached && West && Disarmed && !Powered && East && !North) return 5289; + if (!South && !Attached && West && Disarmed && !Powered && East && !North) return 5353; + if (!South && Attached && !West && Disarmed && !Powered && East && !North) return 5290; + if (!South && !Attached && !West && Disarmed && !Powered && East && !North) return 5354; + if (South && Attached && West && Disarmed && Powered && !East && North) return 5291; + if (South && !Attached && West && Disarmed && Powered && !East && North) return 5355; + if (South && Attached && !West && Disarmed && Powered && !East && North) return 5292; + if (South && !Attached && !West && Disarmed && Powered && !East && North) return 5356; + if (!South && Attached && West && Disarmed && Powered && !East && North) return 5293; + if (!South && !Attached && West && Disarmed && Powered && !East && North) return 5357; + if (!South && Attached && !West && Disarmed && Powered && !East && North) return 5294; + if (!South && !Attached && !West && Disarmed && Powered && !East && North) return 5358; + if (South && Attached && West && Disarmed && !Powered && !East && North) return 5295; + if (South && !Attached && West && Disarmed && !Powered && !East && North) return 5359; + if (South && Attached && !West && Disarmed && !Powered && !East && North) return 5296; + if (South && !Attached && !West && Disarmed && !Powered && !East && North) return 5360; + if (!South && Attached && West && Disarmed && !Powered && !East && North) return 5297; + if (!South && !Attached && West && Disarmed && !Powered && !East && North) return 5361; + if (!South && Attached && !West && Disarmed && !Powered && !East && North) return 5298; + if (!South && !Attached && !West && Disarmed && !Powered && !East && North) return 5362; + if (South && Attached && West && Disarmed && Powered && !East && !North) return 5299; + if (South && !Attached && West && Disarmed && Powered && !East && !North) return 5363; + if (South && Attached && !West && Disarmed && Powered && !East && !North) return 5300; + if (South && !Attached && !West && Disarmed && Powered && !East && !North) return 5364; + if (!South && Attached && West && Disarmed && Powered && !East && !North) return 5301; + if (!South && !Attached && West && Disarmed && Powered && !East && !North) return 5365; + if (!South && Attached && !West && Disarmed && Powered && !East && !North) return 5302; + if (!South && !Attached && !West && Disarmed && Powered && !East && !North) return 5366; + if (South && Attached && West && Disarmed && !Powered && !East && !North) return 5303; + if (South && !Attached && West && Disarmed && !Powered && !East && !North) return 5367; + if (South && Attached && !West && Disarmed && !Powered && !East && !North) return 5304; + if (South && !Attached && !West && Disarmed && !Powered && !East && !North) return 5368; + if (!South && Attached && West && Disarmed && !Powered && !East && !North) return 5305; + if (!South && !Attached && West && Disarmed && !Powered && !East && !North) return 5369; + if (!South && Attached && !West && Disarmed && !Powered && !East && !North) return 5306; + if (!South && !Attached && !West && Disarmed && !Powered && !East && !North) return 5370; + if (South && Attached && West && !Disarmed && Powered && East && North) return 5307; + if (South && !Attached && West && !Disarmed && Powered && East && North) return 5371; + if (South && Attached && !West && !Disarmed && Powered && East && North) return 5308; + if (South && !Attached && !West && !Disarmed && Powered && East && North) return 5372; + if (!South && Attached && West && !Disarmed && Powered && East && North) return 5309; + if (!South && !Attached && West && !Disarmed && Powered && East && North) return 5373; + if (!South && Attached && !West && !Disarmed && Powered && East && North) return 5310; + if (!South && !Attached && !West && !Disarmed && Powered && East && North) return 5374; + if (South && Attached && West && !Disarmed && !Powered && East && North) return 5311; + if (South && !Attached && West && !Disarmed && !Powered && East && North) return 5375; + if (South && Attached && !West && !Disarmed && !Powered && East && North) return 5312; + if (South && !Attached && !West && !Disarmed && !Powered && East && North) return 5376; + if (!South && Attached && West && !Disarmed && !Powered && East && North) return 5313; + if (!South && !Attached && West && !Disarmed && !Powered && East && North) return 5377; + if (!South && Attached && !West && !Disarmed && !Powered && East && North) return 5314; + if (!South && !Attached && !West && !Disarmed && !Powered && East && North) return 5378; + if (South && Attached && West && !Disarmed && Powered && East && !North) return 5315; + if (South && !Attached && West && !Disarmed && Powered && East && !North) return 5379; + if (South && Attached && !West && !Disarmed && Powered && East && !North) return 5316; + if (South && !Attached && !West && !Disarmed && Powered && East && !North) return 5380; + if (!South && Attached && West && !Disarmed && Powered && East && !North) return 5317; + if (!South && !Attached && West && !Disarmed && Powered && East && !North) return 5381; + if (!South && Attached && !West && !Disarmed && Powered && East && !North) return 5318; + if (!South && !Attached && !West && !Disarmed && Powered && East && !North) return 5382; + if (South && Attached && West && !Disarmed && !Powered && East && !North) return 5319; + if (South && !Attached && West && !Disarmed && !Powered && East && !North) return 5383; + if (South && Attached && !West && !Disarmed && !Powered && East && !North) return 5320; + if (South && !Attached && !West && !Disarmed && !Powered && East && !North) return 5384; + if (!South && Attached && West && !Disarmed && !Powered && East && !North) return 5321; + if (!South && !Attached && West && !Disarmed && !Powered && East && !North) return 5385; + if (!South && Attached && !West && !Disarmed && !Powered && East && !North) return 5322; + if (!South && !Attached && !West && !Disarmed && !Powered && East && !North) return 5386; + if (South && Attached && West && !Disarmed && Powered && !East && North) return 5323; + if (South && !Attached && West && !Disarmed && Powered && !East && North) return 5387; + if (South && Attached && !West && !Disarmed && Powered && !East && North) return 5324; + if (South && !Attached && !West && !Disarmed && Powered && !East && North) return 5388; + if (!South && Attached && West && !Disarmed && Powered && !East && North) return 5325; + if (!South && !Attached && West && !Disarmed && Powered && !East && North) return 5389; + if (!South && Attached && !West && !Disarmed && Powered && !East && North) return 5326; + if (!South && !Attached && !West && !Disarmed && Powered && !East && North) return 5390; + if (South && Attached && West && !Disarmed && !Powered && !East && North) return 5327; + if (South && !Attached && West && !Disarmed && !Powered && !East && North) return 5391; + if (South && Attached && !West && !Disarmed && !Powered && !East && North) return 5328; + if (South && !Attached && !West && !Disarmed && !Powered && !East && North) return 5392; + if (!South && Attached && West && !Disarmed && !Powered && !East && North) return 5329; + return 5402; + } + short Tripwire(); + bool Attached(short ID); + bool Disarmed(short ID); + bool East(short ID); + bool North(short ID); + bool Powered(short ID); + bool South(short ID); + bool West(short ID); + } + namespace TripwireHook + { + constexpr short TripwireHook(bool Attached, eBlockFace Facing, bool Powered) + { + if (!Powered && Attached && Facing == eBlockFace::BLOCK_FACE_XP) return 5266; + if (Powered && !Attached && Facing == eBlockFace::BLOCK_FACE_ZM) return 5267; + if (!Powered && !Attached && Facing == eBlockFace::BLOCK_FACE_ZM) return 5268; + if (Powered && !Attached && Facing == eBlockFace::BLOCK_FACE_ZP) return 5269; + if (!Powered && !Attached && Facing == eBlockFace::BLOCK_FACE_ZP) return 5270; + if (Powered && !Attached && Facing == eBlockFace::BLOCK_FACE_XM) return 5271; + if (!Powered && !Attached && Facing == eBlockFace::BLOCK_FACE_XM) return 5272; + if (Powered && !Attached && Facing == eBlockFace::BLOCK_FACE_XP) return 5273; + if (Powered && Attached && Facing == eBlockFace::BLOCK_FACE_ZM) return 5259; + if (!Powered && Attached && Facing == eBlockFace::BLOCK_FACE_ZM) return 5260; + if (Powered && Attached && Facing == eBlockFace::BLOCK_FACE_ZP) return 5261; + if (!Powered && Attached && Facing == eBlockFace::BLOCK_FACE_ZP) return 5262; + if (Powered && Attached && Facing == eBlockFace::BLOCK_FACE_XM) return 5263; + if (!Powered && Attached && Facing == eBlockFace::BLOCK_FACE_XM) return 5264; + if (Powered && Attached && Facing == eBlockFace::BLOCK_FACE_XP) return 5265; + return 5274; + } + short TripwireHook(); + bool Attached(short ID); + eBlockFace Facing(short ID); + bool Powered(short ID); + } + namespace TubeCoral + { + constexpr short TubeCoral() + { + if (false) return 9530; + return 9531; + } + bool Waterlogged(short ID); + } + namespace TubeCoralBlock + { + constexpr short TubeCoralBlock() + { + return 9515; + } + } + namespace TubeCoralFan + { + constexpr short TubeCoralFan() + { + if (false) return 9550; + return 9551; + } + bool Waterlogged(short ID); + } + namespace TubeCoralWallFan + { + constexpr short TubeCoralWallFan(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 9606; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 9603; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 9600; + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 9604; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 9601; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 9605; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 9602; + return 9607; + } + short TubeCoralWallFan(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace TurtleEgg + { + constexpr short TurtleEgg(unsigned char Eggs, unsigned char Hatch) + { + if (Hatch == 1 && Eggs == 1) return 9499; + if (Hatch == 0 && Eggs == 2) return 9501; + if (Hatch == 2 && Eggs == 2) return 9503; + if (Hatch == 1 && Eggs == 3) return 9505; + if (Hatch == 0 && Eggs == 4) return 9507; + if (Hatch == 2 && Eggs == 4) return 9509; + if (Hatch == 0 && Eggs == 1) return 9498; + if (Hatch == 2 && Eggs == 1) return 9500; + if (Hatch == 1 && Eggs == 2) return 9502; + if (Hatch == 0 && Eggs == 3) return 9504; + if (Hatch == 2 && Eggs == 3) return 9506; + return 9508; + } + short TurtleEgg(); + unsigned char Eggs(short ID); + unsigned char Hatch(short ID); + } + namespace TwistingVines + { + constexpr short TwistingVines(unsigned char Age) + { + if (Age == 15) return 15032; + if (Age == 23) return 15040; + if (Age == 0) return 15017; + if (Age == 8) return 15025; + if (Age == 16) return 15033; + if (Age == 24) return 15041; + if (Age == 1) return 15018; + if (Age == 9) return 15026; + if (Age == 17) return 15034; + if (Age == 25) return 15042; + if (Age == 2) return 15019; + if (Age == 10) return 15027; + if (Age == 18) return 15035; + if (Age == 3) return 15020; + if (Age == 11) return 15028; + if (Age == 19) return 15036; + if (Age == 4) return 15021; + if (Age == 12) return 15029; + if (Age == 20) return 15037; + if (Age == 5) return 15022; + if (Age == 13) return 15030; + if (Age == 21) return 15038; + if (Age == 6) return 15023; + if (Age == 14) return 15031; + if (Age == 22) return 15039; + return 15024; + } + short TwistingVines(); + unsigned char Age(short ID); + } + namespace TwistingVinesPlant + { + constexpr short TwistingVinesPlant() + { + return 15043; + } + } + namespace Vine + { + constexpr short Vine(bool East, bool North, bool South, bool Up, bool West) + { + if (!South && Up && West && East && North) return 4792; + if (South && Up && West && East && !North) return 4796; + if (!South && Up && West && East && !North) return 4800; + if (South && Up && West && !East && North) return 4804; + if (!South && Up && West && !East && North) return 4808; + if (South && Up && West && !East && !North) return 4812; + if (!South && Up && West && !East && !North) return 4816; + if (South && Up && !West && East && North) return 4789; + if (!South && Up && !West && East && North) return 4793; + if (South && Up && !West && East && !North) return 4797; + if (!South && Up && !West && East && !North) return 4801; + if (South && Up && !West && !East && North) return 4805; + if (!South && Up && !West && !East && North) return 4809; + if (South && Up && !West && !East && !North) return 4813; + if (!South && Up && !West && !East && !North) return 4817; + if (South && !Up && West && East && North) return 4790; + if (!South && !Up && West && East && North) return 4794; + if (South && !Up && West && East && !North) return 4798; + if (!South && !Up && West && East && !North) return 4802; + if (South && !Up && West && !East && North) return 4806; + if (!South && !Up && West && !East && North) return 4810; + if (South && !Up && West && !East && !North) return 4814; + if (!South && !Up && West && !East && !North) return 4818; + if (South && !Up && !West && East && North) return 4791; + if (!South && !Up && !West && East && North) return 4795; + if (South && !Up && !West && East && !North) return 4799; + if (!South && !Up && !West && East && !North) return 4803; + if (South && !Up && !West && !East && North) return 4807; + if (!South && !Up && !West && !East && North) return 4811; + if (South && !Up && !West && !East && !North) return 4815; + if (South && Up && West && East && North) return 4788; + return 4819; + } + short Vine(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Up(short ID); + bool West(short ID); + } + namespace VoidAir + { + constexpr short VoidAir() + { + return 9665; + } + } + namespace WallTorch + { + constexpr short WallTorch(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 1437; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 1438; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 1436; + return 1439; + } + short WallTorch(); + eBlockFace Facing(short ID); + } + namespace WarpedButton + { + enum class Face + { + Floor, + Wall, + Ceiling + }; + constexpr short WarpedButton(enum Face Face, eBlockFace Facing, bool Powered) + { + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 15505; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 15513; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 15521; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 15506; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 15514; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_ZP) return 15522; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 15507; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 15515; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 15523; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 15508; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 15516; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XM) return 15524; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 15509; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 15517; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 15525; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 15510; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 15518; + if (Face == Face::Ceiling && !Powered && Facing == eBlockFace::BLOCK_FACE_XP) return 15526; + if (Face == Face::Floor && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 15503; + if (Face == Face::Wall && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 15511; + if (Face == Face::Ceiling && Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 15519; + if (Face == Face::Floor && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 15504; + if (Face == Face::Wall && !Powered && Facing == eBlockFace::BLOCK_FACE_ZM) return 15512; + return 15520; + } + short WarpedButton(); + enum Face Face(short ID); + eBlockFace Facing(short ID); + bool Powered(short ID); + } + namespace WarpedDoor + { + enum class Half + { + Upper, + Lower + }; + enum class Hinge + { + Left, + Right + }; + constexpr short WarpedDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered) + { + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 15633; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 15602; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 15634; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 15603; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 15635; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 15604; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 15636; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 15605; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 15637; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 15606; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 15638; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 15607; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 15639; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 15608; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 15640; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 15609; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 15641; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 15610; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 15642; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 15611; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 15643; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 15612; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 15644; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 15613; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 15645; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 15614; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Right) return 15646; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Left) return 15615; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Left) return 15647; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Left) return 15616; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Left) return 15648; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Left) return 15617; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Left) return 15649; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Left) return 15618; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open && Hinge == Hinge::Left) return 15650; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open && Hinge == Hinge::Right) return 15619; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open && Hinge == Hinge::Right) return 15651; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open && Hinge == Hinge::Right) return 15620; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open && Hinge == Hinge::Right) return 15652; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open && Hinge == Hinge::Right) return 15621; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open && Hinge == Hinge::Right) return 15653; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open && Hinge == Hinge::Right) return 15622; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 15591; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 15623; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 15592; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 15624; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 15593; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Left) return 15625; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Left) return 15594; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Left) return 15626; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Right) return 15595; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Right) return 15627; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Right) return 15596; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Right) return 15628; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Right) return 15597; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open && Hinge == Hinge::Right) return 15629; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open && Hinge == Hinge::Right) return 15598; + if (Half == Half::Upper && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open && Hinge == Hinge::Right) return 15630; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open && Hinge == Hinge::Left) return 15599; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open && Hinge == Hinge::Left) return 15631; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open && Hinge == Hinge::Left) return 15600; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open && Hinge == Hinge::Left) return 15632; + if (Half == Half::Lower && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open && Hinge == Hinge::Left) return 15601; + return 15654; + } + short WarpedDoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Hinge Hinge(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace WarpedFence + { + constexpr short WarpedFence(bool East, bool North, bool South, bool West) + { + if (!false && !South && West && !East && !North) return 15125; + if (!false && !South && !West && East && North) return 15102; + if (!false && !South && !West && East && !North) return 15110; + if (!false && !South && !West && !East && North) return 15118; + if (false && South && West && East && North) return 15095; + if (false && South && West && East && !North) return 15103; + if (false && South && West && !East && North) return 15111; + if (false && South && West && !East && !North) return 15119; + if (false && South && !West && East && North) return 15096; + if (false && South && !West && East && !North) return 15104; + if (false && South && !West && !East && North) return 15112; + if (false && South && !West && !East && !North) return 15120; + if (!false && South && West && East && North) return 15097; + if (!false && South && West && East && !North) return 15105; + if (!false && South && West && !East && North) return 15113; + if (!false && South && West && !East && !North) return 15121; + if (!false && South && !West && East && North) return 15098; + if (!false && South && !West && East && !North) return 15106; + if (!false && South && !West && !East && North) return 15114; + if (!false && South && !West && !East && !North) return 15122; + if (false && !South && West && East && North) return 15099; + if (false && !South && West && East && !North) return 15107; + if (false && !South && West && !East && North) return 15115; + if (false && !South && West && !East && !North) return 15123; + if (false && !South && !West && East && North) return 15100; + if (false && !South && !West && East && !North) return 15108; + if (false && !South && !West && !East && North) return 15116; + if (false && !South && !West && !East && !North) return 15124; + if (!false && !South && West && East && North) return 15101; + if (!false && !South && West && East && !North) return 15109; + if (!false && !South && West && !East && North) return 15117; + return 15126; + } + short WarpedFence(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace WarpedFenceGate + { + constexpr short WarpedFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered) + { + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 15311; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15288; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15296; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15304; + if (!Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 15312; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15289; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15297; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15305; + if (Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 15313; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15290; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15298; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15306; + if (!Powered && InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 15314; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15291; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15299; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15307; + if (Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 15315; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15292; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15300; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15308; + if (!Powered && !InWall && Open && Facing == eBlockFace::BLOCK_FACE_XP) return 15316; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15293; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15301; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15309; + if (Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XP) return 15317; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15294; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15302; + if (!Powered && !InWall && !Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15310; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZM) return 15287; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_ZP) return 15295; + if (Powered && InWall && Open && Facing == eBlockFace::BLOCK_FACE_XM) return 15303; + return 15318; + } + short WarpedFenceGate(); + eBlockFace Facing(short ID); + bool InWall(short ID); + bool Open(short ID); + bool Powered(short ID); + } + namespace WarpedFungus + { + constexpr short WarpedFungus() + { + return 14971; + } + } + namespace WarpedHyphae + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short WarpedHyphae(enum Axis Axis) + { + if (Axis == Axis::X) return 14964; + if (Axis == Axis::Z) return 14966; + return 14965; + } + short WarpedHyphae(); + enum Axis Axis(short ID); + } + namespace WarpedNylium + { + constexpr short WarpedNylium() + { + return 14970; + } + } + namespace WarpedPlanks + { + constexpr short WarpedPlanks() + { + return 15046; + } + } + namespace WarpedPressurePlate + { + constexpr short WarpedPressurePlate(bool Powered) + { + if (Powered) return 15061; + return 15062; + } + short WarpedPressurePlate(); + bool Powered(short ID); + } + namespace WarpedRoots + { + constexpr short WarpedRoots() + { + return 14973; + } + } + namespace WarpedSign + { + constexpr short WarpedSign(unsigned char Rotation) + { + if (Rotation == 13 && !false) return 15714; + if (Rotation == 2 && false) return 15691; + if (Rotation == 6 && false) return 15699; + if (Rotation == 10 && false) return 15707; + if (Rotation == 14 && false) return 15715; + if (Rotation == 2 && !false) return 15692; + if (Rotation == 6 && !false) return 15700; + if (Rotation == 10 && !false) return 15708; + if (Rotation == 14 && !false) return 15716; + if (Rotation == 3 && false) return 15693; + if (Rotation == 7 && false) return 15701; + if (Rotation == 11 && false) return 15709; + if (Rotation == 15 && false) return 15717; + if (Rotation == 3 && !false) return 15694; + if (Rotation == 7 && !false) return 15702; + if (Rotation == 11 && !false) return 15710; + if (Rotation == 0 && false) return 15687; + if (Rotation == 4 && false) return 15695; + if (Rotation == 8 && false) return 15703; + if (Rotation == 12 && false) return 15711; + if (Rotation == 0 && !false) return 15688; + if (Rotation == 4 && !false) return 15696; + if (Rotation == 8 && !false) return 15704; + if (Rotation == 12 && !false) return 15712; + if (Rotation == 1 && false) return 15689; + if (Rotation == 5 && false) return 15697; + if (Rotation == 9 && false) return 15705; + if (Rotation == 13 && false) return 15713; + if (Rotation == 1 && !false) return 15690; + if (Rotation == 5 && !false) return 15698; + if (Rotation == 9 && !false) return 15706; + return 15718; + } + short WarpedSign(); + unsigned char Rotation(short ID); + bool Waterlogged(short ID); + } + namespace WarpedSlab + { + enum class Type + { + Top, + Bottom, + Double + }; + constexpr short WarpedSlab(enum Type Type) + { + if (Type == Type::Bottom && !false) return 15056; + if (Type == Type::Top && false) return 15053; + if (Type == Type::Double && false) return 15057; + if (Type == Type::Top && !false) return 15054; + if (Type == Type::Double && !false) return 15058; + return 15055; + } + short WarpedSlab(); + enum Type Type(short ID); + bool Waterlogged(short ID); + } + namespace WarpedStairs + { + enum class Half + { + Top, + Bottom + }; + enum class Shape + { + Straight, + InnerLeft, + InnerRight, + OuterLeft, + OuterRight + }; + constexpr short WarpedStairs(eBlockFace Facing, enum Half Half, enum Shape Shape) + { + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15421; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15422; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15423; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15424; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15425; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15426; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15427; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15428; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15429; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15430; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15431; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15432; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15433; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15434; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15435; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZP) return 15436; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15437; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15438; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 15439; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 15440; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15441; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15442; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15443; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15444; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15445; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15446; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15447; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15448; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 15449; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XM) return 15450; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15451; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15452; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15453; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15454; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15455; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XM) return 15456; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15457; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XM) return 15458; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 15459; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 15460; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15461; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15462; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15463; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15464; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15465; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15466; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15467; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15468; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 15469; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_XP) return 15470; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15471; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15472; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15473; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15474; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15475; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_XP) return 15476; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15477; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_XP) return 15478; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15399; + if (Half == Half::Top && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15400; + if (Half == Half::Top && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15401; + if (Half == Half::Top && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15402; + if (Half == Half::Top && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15403; + if (Half == Half::Top && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15404; + if (Half == Half::Top && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15405; + if (Half == Half::Top && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15406; + if (Half == Half::Top && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15407; + if (Half == Half::Top && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15408; + if (Half == Half::Bottom && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15409; + if (Half == Half::Bottom && !false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15410; + if (Half == Half::Bottom && false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15411; + if (Half == Half::Bottom && !false && Shape == Shape::InnerLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15412; + if (Half == Half::Bottom && false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15413; + if (Half == Half::Bottom && !false && Shape == Shape::InnerRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15414; + if (Half == Half::Bottom && false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15415; + if (Half == Half::Bottom && !false && Shape == Shape::OuterLeft && Facing == eBlockFace::BLOCK_FACE_ZM) return 15416; + if (Half == Half::Bottom && false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15417; + if (Half == Half::Bottom && !false && Shape == Shape::OuterRight && Facing == eBlockFace::BLOCK_FACE_ZM) return 15418; + if (Half == Half::Top && false && Shape == Shape::Straight && Facing == eBlockFace::BLOCK_FACE_ZP) return 15419; + return 15420; + } + short WarpedStairs(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + enum Shape Shape(short ID); + bool Waterlogged(short ID); + } + namespace WarpedStem + { + enum class Axis + { + X, + Y, + Z + }; + constexpr short WarpedStem(enum Axis Axis) + { + if (Axis == Axis::X) return 14958; + if (Axis == Axis::Z) return 14960; + return 14959; + } + short WarpedStem(); + enum Axis Axis(short ID); + } + namespace WarpedTrapdoor + { + enum class Half + { + Top, + Bottom + }; + constexpr short WarpedTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered) + { + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 15192; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 15224; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 15193; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 15225; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 15194; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 15226; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 15195; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 15227; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 15196; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 15228; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 15197; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 15229; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 15198; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 15230; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 15199; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 15231; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 15200; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 15232; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 15201; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 15233; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && Open) return 15202; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && Open) return 15234; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 15203; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 15235; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && !Open) return 15204; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && Powered && !Open) return 15236; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 15205; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 15237; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered && !Open) return 15206; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XM && !Powered && !Open) return 15238; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 15207; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 15239; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 15208; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 15240; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 15209; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 15241; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 15210; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 15242; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 15211; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 15243; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 15212; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 15244; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 15213; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 15245; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 15214; + if (!false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 15246; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 15215; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 15247; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && Open) return 15216; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && Open) return 15248; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 15217; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 15249; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && Open) return 15218; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && Open) return 15250; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 15219; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 15251; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && Powered && !Open) return 15220; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && Powered && !Open) return 15252; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 15221; + if (false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_XP && !Powered && !Open) return 15253; + if (!false && Half == Half::Bottom && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered && !Open) return 15222; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_ZM && Powered && Open) return 15191; + if (false && Half == Half::Top && Facing == eBlockFace::BLOCK_FACE_XM && Powered && Open) return 15223; + return 15254; + } + short WarpedTrapdoor(); + eBlockFace Facing(short ID); + enum Half Half(short ID); + bool Open(short ID); + bool Powered(short ID); + bool Waterlogged(short ID); + } + namespace WarpedWallSign + { + constexpr short WarpedWallSign(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM && false) return 15731; + if (Facing == eBlockFace::BLOCK_FACE_ZM && !false) return 15728; + if (Facing == eBlockFace::BLOCK_FACE_XM && !false) return 15732; + if (Facing == eBlockFace::BLOCK_FACE_ZP && false) return 15729; + if (Facing == eBlockFace::BLOCK_FACE_XP && false) return 15733; + if (Facing == eBlockFace::BLOCK_FACE_ZP && !false) return 15730; + if (Facing == eBlockFace::BLOCK_FACE_ZM && false) return 15727; + return 15734; + } + short WarpedWallSign(); + eBlockFace Facing(short ID); + bool Waterlogged(short ID); + } + namespace WarpedWartBlock + { + constexpr short WarpedWartBlock() + { + return 14972; + } + } + namespace Water + { + constexpr short Water(unsigned char Level) + { + if (Level == 12) return 46; + if (Level == 14) return 48; + if (Level == 1) return 35; + if (Level == 3) return 37; + if (Level == 5) return 39; + if (Level == 7) return 41; + if (Level == 9) return 43; + if (Level == 11) return 45; + if (Level == 13) return 47; + if (Level == 0) return 34; + if (Level == 2) return 36; + if (Level == 4) return 38; + if (Level == 6) return 40; + if (Level == 8) return 42; + if (Level == 10) return 44; + return 49; + } + short Water(); + unsigned char Level(short ID); + } + namespace WeepingVines + { + constexpr short WeepingVines(unsigned char Age) + { + if (Age == 11) return 15001; + if (Age == 19) return 15009; + if (Age == 4) return 14994; + if (Age == 12) return 15002; + if (Age == 20) return 15010; + if (Age == 5) return 14995; + if (Age == 13) return 15003; + if (Age == 21) return 15011; + if (Age == 6) return 14996; + if (Age == 14) return 15004; + if (Age == 22) return 15012; + if (Age == 7) return 14997; + if (Age == 15) return 15005; + if (Age == 23) return 15013; + if (Age == 0) return 14990; + if (Age == 8) return 14998; + if (Age == 16) return 15006; + if (Age == 24) return 15014; + if (Age == 1) return 14991; + if (Age == 9) return 14999; + if (Age == 17) return 15007; + if (Age == 25) return 15015; + if (Age == 2) return 14992; + if (Age == 10) return 15000; + if (Age == 18) return 15008; + return 14993; + } + short WeepingVines(); + unsigned char Age(short ID); + } + namespace WeepingVinesPlant + { + constexpr short WeepingVinesPlant() + { + return 15016; + } + } + namespace WetSponge + { + constexpr short WetSponge() + { + return 230; + } + } + namespace Wheat + { + constexpr short Wheat(unsigned char Age) + { + if (Age == 1) return 3358; + if (Age == 2) return 3359; + if (Age == 3) return 3360; + if (Age == 4) return 3361; + if (Age == 5) return 3362; + if (Age == 6) return 3363; + if (Age == 0) return 3357; + return 3364; + } + short Wheat(); + unsigned char Age(short ID); + } + namespace WhiteBanner + { + constexpr short WhiteBanner(unsigned char Rotation) + { + if (Rotation == 9) return 7906; + if (Rotation == 10) return 7907; + if (Rotation == 11) return 7908; + if (Rotation == 12) return 7909; + if (Rotation == 13) return 7910; + if (Rotation == 14) return 7911; + if (Rotation == 0) return 7897; + if (Rotation == 1) return 7898; + if (Rotation == 2) return 7899; + if (Rotation == 3) return 7900; + if (Rotation == 4) return 7901; + if (Rotation == 5) return 7902; + if (Rotation == 6) return 7903; + if (Rotation == 7) return 7904; + if (Rotation == 8) return 7905; + return 7912; + } + short WhiteBanner(); + unsigned char Rotation(short ID); + } + namespace WhiteBed + { + enum class Part + { + Head, + Foot + }; + constexpr short WhiteBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1062; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1051; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1055; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1059; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1063; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1052; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1056; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1060; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1049; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1053; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1057; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1061; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1050; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1054; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1058; + return 1064; + } + short WhiteBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace WhiteCarpet + { + constexpr short WhiteCarpet() + { + return 7866; + } + } + namespace WhiteConcrete + { + constexpr short WhiteConcrete() + { + return 9438; + } + } + namespace WhiteConcretePowder + { + constexpr short WhiteConcretePowder() + { + return 9454; + } + } + namespace WhiteGlazedTerracotta + { + constexpr short WhiteGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9375; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9374; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9376; + return 9377; + } + short WhiteGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace WhiteShulkerBox + { + constexpr short WhiteShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9281; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9278; + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9282; + if (Facing == eBlockFace::BLOCK_FACE_XP) return 9279; + if (Facing == eBlockFace::BLOCK_FACE_YM) return 9283; + return 9280; + } + short WhiteShulkerBox(); + eBlockFace Facing(short ID); + } + namespace WhiteStainedGlass + { + constexpr short WhiteStainedGlass() + { + return 4095; + } + } + namespace WhiteStainedGlassPane + { + constexpr short WhiteStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (!false && !South && West && East && North) return 6869; + if (!false && South && West && East && !North) return 6873; + if (!false && !South && West && East && !North) return 6877; + if (!false && South && West && !East && North) return 6881; + if (!false && !South && West && !East && North) return 6885; + if (!false && South && West && !East && !North) return 6889; + if (!false && !South && West && !East && !North) return 6893; + if (!false && South && !West && East && North) return 6866; + if (!false && !South && !West && East && North) return 6870; + if (!false && South && !West && East && !North) return 6874; + if (!false && !South && !West && East && !North) return 6878; + if (!false && South && !West && !East && North) return 6882; + if (!false && !South && !West && !East && North) return 6886; + if (!false && South && !West && !East && !North) return 6890; + if (false && South && West && East && North) return 6863; + if (false && !South && West && East && North) return 6867; + if (false && South && West && East && !North) return 6871; + if (false && !South && West && East && !North) return 6875; + if (false && South && West && !East && North) return 6879; + if (false && !South && West && !East && North) return 6883; + if (false && South && West && !East && !North) return 6887; + if (false && !South && West && !East && !North) return 6891; + if (false && South && !West && East && North) return 6864; + if (false && !South && !West && East && North) return 6868; + if (false && South && !West && East && !North) return 6872; + if (false && !South && !West && East && !North) return 6876; + if (false && South && !West && !East && North) return 6880; + if (false && !South && !West && !East && North) return 6884; + if (false && South && !West && !East && !North) return 6888; + if (false && !South && !West && !East && !North) return 6892; + if (!false && South && West && East && North) return 6865; + return 6894; + } + short WhiteStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace WhiteTerracotta + { + constexpr short WhiteTerracotta() + { + return 6847; + } + } + namespace WhiteTulip + { + constexpr short WhiteTulip() + { + return 1419; + } + } + namespace WhiteWallBanner + { + constexpr short WhiteWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8155; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8153; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8154; + return 8156; + } + short WhiteWallBanner(); + eBlockFace Facing(short ID); + } + namespace WhiteWool + { + constexpr short WhiteWool() + { + return 1384; + } + } + namespace WitherRose + { + constexpr short WitherRose() + { + return 1423; + } + } + namespace WitherSkeletonSkull + { + constexpr short WitherSkeletonSkull(unsigned char Rotation) + { + if (Rotation == 1) return 6511; + if (Rotation == 2) return 6512; + if (Rotation == 3) return 6513; + if (Rotation == 4) return 6514; + if (Rotation == 5) return 6515; + if (Rotation == 6) return 6516; + if (Rotation == 7) return 6517; + if (Rotation == 8) return 6518; + if (Rotation == 9) return 6519; + if (Rotation == 10) return 6520; + if (Rotation == 11) return 6521; + if (Rotation == 12) return 6522; + if (Rotation == 13) return 6523; + if (Rotation == 14) return 6524; + if (Rotation == 0) return 6510; + return 6525; + } + short WitherSkeletonSkull(); + unsigned char Rotation(short ID); + } + namespace WitherSkeletonWallSkull + { + constexpr short WitherSkeletonWallSkull(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6526; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6527; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 6528; + return 6529; + } + short WitherSkeletonWallSkull(); + eBlockFace Facing(short ID); + } + namespace YellowBanner + { + constexpr short YellowBanner(unsigned char Rotation) + { + if (Rotation == 5) return 7966; + if (Rotation == 6) return 7967; + if (Rotation == 7) return 7968; + if (Rotation == 8) return 7969; + if (Rotation == 9) return 7970; + if (Rotation == 10) return 7971; + if (Rotation == 11) return 7972; + if (Rotation == 12) return 7973; + if (Rotation == 13) return 7974; + if (Rotation == 14) return 7975; + if (Rotation == 0) return 7961; + if (Rotation == 1) return 7962; + if (Rotation == 2) return 7963; + if (Rotation == 3) return 7964; + if (Rotation == 4) return 7965; + return 7976; + } + short YellowBanner(); + unsigned char Rotation(short ID); + } + namespace YellowBed + { + enum class Part + { + Head, + Foot + }; + constexpr short YellowBed(eBlockFace Facing, bool Occupied, enum Part Part) + { + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1122; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1126; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1115; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1119; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1123; + if (Part == Part::Head && !Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1127; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1116; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1120; + if (Part == Part::Foot && !Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1124; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1113; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1117; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XM) return 1121; + if (Part == Part::Head && Occupied && Facing == eBlockFace::BLOCK_FACE_XP) return 1125; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZM) return 1114; + if (Part == Part::Foot && Occupied && Facing == eBlockFace::BLOCK_FACE_ZP) return 1118; + return 1128; + } + short YellowBed(); + eBlockFace Facing(short ID); + bool Occupied(short ID); + enum Part Part(short ID); + } + namespace YellowCarpet + { + constexpr short YellowCarpet() + { + return 7870; + } + } + namespace YellowConcrete + { + constexpr short YellowConcrete() + { + return 9442; + } + } + namespace YellowConcretePowder + { + constexpr short YellowConcretePowder() + { + return 9458; + } + } + namespace YellowGlazedTerracotta + { + constexpr short YellowGlazedTerracotta(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9390; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9392; + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9391; + return 9393; + } + short YellowGlazedTerracotta(); + eBlockFace Facing(short ID); + } + namespace YellowShulkerBox + { + constexpr short YellowShulkerBox(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_XM) return 9305; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9302; + if (Facing == eBlockFace::BLOCK_FACE_YP) return 9306; + if (Facing == eBlockFace::BLOCK_FACE_XP) return 9303; + if (Facing == eBlockFace::BLOCK_FACE_YM) return 9307; + return 9304; + } + short YellowShulkerBox(); + eBlockFace Facing(short ID); + } + namespace YellowStainedGlass + { + constexpr short YellowStainedGlass() + { + return 4099; + } + } + namespace YellowStainedGlassPane + { + constexpr short YellowStainedGlassPane(bool East, bool North, bool South, bool West) + { + if (!false && South && West && East && North) return 6993; + if (!false && !South && West && East && North) return 6997; + if (!false && South && West && East && !North) return 7001; + if (!false && !South && West && East && !North) return 7005; + if (!false && South && West && !East && North) return 7009; + if (!false && !South && West && !East && North) return 7013; + if (!false && South && West && !East && !North) return 7017; + if (!false && !South && West && !East && !North) return 7021; + if (!false && South && !West && East && North) return 6994; + if (!false && !South && !West && East && North) return 6998; + if (!false && South && !West && East && !North) return 7002; + if (!false && !South && !West && East && !North) return 7006; + if (!false && South && !West && !East && North) return 7010; + if (!false && !South && !West && !East && North) return 7014; + if (!false && South && !West && !East && !North) return 7018; + if (false && South && West && East && North) return 6991; + if (false && !South && West && East && North) return 6995; + if (false && South && West && East && !North) return 6999; + if (false && !South && West && East && !North) return 7003; + if (false && South && West && !East && North) return 7007; + if (false && !South && West && !East && North) return 7011; + if (false && South && West && !East && !North) return 7015; + if (false && !South && West && !East && !North) return 7019; + if (false && South && !West && East && North) return 6992; + if (false && !South && !West && East && North) return 6996; + if (false && South && !West && East && !North) return 7000; + if (false && !South && !West && East && !North) return 7004; + if (false && South && !West && !East && North) return 7008; + if (false && !South && !West && !East && North) return 7012; + if (false && South && !West && !East && !North) return 7016; + if (false && !South && !West && !East && !North) return 7020; + return 7022; + } + short YellowStainedGlassPane(); + bool East(short ID); + bool North(short ID); + bool South(short ID); + bool Waterlogged(short ID); + bool West(short ID); + } + namespace YellowTerracotta + { + constexpr short YellowTerracotta() + { + return 6851; + } + } + namespace YellowWallBanner + { + constexpr short YellowWallBanner(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8170; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 8171; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8169; + return 8172; + } + short YellowWallBanner(); + eBlockFace Facing(short ID); + } + namespace YellowWool + { + constexpr short YellowWool() + { + return 1388; + } + } + namespace ZombieHead + { + constexpr short ZombieHead(unsigned char Rotation) + { + if (Rotation == 11) return 6541; + if (Rotation == 12) return 6542; + if (Rotation == 13) return 6543; + if (Rotation == 14) return 6544; + if (Rotation == 0) return 6530; + if (Rotation == 1) return 6531; + if (Rotation == 2) return 6532; + if (Rotation == 3) return 6533; + if (Rotation == 4) return 6534; + if (Rotation == 5) return 6535; + if (Rotation == 6) return 6536; + if (Rotation == 7) return 6537; + if (Rotation == 8) return 6538; + if (Rotation == 9) return 6539; + if (Rotation == 10) return 6540; + return 6545; + } + short ZombieHead(); + unsigned char Rotation(short ID); + } + namespace ZombieWallHead + { + constexpr short ZombieWallHead(eBlockFace Facing) + { + if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6547; + if (Facing == eBlockFace::BLOCK_FACE_XM) return 6548; + if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6546; + return 6549; + } + short ZombieWallHead(); + eBlockFace Facing(short ID); + } +} diff --git a/src/Registries/CMakeLists.txt b/src/Registries/CMakeLists.txt new file mode 100644 index 000000000..7c6d2d618 --- /dev/null +++ b/src/Registries/CMakeLists.txt @@ -0,0 +1,8 @@ +target_sources( + ${CMAKE_PROJECT_NAME} PRIVATE + + Blocks.cpp + + Blocks.h + Items.h +) \ No newline at end of file diff --git a/src/Registries/Items.h b/src/Registries/Items.h new file mode 100644 index 000000000..f43e63b6c --- /dev/null +++ b/src/Registries/Items.h @@ -0,0 +1,980 @@ +#pragma once + +enum class Item +{ + AcaciaBoat, + AcaciaButton, + AcaciaDoor, + AcaciaFence, + AcaciaFenceGate, + AcaciaLeaves, + AcaciaLog, + AcaciaPlanks, + AcaciaPressurePlate, + AcaciaSapling, + AcaciaSign, + AcaciaSlab, + AcaciaStairs, + AcaciaTrapdoor, + AcaciaWood, + ActivatorRail, + Air, + Allium, + AncientDebris, + Andesite, + AndesiteSlab, + AndesiteStairs, + AndesiteWall, + Anvil, + Apple, + ArmorStand, + Arrow, + AzureBluet, + BakedPotato, + Bamboo, + Barrel, + Barrier, + Basalt, + BatSpawnEgg, + Beacon, + Bedrock, + BeeNest, + BeeSpawnEgg, + Beef, + Beehive, + Beetroot, + BeetrootSeeds, + BeetrootSoup, + Bell, + BirchBoat, + BirchButton, + BirchDoor, + BirchFence, + BirchFenceGate, + BirchLeaves, + BirchLog, + BirchPlanks, + BirchPressurePlate, + BirchSapling, + BirchSign, + BirchSlab, + BirchStairs, + BirchTrapdoor, + BirchWood, + BlackBanner, + BlackBed, + BlackCarpet, + BlackConcrete, + BlackConcretePowder, + BlackDye, + BlackGlazedTerracotta, + BlackShulkerBox, + BlackStainedGlass, + BlackStainedGlassPane, + BlackTerracotta, + BlackWool, + Blackstone, + BlackstoneSlab, + BlackstoneStairs, + BlackstoneWall, + BlastFurnace, + BlazePowder, + BlazeRod, + BlazeSpawnEgg, + BlueBanner, + BlueBed, + BlueCarpet, + BlueConcrete, + BlueConcretePowder, + BlueDye, + BlueGlazedTerracotta, + BlueIce, + BlueOrchid, + BlueShulkerBox, + BlueStainedGlass, + BlueStainedGlassPane, + BlueTerracotta, + BlueWool, + Bone, + BoneBlock, + BoneMeal, + Book, + Bookshelf, + Bow, + Bowl, + BrainCoral, + BrainCoralBlock, + BrainCoralFan, + Bread, + BrewingStand, + Brick, + BrickSlab, + BrickStairs, + BrickWall, + Bricks, + BrownBanner, + BrownBed, + BrownCarpet, + BrownConcrete, + BrownConcretePowder, + BrownDye, + BrownGlazedTerracotta, + BrownMushroom, + BrownMushroomBlock, + BrownShulkerBox, + BrownStainedGlass, + BrownStainedGlassPane, + BrownTerracotta, + BrownWool, + BubbleCoral, + BubbleCoralBlock, + BubbleCoralFan, + Bucket, + Cactus, + Cake, + Campfire, + Carrot, + CarrotOnAStick, + CartographyTable, + CarvedPumpkin, + CatSpawnEgg, + Cauldron, + CaveSpiderSpawnEgg, + Chain, + ChainCommandBlock, + ChainmailBoots, + ChainmailChestplate, + ChainmailHelmet, + ChainmailLeggings, + Charcoal, + Chest, + ChestMinecart, + Chicken, + ChickenSpawnEgg, + ChippedAnvil, + ChiseledNetherBricks, + ChiseledPolishedBlackstone, + ChiseledQuartzBlock, + ChiseledRedSandstone, + ChiseledSandstone, + ChiseledStoneBricks, + ChorusFlower, + ChorusFruit, + ChorusPlant, + Clay, + ClayBall, + Clock, + Coal, + CoalBlock, + CoalOre, + CoarseDirt, + Cobblestone, + CobblestoneSlab, + CobblestoneStairs, + CobblestoneWall, + Cobweb, + CocoaBeans, + Cod, + CodBucket, + CodSpawnEgg, + CommandBlock, + CommandBlockMinecart, + Comparator, + Compass, + Composter, + Conduit, + CookedBeef, + CookedChicken, + CookedCod, + CookedMutton, + CookedPorkchop, + CookedRabbit, + CookedSalmon, + Cookie, + Cornflower, + CowSpawnEgg, + CrackedNetherBricks, + CrackedPolishedBlackstoneBricks, + CrackedStoneBricks, + CraftingTable, + CreeperBannerPattern, + CreeperHead, + CreeperSpawnEgg, + CrimsonButton, + CrimsonDoor, + CrimsonFence, + CrimsonFenceGate, + CrimsonFungus, + CrimsonHyphae, + CrimsonNylium, + CrimsonPlanks, + CrimsonPressurePlate, + CrimsonRoots, + CrimsonSign, + CrimsonSlab, + CrimsonStairs, + CrimsonStem, + CrimsonTrapdoor, + Crossbow, + CryingObsidian, + CutRedSandstone, + CutRedSandstoneSlab, + CutSandstone, + CutSandstoneSlab, + CyanBanner, + CyanBed, + CyanCarpet, + CyanConcrete, + CyanConcretePowder, + CyanDye, + CyanGlazedTerracotta, + CyanShulkerBox, + CyanStainedGlass, + CyanStainedGlassPane, + CyanTerracotta, + CyanWool, + DamagedAnvil, + Dandelion, + DarkOakBoat, + DarkOakButton, + DarkOakDoor, + DarkOakFence, + DarkOakFenceGate, + DarkOakLeaves, + DarkOakLog, + DarkOakPlanks, + DarkOakPressurePlate, + DarkOakSapling, + DarkOakSign, + DarkOakSlab, + DarkOakStairs, + DarkOakTrapdoor, + DarkOakWood, + DarkPrismarine, + DarkPrismarineSlab, + DarkPrismarineStairs, + DaylightDetector, + DeadBrainCoral, + DeadBrainCoralBlock, + DeadBrainCoralFan, + DeadBubbleCoral, + DeadBubbleCoralBlock, + DeadBubbleCoralFan, + DeadBush, + DeadFireCoral, + DeadFireCoralBlock, + DeadFireCoralFan, + DeadHornCoral, + DeadHornCoralBlock, + DeadHornCoralFan, + DeadTubeCoral, + DeadTubeCoralBlock, + DeadTubeCoralFan, + DebugStick, + DetectorRail, + Diamond, + DiamondAxe, + DiamondBlock, + DiamondBoots, + DiamondChestplate, + DiamondHelmet, + DiamondHoe, + DiamondHorseArmor, + DiamondLeggings, + DiamondOre, + DiamondPickaxe, + DiamondShovel, + DiamondSword, + Diorite, + DioriteSlab, + DioriteStairs, + DioriteWall, + Dirt, + Dispenser, + DolphinSpawnEgg, + DonkeySpawnEgg, + DragonBreath, + DragonEgg, + DragonHead, + DriedKelp, + DriedKelpBlock, + Dropper, + DrownedSpawnEgg, + Egg, + ElderGuardianSpawnEgg, + Elytra, + Emerald, + EmeraldBlock, + EmeraldOre, + EnchantedBook, + EnchantedGoldenApple, + EnchantingTable, + EndCrystal, + EndPortalFrame, + EndRod, + EndStone, + EndStoneBrickSlab, + EndStoneBrickStairs, + EndStoneBrickWall, + EndStoneBricks, + EnderChest, + EnderEye, + EnderPearl, + EndermanSpawnEgg, + EndermiteSpawnEgg, + EvokerSpawnEgg, + ExperienceBottle, + Farmland, + Feather, + FermentedSpiderEye, + Fern, + FilledMap, + FireCharge, + FireCoral, + FireCoralBlock, + FireCoralFan, + FireworkRocket, + FireworkStar, + FishingRod, + FletchingTable, + Flint, + FlintAndSteel, + FlowerBannerPattern, + FlowerPot, + FoxSpawnEgg, + Furnace, + FurnaceMinecart, + GhastSpawnEgg, + GhastTear, + GildedBlackstone, + Glass, + GlassBottle, + GlassPane, + GlisteringMelonSlice, + GlobeBannerPattern, + Glowstone, + GlowstoneDust, + GoldBlock, + GoldIngot, + GoldNugget, + GoldOre, + GoldenApple, + GoldenAxe, + GoldenBoots, + GoldenCarrot, + GoldenChestplate, + GoldenHelmet, + GoldenHoe, + GoldenHorseArmor, + GoldenLeggings, + GoldenPickaxe, + GoldenShovel, + GoldenSword, + Granite, + GraniteSlab, + GraniteStairs, + GraniteWall, + Grass, + GrassBlock, + GrassPath, + Gravel, + GrayBanner, + GrayBed, + GrayCarpet, + GrayConcrete, + GrayConcretePowder, + GrayDye, + GrayGlazedTerracotta, + GrayShulkerBox, + GrayStainedGlass, + GrayStainedGlassPane, + GrayTerracotta, + GrayWool, + GreenBanner, + GreenBed, + GreenCarpet, + GreenConcrete, + GreenConcretePowder, + GreenDye, + GreenGlazedTerracotta, + GreenShulkerBox, + GreenStainedGlass, + GreenStainedGlassPane, + GreenTerracotta, + GreenWool, + Grindstone, + GuardianSpawnEgg, + Gunpowder, + HayBale, + HeartOfTheSea, + HeavyWeightedPressurePlate, + HoglinSpawnEgg, + HoneyBlock, + HoneyBottle, + Honeycomb, + HoneycombBlock, + Hopper, + HopperMinecart, + HornCoral, + HornCoralBlock, + HornCoralFan, + HorseSpawnEgg, + HuskSpawnEgg, + Ice, + InfestedChiseledStoneBricks, + InfestedCobblestone, + InfestedCrackedStoneBricks, + InfestedMossyStoneBricks, + InfestedStone, + InfestedStoneBricks, + InkSac, + IronAxe, + IronBars, + IronBlock, + IronBoots, + IronChestplate, + IronDoor, + IronHelmet, + IronHoe, + IronHorseArmor, + IronIngot, + IronLeggings, + IronNugget, + IronOre, + IronPickaxe, + IronShovel, + IronSword, + IronTrapdoor, + ItemFrame, + JackOLantern, + Jigsaw, + Jukebox, + JungleBoat, + JungleButton, + JungleDoor, + JungleFence, + JungleFenceGate, + JungleLeaves, + JungleLog, + JunglePlanks, + JunglePressurePlate, + JungleSapling, + JungleSign, + JungleSlab, + JungleStairs, + JungleTrapdoor, + JungleWood, + Kelp, + KnowledgeBook, + Ladder, + Lantern, + LapisBlock, + LapisLazuli, + LapisOre, + LargeFern, + LavaBucket, + Lead, + Leather, + LeatherBoots, + LeatherChestplate, + LeatherHelmet, + LeatherHorseArmor, + LeatherLeggings, + Lectern, + Lever, + LightBlueBanner, + LightBlueBed, + LightBlueCarpet, + LightBlueConcrete, + LightBlueConcretePowder, + LightBlueDye, + LightBlueGlazedTerracotta, + LightBlueShulkerBox, + LightBlueStainedGlass, + LightBlueStainedGlassPane, + LightBlueTerracotta, + LightBlueWool, + LightGrayBanner, + LightGrayBed, + LightGrayCarpet, + LightGrayConcrete, + LightGrayConcretePowder, + LightGrayDye, + LightGrayGlazedTerracotta, + LightGrayShulkerBox, + LightGrayStainedGlass, + LightGrayStainedGlassPane, + LightGrayTerracotta, + LightGrayWool, + LightWeightedPressurePlate, + Lilac, + LilyOfTheValley, + LilyPad, + LimeBanner, + LimeBed, + LimeCarpet, + LimeConcrete, + LimeConcretePowder, + LimeDye, + LimeGlazedTerracotta, + LimeShulkerBox, + LimeStainedGlass, + LimeStainedGlassPane, + LimeTerracotta, + LimeWool, + LingeringPotion, + LlamaSpawnEgg, + Lodestone, + Loom, + MagentaBanner, + MagentaBed, + MagentaCarpet, + MagentaConcrete, + MagentaConcretePowder, + MagentaDye, + MagentaGlazedTerracotta, + MagentaShulkerBox, + MagentaStainedGlass, + MagentaStainedGlassPane, + MagentaTerracotta, + MagentaWool, + MagmaBlock, + MagmaCream, + MagmaCubeSpawnEgg, + Map, + Melon, + MelonSeeds, + MelonSlice, + MilkBucket, + Minecart, + MojangBannerPattern, + MooshroomSpawnEgg, + MossyCobblestone, + MossyCobblestoneSlab, + MossyCobblestoneStairs, + MossyCobblestoneWall, + MossyStoneBrickSlab, + MossyStoneBrickStairs, + MossyStoneBrickWall, + MossyStoneBricks, + MuleSpawnEgg, + MushroomStem, + MushroomStew, + MusicDiscBlocks, + MusicDiscCat, + MusicDiscChirp, + MusicDiscFar, + MusicDiscMall, + MusicDiscMellohi, + MusicDiscPigstep, + MusicDiscStal, + MusicDiscStrad, + MusicDiscWait, + MusicDiscWard, + MusicDisc11, + MusicDisc13, + Mutton, + Mycelium, + NameTag, + NautilusShell, + NetherBrick, + NetherBrickFence, + NetherBrickSlab, + NetherBrickStairs, + NetherBrickWall, + NetherBricks, + NetherGoldOre, + NetherQuartzOre, + NetherSprouts, + NetherStar, + NetherWart, + NetherWartBlock, + NetheriteAxe, + NetheriteBlock, + NetheriteBoots, + NetheriteChestplate, + NetheriteHelmet, + NetheriteHoe, + NetheriteIngot, + NetheriteLeggings, + NetheritePickaxe, + NetheriteScrap, + NetheriteShovel, + NetheriteSword, + Netherrack, + NoteBlock, + OakBoat, + OakButton, + OakDoor, + OakFence, + OakFenceGate, + OakLeaves, + OakLog, + OakPlanks, + OakPressurePlate, + OakSapling, + OakSign, + OakSlab, + OakStairs, + OakTrapdoor, + OakWood, + Observer, + Obsidian, + OcelotSpawnEgg, + OrangeBanner, + OrangeBed, + OrangeCarpet, + OrangeConcrete, + OrangeConcretePowder, + OrangeDye, + OrangeGlazedTerracotta, + OrangeShulkerBox, + OrangeStainedGlass, + OrangeStainedGlassPane, + OrangeTerracotta, + OrangeTulip, + OrangeWool, + OxeyeDaisy, + PackedIce, + Painting, + PandaSpawnEgg, + Paper, + ParrotSpawnEgg, + Peony, + PetrifiedOakSlab, + PhantomMembrane, + PhantomSpawnEgg, + PigSpawnEgg, + PiglinBannerPattern, + PiglinSpawnEgg, + PillagerSpawnEgg, + PinkBanner, + PinkBed, + PinkCarpet, + PinkConcrete, + PinkConcretePowder, + PinkDye, + PinkGlazedTerracotta, + PinkShulkerBox, + PinkStainedGlass, + PinkStainedGlassPane, + PinkTerracotta, + PinkTulip, + PinkWool, + Piston, + PlayerHead, + Podzol, + PoisonousPotato, + PolarBearSpawnEgg, + PolishedAndesite, + PolishedAndesiteSlab, + PolishedAndesiteStairs, + PolishedBasalt, + PolishedBlackstone, + PolishedBlackstoneBrickSlab, + PolishedBlackstoneBrickStairs, + PolishedBlackstoneBrickWall, + PolishedBlackstoneBricks, + PolishedBlackstoneButton, + PolishedBlackstonePressurePlate, + PolishedBlackstoneSlab, + PolishedBlackstoneStairs, + PolishedBlackstoneWall, + PolishedDiorite, + PolishedDioriteSlab, + PolishedDioriteStairs, + PolishedGranite, + PolishedGraniteSlab, + PolishedGraniteStairs, + PoppedChorusFruit, + Poppy, + Porkchop, + Potato, + Potion, + PoweredRail, + Prismarine, + PrismarineBrickSlab, + PrismarineBrickStairs, + PrismarineBricks, + PrismarineCrystals, + PrismarineShard, + PrismarineSlab, + PrismarineStairs, + PrismarineWall, + Pufferfish, + PufferfishBucket, + PufferfishSpawnEgg, + Pumpkin, + PumpkinPie, + PumpkinSeeds, + PurpleBanner, + PurpleBed, + PurpleCarpet, + PurpleConcrete, + PurpleConcretePowder, + PurpleDye, + PurpleGlazedTerracotta, + PurpleShulkerBox, + PurpleStainedGlass, + PurpleStainedGlassPane, + PurpleTerracotta, + PurpleWool, + PurpurBlock, + PurpurPillar, + PurpurSlab, + PurpurStairs, + Quartz, + QuartzBlock, + QuartzBricks, + QuartzPillar, + QuartzSlab, + QuartzStairs, + Rabbit, + RabbitFoot, + RabbitHide, + RabbitSpawnEgg, + RabbitStew, + Rail, + RavagerSpawnEgg, + RedBanner, + RedBed, + RedCarpet, + RedConcrete, + RedConcretePowder, + RedDye, + RedGlazedTerracotta, + RedMushroom, + RedMushroomBlock, + RedNetherBrickSlab, + RedNetherBrickStairs, + RedNetherBrickWall, + RedNetherBricks, + RedSand, + RedSandstone, + RedSandstoneSlab, + RedSandstoneStairs, + RedSandstoneWall, + RedShulkerBox, + RedStainedGlass, + RedStainedGlassPane, + RedTerracotta, + RedTulip, + RedWool, + Redstone, + RedstoneBlock, + RedstoneLamp, + RedstoneOre, + RedstoneTorch, + Repeater, + RepeatingCommandBlock, + RespawnAnchor, + RoseBush, + RottenFlesh, + Saddle, + Salmon, + SalmonBucket, + SalmonSpawnEgg, + Sand, + Sandstone, + SandstoneSlab, + SandstoneStairs, + SandstoneWall, + Scaffolding, + Scute, + SeaLantern, + SeaPickle, + Seagrass, + Shears, + SheepSpawnEgg, + Shield, + Shroomlight, + ShulkerBox, + ShulkerShell, + ShulkerSpawnEgg, + SilverfishSpawnEgg, + SkeletonHorseSpawnEgg, + SkeletonSkull, + SkeletonSpawnEgg, + SkullBannerPattern, + SlimeBall, + SlimeBlock, + SlimeSpawnEgg, + SmithingTable, + Smoker, + SmoothQuartz, + SmoothQuartzSlab, + SmoothQuartzStairs, + SmoothRedSandstone, + SmoothRedSandstoneSlab, + SmoothRedSandstoneStairs, + SmoothSandstone, + SmoothSandstoneSlab, + SmoothSandstoneStairs, + SmoothStone, + SmoothStoneSlab, + Snow, + SnowBlock, + Snowball, + SoulCampfire, + SoulLantern, + SoulSand, + SoulSoil, + SoulTorch, + Spawner, + SpectralArrow, + SpiderEye, + SpiderSpawnEgg, + SplashPotion, + Sponge, + SpruceBoat, + SpruceButton, + SpruceDoor, + SpruceFence, + SpruceFenceGate, + SpruceLeaves, + SpruceLog, + SprucePlanks, + SprucePressurePlate, + SpruceSapling, + SpruceSign, + SpruceSlab, + SpruceStairs, + SpruceTrapdoor, + SpruceWood, + SquidSpawnEgg, + Stick, + StickyPiston, + Stone, + StoneAxe, + StoneBrickSlab, + StoneBrickStairs, + StoneBrickWall, + StoneBricks, + StoneButton, + StoneHoe, + StonePickaxe, + StonePressurePlate, + StoneShovel, + StoneSlab, + StoneStairs, + StoneSword, + Stonecutter, + StraySpawnEgg, + StriderSpawnEgg, + String, + StrippedAcaciaLog, + StrippedAcaciaWood, + StrippedBirchLog, + StrippedBirchWood, + StrippedCrimsonHyphae, + StrippedCrimsonStem, + StrippedDarkOakLog, + StrippedDarkOakWood, + StrippedJungleLog, + StrippedJungleWood, + StrippedOakLog, + StrippedOakWood, + StrippedSpruceLog, + StrippedSpruceWood, + StrippedWarpedHyphae, + StrippedWarpedStem, + StructureBlock, + StructureVoid, + Sugar, + SugarCane, + Sunflower, + SuspiciousStew, + SweetBerries, + TallGrass, + Target, + Terracotta, + TippedArrow, + TNT, + TNTMinecart, + Torch, + TotemOfUndying, + TraderLlamaSpawnEgg, + TrappedChest, + Trident, + TripwireHook, + TropicalFish, + TropicalFishBucket, + TropicalFishSpawnEgg, + TubeCoral, + TubeCoralBlock, + TubeCoralFan, + TurtleEgg, + TurtleHelmet, + TurtleSpawnEgg, + TwistingVines, + VexSpawnEgg, + VillagerSpawnEgg, + VindicatorSpawnEgg, + Vine, + WanderingTraderSpawnEgg, + WarpedButton, + WarpedDoor, + WarpedFence, + WarpedFenceGate, + WarpedFungus, + WarpedFungusOnA_stick, + WarpedHyphae, + WarpedNylium, + WarpedPlanks, + WarpedPressurePlate, + WarpedRoots, + WarpedSign, + WarpedSlab, + WarpedStairs, + WarpedStem, + WarpedTrapdoor, + WarpedWartBlock, + WaterBucket, + WeepingVines, + WetSponge, + Wheat, + WheatSeeds, + WhiteBanner, + WhiteBed, + WhiteCarpet, + WhiteConcrete, + WhiteConcretePowder, + WhiteDye, + WhiteGlazedTerracotta, + WhiteShulkerBox, + WhiteStainedGlass, + WhiteStainedGlassPane, + WhiteTerracotta, + WhiteTulip, + WhiteWool, + WitchSpawnEgg, + WitherRose, + WitherSkeletonSkull, + WitherSkeletonSpawnEgg, + WolfSpawnEgg, + WoodenAxe, + WoodenHoe, + WoodenPickaxe, + WoodenShovel, + WoodenSword, + WritableBook, + WrittenBook, + YellowBanner, + YellowBed, + YellowCarpet, + YellowConcrete, + YellowConcretePowder, + YellowDye, + YellowGlazedTerracotta, + YellowShulkerBox, + YellowStainedGlass, + YellowStainedGlassPane, + YellowTerracotta, + YellowWool, + ZoglinSpawnEgg, + ZombieHead, + ZombieHorseSpawnEgg, + ZombieSpawnEgg, + ZombieVillagerSpawnEgg, + ZombiePigmanSpawnEgg +}; diff --git a/src/Root.cpp b/src/Root.cpp index a66b893d9..5d643f3b2 100644 --- a/src/Root.cpp +++ b/src/Root.cpp @@ -195,8 +195,6 @@ void cRoot::Start(std::unique_ptr a_OverridesRepo) // cClientHandle::FASTBREAK_PERCENTAGE = settingsRepo->GetValueSetI("AntiCheat", "FastBreakPercentage", 97) / 100.0f; cClientHandle::FASTBREAK_PERCENTAGE = 0; // AntiCheat disabled due to bugs. We will enabled it once they are fixed. See #3506. - LoadPalettes(settingsRepo->GetValueSet("Folders", "ProtocolPalettes", "Protocol")); - m_MojangAPI = new cMojangAPI; bool ShouldAuthenticate = settingsRepo->GetValueSetB("Authentication", "Authenticate", true); m_MojangAPI->Start(*settingsRepo, ShouldAuthenticate); // Mojang API needs to be started before plugins, so that plugins may use it for DB upgrades on server init