diff --git a/data/bedrock/1.21.50/protocol.json b/data/bedrock/1.21.50/protocol.json index 415e989d6..04ea7e9a8 100644 --- a/data/bedrock/1.21.50/protocol.json +++ b/data/bedrock/1.21.50/protocol.json @@ -13027,4 +13027,4 @@ ] ] } -} +} \ No newline at end of file diff --git a/data/dataPaths.json b/data/dataPaths.json index 13540ea8e..5311ffaa4 100644 --- a/data/dataPaths.json +++ b/data/dataPaths.json @@ -1475,7 +1475,7 @@ "mapIcons": "pc/1.20.2", "commands": "pc/1.20.3", "sounds": "pc/1.21.1", - "proto": "pc/latest" + "proto": "pc/1.21.3" }, "1.21.1": { "attributes": "pc/1.21.1", @@ -1529,6 +1529,33 @@ "tints": "pc/1.21.3", "version": "pc/1.21.3", "windows": "pc/1.16.1", + "proto": "pc/1.21.3" + }, + "1.21.4": { + "attributes": "pc/1.21.3", + "blockCollisionShapes": "pc/1.21.4", + "blocks": "pc/1.21.4", + "blockLoot": "pc/1.20", + "biomes": "pc/1.21.4", + "commands": "pc/1.20.3", + "effects": "pc/1.21.4", + "enchantments": "pc/1.21.1", + "entities": "pc/1.21.4", + "entityLoot": "pc/1.20", + "foods": "pc/1.21.1", + "instruments": "pc/1.20.5", + "items": "pc/1.21.4", + "language": "pc/1.21.4", + "loginPacket": "pc/1.21.3", + "mapIcons": "pc/1.20.2", + "materials": "pc/1.21.4", + "particles": "pc/1.21.4", + "protocol": "pc/1.21.4", + "recipes": "pc/1.21.4", + "sounds": "pc/1.21.4", + "tints": "pc/1.21.4", + "version": "pc/1.21.4", + "windows": "pc/1.16.1", "proto": "pc/latest" } }, @@ -2355,4 +2382,4 @@ "language": "bedrock/1.20.10" } } -} +} \ No newline at end of file diff --git a/data/pc/1.21.3/proto.yml b/data/pc/1.21.3/proto.yml new file mode 100644 index 000000000..db8572b02 --- /dev/null +++ b/data/pc/1.21.3/proto.yml @@ -0,0 +1,3368 @@ +!version: 1.21.3 +!StartDocs: true + +^types: + varint: native + varlong: native + optvarint: varint + pstring: native + buffer: native + u8: native + u16: native + u32: native + u64: native + i8: native + i16: native + i32: native + i64: native + bool: native + f32: native + f64: native + UUID: native + option: native + entityMetadataLoop: native + topBitSetTerminatedArray: native + bitfield: native + bitflags: native + container: native + switch: native + void: native + array: native + restBuffer: native + anonymousNbt: native + anonOptionalNbt: native + registryEntryHolder: native + registryEntryHolderSet: native + ByteArray: ["buffer", { "countType": "varint" }] + string: [ + "pstring", + { + "countType": "varint" + } + ] + vec2f: + x: f32 + y: f32 + vec3f: + x: f32 + y: f32 + z: f32 + vec4f: + x: f32 + y: f32 + z: f32 + w: f32 + vec3f64: + x: f64 + y: f64 + z: f64 + IDSet: ["registryEntryHolderSet", { + "base": { name: "name", type: "string" }, + "otherwise": { name: "ids", type: "varint" } + }] + ContainerID: varint + SoundEvent: + soundName: string + fixedRange?: f32 + RecipeDisplay: + type: varint => + - crafting_shapeless + - crafting_shaped + - furnace + - stonecutter + - smithing + data: type ? + if crafting_shapeless: + ingredients: SlotDisplay[]varint + result: SlotDisplay + craftingStation: SlotDisplay + if crafting_shaped: + width: varint + height: varint + ingredients: SlotDisplay[]varint + result: SlotDisplay + craftingStation: SlotDisplay + if furnace: + ingredient: SlotDisplay + fuel: SlotDisplay + result: SlotDisplay + craftingStation: SlotDisplay + duration: varint + experience: f32 + if stonecutter: + ingredient: SlotDisplay + result: SlotDisplay + craftingStation: SlotDisplay + if smithing: + template: SlotDisplay + base: SlotDisplay + addition: SlotDisplay + result: SlotDisplay + craftingStation: SlotDisplay + SlotDisplay: + type: varint => + - empty + - any_fuel + - item + - item_stack + - tag + - smithing_trim + - with_remainder + - composite + data: type ? + if empty or any_fuel: void + if item: varint + if item_stack: Slot + if tag: string + if simthing_trim: + base: SlotDisplay + material: SlotDisplay + pattern: SlotDisplay + if with_remainder: + input: SlotDisplay + remainder: SlotDisplay + if composite: SlotDisplay[]varint + SlotComponentType: varint => + - custom_data + - max_stack_size + - max_damage + - damage + - unbreakable + - custom_name + - item_name + - item_model + - lore + - rarity + - enchantments + - can_place_on + - can_break + - attribute_modifiers + - custom_model_data + - hide_additional_tooltip + - hide_tooltip + - repair_cost + - creative_slot_lock + - enchantment_glint_override + - intangible_projectile + - food + - consumable + - use_remainder + - use_cooldown + - damage_resistant + - tool + - enchantable + - equippable + - repairable + - glider + - tooltip_style + - death_protection + - stored_enchantments + - dyed_color + - map_color + - map_id + - map_decorations + - map_post_processing + - charged_projectiles + - bundle_contents + - potion_contents + - suspicious_stew_effects + - writable_book_content + - written_book_content + - trim + - debug_stick_state + - entity_data + - bucket_entity_data + - block_entity_data + - instrument + - ominous_bottle_amplifier + - jukebox_playable + - recipes + - lodestone_tracker + - firework_explosion + - fireworks + - profile + - note_block_sound + - banner_patterns + - base_color + - pot_decorations + - container + - block_state + - bees + - lock + - container_loot + + SlotComponent: + type: SlotComponentType + ## Ref: client/net/minecraft/core/component/DataComponents.java + data: type ? + ## TODO: look into how nbt works here + if custom_data: anonymousNbt + if max_stack_size: varint + if max_damage: varint + if damage: varint + if unbreakable: bool + if custom_name: anonymousNbt + if item_name: anonymousNbt + if item_model: string + if lore: anonOptionalNbt[]varint + if rarity: varint => + - common + - uncommon + - rare + - epic + if enchantments: + enchantments: []varint + id: varint + level: varint + showTooltip: bool + if can_place_on or can_break: + predicates: BlockPredicate[]varint + showTooltip: bool + if attribute_modifiers: + attributes: []varint + typeId: varint + name: string + value: f64 + operation: varint => + - add + - multiply_base + - multiply_total + slot: varint => + - any + - main_hand + - off_hand + - hand + - feet + - legs + - chest + - head + - armor + - body + showTooltip: bool + if custom_model_data: varint + if hide_additional_tooltip: void + if hide_tooltip: void + if repair_cost: varint + if creative_slot_lock: void + if enchantment_glint_override: bool + if intangible_projectile: void + if food: + nutrition: varint + # How much saturation will be given after consuming the item. + saturationModifier: f32 + # Whether the item can always be eaten, even at full hunger. + canAlwaysEat: bool + if consumable: + consume_seconds: f32 + animation: varint => + - none + - eat + - drink + - block + - bow + - spear + - crossbow + - spyglass + - toot_horn + - brush + sound: ["registryEntryHolder", { + "baseName": "soundId", + "otherwise": { name: "data", type: "SoundEvent" } + }] + makes_particles: bool + effects: ConsumeEffect[]varint + if use_remainder: Slot + if use_cooldown: + seconds: f32 + cooldownGroup?: string + if damage_resistant: string + if tool: + rules: []varint + blocks: IDSet + # The speed at which the tool breaks this rules' blocks. + speed?: f32 + # Whether items should drop only if this is the correct tool. + correctDropForBlocks?: bool + # The mining speed in case none of the previous rule were matched. + defaultMiningSpeed: f32 + damagePerBlock: varint + # Enchantment cost up to which the item can be enchanted + if enchantable: varint + if equippable: + slot: varint => + - main_hand + - off_hand + - feet + - legs + - chest + - head + - body + sound: ["registryEntryHolder", { + "baseName": "soundId", + "otherwise": { name: "data", type: "SoundEvent" } + }] + model?: string + cameraOverlay?: string + allowedEntities?: IDSet + dispensable: bool + swappable: bool + damageable: bool + if repairable: + items: IDSet + if tooltip_style: string + if death_protection: + effects: ConsumeEffect[]varint + if stored_enchantments: + enchantments: []varint + # The ID of the enchantment in the enchantment registry. + id: varint + level: varint + # Whether the list of enchantments should be shown on the item's tooltip. + showInTooltip: bool + if dyed_color: + color: varint + showTooltip: bool + if map_color: varint + if map_id: varint + if map_decorations: anonOptionalNbt + if map_post_processing: varint + if charged_projectiles: + projectiles: Slot[]varint + if bundle_contents: + contents: Slot[]varint + if potion_contents: + # True if this potion has an ID in the potion registry--it has the default effects associated with the potion type. + potionId?: varint + # The RGB components of the color, encoded as an integer. + customColor?: varint + customEffects: PotionEffect[]varint + customName: string + # Name Type Description + # Number Of Effects VarInt Number of elements in the following array. + # Effect Type ID Array VarInt Enum The ID of the effect in the potion effect type registry. + # Duration VarInt The duration of the effect. + if suspicious_stew_effects: + effects: []varint + effect: varint + duration: varint + # Name Type Description + # Number Of Pages VarInt Number of elements in the following array. + # Page Raw Content Array (100) String (1024) The raw text of the page. + # Has Filtered Content Boolean + # Filtered Content Optional String (1024) The content after passing through chat filters. Only present if Has Filtered Content is true. + if writable_book_content: + pages: BookPage[]varint + # Name Type Description + # Raw Title String (32) The raw title of the book. + # Has Filtered Title Boolean + # Filtered Title Optional String (32) The title after going through chat filters. Only present if Has Filtered Title is true. + # Author String + # Generation VarInt + # Number Of Pages VarInt Number of elements in the following array. + # Page Raw Content Array (100) TextComponent (1024) The raw text of the page. + # Has Filtered Content Boolean + # Filtered Content Optional Text Component (1024) The content after passing through chat filters. Only present if Has Filtered Content is true. + # Resolved Boolean Whether entity selectors have already been resolved. + if written_book_content: + rawTitle: string + filteredTitle?: string + author: string + generation: varint + pages: BookPage[]varint + # Whether entity selectors have already been resolved. + resolved: bool + # Name Type Description + # Trim Material Type VarInt Identifier used to determine the data that follows. It can be either: + # 0 - Directly represents a trim material, with the necessary data following. + # Anything else - References a trim material in its registry, by the ID of Trim Material Type - 1. + # Asset Name Optional String See Armor Trim Material Registry. Only present if Trim Material Type is 0. + # Ingredient Optional VarInt See Armor Trim Material Registry. Only present if Trim Material Type is 0. + # Item Model Index Optional Float See Armor Trim Material Registry. Only present if Trim Material Type is 0. + # Number of Overrides Optional VarInt See Armor Trim Material Registry. Only present if Trim Material Type is 0. + # Override Armor Material Type Optional Array VarInt Enum See Armor Trim Material Registry. Only present if Trim Material Type is 0. + # Overriden Asset Name String See Armor Trim Material Registry. Only present if Trim Material Type is 0. + # Description Optional Text Component See Armor Trim Material Registry. Only present if Trim Material Type is 0. + # Trim Pattern Type VarInt Identifier used to determine the data that follows. It can be either: + # 0 - Directly represents a trim pattern, with the necessary data following. + # Anything else - References a trim pattern in its registry, by the ID of Trim Pattern Type - 1. + # Asset Name Optional String See Armor Trim Pattern Registry. Only present if Trim Pattern Type is 0. + # Template Item Optional VarInt See Armor Trim Pattern Registry. Only present if Trim Pattern Type is 0. + # Description Optional Text Component See Armor Trim Pattern Registry. Only present if Trim Pattern Type is 0. + # Decal Optional Boolean See Armor Trim Pattern Registry. Only present if Trim Pattern Type is 0. + # Show In Tooltip Boolean Whether the trim information should be shown on the item's tooltip. + if trim: + # Identifier used to determine the data that follows. It can be either: + # 0 - Directly represents a trim material, with the necessary data following. + # Anything else - References a trim material in its registry, by the ID of Trim Material Type - 1. + materialType: varint + _: materialType ? + if 0: + assetName: string + ingredientId: varint + itemModelIndex: f32 + numberOfOverrides: optvarint + override: []varint + armorMaterialType: varint + overridenAssetName: string + description: string + trimPatternType: varint + _: trimPatternType ? + if 0: + assetName: string + templateItem: varint + description: string + decal: bool + showInTooltip: bool + if debug_stick_state: anonymousNbt + if entity_data: anonymousNbt + if bucket_entity_data: anonymousNbt + if block_entity_data: anonymousNbt + # Name Type Description + # Instrument Type VarInt Identifier used to determine the data that follows. It can be either: + # 0 - Directly represents an instrument, with the necessary data following. + # Anything else - References an instrument in its registry, by the ID of Instrument Type - 1. + # Sound Event Optional Sound Event The sound to be played. Only present if Instrument Type is 0. + # Use duration Optional Float The maximum range of the sound. Only present if Instrument Type is 0. + # Range Optional Float The range of the instrument. Only present if Instrument Type is 0. + if instrument: + instrumentType: varint + _: instrumentType ? + if 0: + soundEvent: string + useDuration: f32 + range: f32 + if ominous_bottle_amplifier: varint + # Name Type Description + # Direct Mode Boolean Whether the jukebox song is specified directly, or just referenced by name. + # Jukebox Song Name Optional Identifier The name of the jukebox song in its respective registry. Only present if Direct Mode is false. + # Jukebox Song Type Optional VarInt Identifier used to determine the data that follows. It can be either: + # 0 - Directly represents a jukebox song, with the necessary data following. + # Anything else - References a jukebox song in its registry, by the ID of Jukebox Song Type - 1. + # Only present if Direct Mode is true. + # Sound Event Optional Sound Event The sound to be played. Only present if Direct Mode is true and Jukebox Song Type is 0. + # Description Optional Text Component The description shown in the item lore. Only present if Direct Mode is true and Jukebox Song Type is 0. + # Duration Optional Float The duration the songs should play for, in seconds. Only present if Direct Mode is true and Jukebox Song Type is 0. + # Output Optional VarInt The output strength given by a comparator. Between 0 and 15. Only present if Direct Mode is true and Jukebox Song Type is 0. + # Show In Tooltip Boolean Whether the song should be shown on the item's tooltip. + if jukebox_playable: + directMode: bool + _: directMode ? + if true: + jukeboxSongName: string + jukeboxSongType: varint + _: jukeboxSongType ? + if 0: + soundEvent: + soundEventType: varint + _: soundEventType ? + if 0: + soundName: string + fixedRange?: f32 + description: anonymousNbt + duration: f32 + output: varint + if false: + songLocation: string + showInTooltip: bool + if recipes: anonymousNbt + # Name Type Description + # Has Global Position Boolean Whether this lodestone points to a position, otherwise it spins randomly. + # Dimension Identifier The dimension the compass points to. Only present if Has Global Position is true. + # Position Position The position the compass points to. Only present if Has Global Position is true. + # Tracked Boolean Whether the component is removed when the associated lodestone is broken. + if lodestone_tracker: + globalPosition?: + dimension: string + position: position + tracked: bool + # Name Type Description + # Shape VarInt Enum Can be one of the following: + # 0 - Small ball + # 1 - Large ball + # 2 - Star + # 3 - Creeper + # 4 - Burst + # Number Of Colors VarInt The number of elements in the following array. + # Colors Array of Int The RGB components of the color, encoded as an integer. + # Number Of Fade Colors VarInt The number of elements in the following array. + # Fade Colors Array of Int The RGB components of the color, encoded as an integer. + # Has Trail Boolean + # Has Twinkle Boolean + if firework_explosion: FireworkExplosion + if fireworks: + flightDuration: varint + explosions: FireworkExplosion[]varint + # Name Type Description + # Has Name Boolean + # Name Optional String (16) Only present if Has Name is true. + # Has Unique ID Boolean + # Unique ID Optional UUID Only present if Has Unique ID is true. + # Number of Properties VarInt Number of elements in the following array. + # Property Name Array String (64) + # Value String + # Has Signature Boolean + # Signature String (1024) Only present if Has Signature is true. + if profile: + hasName: bool + name: string + hasUniqueId: bool + uniqueId: UUID + properties: []varint + property: string + value: string + hasSignature: bool + signature: string + if note_block_sound: string + # Name Type Description + # Number of Layers VarInt Number of elements in the following array. + # Layer Pattern Type Array VarInt Identifier used to determine the data that follows. It can be either: + # 0 - Directly represents a pattern, with the necessary data following. + # Anything else - References a pattern in its registry, by the ID of Pattern Type - 1. + # Asset ID Optional Identifier Identifier of the asset. Only present if Pattern Type is 0. + # Translation Key Optional String Only present if Pattern Type is 0. + # Color Dye Color See Dye Color. + if banner_patterns: + layers: []varint + patternType: varint + _: patternType ? + if 0: + assetId: string + translationKey: string + color: varint + if base_color: varint + if pot_decorations: + # The ID of the items in the item registry. + decorations: varint[]varint + if container: + contents: Slot[]varint + # Name Type Description + # Number of Properties VarInt Number of elements in the following array. + # Property Name Array String + # Value String + if block_state: + properties: []varint + property: string + value: string + # Name Type Description + # Number of Bees VarInt Number of elements in the following array. + # Bee Entity Data Array NBT + # Ticks In Hive VarInt + # Min Ticks In Hive VarInt + if bees: + bees: []varint + # Custom data for the entity, always a Compound Tag. Same structure as the minecraft:custom_data component. + nbtData: anonymousNbt + ticksInHive: varint + minTicksInHive: varint + if lock: anonymousNbt + if container_loot: anonymousNbt + + Slot: + itemCount: varint + _: itemCount ? + if 0: void + default: + itemId: varint +# https://wiki.vg/Slot_Data#Structured_components + addedComponentCount: varint + removedComponentCount: varint + components: SlotComponent[]$addedComponentCount + removeComponents: []$removedComponentCount + type: SlotComponentType + + FireworkExplosion: + shape: varint => + - small_ball + - large_ball + - star + - creeper + - burst + colors: i32[]varint + fadeColors: i32[]varint + hasTrail: bool + hasTwinkle: bool + + BookPage: + content: string + filteredContent?: string + + EffectDetail: + amplifier: varint + duration: varint + ambient: bool + showParticles: bool + showIcon: bool + hiddenEffect?: EffectDetail + + PotionEffect: + id: varint + details: EffectDetail + + ConsumeEffect: + type: varint => + - apply_effects + - remove_effects + - clear_all_effects + - teleport_randomly + - play_sound + _: type ? + if apply_effects: + effects: PotionEffect[]varint + probability: f32 + if remove_effects: + effects: IDSet + if clear_all_effects: void + if teleport_randomly: + diameter: f32 + if play_sound: + sound: ["registryEntryHolder", { + "baseName": "soundId", + "otherwise": { name: "data", type: "SoundEvent" } + }] + + BlockProperty: + # Name of the block state property. + name: string + # Whether this is an exact value match, as opposed to ranged. + isExactMatch: bool + # Value of the block state property. Only present in exact match mode. + exactValue?: string + # Minimum value of the block state property range. Only present in ranged match mode. + minValue?: string + # Maximum value of the block state property range. Only present in ranged match mode. + maxValue?: string + + BlockPredicate: + blockSet?: ["registryEntryHolderSet", { + "base": { name: "name", type: "string" }, + "otherwise": { name: "blockIds", type: "varint" } + }] + properties?: BlockProperty[]varint + nbt: anonOptionalNbt + + Particle: + # See client/net/minecraft/core/particles/ParticleTypes.java + type: varint => + - angry_villager + - block + - block_marker + - bubble + - cloud + - crit + - damage_indicator + - dragon_breath + - dripping_lava + - falling_lava + - landing_lava + - dripping_water + - falling_water + - dust + - dust_color_transition + - effect + - elder_guardian + - enchanted_hit + - enchant + - end_rod + - entity_effect + - explosion_emitter + - explosion + - gust + - small_gust + - gust_emitter_large + - gust_emitter_small + - sonic_boom + - falling_dust + - firework + - fishing + - flame + - infested + - cherry_leaves + - sculk_soul + - sculk_charge + - sculk_charge_pop + - soul_fire_flame + - soul + - flash + - happy_villager + - composter + - heart + - instant_effect + - item + - vibration + - trail + - item_slime + - item_cobweb + - item_snowball + - large_smoke + - lava + - mycelium + - note + - poof + - portal + - rain + - smoke + - white_smoke + - sneeze + - spit + - squid_ink + - sweep_attack + - totem_of_undying + - underwater + - splash + - witch + - bubble_pop + - current_down + - bubble_column_up + - nautilus + - dolphin + - campfire_cosy_smoke + - campfire_signal_smoke + - dripping_honey + - falling_honey + - landing_honey + - falling_nectar + - falling_spore_blossom + - ash + - crimson_spore + - warped_spore + - spore_blossom_air + - dripping_obsidian_tear + - falling_obsidian_tear + - landing_obsidian_tear + - reverse_portal + - white_ash + - small_flame + - snowflake + - dripping_dripstone_lava + - falling_dripstone_lava + - dripping_dripstone_water + - falling_dripstone_water + - glow_squid_ink + - glow + - wax_on + - wax_off + - electric_spark + - scrape + - shriek + - egg_crack + - dust_plume + - trial_spawner_detected_player + - trial_spawner_detected_player_ominous + - vault_connection + - dust_pillar + - ominous_spawning + - raid_omen + - trial_omen + - block_crumble + ## ## Tips for reviewing particle data (as of 1.20.5) + ## Inside the registry code, each particle can have an associated "options" type and + ## each options type can add additional data to be encoded. + ## For example, this line + ## public static final ParticleType BLOCK = register("block", false, BlockParticleOption::codec, BlockParticleOption::streamCodec); + ## will read the stream codec from BlockParticleOption.java's streamCodec member; then we see + ## return ByteBufCodecs.idMapper(Block.BLOCK_STATE_REGISTRY).map(var1 -> new BlockParticleOption(var0, var1), var0x -> var0x.state); + ## this encodes with the ByteBufCodecs.idMapper function. Inside this function we find + ## public void encode(ByteBuf var1x, T var2) { + ## int var3 = var1.applyAsInt(var2); + ## VarInt.write(var1x, var3); + ## } + ## which as we can see writes the varint to the buffer. + ## If you want to see all the serializers try regexp searching "StreamCodec.*Particle" + data: type ? + if block or block_marker or falling_dust or dust_pillar or block_crumble: varint + if dust: + red: f32 + green: f32 + blue: f32 + scale: f32 + if dust_color_transition: + fromRed: f32 + fromGreen: f32 + fromBlue: f32 + scale: f32 + toRed: f32 + toGreen: f32 + toBlue: f32 + if entity_effect: i32 + if item: Slot + if sculk_charge: f32 + if shriek: varint + if vibration: + position_type: varint => + - block + - entity + position: position_type ? + if block: position + if entity: + entityId: varint + entity_eye_height: f32 + ticks: varint + if trail: + target: vec3f64 + color: u8 + ingredient: Slot[]varint + position: [ + "bitfield", + [ + { + "name": "x", + "size": 26, + "signed": true + }, + { + "name": "z", + "size": 26, + "signed": true + }, + { + "name": "y", + "size": 12, + "signed": true + } + ] + ] + soundSource: varint => + 0: master + 1: music + 2: record + 3: weather + 4: block + 5: hostile + 6: neutral + 7: player + 8: ambient + 9: voice + packedChunkPos: + z: i32 + x: i32 + previousMessages: []varint + id: varint + signature: id ? + if 0: [ + "buffer", + { + "count": 256 + } + ] + default: void + entityMetadataEntry: + key: u8 + type: varint => + - byte + - int + - long + - float + - string + - component + - optional_component + - item_stack + - boolean + - rotations + - block_pos + - optional_block_pos + - direction + - optional_uuid + - block_state + - optional_block_state + - compound_tag + - particle + - particles + - villager_data + - optional_unsigned_int + - pose + - cat_variant + - wolf_variant + - frog_variant + - optional_global_pos + - painting_variant + - sniffer_state + - armadillo_state + - vector3 + - quaternion + value: type ? + if byte: i8 + if int: varint + if long: varlong + if float: f32 + if string: string + if component: anonymousNbt + if optional_component: ["option", "anonymousNbt"] + if item_stack: Slot + if boolean: bool + if rotations: + pitch: f32 + yaw: f32 + roll: f32 + if block_pos: position + if optional_block_pos: ["option", "position"] + if direction: varint + if optional_uuid: ["option", "UUID"] + if block_state: varint + if optional_block_state: optvarint + if compound_tag: anonymousNbt + if particle: Particle + if particles: Particle[]varint + if villager_data: + villagerType: varint + villagerProfession: varint + level: varint + if optional_unsigned_int: optvarint + if pose: varint + if cat_variant: varint + if wolf_variant: ["registryEntryHolder", { + "baseName": "variantId", + "otherwise": { name: "variantData", type: "EntityMetadataWolfVariant" } + }] + if frog_variant: varint + if optional_global_pos: ["option", "string"] + if painting_variant: ["registryEntryHolder", { + "baseName": "variantId", + "otherwise": { name: "variantData", type: "EntityMetadataPaintingVariant" } + }] + if sniffer_state: varint + if armadillo_state: varint + if vector3: vec3f + if quaternion: vec4f + EntityMetadataPaintingVariant: + width: i32 + height: i32 + assetId: string + title?: anonymousNbt + author?: anonymousNbt + EntityMetadataWolfVariant: + wildTexture: string + tameTexture: string + angryTexture: string + biome: IDSet + + entityMetadata: ["entityMetadataLoop", { "endVal": 255, "type": "entityMetadataEntry" }] + tags: []varint + tagName: string + entries: varint[]varint + chunkBlockEntity: + _: [ + "bitfield", + [ + { + "name": "x", + "size": 4, + "signed": false + }, + { + "name": "z", + "size": 4, + "signed": false + } + ] + ] + y: i16 + type: varint + nbtData: anonOptionalNbt + chat_session?: + uuid: UUID + publicKey: + expireTime: i64 + keyBytes: [ + "buffer", + { + "countType": "varint" + } + ] + keySignature: [ + "buffer", + { + "countType": "varint" + } + ] + game_profile: + name: string + properties: []varint + key: string + value: string + signature?: string + command_node: + flags: [ + "bitfield", + [ + { + "name": "unused", + "size": 3, + "signed": false + }, + { + "name": "has_custom_suggestions", + "size": 1, + "signed": false + }, + { + "name": "has_redirect_node", + "size": 1, + "signed": false + }, + { + "name": "has_command", + "size": 1, + "signed": false + }, + { + "name": "command_node_type", + "size": 2, + "signed": false + } + ] + ] + children: varint[]varint + redirectNode: flags/has_redirect_node ? + if 1: varint + default: void + extraNodeData: flags/command_node_type ? + if 0: void + if 1: + name: string + if 2: + name: string + parser: varint => + - brigadier:bool + - brigadier:float + - brigadier:double + - brigadier:integer + - brigadier:long + - brigadier:string + - minecraft:entity + - minecraft:game_profile + - minecraft:block_pos + - minecraft:column_pos + - minecraft:vec3 + - minecraft:vec2 + - minecraft:block_state + - minecraft:block_predicate + - minecraft:item_stack + - minecraft:item_predicate + - minecraft:color + - minecraft:component + - minecraft:style + - minecraft:message + - minecraft:nbt + - minecraft:nbt_tag + - minecraft:nbt_path + - minecraft:objective + - minecraft:objective_criteria + - minecraft:operation + - minecraft:particle + - minecraft:angle + - minecraft:rotation + - minecraft:scoreboard_slot + - minecraft:score_holder + - minecraft:swizzle + - minecraft:team + - minecraft:item_slot + - minecraft:item_slots # 1.20.5 + - minecraft:resource_location + - minecraft:function + - minecraft:entity_anchor + - minecraft:int_range + - minecraft:float_range + - minecraft:dimension + - minecraft:gamemode + - minecraft:time + - minecraft:resource_or_tag + - minecraft:resource_or_tag_key + - minecraft:resource + - minecraft:resource_key + - minecraft:template_mirror + - minecraft:template_rotation + - minecraft:heightmap + - minecraft:loot_table # 1.20.5 + - minecraft:loot_predicate # 1.20.5 + - minecraft:loot_modifier # 1.20.5 + - minecraft:uuid + properties: parser ? + if brigadier:bool: void + if brigadier:float: + flags: [ + "bitfield", + [ + { + "name": "unused", + "size": 6, + "signed": false + }, + { + "name": "max_present", + "size": 1, + "signed": false + }, + { + "name": "min_present", + "size": 1, + "signed": false + } + ] + ] + min: flags/min_present ? + if 1: f32 + default: void + max: flags/max_present ? + if 1: f32 + default: void + if brigadier:double: + flags: [ + "bitfield", + [ + { + "name": "unused", + "size": 6, + "signed": false + }, + { + "name": "max_present", + "size": 1, + "signed": false + }, + { + "name": "min_present", + "size": 1, + "signed": false + } + ] + ] + min: flags/min_present ? + if 1: f64 + default: void + max: flags/max_present ? + if 1: f64 + default: void + if brigadier:integer: + flags: [ + "bitfield", + [ + { + "name": "unused", + "size": 6, + "signed": false + }, + { + "name": "max_present", + "size": 1, + "signed": false + }, + { + "name": "min_present", + "size": 1, + "signed": false + } + ] + ] + min: flags/min_present ? + if 1: i32 + default: void + max: flags/max_present ? + if 1: i32 + default: void + if brigadier:long: + flags: [ + "bitfield", + [ + { + "name": "unused", + "size": 6, + "signed": false + }, + { + "name": "max_present", + "size": 1, + "signed": false + }, + { + "name": "min_present", + "size": 1, + "signed": false + } + ] + ] + min: flags/min_present ? + if 1: i64 + default: void + max: flags/max_present ? + if 1: i64 + default: void + if brigadier:string: varint => + 0: SINGLE_WORD + 1: QUOTABLE_PHRASE + 2: GREEDY_PHRASE + if minecraft:entity: [ + "bitfield", + [ + { + "name": "unused", + "size": 6, + "signed": false + }, + { + "name": "onlyAllowPlayers", + "size": 1, + "signed": false + }, + { + "name": "onlyAllowEntities", + "size": 1, + "signed": false + } + ] + ] + if minecraft:game_profile: void + if minecraft:block_pos: void + if minecraft:column_pos: void + if minecraft:vec3: void + if minecraft:vec2: void + if minecraft:block_state: void + if minecraft:block_predicate: void + if minecraft:item_stack: void + if minecraft:item_predicate: void + if minecraft:color: void + if minecraft:component: void + if minecraft:message: void + if minecraft:nbt: void + if minecraft:nbt_path: void + if minecraft:objective: void + if minecraft:objective_criteria: void + if minecraft:operation: void + if minecraft:particle: void + if minecraft:angle: void + if minecraft:rotation: void + if minecraft:scoreboard_slot: void + if minecraft:score_holder: [ + "bitfield", + [ + { + "name": "unused", + "size": 7, + "signed": false + }, + { + "name": "allowMultiple", + "size": 1, + "signed": false + } + ] + ] + if minecraft:swizzle: void + if minecraft:team: void + if minecraft:item_slot: void + if minecraft:resource_location: void + if minecraft:function: void + if minecraft:entity_anchor: void + if minecraft:int_range: void + if minecraft:float_range: void + if minecraft:dimension: void + if minecraft:gamemode: void + if minecraft:time: + min: i32 + if minecraft:resource_or_tag: + registry: string + if minecraft:resource_or_tag_key: + registry: string + if minecraft:resource: + registry: string + if minecraft:resource_key: + registry: string + if minecraft:template_mirror: void + if minecraft:template_rotation: void + if minecraft:heightmap: void + if minecraft:uuid: void + suggestionType: ../flags/has_custom_suggestions ? + if 1: string + default: void + # # Shared Packets + # These are packets that are shared between multiple states. + # They are defined here to avoid duplication. + # ===== + # MC: ClientboundCookieRequestPacket + packet_common_cookie_request: + cookie: string + # MC: ClientboundStoreCookiePacket + packet_common_store_cookie: + key: string + value: ByteArray + # MC: ClientboundTransferPacket + packet_common_transfer: + host: string + port: varint + # MC: ServerboundCookieResponsePacket + packet_common_cookie_response: + key: string + value: ByteArray + # MC: ServerboundSelectKnownPacks + # MC: ClientboundSelectKnownPacks + packet_common_select_known_packs: + packs: []varint + namespace: string + id: string + version: string + # MC: ClientboundCustomReportDetailsPacket + packet_common_custom_report_details: + details: []varint + key: string + value: string + # MC: ClientboundResourcePackPopPacket + packet_common_remove_resource_pack: + uuid?: UUID + # MC: ClientboundResourcePackPushPacket + packet_common_add_resource_pack: + uuid: UUID + url: string + hash: string + forced: bool + promptMessage?: anonymousNbt + + ServerLinkType: varint => + - bug_report + - community_guidelines + - support + - status + - feedback + - community + - website + - forums + - news + - announcements + # MC: ClientboundServerLinksPacket + # This packet contains a list of links that the Notchian client will display in the menu + # available from the pause menu. Link labels can be built-in or custom (i.e., any text). + packet_common_server_links: + links: []varint + hasKnownType: bool + knownType: hasKnownType ? + if true: ServerLinkType + unknownType: hasKnownType ? + if false: anonymousNbt + link: string + +^handshaking.toClient.types: + packet: + name: varint => + params: ["switch",{"compareTo":"name","fields":{}}] +^handshaking.toServer.types: + packet_set_protocol: + protocolVersion: varint + serverHost: string + serverPort: u16 + nextState: varint + packet_legacy_server_list_ping: + payload: u8 + packet: + name: varint => + 0x00: set_protocol + 0xfe: legacy_server_list_ping + params: name ? + if set_protocol: packet_set_protocol + if legacy_server_list_ping: packet_legacy_server_list_ping +^status.toClient.types: + # MC: ClientboundStatusResponsePacket + packet_server_info: + response: string + # MC: ClientboundPongResponsePacket + packet_ping: + time: i64 + packet: + name: varint => + 0x00: server_info + 0x01: ping + params: name ? + if server_info: packet_server_info + if ping: packet_ping +^status.toServer.types: + # MC: ServerboundStatusRequestPacket + packet_ping_start: + # Empty + # MC: ServerboundPingRequestPacket + packet_ping: + time: i64 + packet: + name: varint => + 0x00: ping_start + 0x01: ping + params: name ? + if ping_start: packet_ping_start + if ping: packet_ping +^login.toClient.types: + # MC: ClientboundLoginDisconnectPacket + packet_disconnect: + reason: string + # MC: ClientboundHelloPacket + packet_encryption_begin: + serverId: string + publicKey: [ + "buffer", + { + "countType": "varint" + } + ] + verifyToken: [ + "buffer", + { + "countType": "varint" + } + ] + shouldAuthenticate: bool + # MC: ClientboundLoginFinishedPacket + packet_success: + uuid: UUID + username: string + properties: []varint + name: string + value: string + signature?: string + # MC: ClientboundLoginCompressionPacket + packet_compress: + threshold: varint + # MC: ClientboundCustomQueryPacket + packet_login_plugin_request: + messageId: varint + channel: string + data: restBuffer + ## (Cookie Request is Common) ## + packet: + name: varint => + - disconnect + - encryption_begin + - success + - compress + - login_plugin_request + - cookie_request + params: name ? + if disconnect: packet_disconnect + if encryption_begin: packet_encryption_begin + if success: packet_success + if compress: packet_compress + if login_plugin_request: packet_login_plugin_request + if cookie_request: packet_common_cookie_request +^login.toServer.types: + # MC: ServerboundHelloPacket + packet_login_start: + username: string + playerUUID: UUID + # MC: ServerboundKeyPacket + packet_encryption_begin: + sharedSecret: [ + "buffer", + { + "countType": "varint" + } + ] + verifyToken: [ + "buffer", + { + "countType": "varint" + } + ] + # MC: ServerboundCustomQueryAnswerPacket + packet_login_plugin_response: + messageId: varint + data?: restBuffer + # MC: ServerboundLoginAcknowledgedPacket + packet_login_acknowledged: + # Empty + ## (Cookie Response is Common) ## + packet: + name: varint => + - login_start + - encryption_begin + - login_plugin_response + - login_acknowledged + - cookie_response + params: name ? + if login_start: packet_login_start + if encryption_begin: packet_encryption_begin + if login_plugin_response: packet_login_plugin_response + if login_acknowledged: packet_login_acknowledged + if cookie_response: packet_common_cookie_response +^configuration.toClient.types: + ## (Cookie Request is common) + # MC: ClientboundCustomPayloadPacket + packet_custom_payload: + channel: string + data: restBuffer + # MC: ClientboundDisconnectPacket + packet_disconnect: + reason: anonymousNbt + # MC: ClientboundFinishConfigurationPacket + packet_finish_configuration: + # Empty + # MC: ClientboundKeepAlivePacket + packet_keep_alive: + keepAliveId: i64 + # MC: ClientboundPingPacket + packet_ping: + id: i32 + # MC: ClientboundResetChatPacket + packet_reset_chat: + # Empty + # MC: ClientboundRegistryDataPacket + packet_registry_data: + # The server can send multiple registries + id: string + entries: []varint + key: string + value?: anonymousNbt + ## (Store cookie and Transfer are Common) ## + # MC: ClientboundUpdateEnabledFeaturesPacket + packet_feature_flags: + features: string[]varint + # MC: ClientboundUpdateTagsPacket + packet_tags: + tags: []varint + tagType: string + tags: tags + ## (Select known packs is common) + packet: + name: varint => + - cookie_request + - custom_payload + - disconnect + - finish_configuration + - keep_alive + - ping + - reset_chat + - registry_data + - remove_resource_pack + - add_resource_pack + - store_cookie + - transfer + - feature_flags + - tags + - select_known_packs + - custom_report_details + - server_links + params: name ? + if cookie_request: packet_common_cookie_request + if custom_payload: packet_custom_payload + if disconnect: packet_disconnect + if finish_configuration: packet_finish_configuration + if keep_alive: packet_keep_alive + if ping: packet_ping + if reset_chat: packet_reset_chat + if registry_data: packet_registry_data + if remove_resource_pack: packet_common_remove_resource_pack + if add_resource_pack: packet_common_add_resource_pack + if store_cookie: packet_common_store_cookie + if transfer: packet_common_transfer + if feature_flags: packet_feature_flags + if tags: packet_tags + if select_known_packs: packet_common_select_known_packs + if custom_report_details: packet_common_custom_report_details + if server_links: packet_common_server_links +^configuration.toServer.types: + # MC: ServerboundClientInformationPacket + packet_settings: + locale: string + viewDistance: i8 + chatFlags: varint + chatColors: bool + skinParts: u8 + mainHand: varint + enableTextFiltering: bool + enableServerListing: bool + particles: varint + ## (Cookie Response is Common) ## + # MC: ServerboundCustomPayloadPacket + packet_custom_payload: + channel: string + data: restBuffer + # MC: ServerboundFinishConfigurationPacket + packet_finish_configuration: + # Empty + # MC: ServerboundKeepAlivePacket + packet_keep_alive: + keepAliveId: i64 + # MC: ServerboundPongPacket + packet_pong: + id: i32 + # MC: ServerboundResourcePackPacket + packet_resource_pack_receive: + uuid: UUID + result: varint + packet: + name: varint => + - settings + - cookie_response + - custom_payload + - finish_configuration + - keep_alive + - pong + - resource_pack_receive + - select_known_packs + - custom_report_details + - server_links + params: name ? + if settings: packet_settings + if cookie_response: packet_common_cookie_response + if custom_payload: packet_custom_payload + if finish_configuration: packet_finish_configuration + if keep_alive: packet_keep_alive + if pong: packet_pong + if resource_pack_receive: packet_resource_pack_receive + if select_known_packs: packet_common_select_known_packs + if custom_report_details: packet_common_custom_report_details + if server_links: packet_common_server_links +^play.toClient.types: + # World state information for spawn and respawn packets + # World state information for spawn and respawn packets + SpawnInfo: + dimension: varint + name: string + hashedSeed: i64 + gamemode: i8 => + - survival + - creative + - adventure + - spectator + previousGamemode: u8 + isDebug: bool + isFlat: bool + death?: + dimensionName: string + location: position + portalCooldown: varint + seaLevel: varint + + # MC: ClientboundAddEntityPacket + packet_spawn_entity: + entityId: varint + objectUUID: UUID + type: varint + x: f64 + y: f64 + z: f64 + pitch: i8 + yaw: i8 + headPitch: i8 + objectData: varint + velocityX: i16 + velocityY: i16 + velocityZ: i16 + # MC: ClientboundAddExperienceOrbPacket + packet_spawn_entity_experience_orb: + entityId: varint + x: f64 + y: f64 + z: f64 + count: i16 + # MC: ClientboundAnimatePacket + packet_animation: + entityId: varint + animation: u8 + # MC: ClientboundAwardStatsPacket + packet_statistics: + entries: []varint + categoryId: varint + statisticId: varint + value: varint + # MC: ClientboundBlockChangedAckPacket + packet_acknowledge_player_digging: + sequenceId: varint + # MC: ClientboundBlockDestructionPacket + packet_block_break_animation: + entityId: varint + location: position + destroyStage: i8 + # MC: ClientboundBlockEntityDataPacket + packet_tile_entity_data: + location: position + action: varint + nbtData: anonOptionalNbt + # MC: ClientboundBlockEventPacket + packet_block_action: + location: position + byte1: u8 + byte2: u8 + blockId: varint + # MC: ClientboundBlockUpdatePacket + packet_block_change: + location: position + type: varint + # MC: ClientboundBossEventPacket + packet_boss_bar: + entityUUID: UUID + action: varint + title: action ? + if 0: anonymousNbt + if 3: anonymousNbt + default: void + health: action ? + if 0: f32 + if 2: f32 + default: void + color: action ? + if 0: varint + if 4: varint + default: void + dividers: action ? + if 0: varint + if 4: varint + default: void + flags: action ? + if 0: u8 + if 5: u8 + default: void + # MC: ClientboundChangeDifficultyPacket + packet_difficulty: + difficulty: u8 + difficultyLocked: bool + # MC: ClientboundChunkBatchFinishedPacket + packet_chunk_batch_finished: + batchSize: varint + # MC: ClientboundChunkBatchStartPacket + packet_chunk_batch_start: + # Empty + # MC: ClientboundChunksBiomesPacket + packet_chunk_biomes: + biomes: []varint + position: packedChunkPos + data: ByteArray + # MC: ClientboundClearTitlesPacket + packet_clear_titles: + reset: bool + # MC: ClientboundCommandSuggestionsPacket + packet_tab_complete: + transactionId: varint + start: varint + length: varint + matches: []varint + match: string + tooltip?: anonymousNbt + # MC: ClientboundCommandsPacket + packet_declare_commands: + nodes: command_node[]varint + rootIndex: varint + # MC: ClientboundContainerClosePacket + packet_close_window: + windowId: ContainerID + # MC: ClientboundContainerSetContentPacket + packet_window_items: + windowId: ContainerID + stateId: varint + items: Slot[]varint + carriedItem: Slot + # MC: ClientboundContainerSetDataPacket + packet_craft_progress_bar: + windowId: ContainerID + property: i16 + value: i16 + # MC: ClientboundContainerSetSlotPacket + packet_set_slot: + windowId: ContainerID + stateId: varint + slot: i16 + item: Slot + ## (Cookie Request is Common) + # MC: ClientboundCooldownPacket + packet_set_cooldown: + # TODO: figure out what this is + cooldownGroup: string + cooldownTicks: varint + # MC: ClientboundCustomChatCompletionsPacket + packet_chat_suggestions: + action: varint + entries: string[]varint + # MC: ClientboundCustomPayloadPacket + packet_custom_payload: + channel: string + data: restBuffer + # MC: ClientboundDamageEventPacket + packet_damage_event: + entityId: varint + sourceTypeId: varint + sourceCauseId: varint + sourceDirectId: varint + sourcePosition?: vec3f64 + # MC: ClientboundDebugSamplePacket + packet_debug_sample: + sample: i64[]varint + type: varint + # MC: ClientboundDeleteChatPacket + packet_hide_message: + id: varint + signature: id ? + if 0: [ + "buffer", + { + "count": 256 + } + ] + default: void + # MC: ClientboundDisconnectPacket + packet_kick_disconnect: + reason: anonymousNbt + + ## client\net\minecraft\network\chat\ChatTypeDecoration.java + ## via client\net\minecraft\network\chat\ChatType.java + ChatTypeParameterType: varint => + - content + - sender + - target + ChatType: + translationKey: string + parameters: ChatTypeParameterType[]varint + style: anonymousNbt + ChatTypes: + # Either the extra data is retrieved from the registry (via this ID+1 if non-zero), or it's supplied inline in the chat packet + registryIndex: varint + _: registryIndex ? + if 0: + chat: ChatType + narration: ChatType + default: void + + # MC: ClientboundDisguisedChatPacket + packet_profileless_chat: + message: anonymousNbt + type: ChatTypes + name: anonymousNbt + target?: anonymousNbt + # MC: ClientboundEntityEventPacket + packet_entity_status: + entityId: i32 + entityStatus: i8 + # MC: ClientboundEntityPositionSyncPacket + packet_sync_entity_position: + entityId: varint + x: f64 + y: f64 + z: f64 + dx: f64 + dy: f64 + dz: f64 + yaw: f32 + pitch: f32 + onGround: bool + # MC: ClientboundExplodePacket + packet_explosion: + center: vec3f + playerKnockback?: vec3f + explosionParticle: Particle + soundId: varint + _: soundId ? + if 0: + soundName: string + range?: f32 + default: + + # MC: ClientboundForgetLevelChunkPacket + packet_unload_chunk: + chunkZ: i32 + chunkX: i32 + # MC: ClientboundGameEventPacket + packet_game_state_change: + reason: u8 + gameMode: f32 + # MC: ClientboundHorseScreenOpenPacket + packet_open_horse_window: + windowId: ContainerID + nbSlots: varint + entityId: i32 + # MC: ClientboundHurtAnimationPacket + packet_hurt_animation: + entityId: varint + yaw: f32 + # MC: ClientboundInitializeBorderPacket + packet_initialize_world_border: + x: f64 + z: f64 + oldDiameter: f64 + newDiameter: f64 + speed: varint + portalTeleportBoundary: varint + warningBlocks: varint + warningTime: varint + # MC: ClientboundKeepAlivePacket + packet_keep_alive: + keepAliveId: i64 + # MC: ClientboundLevelChunkWithLightPacket + packet_map_chunk: + x: i32 + z: i32 + heightmaps: anonymousNbt + chunkData: [ + "buffer", + { + "countType": "varint" + } + ] + blockEntities: chunkBlockEntity[]varint + skyLightMask: i64[]varint + blockLightMask: i64[]varint + emptySkyLightMask: i64[]varint + emptyBlockLightMask: i64[]varint + skyLight: []varint + _: u8[]varint + blockLight: []varint + _: u8[]varint + # MC: ClientboundLevelEventPacket + packet_world_event: + effectId: i32 + location: position + data: i32 + global: bool + # MC: ClientboundLevelParticlesPacket + packet_world_particles: + longDistance: bool + x: f64 + y: f64 + z: f64 + offsetX: f32 + offsetY: f32 + offsetZ: f32 + velocityOffset: f32 + amount: i32 + particle: Particle + # MC: ClientboundLightUpdatePacket + packet_update_light: + chunkX: varint + chunkZ: varint + skyLightMask: i64[]varint + blockLightMask: i64[]varint + emptySkyLightMask: i64[]varint + emptyBlockLightMask: i64[]varint + skyLight: []varint + _: u8[]varint + blockLight: []varint + _: u8[]varint + # MC: ClientboundLoginPacket + packet_login: + entityId: i32 + isHardcore: bool + worldNames: string[]varint + maxPlayers: varint + viewDistance: varint + simulationDistance: varint + reducedDebugInfo: bool + enableRespawnScreen: bool + doLimitedCrafting: bool + worldState: SpawnInfo + enforcesSecureChat: bool + # MC: ClientboundMapItemDataPacket + packet_map: + itemDamage: varint + scale: i8 + locked: bool + icons?: []varint + type: varint + x: i8 + z: i8 + direction: u8 + displayName?: anonymousNbt + columns: u8 + rows: columns ? + if 0: void + default: u8 + x: columns ? + if 0: void + default: u8 + y: columns ? + if 0: void + default: u8 + data: columns ? + if 0: void + default: [ + "buffer", + { + "countType": "varint" + } + ] + # MC: ClientboundMerchantOffersPacket + packet_trade_list: + windowId: ContainerID + ## https://github.com/extremeheat/extracted_minecraft_data/blob/client1.20.5/client/net/minecraft/world/item/trading/MerchantOffer.java#L210 + trades: []varint + inputItem1: + itemId: varint + itemCount: varint + addedComponentCount: varint + components: SlotComponent[]$addedComponentCount + outputItem: Slot + inputItem2?: + itemId: varint + itemCount: varint + addedComponentCount: varint + components: SlotComponent[]$addedComponentCount + tradeDisabled: bool + nbTradeUses: i32 + maximumNbTradeUses: i32 + xp: i32 + specialPrice: i32 + priceMultiplier: f32 + demand: i32 + villagerLevel: varint + experience: varint + isRegularVillager: bool + canRestock: bool + # MC: ClientboundMoveEntityPacket.Pos + packet_rel_entity_move: + entityId: varint + dX: i16 + dY: i16 + dZ: i16 + onGround: bool + # MC: ClientboundMoveEntityPacket.PosRot + packet_entity_move_look: + entityId: varint + dX: i16 + dY: i16 + dZ: i16 + yaw: i8 + pitch: i8 + onGround: bool + # MC: ClientboundMoveMinecartPacket + packet_move_minecart: + entityId: varint + steps: []varint + position: vec3f + movement: vec3f + yaw: f32 + pitch: f32 + weight: f32 + # MC: ClientboundMoveEntityPacket.Rot + packet_entity_look: + entityId: varint + yaw: i8 + pitch: i8 + onGround: bool + # MC: ClientboundMoveVehiclePacket + packet_vehicle_move: + x: f64 + y: f64 + z: f64 + yaw: f32 + pitch: f32 + # MC: ClientboundOpenBookPacket + packet_open_book: + hand: varint + # MC: ClientboundOpenScreenPacket + packet_open_window: + windowId: varint + inventoryType: varint + windowTitle: anonymousNbt + # MC: ClientboundOpenSignEditorPacket + packet_open_sign_entity: + location: position + isFrontText: bool + # MC: ClientboundPingPacket + packet_ping: + id: i32 + # MC: ClientboundPongResponsePacket + packet_ping_response: + id: i64 + # MC: ClientboundPlaceGhostRecipePacket + packet_craft_recipe_response: + windowId: ContainerID + recipeDisplay: RecipeDisplay + # MC: ClientboundPlayerAbilitiesPacket + packet_abilities: + flags: i8 + flyingSpeed: f32 + walkingSpeed: f32 + # MC: ClientboundPlayerChatPacket + packet_player_chat: + senderUuid: UUID + index: varint + signature?: [ + "buffer", + { + "count": 256 + } + ] + plainMessage: string + timestamp: i64 + salt: i64 + previousMessages: previousMessages + unsignedChatContent?: anonymousNbt + filterType: varint + filterTypeMask: filterType ? + if 2: i64[]varint + default: void + type: ChatTypes + networkName: anonymousNbt + networkTargetName?: anonymousNbt + # MC: ClientboundPlayerCombatEndPacket + packet_end_combat_event: + duration: varint + # MC: ClientboundPlayerCombatEnterPacket + packet_enter_combat_event: + # Empty + # MC: ClientboundPlayerCombatKillPacket + packet_death_combat_event: + playerId: varint + message: anonymousNbt + # MC: ClientboundPlayerInfoRemovePacket + packet_player_remove: + players: UUID[]varint + # MC: ClientboundPlayerInfoUpdatePacket + packet_player_info: + action: ["bitflags", { + "type": "u8", + "flags": [ + "add_player", + "initialize_chat", + "update_game_mode", + "update_listed", + "update_latency", + "update_display_name", + "update_priority" + ] + }] + data: []varint + uuid: UUID + player: ../action/add_player ? + if true: game_profile + default: void + chatSession: ../action/initialize_chat ? + if true: chat_session + default: void + gamemode: ../action/update_game_mode ? + if true: varint + default: void + listed: ../action/update_listed ? + if true: varint + default: void + latency: ../action/update_latency ? + if true: varint + default: void + displayName: ../action/update_display_name ? + if true: anonOptionalNbt + default: void + listPriority: ../action/update_priority ? + if true: varint + default: void + + # MC: ClientboundPlayerLookAtPacket + packet_face_player: + feet_eyes: varint + x: f64 + y: f64 + z: f64 + isEntity: bool + entityId: isEntity ? + if true: varint + default: void + entity_feet_eyes: isEntity ? + if true: varint + default: void + + # https://github.com/extremeheat/extracted_minecraft_data/blob/client1.21.2/client/net/minecraft/world/entity/Relative.java#L82 + PositionUpdateRelatives: ["bitflags", { + "type": "u32", + "flags": ["x", "y", "z", "yaw", "pitch", "dx", "dy", "dz", "yawDelta"] + }] + # PositionUpdateRelatives: ["bitfield", [ + # # unused bits on top + # { "name": "unused", "size": 23, "signed": false }, + # { "name": "yawDelta", "size": 1, "signed": false }, + # { "name": "dz", "size": 1, "signed": false }, + # { "name": "dy", "size": 1, "signed": false }, + # { "name": "dx", "size": 1, "signed": false }, + # { "name": "pitch", "size": 1, "signed": false }, + # { "name": "yaw", "size": 1, "signed": false }, + # { "name": "z", "size": 1, "signed": false }, + # { "name": "y", "size": 1, "signed": false }, + # { "name": "x", "size": 1, "signed": false }, + # ]] + # MC: ClientboundPlayerPositionPacket + packet_position: + teleportId: varint + x: f64 + y: f64 + z: f64 + dx: f64 + dy: f64 + dz: f64 + yaw: f32 + pitch: f32 + flags: PositionUpdateRelatives + # MC: ClientboundPlayerRotationPacket + packet_player_rotation: + yaw: f32 + pitch: f32 + + # MC: ClientboundRecipeBookAddPacket + packet_recipe_book_add: + entries: []varint + # RecipeDisplayEntry + recipe: + displayId: varint + display: RecipeDisplay + group: optvarint + # This ID corresponds to the "recipe_book_category" registry + category: varint => + - crafting_building_blocks + - crafting_redstone + - crafting_equipment + - crafting_misc + - furnace_food + - furnace_blocks + - furnace_misc + - blast_furnace_blocks + - blast_furnace_misc + - smoker_food + - stonecutter + - smithing + - campfire + craftingRequirements?: IDSet[]varint + flags: ["bitflags", { + "type": "u8", + "flags": ["notification", "highlight"] + }] + replace: bool + # MC: ClientboundRecipeBookRemovePacket + packet_recipe_book_remove: + recipeIds: varint[]varint + # MC: ClientboundRecipeBookSettingsPacket + packet_recipe_book_settings: + craftingGuiOpen: bool + craftingFilteringCraftable: bool + smeltingGuiOpen: bool + smeltingFilteringCraftable: bool + blastGuiOpen: bool + blastFilteringCraftable: bool + smokerGuiOpen: bool + smokerFilteringCraftable: bool + # MC: ClientboundRemoveEntitiesPacket + packet_entity_destroy: + entityIds: varint[]varint + # MC: ClientboundRemoveMobEffectPacket + packet_remove_entity_effect: + entityId: varint + effectId: varint + # MC: ClientboundResetScorePacket + packet_reset_score: + entity_name: string + objective_name?: string + # MC: ClientboundRespawnPacket + packet_respawn: + worldState: SpawnInfo + # Bit field: 0b1 - KEEP_ATTRIBUTE_MODIFIERS, 0b10 - KEEP_ENTITY_DATA + copyMetadata: u8 + # MC: ClientboundRotateHeadPacket + packet_entity_head_rotation: + entityId: varint + headYaw: i8 + # MC: ClientboundSectionBlocksUpdatePacket + packet_multi_block_change: + chunkCoordinates: [ "bitfield", [ + { "name": "x", "size": 22, "signed": true }, + { "name": "z", "size": 22, "signed": true }, + { "name": "y", "size": 20, "signed": true } + ]] + records: varint[]varint + # MC: ClientboundSelectAdvancementsTabPacket + packet_select_advancement_tab: + id?: string + # MC: ClientboundServerDataPacket + packet_server_data: + motd: anonymousNbt + iconBytes?: ByteArray + # MC: ClientboundSetActionBarTextPacket + packet_action_bar: + text: anonymousNbt + # MC: ClientboundSetBorderCenterPacket + packet_world_border_center: + x: f64 + z: f64 + # MC: ClientboundSetBorderLerpSizePacket + packet_world_border_lerp_size: + oldDiameter: f64 + newDiameter: f64 + speed: varint + # MC: ClientboundSetBorderSizePacket + packet_world_border_size: + diameter: f64 + # MC: ClientboundSetBorderWarningDelayPacket + packet_world_border_warning_delay: + warningTime: varint + # MC: ClientboundSetBorderWarningDistancePacket + packet_world_border_warning_reach: + warningBlocks: varint + # MC: ClientboundSetCameraPacket + packet_camera: + cameraId: varint + # MC: ClientboundSetChunkCacheCenterPacket + packet_update_view_position: + chunkX: varint + chunkZ: varint + # MC: ClientboundSetChunkCacheRadiusPacket + packet_update_view_distance: + viewDistance: varint + # MC: ClientboundSetCursorItemPacket + packet_set_cursor_item: + contents?: Slot + # MC: ClientboundSetDefaultSpawnPositionPacket + packet_spawn_position: + location: position + angle: f32 + # MC: ClientboundSetDisplayObjectivePacket + packet_scoreboard_display_objective: + position: varint + name: string + # MC: ClientboundSetEntityDataPacket + packet_entity_metadata: + entityId: varint + metadata: entityMetadata + # MC: ClientboundSetEntityLinkPacket + packet_attach_entity: + entityId: i32 + vehicleId: i32 + # MC: ClientboundSetEntityMotionPacket + packet_entity_velocity: + entityId: varint + velocityX: i16 + velocityY: i16 + velocityZ: i16 + # MC: ClientboundSetEquipmentPacket + packet_entity_equipment: + entityId: varint + equipments: [ + "topBitSetTerminatedArray", + { + "type": [ + "container", + [ + { + "name": "slot", + "type": "i8" + }, + { + "name": "item", + "type": "Slot" + } + ] + ] + } + ] + # MC: ClientboundSetExperiencePacket + packet_experience: + experienceBar: f32 + level: varint + totalExperience: varint + # MC: ClientboundSetHealthPacket + packet_update_health: + health: f32 + food: varint + foodSaturation: f32 + # MC: ClientboundSetHeldSlotPacket + packet_held_item_slot: + slot: i8 + # MC: ClientboundSetObjectivePacket + packet_scoreboard_objective: + name: string + action: i8 + displayText: action ? + if 0: anonymousNbt + if 2: anonymousNbt + default: void + type: action ? + if 0: varint + if 2: varint + default: void + number_format: action ? + if 0: [ + "option", + "varint" + ] + if 2: [ + "option", + "varint" + ] + default: void + styling: action ? + if 0: number_format ? + if 1: anonymousNbt + if 2: anonymousNbt + default: void + if 2: number_format ? + if 1: anonymousNbt + if 2: anonymousNbt + default: void + default: void + # MC: ClientboundSetPassengersPacket + packet_set_passengers: + entityId: varint + passengers: varint[]varint + # MC: ClientboundSetPlayerInventoryPacket + packet_set_player_inventory: + slotId: varint + contents?: Slot + # MC: ClientboundSetPlayerTeamPacket + packet_teams: + team: string + mode: i8 + name: mode ? + if 0: anonymousNbt + if 2: anonymousNbt + default: void + friendlyFire: mode ? + if 0: i8 + if 2: i8 + default: void + nameTagVisibility: mode ? + if 0: string + if 2: string + default: void + collisionRule: mode ? + if 0: string + if 2: string + default: void + formatting: mode ? + if 0: varint + if 2: varint + default: void + prefix: mode ? + if 0: anonymousNbt + if 2: anonymousNbt + default: void + suffix: mode ? + if 0: anonymousNbt + if 2: anonymousNbt + default: void + players: mode ? + if 0: string[]varint + if 3: string[]varint + if 4: string[]varint + default: void + # MC: ClientboundSetScorePacket + packet_scoreboard_score: + itemName: string + scoreName: string + value: varint + display_name?: anonymousNbt + number_format?: varint + styling: number_format ? + if 1: anonymousNbt + if 2: anonymousNbt + default: void + # MC: ClientboundSetSimulationDistancePacket + packet_simulation_distance: + distance: varint + # MC: ClientboundSetSubtitleTextPacket + packet_set_title_subtitle: + text: anonymousNbt + # MC: ClientboundSetTimePacket + packet_update_time: + age: i64 + time: i64 + tickDayTime: bool + # MC: ClientboundSetTitleTextPacket + packet_set_title_text: + text: anonymousNbt + # MC: ClientboundSetTitlesAnimationPacket + packet_set_title_time: + fadeIn: i32 + stay: i32 + fadeOut: i32 + # MC: ClientboundSoundEntityPacket + packet_entity_sound_effect: + soundId: varint + soundEvent: soundId ? + if 0: + resource: string + range?: f32 + default: void + soundCategory: soundSource + entityId: varint + volume: f32 + pitch: f32 + seed: i64 + # MC: ClientboundSoundPacket + packet_sound_effect: + soundId: varint + soundEvent: soundId ? + if 0: + resource: string + range?: f32 + default: void + soundCategory: soundSource + x: i32 + y: i32 + z: i32 + volume: f32 + pitch: f32 + seed: i64 + # MC: ClientboundStartConfigurationPacket + packet_start_configuration: + # Empty + # MC: ClientboundStopSoundPacket + packet_stop_sound: + flags: i8 + source: flags ? + if 1: varint + if 3: varint + default: void + sound: flags ? + if 2: string + if 3: string + default: void + ## (Store Cookie is Common) + # MC: ClientboundSystemChatPacket + packet_system_chat: + content: anonymousNbt + isActionBar: bool + # MC: ClientboundTabListPacket + packet_playerlist_header: + header: anonymousNbt + footer: anonymousNbt + # MC: ClientboundTagQueryPacket + packet_nbt_query_response: + transactionId: varint + nbt: anonOptionalNbt + # MC: ClientboundTakeItemEntityPacket + packet_collect: + collectedEntityId: varint + collectorEntityId: varint + pickupItemCount: varint + # MC: ClientboundTeleportEntityPacket + packet_entity_teleport: + entityId: varint + x: f64 + y: f64 + z: f64 + yaw: i8 + pitch: i8 + onGround: bool + # MC: ClientboundTickingStatePacket + packet_set_ticking_state: + tick_rate: f32 + is_frozen: bool + # MC: ClientboundTickingStepPacket + packet_step_tick: + tick_steps: varint + ## (Transfer is common) + # MC: ClientboundUpdateAdvancementsPacket + packet_advancements: + reset: bool + advancementMapping: []varint + key: string + value: + parentId?: string + displayData?: + title: anonymousNbt + description: anonymousNbt + icon: Slot + frameType: varint + flags: ["bitfield", [ + { "name": "unused", "size": 29, "signed": false }, + { "name": "hidden", "size": 1, "signed": false }, + { "name": "show_toast", "size": 1, "signed": false }, + { "name": "has_background_texture", "size": 1, "signed": false } + ]] + backgroundTexture: flags/has_background_texture ? + if 1: string + default: void + xCord: f32 + yCord: f32 + requirements: []varint + _: string[]varint + sendsTelemtryData: bool + identifiers: string[]varint + progressMapping: []varint + key: string + value: []varint + criterionIdentifier: string + criterionProgress?: i64 + # MC: ClientboundUpdateAttributesPacket + packet_entity_update_attributes: + entityId: varint + properties: []varint + key: varint => + - generic.armor + - generic.armor_toughness + - generic.attack_damage + - generic.attack_knockback + - generic.attack_speed + - player.block_break_speed + - player.block_interaction_range + - player.entity_interaction_range + - generic.fall_damage_multiplier + - generic.flying_speed + - generic.follow_range + - generic.gravity + - generic.jump_strength + - generic.knockback_resistance + - generic.luck + - generic.max_absorption + - generic.max_health + - generic.movement_speed + - generic.safe_fall_distance + - generic.scale + - zombie.spawn_reinforcements + - generic.step_height + value: f64 + modifiers: []varint + uuid: string + amount: f64 + operation: i8 + # MC: ClientboundUpdateMobEffectPacket + packet_entity_effect: + entityId: varint + effectId: varint + amplifier: varint + duration: varint + # a bitfield of 0x01 for ambient, 0x02 for show particles + # flags: ["bitfield", [ + # { "name": "unused", "size": 4 }, + # { "name": "ambient", "size": 1 }, + # { "name": "showParticles", "size": 1 }, + # { "name": "showIcon", "size": 1 }, + # { "name": "blend", "size": 1 } + # ]] + flags: u8 + # MC: ClientboundUpdateRecipesPacket + packet_declare_recipes: + recipes: []varint + name: string + items: varint[]varint + stoneCutterRecipes: []varint + input: IDSet + slotDisplay: SlotDisplay + + # MC: ClientboundUpdateTagsPacket + packet_tags: + tags: []varint + tagType: string + tags: tags + # MC: ClientboundProjectilePowerPacket + packet_set_projectile_power: + id: varint + accelerationPower: f64 + ## (ClientboundCustomReportDetailsPacket, ClientboundServerLinksPacket is common) + + packet: + name: varint => + - bundle_delimiter + - spawn_entity + - spawn_entity_experience_orb + - animation + - statistics + - acknowledge_player_digging + - block_break_animation + - tile_entity_data + - block_action + - block_change + - boss_bar + - difficulty + - chunk_batch_finished + - chunk_batch_start + - chunk_biomes + - clear_titles + - tab_complete + - declare_commands + - close_window + - window_items + - craft_progress_bar + - set_slot + - cookie_request + - set_cooldown + - chat_suggestions + - custom_payload + - damage_event + - debug_sample + - hide_message + - kick_disconnect + - profileless_chat + - entity_status + - sync_entity_position + - explosion + - unload_chunk + - game_state_change + - open_horse_window + - hurt_animation + - initialize_world_border + - keep_alive + - map_chunk + - world_event + - world_particles + - update_light + - login + - map + - trade_list + - rel_entity_move + - entity_move_look + - move_minecart + - entity_look + - vehicle_move + - open_book + - open_window + - open_sign_entity + - ping + - ping_response + - craft_recipe_response + - abilities + - player_chat + - end_combat_event + - enter_combat_event + - death_combat_event + - player_remove + - player_info + - face_player + - position + - player_rotation + - recipe_book_add + - recipe_book_remove + - recipe_book_settings + - entity_destroy + - remove_entity_effect + - reset_score + - remove_resource_pack + - add_resource_pack + - respawn + - entity_head_rotation + - multi_block_change + - select_advancement_tab + - server_data + - action_bar + - world_border_center + - world_border_lerp_size + - world_border_size + - world_border_warning_delay + - world_border_warning_reach + - camera + - update_view_position + - update_view_distance + - set_cursor_item + - spawn_position + - scoreboard_display_objective + - entity_metadata + - attach_entity + - entity_velocity + - entity_equipment + - experience + - update_health + - held_item_slot + - scoreboard_objective + - set_passengers + - set_player_inventory + - teams + - scoreboard_score + - simulation_distance + - set_title_subtitle + - update_time + - set_title_text + - set_title_time + - entity_sound_effect + - sound_effect + - start_configuration + - stop_sound + - store_cookie + - system_chat + - playerlist_header + - nbt_query_response + - collect + - entity_teleport + - set_ticking_state + - step_tick + - transfer + - advancements + - entity_update_attributes + - entity_effect + - declare_recipes + - tags + - set_projectile_power + - custom_report_details + - server_links + params: name ? + if bundle_delimiter: void + if spawn_entity: packet_spawn_entity + if spawn_entity_experience_orb: packet_spawn_entity_experience_orb + if animation: packet_animation + if statistics: packet_statistics + if acknowledge_player_digging: packet_acknowledge_player_digging + if block_break_animation: packet_block_break_animation + if tile_entity_data: packet_tile_entity_data + if block_action: packet_block_action + if block_change: packet_block_change + if boss_bar: packet_boss_bar + if difficulty: packet_difficulty + if chunk_batch_finished: packet_chunk_batch_finished + if chunk_batch_start: packet_chunk_batch_start + if chunk_biomes: packet_chunk_biomes + if clear_titles: packet_clear_titles + if tab_complete: packet_tab_complete + if declare_commands: packet_declare_commands + if close_window: packet_close_window + if window_items: packet_window_items + if craft_progress_bar: packet_craft_progress_bar + if set_slot: packet_set_slot + if cookie_request: packet_common_cookie_request + if set_cooldown: packet_set_cooldown + if chat_suggestions: packet_chat_suggestions + if custom_payload: packet_custom_payload + if damage_event: packet_damage_event + if debug_sample: packet_debug_sample + if hide_message: packet_hide_message + if kick_disconnect: packet_kick_disconnect + if profileless_chat: packet_profileless_chat + if entity_status: packet_entity_status + if sync_entity_position: packet_sync_entity_position + if explosion: packet_explosion + if unload_chunk: packet_unload_chunk + if game_state_change: packet_game_state_change + if open_horse_window: packet_open_horse_window + if hurt_animation: packet_hurt_animation + if initialize_world_border: packet_initialize_world_border + if keep_alive: packet_keep_alive + if map_chunk: packet_map_chunk + if world_event: packet_world_event + if world_particles: packet_world_particles + if update_light: packet_update_light + if login: packet_login + if map: packet_map + if trade_list: packet_trade_list + if rel_entity_move: packet_rel_entity_move + if entity_move_look: packet_entity_move_look + if move_minecart: packet_move_minecart + if entity_look: packet_entity_look + if vehicle_move: packet_vehicle_move + if open_book: packet_open_book + if open_window: packet_open_window + if open_sign_entity: packet_open_sign_entity + if ping: packet_ping + if ping_response: packet_ping_response + if craft_recipe_response: packet_craft_recipe_response + if abilities: packet_abilities + if player_chat: packet_player_chat + if end_combat_event: packet_end_combat_event + if enter_combat_event: packet_enter_combat_event + if death_combat_event: packet_death_combat_event + if player_remove: packet_player_remove + if player_info: packet_player_info + if face_player: packet_face_player + if position: packet_position + if player_rotation: packet_player_rotation + if recipe_book_add: packet_recipe_book_add + if recipe_book_remove: packet_recipe_book_remove + if recipe_book_settings: packet_recipe_book_settings + if entity_destroy: packet_entity_destroy + if remove_entity_effect: packet_remove_entity_effect + if reset_score: packet_reset_score + if remove_resource_pack: packet_common_remove_resource_pack + if add_resource_pack: packet_common_add_resource_pack + if respawn: packet_respawn + if entity_head_rotation: packet_entity_head_rotation + if multi_block_change: packet_multi_block_change + if select_advancement_tab: packet_select_advancement_tab + if server_data: packet_server_data + if action_bar: packet_action_bar + if world_border_center: packet_world_border_center + if world_border_lerp_size: packet_world_border_lerp_size + if world_border_size: packet_world_border_size + if world_border_warning_delay: packet_world_border_warning_delay + if world_border_warning_reach: packet_world_border_warning_reach + if camera: packet_camera + if update_view_position: packet_update_view_position + if update_view_distance: packet_update_view_distance + if set_cursor_item: packet_set_cursor_item + if held_item_slot: packet_held_item_slot + if spawn_position: packet_spawn_position + if scoreboard_display_objective: packet_scoreboard_display_objective + if entity_metadata: packet_entity_metadata + if attach_entity: packet_attach_entity + if entity_velocity: packet_entity_velocity + if entity_equipment: packet_entity_equipment + if experience: packet_experience + if update_health: packet_update_health + if scoreboard_objective: packet_scoreboard_objective + if set_passengers: packet_set_passengers + if set_player_inventory: packet_set_player_inventory + if teams: packet_teams + if scoreboard_score: packet_scoreboard_score + if simulation_distance: packet_simulation_distance + if set_title_subtitle: packet_set_title_subtitle + if update_time: packet_update_time + if set_title_text: packet_set_title_text + if set_title_time: packet_set_title_time + if entity_sound_effect: packet_entity_sound_effect + if sound_effect: packet_sound_effect + if start_configuration: packet_start_configuration + if stop_sound: packet_stop_sound + if store_cookie: packet_common_store_cookie + if system_chat: packet_system_chat + if playerlist_header: packet_playerlist_header + if nbt_query_response: packet_nbt_query_response + if collect: packet_collect + if entity_teleport: packet_entity_teleport + if set_ticking_state: packet_set_ticking_state + if step_tick: packet_step_tick + if transfer: packet_common_transfer + if advancements: packet_advancements + if entity_update_attributes: packet_entity_update_attributes + if entity_effect: packet_entity_effect + if declare_recipes: packet_declare_recipes + if tags: packet_tags + if set_projectile_power: packet_set_projectile_power + if custom_report_details: packet_common_custom_report_details + if server_links: packet_common_server_links + +^play.toServer.types: + # MC: ServerboundAcceptTeleportationPacket + packet_teleport_confirm: + teleportId: varint + # MC: ServerboundBlockEntityTagQueryPacket + packet_query_block_nbt: + transactionId: varint + location: position + # MC: ServerboundSelectBundleItemPacket + packet_select_bundle_item: + slotId: varint + selectedItemIndex: varint + # MC: ServerboundChangeDifficultyPacket + packet_set_difficulty: + newDifficulty: u8 + # MC: ServerboundChatAckPacket + packet_message_acknowledgement: + count: varint + # MC: ServerboundChatCommandPacket + packet_chat_command: + command: string + # MC: ServerboundChatCommandSignedPacket + packet_chat_command_signed: + command: string + timestamp: i64 + salt: i64 + argumentSignatures: []varint + argumentName: string + signature: [ + "buffer", + { + "count": 256 + } + ] + messageCount: varint + acknowledged: [ + "buffer", + { + "count": 3 + } + ] + # MC: ServerboundChatPacket + packet_chat_message: + message: string + timestamp: i64 + salt: i64 + signature?: [ + "buffer", + { + "count": 256 + } + ] + offset: varint + acknowledged: [ + "buffer", + { + "count": 3 + } + ] + # MC: ServerboundChatSessionUpdatePacket + packet_chat_session_update: + sessionUUID: UUID + expireTime: i64 + publicKey: ByteArray + signature: ByteArray + # MC: ServerboundChunkBatchReceivedPacket + packet_chunk_batch_received: + chunksPerTick: f32 + # MC: ServerboundClientCommandPacket + packet_client_command: + actionId: varint + # MC: ServerboundClientTickEndPacket + packet_tick_end: + # Empty + # MC: ServerboundClientInformationPacket + packet_settings: + locale: string + viewDistance: i8 + chatFlags: varint + chatColors: bool + skinParts: u8 + mainHand: varint + enableTextFiltering: bool + enableServerListing: bool + particleStatus: varint => + - all + - decreased + - minimal + # MC: ServerboundCommandSuggestionPacket + packet_tab_complete: + transactionId: varint + text: string + # MC: ServerboundConfigurationAcknowledgedPacket + packet_configuration_acknowledged: + # Empty + # MC: ServerboundContainerButtonClickPacket + packet_enchant_item: + windowId: ContainerID + enchantment: i8 + # MC: ServerboundContainerClickPacket + packet_window_click: + windowId: ContainerID + stateId: varint + slot: i16 + mouseButton: i8 + mode: varint + changedSlots: []varint + location: i16 + item: Slot + cursorItem: Slot + # MC: ServerboundContainerClosePacket + packet_close_window: + windowId: ContainerID + # MC: ServerboundContainerSlotStateChangedPacket + packet_set_slot_state: + slot_id: varint + window_id: ContainerID + state: bool + ## (ServerboundCookieResponsePacket is common) + # MC: ServerboundCustomPayloadPacket + packet_custom_payload: + channel: string + data: restBuffer + # MC: ServerboundDebugSampleSubscriptionPacket + packet_debug_sample_subscription: + type: varint + # MC: ServerboundEditBookPacket + packet_edit_book: + hand: varint + pages: string[]varint + title?: string + # MC: ServerboundEntityTagQuery + packet_query_entity_nbt: + transactionId: varint + entityId: varint + # MC: ServerboundInteractPacket + packet_use_entity: + target: varint + mouse: varint + x: mouse ? + if 2: f32 + default: void + y: mouse ? + if 2: f32 + default: void + z: mouse ? + if 2: f32 + default: void + hand: mouse ? + if 0: varint + if 2: varint + default: void + sneaking: bool + # MC: ServerboundJigsawGeneratePacket + packet_generate_structure: + location: position + levels: varint + keepJigsaws: bool + # MC: ServerboundKeepAlivePacket + packet_keep_alive: + keepAliveId: i64 + # MC: ServerboundLockDifficultyPacket + packet_lock_difficulty: + locked: bool + + MovementFlags: ["bitflags", { + "type": "u8", + "flags": ["onGround", "hasHorizontalCollision"] + }] + # MC: ServerboundMovePlayerPacket.Pos + packet_position: + x: f64 + y: f64 + z: f64 + flags: MovementFlags + # MC: ServerboundMovePlayerPacket.PosRot + packet_position_look: + x: f64 + y: f64 + z: f64 + yaw: f32 + pitch: f32 + flags: MovementFlags + # MC: ServerboundMovePlayerPacket.Rot + packet_look: + yaw: f32 + pitch: f32 + flags: MovementFlags + # MC: ServerboundMovePlayerPacket.StatusOnly + packet_flying: + flags: MovementFlags + # MC: ServerboundMoveVehiclePacket + packet_vehicle_move: + x: f64 + y: f64 + z: f64 + yaw: f32 + pitch: f32 + # MC: ServerboundPaddleBoatPacket + packet_steer_boat: + leftPaddle: bool + rightPaddle: bool + # MC: ServerboundPickItemPacket + packet_pick_item: + slot: varint + # MC: ServerboundPingRequestPacket + packet_ping_request: + id: i64 + # MC: ServerboundPlaceRecipePacket + packet_craft_recipe_request: + windowId: ContainerID + recipeId: varint + makeAll: bool + # MC: ServerboundPlayerAbilitiesPacket + packet_abilities: + flags: i8 + # MC: ServerboundPlayerActionPacket + packet_block_dig: + status: varint + location: position + face: i8 + sequence: varint + # MC: ServerboundPlayerCommandPacket + packet_entity_action: + entityId: varint + actionId: varint + jumpBoost: varint + # MC: ServerboundPlayerInputPacket + # previously: packet_steer_vehicle + packet_player_input: + ## client/net/minecraft/world/entity/player/Input.java + inputs: ["bitflags", { + "type": "u8", + "flags": ["forward", "backward", "left", "right", "jump", "shift", "sprint"] + }] + # MC: ServerboundPongPacket + packet_pong: + id: i32 + # MC: ServerboundRecipeBookChangeSettingsPacket + packet_recipe_book: + bookId: varint + bookOpen: bool + filterActive: bool + # MC: ServerboundRecipeBookSeenRecipePacket + packet_displayed_recipe: + recipeId: varint + # MC: ServerboundRenameItemPacket + packet_name_item: + name: string + # MC: ServerboundResourcePackPacket + packet_resource_pack_receive: + uuid: UUID + result: varint + # MC: ServerboundSeenAdvancementsPacket + packet_advancement_tab: + action: varint + tabId: action ? + if 0: string + if 1: void + # MC: ServerboundSelectTradePacket + packet_select_trade: + slot: varint + # MC: ServerboundSetBeaconPacket + packet_set_beacon_effect: + primary_effect?: varint + secondary_effect?: varint + # MC: ServerboundSetCarriedItemPacket + packet_held_item_slot: + slotId: i16 + # MC: ServerboundSetCommandBlockPacket + packet_update_command_block: + location: position + command: string + mode: varint + flags: u8 + # MC: ServerboundSetCommandMinecartPacket + packet_update_command_block_minecart: + entityId: varint + command: string + track_output: bool + # MC: ServerboundSetCreativeModeSlotPacket + packet_set_creative_slot: + slot: i16 + item: Slot + # MC: ServerboundSetJigsawBlockPacket + packet_update_jigsaw_block: + location: position + name: string + target: string + pool: string + finalState: string + jointType: string + selection_priority: varint + placement_priority: varint + # MC: ServerboundSetStructureBlockPacket + packet_update_structure_block: + location: position + action: varint + mode: varint + name: string + offset_x: i8 + offset_y: i8 + offset_z: i8 + size_x: i8 + size_y: i8 + size_z: i8 + mirror: varint + rotation: varint + metadata: string + integrity: f32 + seed: varint + flags: u8 + # MC: ServerboundSignUpdatePacket + packet_update_sign: + location: position + isFrontText: bool + text1: string + text2: string + text3: string + text4: string + # MC: ServerboundSwingPacket + packet_arm_animation: + hand: varint + # MC: ServerboundTeleportToEntityPacket + packet_spectate: + target: UUID + # MC: ServerboundUseItemOnPacket + packet_block_place: + hand: varint + location: position + direction: varint + cursorX: f32 + cursorY: f32 + cursorZ: f32 + insideBlock: bool + worldBorderHit: bool + sequence: varint + # MC: ServerboundUseItemPacket + packet_use_item: + hand: varint + sequence: varint + rotation: vec2f + + packet: + name: varint => + - teleport_confirm + - query_block_nbt + - select_bundle_item + - set_difficulty + - message_acknowledgement + - chat_command + - chat_command_signed + - chat_message + - chat_session_update + - chunk_batch_received + - client_command + - tick_end + - settings + - tab_complete + - configuration_acknowledged + # Maybe rename enchant_item if it is used for other things too + - enchant_item + - window_click + - close_window + - set_slot_state + - cookie_response + - custom_payload + - debug_sample_subscription + - edit_book + - query_entity_nbt + - use_entity + - generate_structure + - keep_alive + - lock_difficulty + - position + - position_look + - look + - flying + - vehicle_move + - steer_boat + - pick_item + - ping_request + - craft_recipe_request + - abilities + - block_dig + - entity_action + - player_input + - pong + - recipe_book + - displayed_recipe + - name_item + - resource_pack_receive + - advancement_tab + - select_trade + - set_beacon_effect + - held_item_slot + - update_command_block + - update_command_block_minecart + - set_creative_slot + - update_jigsaw_block + - update_structure_block + - update_sign + - arm_animation + - spectate + - block_place + - use_item + params: name ? + if teleport_confirm: packet_teleport_confirm + if query_block_nbt: packet_query_block_nbt + if select_bundle_item: packet_select_bundle_item + if set_difficulty: packet_set_difficulty + if message_acknowledgement: packet_message_acknowledgement + if chat_command: packet_chat_command + if chat_command_signed: packet_chat_command_signed + if chat_message: packet_chat_message + if chat_session_update: packet_chat_session_update + if chunk_batch_received: packet_chunk_batch_received + if client_command: packet_client_command + if tick_end: packet_tick_end + if settings: packet_settings + if tab_complete: packet_tab_complete + if configuration_acknowledged: packet_configuration_acknowledged + if enchant_item: packet_enchant_item + if window_click: packet_window_click + if close_window: packet_close_window + if set_slot_state: packet_set_slot_state + if cookie_response: packet_common_cookie_response + if custom_payload: packet_custom_payload + if edit_book: packet_edit_book + if query_entity_nbt: packet_query_entity_nbt + if use_entity: packet_use_entity + if generate_structure: packet_generate_structure + if keep_alive: packet_keep_alive + if lock_difficulty: packet_lock_difficulty + if position: packet_position + if position_look: packet_position_look + if look: packet_look + if flying: packet_flying + if vehicle_move: packet_vehicle_move + if steer_boat: packet_steer_boat + if pick_item: packet_pick_item + if ping_request: packet_ping_request + if craft_recipe_request: packet_craft_recipe_request + if abilities: packet_abilities + if block_dig: packet_block_dig + if entity_action: packet_entity_action + if player_input: packet_player_input + if pong: packet_pong + if recipe_book: packet_recipe_book + if displayed_recipe: packet_displayed_recipe + if name_item: packet_name_item + if resource_pack_receive: packet_resource_pack_receive + if advancement_tab: packet_advancement_tab + if select_trade: packet_select_trade + if set_beacon_effect: packet_set_beacon_effect + if held_item_slot: packet_held_item_slot + if update_command_block: packet_update_command_block + if update_command_block_minecart: packet_update_command_block_minecart + if set_creative_slot: packet_set_creative_slot + if update_jigsaw_block: packet_update_jigsaw_block + if update_structure_block: packet_update_structure_block + if update_sign: packet_update_sign + if arm_animation: packet_arm_animation + if spectate: packet_spectate + if block_place: packet_block_place + if use_item: packet_use_item diff --git a/data/pc/1.21.4/biomes.json b/data/pc/1.21.4/biomes.json new file mode 100644 index 000000000..72a99632f --- /dev/null +++ b/data/pc/1.21.4/biomes.json @@ -0,0 +1,652 @@ +[ + { + "id": 0, + "name": "badlands", + "category": "mesa", + "temperature": 2.0, + "has_precipitation": false, + "dimension": "overworld", + "displayName": "Badlands", + "color": 7254527 + }, + { + "id": 1, + "name": "bamboo_jungle", + "category": "jungle", + "temperature": 0.95, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Bamboo Jungle", + "color": 7842047 + }, + { + "id": 2, + "name": "basalt_deltas", + "category": "nether", + "temperature": 2.0, + "has_precipitation": false, + "dimension": "nether", + "displayName": "Basalt Deltas", + "color": 7254527 + }, + { + "id": 3, + "name": "beach", + "category": "beach", + "temperature": 0.8, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Beach", + "color": 7907327 + }, + { + "id": 4, + "name": "birch_forest", + "category": "forest", + "temperature": 0.6, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Birch Forest", + "color": 8037887 + }, + { + "id": 5, + "name": "cherry_grove", + "category": "forest", + "temperature": 0.5, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Cherry Grove", + "color": 8103167 + }, + { + "id": 6, + "name": "cold_ocean", + "category": "ocean", + "temperature": 0.5, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Cold Ocean", + "color": 8103167 + }, + { + "id": 7, + "name": "crimson_forest", + "category": "nether", + "temperature": 2.0, + "has_precipitation": false, + "dimension": "nether", + "displayName": "Crimson Forest", + "color": 7254527 + }, + { + "id": 8, + "name": "dark_forest", + "category": "forest", + "temperature": 0.7, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Dark Forest", + "color": 7972607 + }, + { + "id": 9, + "name": "deep_cold_ocean", + "category": "ocean", + "temperature": 0.5, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Deep Cold Ocean", + "color": 8103167 + }, + { + "id": 10, + "name": "deep_dark", + "category": "underground", + "temperature": 0.8, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Deep Dark", + "color": 7907327 + }, + { + "id": 11, + "name": "deep_frozen_ocean", + "category": "ocean", + "temperature": 0.5, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Deep Frozen Ocean", + "color": 8103167 + }, + { + "id": 12, + "name": "deep_lukewarm_ocean", + "category": "ocean", + "temperature": 0.5, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Deep Lukewarm Ocean", + "color": 8103167 + }, + { + "id": 13, + "name": "deep_ocean", + "category": "ocean", + "temperature": 0.5, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Deep Ocean", + "color": 8103167 + }, + { + "id": 14, + "name": "desert", + "category": "desert", + "temperature": 2.0, + "has_precipitation": false, + "dimension": "overworld", + "displayName": "Desert", + "color": 7254527 + }, + { + "id": 15, + "name": "dripstone_caves", + "category": "underground", + "temperature": 0.8, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Dripstone Caves", + "color": 7907327 + }, + { + "id": 16, + "name": "end_barrens", + "category": "the_end", + "temperature": 0.5, + "has_precipitation": false, + "dimension": "end", + "displayName": "End Barrens", + "color": 0 + }, + { + "id": 17, + "name": "end_highlands", + "category": "the_end", + "temperature": 0.5, + "has_precipitation": false, + "dimension": "end", + "displayName": "End Highlands", + "color": 0 + }, + { + "id": 18, + "name": "end_midlands", + "category": "the_end", + "temperature": 0.5, + "has_precipitation": false, + "dimension": "end", + "displayName": "End Midlands", + "color": 0 + }, + { + "id": 19, + "name": "eroded_badlands", + "category": "mesa", + "temperature": 2.0, + "has_precipitation": false, + "dimension": "overworld", + "displayName": "Eroded Badlands", + "color": 7254527 + }, + { + "id": 20, + "name": "flower_forest", + "category": "forest", + "temperature": 0.7, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Flower Forest", + "color": 7972607 + }, + { + "id": 21, + "name": "forest", + "category": "forest", + "temperature": 0.7, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Forest", + "color": 7972607 + }, + { + "id": 22, + "name": "frozen_ocean", + "category": "ocean", + "temperature": 0.0, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Frozen Ocean", + "color": 8364543 + }, + { + "id": 23, + "name": "frozen_peaks", + "category": "ice", + "temperature": -0.7, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Frozen Peaks", + "color": 8756735 + }, + { + "id": 24, + "name": "frozen_river", + "category": "ice", + "temperature": 0.0, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Frozen River", + "color": 8364543 + }, + { + "id": 25, + "name": "grove", + "category": "forest", + "temperature": -0.2, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Grove", + "color": 8495359 + }, + { + "id": 26, + "name": "ice_spikes", + "category": "ice", + "temperature": 0.0, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Ice Spikes", + "color": 8364543 + }, + { + "id": 27, + "name": "jagged_peaks", + "category": "mountain", + "temperature": -0.7, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Jagged Peaks", + "color": 8756735 + }, + { + "id": 28, + "name": "jungle", + "category": "jungle", + "temperature": 0.95, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Jungle", + "color": 7842047 + }, + { + "id": 29, + "name": "lukewarm_ocean", + "category": "ocean", + "temperature": 0.5, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Lukewarm Ocean", + "color": 8103167 + }, + { + "id": 30, + "name": "lush_caves", + "category": "underground", + "temperature": 0.5, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Lush Caves", + "color": 8103167 + }, + { + "id": 31, + "name": "mangrove_swamp", + "category": "forest", + "temperature": 0.8, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Mangrove Swamp", + "color": 7907327 + }, + { + "id": 32, + "name": "meadow", + "category": "mountain", + "temperature": 0.5, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Meadow", + "color": 8103167 + }, + { + "id": 33, + "name": "mushroom_fields", + "category": "mushroom", + "temperature": 0.9, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Mushroom Fields", + "color": 7842047 + }, + { + "id": 34, + "name": "nether_wastes", + "category": "nether", + "temperature": 2.0, + "has_precipitation": false, + "dimension": "nether", + "displayName": "Nether Wastes", + "color": 7254527 + }, + { + "id": 35, + "name": "ocean", + "category": "ocean", + "temperature": 0.5, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Ocean", + "color": 8103167 + }, + { + "id": 36, + "name": "old_growth_birch_forest", + "category": "forest", + "temperature": 0.6, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Old Growth Birch Forest", + "color": 8037887 + }, + { + "id": 37, + "name": "old_growth_pine_taiga", + "category": "taiga", + "temperature": 0.3, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Old Growth Pine Taiga", + "color": 8168447 + }, + { + "id": 38, + "name": "old_growth_spruce_taiga", + "category": "taiga", + "temperature": 0.25, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Old Growth Spruce Taiga", + "color": 8233983 + }, + { + "id": 39, + "name": "pale_garden", + "category": "none", + "temperature": 0.7, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Pale Garden", + "color": 12171705 + }, + { + "id": 40, + "name": "plains", + "category": "plains", + "temperature": 0.8, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Plains", + "color": 7907327 + }, + { + "id": 41, + "name": "river", + "category": "river", + "temperature": 0.5, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "River", + "color": 8103167 + }, + { + "id": 42, + "name": "savanna", + "category": "savanna", + "temperature": 2.0, + "has_precipitation": false, + "dimension": "overworld", + "displayName": "Savanna", + "color": 7254527 + }, + { + "id": 43, + "name": "savanna_plateau", + "category": "savanna", + "temperature": 2.0, + "has_precipitation": false, + "dimension": "overworld", + "displayName": "Savanna Plateau", + "color": 7254527 + }, + { + "id": 44, + "name": "small_end_islands", + "category": "the_end", + "temperature": 0.5, + "has_precipitation": false, + "dimension": "end", + "displayName": "Small End Islands", + "color": 0 + }, + { + "id": 45, + "name": "snowy_beach", + "category": "beach", + "temperature": 0.05, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Snowy Beach", + "color": 8364543 + }, + { + "id": 46, + "name": "snowy_plains", + "category": "plains", + "temperature": 0.0, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Snowy Plains", + "color": 8364543 + }, + { + "id": 47, + "name": "snowy_slopes", + "category": "mountain", + "temperature": -0.3, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Snowy Slopes", + "color": 8560639 + }, + { + "id": 48, + "name": "snowy_taiga", + "category": "taiga", + "temperature": -0.5, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Snowy Taiga", + "color": 8625919 + }, + { + "id": 49, + "name": "soul_sand_valley", + "category": "nether", + "temperature": 2.0, + "has_precipitation": false, + "dimension": "nether", + "displayName": "Soul Sand Valley", + "color": 7254527 + }, + { + "id": 50, + "name": "sparse_jungle", + "category": "jungle", + "temperature": 0.95, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Sparse Jungle", + "color": 7842047 + }, + { + "id": 51, + "name": "stony_peaks", + "category": "mountain", + "temperature": 1.0, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Stony Peaks", + "color": 7776511 + }, + { + "id": 52, + "name": "stony_shore", + "category": "beach", + "temperature": 0.2, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Stony Shore", + "color": 8233727 + }, + { + "id": 53, + "name": "sunflower_plains", + "category": "plains", + "temperature": 0.8, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Sunflower Plains", + "color": 7907327 + }, + { + "id": 54, + "name": "swamp", + "category": "swamp", + "temperature": 0.8, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Swamp", + "color": 7907327 + }, + { + "id": 55, + "name": "taiga", + "category": "taiga", + "temperature": 0.25, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Taiga", + "color": 8233983 + }, + { + "id": 56, + "name": "the_end", + "category": "the_end", + "temperature": 0.5, + "has_precipitation": false, + "dimension": "end", + "displayName": "The End", + "color": 0 + }, + { + "id": 57, + "name": "the_void", + "category": "none", + "temperature": 0.5, + "has_precipitation": false, + "dimension": "overworld", + "displayName": "The Void", + "color": 8103167 + }, + { + "id": 58, + "name": "warm_ocean", + "category": "ocean", + "temperature": 0.5, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Warm Ocean", + "color": 8103167 + }, + { + "id": 59, + "name": "warped_forest", + "category": "nether", + "temperature": 2.0, + "has_precipitation": false, + "dimension": "nether", + "displayName": "Warped Forest", + "color": 7254527 + }, + { + "id": 60, + "name": "windswept_forest", + "category": "forest", + "temperature": 0.2, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Windswept Forest", + "color": 8233727 + }, + { + "id": 61, + "name": "windswept_gravelly_hills", + "category": "extreme_hills", + "temperature": 0.2, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Windswept Gravelly Hills", + "color": 8233727 + }, + { + "id": 62, + "name": "windswept_hills", + "category": "extreme_hills", + "temperature": 0.2, + "has_precipitation": true, + "dimension": "overworld", + "displayName": "Windswept Hills", + "color": 8233727 + }, + { + "id": 63, + "name": "windswept_savanna", + "category": "savanna", + "temperature": 2.0, + "has_precipitation": false, + "dimension": "overworld", + "displayName": "Windswept Savanna", + "color": 7254527 + }, + { + "id": 64, + "name": "wooded_badlands", + "category": "mesa", + "temperature": 2.0, + "has_precipitation": false, + "dimension": "overworld", + "displayName": "Wooded Badlands", + "color": 7254527 + } +] \ No newline at end of file diff --git a/data/pc/1.21.4/blockCollisionShapes.json b/data/pc/1.21.4/blockCollisionShapes.json new file mode 100644 index 000000000..c6a4d3711 --- /dev/null +++ b/data/pc/1.21.4/blockCollisionShapes.json @@ -0,0 +1,142311 @@ +{ + "blocks": { + "air": 0, + "stone": 1, + "granite": 1, + "polished_granite": 1, + "diorite": 1, + "polished_diorite": 1, + "andesite": 1, + "polished_andesite": 1, + "grass_block": 1, + "dirt": 1, + "coarse_dirt": 1, + "podzol": 1, + "cobblestone": 1, + "oak_planks": 1, + "spruce_planks": 1, + "birch_planks": 1, + "jungle_planks": 1, + "acacia_planks": 1, + "cherry_planks": 1, + "dark_oak_planks": 1, + "pale_oak_wood": 1, + "pale_oak_planks": 1, + "mangrove_planks": 1, + "bamboo_planks": 1, + "bamboo_mosaic": 1, + "oak_sapling": 0, + "spruce_sapling": 0, + "birch_sapling": 0, + "jungle_sapling": 0, + "acacia_sapling": 0, + "cherry_sapling": 0, + "dark_oak_sapling": 0, + "pale_oak_sapling": 0, + "mangrove_propagule": 0, + "bedrock": 1, + "water": 0, + "lava": 0, + "sand": 1, + "suspicious_sand": 1, + "red_sand": 1, + "gravel": 1, + "suspicious_gravel": 1, + "gold_ore": 1, + "deepslate_gold_ore": 1, + "iron_ore": 1, + "deepslate_iron_ore": 1, + "coal_ore": 1, + "deepslate_coal_ore": 1, + "nether_gold_ore": 1, + "oak_log": 1, + "spruce_log": 1, + "birch_log": 1, + "jungle_log": 1, + "acacia_log": 1, + "cherry_log": 1, + "dark_oak_log": 1, + "pale_oak_log": 1, + "mangrove_log": 1, + "mangrove_roots": 1, + "muddy_mangrove_roots": 1, + "bamboo_block": 1, + "stripped_spruce_log": 1, + "stripped_birch_log": 1, + "stripped_jungle_log": 1, + "stripped_acacia_log": 1, + "stripped_cherry_log": 1, + "stripped_dark_oak_log": 1, + "stripped_pale_oak_log": 1, + "stripped_oak_log": 1, + "stripped_mangrove_log": 1, + "stripped_bamboo_block": 1, + "oak_wood": 1, + "spruce_wood": 1, + "birch_wood": 1, + "jungle_wood": 1, + "acacia_wood": 1, + "cherry_wood": 1, + "dark_oak_wood": 1, + "mangrove_wood": 1, + "stripped_oak_wood": 1, + "stripped_spruce_wood": 1, + "stripped_birch_wood": 1, + "stripped_jungle_wood": 1, + "stripped_acacia_wood": 1, + "stripped_cherry_wood": 1, + "stripped_dark_oak_wood": 1, + "stripped_pale_oak_wood": 1, + "stripped_mangrove_wood": 1, + "oak_leaves": 1, + "spruce_leaves": 1, + "birch_leaves": 1, + "jungle_leaves": 1, + "acacia_leaves": 1, + "cherry_leaves": 1, + "dark_oak_leaves": 1, + "pale_oak_leaves": 1, + "mangrove_leaves": 1, + "azalea_leaves": 1, + "flowering_azalea_leaves": 1, + "sponge": 1, + "wet_sponge": 1, + "glass": 1, + "lapis_ore": 1, + "deepslate_lapis_ore": 1, + "lapis_block": 1, + "dispenser": 1, + "sandstone": 1, + "chiseled_sandstone": 1, + "cut_sandstone": 1, + "note_block": 1, + "white_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "orange_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "magenta_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "light_blue_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "yellow_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "lime_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "pink_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "gray_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "light_gray_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "cyan_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "purple_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "blue_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "brown_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "green_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "red_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "black_bed": [ + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 5, + 4, + 5, + 5, + 4, + 5, + 4 + ], + "powered_rail": 0, + "detector_rail": 0, + "sticky_piston": [ + 6, + 7, + 8, + 9, + 10, + 11, + 1, + 1, + 1, + 1, + 1, + 1 + ], + "cobweb": 0, + "short_grass": 0, + "fern": 0, + "dead_bush": 0, + "seagrass": 0, + "tall_seagrass": 0, + "piston": [ + 6, + 7, + 8, + 9, + 10, + 11, + 1, + 1, + 1, + 1, + 1, + 1 + ], + "piston_head": [ + 12, + 12, + 13, + 13, + 14, + 14, + 15, + 15, + 16, + 16, + 17, + 17, + 18, + 18, + 19, + 19, + 20, + 20, + 21, + 21, + 22, + 22, + 23, + 23 + ], + "white_wool": 1, + "orange_wool": 1, + "magenta_wool": 1, + "light_blue_wool": 1, + "yellow_wool": 1, + "lime_wool": 1, + "pink_wool": 1, + "gray_wool": 1, + "light_gray_wool": 1, + "cyan_wool": 1, + "purple_wool": 1, + "blue_wool": 1, + "brown_wool": 1, + "green_wool": 1, + "red_wool": 1, + "black_wool": 1, + "moving_piston": 0, + "dandelion": 0, + "torchflower": 0, + "poppy": 0, + "blue_orchid": 0, + "allium": 0, + "azure_bluet": 0, + "red_tulip": 0, + "orange_tulip": 0, + "white_tulip": 0, + "pink_tulip": 0, + "oxeye_daisy": 0, + "cornflower": 0, + "wither_rose": 0, + "lily_of_the_valley": 0, + "brown_mushroom": 0, + "red_mushroom": 0, + "gold_block": 1, + "iron_block": 1, + "bricks": 1, + "tnt": 1, + "bookshelf": 1, + "chiseled_bookshelf": 1, + "mossy_cobblestone": 1, + "obsidian": 1, + "torch": 0, + "wall_torch": 0, + "fire": 0, + "soul_fire": 0, + "spawner": 1, + "creaking_heart": 1, + "oak_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "chest": [ + 48, + 48, + 49, + 49, + 50, + 50, + 48, + 48, + 50, + 50, + 49, + 49, + 48, + 48, + 51, + 51, + 52, + 52, + 48, + 48, + 52, + 52, + 51, + 51 + ], + "redstone_wire": 0, + "diamond_ore": 1, + "deepslate_diamond_ore": 1, + "diamond_block": 1, + "crafting_table": 1, + "wheat": 0, + "farmland": 53, + "furnace": 1, + "oak_sign": 0, + "spruce_sign": 0, + "birch_sign": 0, + "acacia_sign": 0, + "cherry_sign": 0, + "jungle_sign": 0, + "dark_oak_sign": 0, + "pale_oak_sign": 0, + "mangrove_sign": 0, + "bamboo_sign": 0, + "oak_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "ladder": [ + 58, + 58, + 59, + 59, + 60, + 60, + 61, + 61 + ], + "rail": 0, + "cobblestone_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "oak_wall_sign": 0, + "spruce_wall_sign": 0, + "birch_wall_sign": 0, + "acacia_wall_sign": 0, + "cherry_wall_sign": 0, + "jungle_wall_sign": 0, + "dark_oak_wall_sign": 0, + "pale_oak_wall_sign": 0, + "mangrove_wall_sign": 0, + "bamboo_wall_sign": 0, + "oak_hanging_sign": 0, + "spruce_hanging_sign": 0, + "birch_hanging_sign": 0, + "acacia_hanging_sign": 0, + "cherry_hanging_sign": 0, + "jungle_hanging_sign": 0, + "dark_oak_hanging_sign": 0, + "pale_oak_hanging_sign": 0, + "crimson_hanging_sign": 0, + "warped_hanging_sign": 0, + "mangrove_hanging_sign": 0, + "bamboo_hanging_sign": 0, + "oak_wall_hanging_sign": [ + 62, + 62, + 62, + 62, + 63, + 63, + 63, + 63 + ], + "spruce_wall_hanging_sign": [ + 62, + 62, + 62, + 62, + 63, + 63, + 63, + 63 + ], + "birch_wall_hanging_sign": [ + 62, + 62, + 62, + 62, + 63, + 63, + 63, + 63 + ], + "acacia_wall_hanging_sign": [ + 62, + 62, + 62, + 62, + 63, + 63, + 63, + 63 + ], + "cherry_wall_hanging_sign": [ + 62, + 62, + 62, + 62, + 63, + 63, + 63, + 63 + ], + "jungle_wall_hanging_sign": [ + 62, + 62, + 62, + 62, + 63, + 63, + 63, + 63 + ], + "dark_oak_wall_hanging_sign": [ + 62, + 62, + 62, + 62, + 63, + 63, + 63, + 63 + ], + "pale_oak_wall_hanging_sign": [ + 62, + 62, + 62, + 62, + 63, + 63, + 63, + 63 + ], + "mangrove_wall_hanging_sign": [ + 62, + 62, + 62, + 62, + 63, + 63, + 63, + 63 + ], + "crimson_wall_hanging_sign": [ + 62, + 62, + 62, + 62, + 63, + 63, + 63, + 63 + ], + "warped_wall_hanging_sign": [ + 62, + 62, + 62, + 62, + 63, + 63, + 63, + 63 + ], + "bamboo_wall_hanging_sign": [ + 62, + 62, + 62, + 62, + 63, + 63, + 63, + 63 + ], + "lever": 0, + "stone_pressure_plate": 0, + "iron_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "oak_pressure_plate": 0, + "spruce_pressure_plate": 0, + "birch_pressure_plate": 0, + "jungle_pressure_plate": 0, + "acacia_pressure_plate": 0, + "cherry_pressure_plate": 0, + "dark_oak_pressure_plate": 0, + "pale_oak_pressure_plate": 0, + "mangrove_pressure_plate": 0, + "bamboo_pressure_plate": 0, + "redstone_ore": 1, + "deepslate_redstone_ore": 1, + "redstone_torch": 0, + "redstone_wall_torch": 0, + "stone_button": 0, + "snow": [ + 0, + 64, + 65, + 66, + 67, + 68, + 69, + 70 + ], + "ice": 1, + "snow_block": 1, + "cactus": 71, + "clay": 1, + "sugar_cane": 0, + "jukebox": 1, + "oak_fence": [ + 72, + 73, + 72, + 73, + 74, + 75, + 74, + 75, + 76, + 77, + 76, + 77, + 78, + 79, + 78, + 79, + 80, + 81, + 80, + 81, + 82, + 83, + 82, + 83, + 84, + 85, + 84, + 85, + 86, + 87, + 86, + 87 + ], + "netherrack": 1, + "soul_sand": 88, + "soul_soil": 1, + "basalt": 1, + "polished_basalt": 1, + "soul_torch": 0, + "soul_wall_torch": 0, + "glowstone": 1, + "nether_portal": 0, + "carved_pumpkin": 1, + "jack_o_lantern": 1, + "cake": [ + 89, + 90, + 91, + 92, + 93, + 94, + 95 + ], + "repeater": 96, + "white_stained_glass": 1, + "orange_stained_glass": 1, + "magenta_stained_glass": 1, + "light_blue_stained_glass": 1, + "yellow_stained_glass": 1, + "lime_stained_glass": 1, + "pink_stained_glass": 1, + "gray_stained_glass": 1, + "light_gray_stained_glass": 1, + "cyan_stained_glass": 1, + "purple_stained_glass": 1, + "blue_stained_glass": 1, + "brown_stained_glass": 1, + "green_stained_glass": 1, + "red_stained_glass": 1, + "black_stained_glass": 1, + "oak_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "spruce_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "birch_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "jungle_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "acacia_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "cherry_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "dark_oak_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "pale_oak_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "mangrove_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "bamboo_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "stone_bricks": 1, + "mossy_stone_bricks": 1, + "cracked_stone_bricks": 1, + "chiseled_stone_bricks": 1, + "packed_mud": 1, + "mud_bricks": 1, + "infested_stone": 1, + "infested_cobblestone": 1, + "infested_stone_bricks": 1, + "infested_mossy_stone_bricks": 1, + "infested_cracked_stone_bricks": 1, + "infested_chiseled_stone_bricks": 1, + "brown_mushroom_block": 1, + "red_mushroom_block": 1, + "mushroom_stem": 1, + "iron_bars": [ + 103, + 104, + 103, + 104, + 105, + 106, + 105, + 106, + 107, + 108, + 107, + 108, + 109, + 110, + 109, + 110, + 111, + 112, + 111, + 112, + 113, + 114, + 113, + 114, + 115, + 116, + 115, + 116, + 117, + 118, + 117, + 118 + ], + "chain": [ + 119, + 119, + 120, + 120, + 121, + 121 + ], + "glass_pane": [ + 122, + 123, + 122, + 123, + 124, + 125, + 124, + 125, + 126, + 127, + 126, + 127, + 128, + 129, + 128, + 129, + 130, + 131, + 130, + 131, + 132, + 133, + 132, + 133, + 134, + 135, + 134, + 135, + 136, + 137, + 136, + 137 + ], + "pumpkin": 1, + "melon": 1, + "attached_pumpkin_stem": 0, + "attached_melon_stem": 0, + "pumpkin_stem": 0, + "melon_stem": 0, + "vine": 0, + "glow_lichen": 0, + "resin_clump": 0, + "oak_fence_gate": [ + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139 + ], + "brick_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "stone_brick_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "mud_brick_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "mycelium": 1, + "lily_pad": 140, + "resin_block": 1, + "resin_bricks": 1, + "resin_brick_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "resin_brick_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "resin_brick_wall": [ + 143, + 144, + 145, + 143, + 144, + 145, + 0, + 146, + 147, + 0, + 146, + 147, + 148, + 149, + 150, + 148, + 149, + 150, + 151, + 152, + 153, + 151, + 152, + 153, + 154, + 155, + 156, + 154, + 155, + 156, + 157, + 158, + 159, + 157, + 158, + 159, + 160, + 161, + 162, + 160, + 161, + 162, + 163, + 164, + 165, + 163, + 164, + 165, + 166, + 167, + 168, + 166, + 167, + 168, + 169, + 170, + 171, + 169, + 170, + 171, + 172, + 173, + 174, + 172, + 173, + 174, + 175, + 176, + 177, + 175, + 176, + 177, + 178, + 179, + 180, + 178, + 179, + 180, + 181, + 182, + 183, + 181, + 182, + 183, + 184, + 185, + 186, + 184, + 185, + 186, + 187, + 188, + 189, + 187, + 188, + 189, + 190, + 191, + 192, + 190, + 191, + 192, + 193, + 194, + 195, + 193, + 194, + 195, + 196, + 197, + 198, + 196, + 197, + 198, + 199, + 200, + 201, + 199, + 200, + 201, + 202, + 203, + 204, + 202, + 203, + 204, + 205, + 206, + 207, + 205, + 206, + 207, + 208, + 209, + 210, + 208, + 209, + 210, + 211, + 212, + 213, + 211, + 212, + 213, + 214, + 215, + 216, + 214, + 215, + 216, + 217, + 218, + 219, + 217, + 218, + 219, + 220, + 221, + 222, + 220, + 221, + 222, + 223, + 224, + 225, + 223, + 224, + 225, + 226, + 227, + 228, + 226, + 227, + 228, + 229, + 230, + 231, + 229, + 230, + 231, + 232, + 233, + 234, + 232, + 233, + 234, + 235, + 236, + 237, + 235, + 236, + 237, + 238, + 239, + 240, + 238, + 239, + 240, + 241, + 242, + 243, + 241, + 242, + 243, + 244, + 245, + 246, + 244, + 245, + 246, + 247, + 248, + 249, + 247, + 248, + 249, + 250, + 251, + 252, + 250, + 251, + 252, + 253, + 254, + 255, + 253, + 254, + 255, + 256, + 257, + 258, + 256, + 257, + 258, + 259, + 260, + 261, + 259, + 260, + 261, + 262, + 263, + 264, + 262, + 263, + 264, + 265, + 266, + 267, + 265, + 266, + 267, + 268, + 269, + 270, + 268, + 269, + 270, + 271, + 272, + 273, + 271, + 272, + 273, + 274, + 275, + 276, + 274, + 275, + 276, + 277, + 278, + 279, + 277, + 278, + 279, + 280, + 281, + 282, + 280, + 281, + 282, + 283, + 284, + 285, + 283, + 284, + 285, + 286, + 287, + 288, + 286, + 287, + 288, + 289, + 290, + 291, + 289, + 290, + 291, + 292, + 293, + 294, + 292, + 293, + 294, + 295, + 296, + 297, + 295, + 296, + 297, + 298, + 299, + 300, + 298, + 299, + 300, + 301, + 302, + 303, + 301, + 302, + 303 + ], + "chiseled_resin_bricks": 1, + "nether_bricks": 1, + "nether_brick_fence": [ + 304, + 305, + 304, + 305, + 306, + 307, + 306, + 307, + 308, + 309, + 308, + 309, + 310, + 311, + 310, + 311, + 312, + 313, + 312, + 313, + 314, + 315, + 314, + 315, + 316, + 317, + 316, + 317, + 318, + 319, + 318, + 319 + ], + "nether_brick_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "nether_wart": 0, + "enchanting_table": 320, + "brewing_stand": 321, + "cauldron": 322, + "water_cauldron": 322, + "lava_cauldron": 322, + "powder_snow_cauldron": 322, + "end_portal": 0, + "end_portal_frame": [ + 323, + 323, + 323, + 323, + 324, + 324, + 324, + 324 + ], + "end_stone": 1, + "dragon_egg": 325, + "redstone_lamp": 1, + "cocoa": [ + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337 + ], + "sandstone_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "emerald_ore": 1, + "deepslate_emerald_ore": 1, + "ender_chest": 338, + "tripwire_hook": 0, + "tripwire": 0, + "emerald_block": 1, + "spruce_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "birch_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "jungle_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "command_block": 1, + "beacon": 1, + "cobblestone_wall": [ + 339, + 340, + 341, + 339, + 340, + 341, + 0, + 342, + 343, + 0, + 342, + 343, + 344, + 345, + 346, + 344, + 345, + 346, + 347, + 348, + 349, + 347, + 348, + 349, + 350, + 351, + 352, + 350, + 351, + 352, + 353, + 354, + 355, + 353, + 354, + 355, + 356, + 357, + 358, + 356, + 357, + 358, + 359, + 360, + 361, + 359, + 360, + 361, + 362, + 363, + 364, + 362, + 363, + 364, + 365, + 366, + 367, + 365, + 366, + 367, + 368, + 369, + 370, + 368, + 369, + 370, + 371, + 372, + 373, + 371, + 372, + 373, + 374, + 375, + 376, + 374, + 375, + 376, + 377, + 378, + 379, + 377, + 378, + 379, + 380, + 381, + 382, + 380, + 381, + 382, + 383, + 384, + 385, + 383, + 384, + 385, + 386, + 387, + 388, + 386, + 387, + 388, + 389, + 390, + 391, + 389, + 390, + 391, + 392, + 393, + 394, + 392, + 393, + 394, + 395, + 396, + 397, + 395, + 396, + 397, + 398, + 399, + 400, + 398, + 399, + 400, + 401, + 402, + 403, + 401, + 402, + 403, + 404, + 405, + 406, + 404, + 405, + 406, + 407, + 408, + 409, + 407, + 408, + 409, + 410, + 411, + 412, + 410, + 411, + 412, + 413, + 414, + 415, + 413, + 414, + 415, + 416, + 417, + 418, + 416, + 417, + 418, + 419, + 420, + 421, + 419, + 420, + 421, + 422, + 423, + 424, + 422, + 423, + 424, + 425, + 426, + 427, + 425, + 426, + 427, + 428, + 429, + 430, + 428, + 429, + 430, + 431, + 432, + 433, + 431, + 432, + 433, + 434, + 435, + 436, + 434, + 435, + 436, + 437, + 438, + 439, + 437, + 438, + 439, + 440, + 441, + 442, + 440, + 441, + 442, + 443, + 444, + 445, + 443, + 444, + 445, + 446, + 447, + 448, + 446, + 447, + 448, + 449, + 450, + 451, + 449, + 450, + 451, + 452, + 453, + 454, + 452, + 453, + 454, + 455, + 456, + 457, + 455, + 456, + 457, + 458, + 459, + 460, + 458, + 459, + 460, + 461, + 462, + 463, + 461, + 462, + 463, + 464, + 465, + 466, + 464, + 465, + 466, + 467, + 468, + 469, + 467, + 468, + 469, + 470, + 471, + 472, + 470, + 471, + 472, + 473, + 474, + 475, + 473, + 474, + 475, + 476, + 477, + 478, + 476, + 477, + 478, + 479, + 480, + 481, + 479, + 480, + 481, + 482, + 483, + 484, + 482, + 483, + 484, + 485, + 486, + 487, + 485, + 486, + 487, + 488, + 489, + 490, + 488, + 489, + 490, + 491, + 492, + 493, + 491, + 492, + 493, + 494, + 495, + 496, + 494, + 495, + 496, + 497, + 498, + 499, + 497, + 498, + 499 + ], + "mossy_cobblestone_wall": [ + 500, + 501, + 502, + 500, + 501, + 502, + 0, + 503, + 504, + 0, + 503, + 504, + 505, + 506, + 507, + 505, + 506, + 507, + 508, + 509, + 510, + 508, + 509, + 510, + 511, + 512, + 513, + 511, + 512, + 513, + 514, + 515, + 516, + 514, + 515, + 516, + 517, + 518, + 519, + 517, + 518, + 519, + 520, + 521, + 522, + 520, + 521, + 522, + 523, + 524, + 525, + 523, + 524, + 525, + 526, + 527, + 528, + 526, + 527, + 528, + 529, + 530, + 531, + 529, + 530, + 531, + 532, + 533, + 534, + 532, + 533, + 534, + 535, + 536, + 537, + 535, + 536, + 537, + 538, + 539, + 540, + 538, + 539, + 540, + 541, + 542, + 543, + 541, + 542, + 543, + 544, + 545, + 546, + 544, + 545, + 546, + 547, + 548, + 549, + 547, + 548, + 549, + 550, + 551, + 552, + 550, + 551, + 552, + 553, + 554, + 555, + 553, + 554, + 555, + 556, + 557, + 558, + 556, + 557, + 558, + 559, + 560, + 561, + 559, + 560, + 561, + 562, + 563, + 564, + 562, + 563, + 564, + 565, + 566, + 567, + 565, + 566, + 567, + 568, + 569, + 570, + 568, + 569, + 570, + 571, + 572, + 573, + 571, + 572, + 573, + 574, + 575, + 576, + 574, + 575, + 576, + 577, + 578, + 579, + 577, + 578, + 579, + 580, + 581, + 582, + 580, + 581, + 582, + 583, + 584, + 585, + 583, + 584, + 585, + 586, + 587, + 588, + 586, + 587, + 588, + 589, + 590, + 591, + 589, + 590, + 591, + 592, + 593, + 594, + 592, + 593, + 594, + 595, + 596, + 597, + 595, + 596, + 597, + 598, + 599, + 600, + 598, + 599, + 600, + 601, + 602, + 603, + 601, + 602, + 603, + 604, + 605, + 606, + 604, + 605, + 606, + 607, + 608, + 609, + 607, + 608, + 609, + 610, + 611, + 612, + 610, + 611, + 612, + 613, + 614, + 615, + 613, + 614, + 615, + 616, + 617, + 618, + 616, + 617, + 618, + 619, + 620, + 621, + 619, + 620, + 621, + 622, + 623, + 624, + 622, + 623, + 624, + 625, + 626, + 627, + 625, + 626, + 627, + 628, + 629, + 630, + 628, + 629, + 630, + 631, + 632, + 633, + 631, + 632, + 633, + 634, + 635, + 636, + 634, + 635, + 636, + 637, + 638, + 639, + 637, + 638, + 639, + 640, + 641, + 642, + 640, + 641, + 642, + 643, + 644, + 645, + 643, + 644, + 645, + 646, + 647, + 648, + 646, + 647, + 648, + 649, + 650, + 651, + 649, + 650, + 651, + 652, + 653, + 654, + 652, + 653, + 654, + 655, + 656, + 657, + 655, + 656, + 657, + 658, + 659, + 660, + 658, + 659, + 660 + ], + "flower_pot": 661, + "potted_torchflower": 661, + "potted_oak_sapling": 661, + "potted_spruce_sapling": 661, + "potted_birch_sapling": 661, + "potted_jungle_sapling": 661, + "potted_acacia_sapling": 661, + "potted_cherry_sapling": 661, + "potted_dark_oak_sapling": 661, + "potted_pale_oak_sapling": 661, + "potted_mangrove_propagule": 661, + "potted_fern": 661, + "potted_dandelion": 661, + "potted_poppy": 661, + "potted_blue_orchid": 661, + "potted_allium": 661, + "potted_azure_bluet": 661, + "potted_red_tulip": 661, + "potted_orange_tulip": 661, + "potted_white_tulip": 661, + "potted_pink_tulip": 661, + "potted_oxeye_daisy": 661, + "potted_cornflower": 661, + "potted_lily_of_the_valley": 661, + "potted_wither_rose": 661, + "potted_red_mushroom": 661, + "potted_brown_mushroom": 661, + "potted_dead_bush": 661, + "potted_cactus": 661, + "carrots": 0, + "potatoes": 0, + "oak_button": 0, + "spruce_button": 0, + "birch_button": 0, + "jungle_button": 0, + "acacia_button": 0, + "cherry_button": 0, + "dark_oak_button": 0, + "pale_oak_button": 0, + "mangrove_button": 0, + "bamboo_button": 0, + "skeleton_skull": 662, + "skeleton_wall_skull": [ + 663, + 663, + 664, + 664, + 665, + 665, + 666, + 666 + ], + "wither_skeleton_skull": 662, + "wither_skeleton_wall_skull": [ + 663, + 663, + 664, + 664, + 665, + 665, + 666, + 666 + ], + "zombie_head": 662, + "zombie_wall_head": [ + 663, + 663, + 664, + 664, + 665, + 665, + 666, + 666 + ], + "player_head": 662, + "player_wall_head": [ + 663, + 663, + 664, + 664, + 665, + 665, + 666, + 666 + ], + "creeper_head": 662, + "creeper_wall_head": [ + 663, + 663, + 664, + 664, + 665, + 665, + 666, + 666 + ], + "dragon_head": 662, + "dragon_wall_head": [ + 663, + 663, + 664, + 664, + 665, + 665, + 666, + 666 + ], + "piglin_head": 667, + "piglin_wall_head": [ + 668, + 668, + 669, + 669, + 670, + 670, + 671, + 671 + ], + "anvil": [ + 672, + 672, + 673, + 673 + ], + "chipped_anvil": [ + 672, + 672, + 673, + 673 + ], + "damaged_anvil": [ + 672, + 672, + 673, + 673 + ], + "trapped_chest": [ + 48, + 48, + 49, + 49, + 50, + 50, + 48, + 48, + 50, + 50, + 49, + 49, + 48, + 48, + 51, + 51, + 52, + 52, + 48, + 48, + 52, + 52, + 51, + 51 + ], + "light_weighted_pressure_plate": 0, + "heavy_weighted_pressure_plate": 0, + "comparator": 96, + "daylight_detector": 674, + "redstone_block": 1, + "nether_quartz_ore": 1, + "hopper": [ + 675, + 676, + 677, + 678, + 679, + 675, + 676, + 677, + 678, + 679 + ], + "quartz_block": 1, + "chiseled_quartz_block": 1, + "quartz_pillar": 1, + "quartz_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "activator_rail": 0, + "dropper": 1, + "white_terracotta": 1, + "orange_terracotta": 1, + "magenta_terracotta": 1, + "light_blue_terracotta": 1, + "yellow_terracotta": 1, + "lime_terracotta": 1, + "pink_terracotta": 1, + "gray_terracotta": 1, + "light_gray_terracotta": 1, + "cyan_terracotta": 1, + "purple_terracotta": 1, + "blue_terracotta": 1, + "brown_terracotta": 1, + "green_terracotta": 1, + "red_terracotta": 1, + "black_terracotta": 1, + "white_stained_glass_pane": [ + 680, + 681, + 680, + 681, + 682, + 683, + 682, + 683, + 684, + 685, + 684, + 685, + 686, + 687, + 686, + 687, + 688, + 689, + 688, + 689, + 690, + 691, + 690, + 691, + 692, + 693, + 692, + 693, + 694, + 695, + 694, + 695 + ], + "orange_stained_glass_pane": [ + 696, + 697, + 696, + 697, + 698, + 699, + 698, + 699, + 700, + 701, + 700, + 701, + 702, + 703, + 702, + 703, + 704, + 705, + 704, + 705, + 706, + 707, + 706, + 707, + 708, + 709, + 708, + 709, + 710, + 711, + 710, + 711 + ], + "magenta_stained_glass_pane": [ + 712, + 713, + 712, + 713, + 714, + 715, + 714, + 715, + 716, + 717, + 716, + 717, + 718, + 719, + 718, + 719, + 720, + 721, + 720, + 721, + 722, + 723, + 722, + 723, + 724, + 725, + 724, + 725, + 726, + 727, + 726, + 727 + ], + "light_blue_stained_glass_pane": [ + 728, + 729, + 728, + 729, + 730, + 731, + 730, + 731, + 732, + 733, + 732, + 733, + 734, + 735, + 734, + 735, + 736, + 737, + 736, + 737, + 738, + 739, + 738, + 739, + 740, + 741, + 740, + 741, + 742, + 743, + 742, + 743 + ], + "yellow_stained_glass_pane": [ + 744, + 745, + 744, + 745, + 746, + 747, + 746, + 747, + 748, + 749, + 748, + 749, + 750, + 751, + 750, + 751, + 752, + 753, + 752, + 753, + 754, + 755, + 754, + 755, + 756, + 757, + 756, + 757, + 758, + 759, + 758, + 759 + ], + "lime_stained_glass_pane": [ + 760, + 761, + 760, + 761, + 762, + 763, + 762, + 763, + 764, + 765, + 764, + 765, + 766, + 767, + 766, + 767, + 768, + 769, + 768, + 769, + 770, + 771, + 770, + 771, + 772, + 773, + 772, + 773, + 774, + 775, + 774, + 775 + ], + "pink_stained_glass_pane": [ + 776, + 777, + 776, + 777, + 778, + 779, + 778, + 779, + 780, + 781, + 780, + 781, + 782, + 783, + 782, + 783, + 784, + 785, + 784, + 785, + 786, + 787, + 786, + 787, + 788, + 789, + 788, + 789, + 790, + 791, + 790, + 791 + ], + "gray_stained_glass_pane": [ + 792, + 793, + 792, + 793, + 794, + 795, + 794, + 795, + 796, + 797, + 796, + 797, + 798, + 799, + 798, + 799, + 800, + 801, + 800, + 801, + 802, + 803, + 802, + 803, + 804, + 805, + 804, + 805, + 806, + 807, + 806, + 807 + ], + "light_gray_stained_glass_pane": [ + 808, + 809, + 808, + 809, + 810, + 811, + 810, + 811, + 812, + 813, + 812, + 813, + 814, + 815, + 814, + 815, + 816, + 817, + 816, + 817, + 818, + 819, + 818, + 819, + 820, + 821, + 820, + 821, + 822, + 823, + 822, + 823 + ], + "cyan_stained_glass_pane": [ + 824, + 825, + 824, + 825, + 826, + 827, + 826, + 827, + 828, + 829, + 828, + 829, + 830, + 831, + 830, + 831, + 832, + 833, + 832, + 833, + 834, + 835, + 834, + 835, + 836, + 837, + 836, + 837, + 838, + 839, + 838, + 839 + ], + "purple_stained_glass_pane": [ + 840, + 841, + 840, + 841, + 842, + 843, + 842, + 843, + 844, + 845, + 844, + 845, + 846, + 847, + 846, + 847, + 848, + 849, + 848, + 849, + 850, + 851, + 850, + 851, + 852, + 853, + 852, + 853, + 854, + 855, + 854, + 855 + ], + "blue_stained_glass_pane": [ + 856, + 857, + 856, + 857, + 858, + 859, + 858, + 859, + 860, + 861, + 860, + 861, + 862, + 863, + 862, + 863, + 864, + 865, + 864, + 865, + 866, + 867, + 866, + 867, + 868, + 869, + 868, + 869, + 870, + 871, + 870, + 871 + ], + "brown_stained_glass_pane": [ + 872, + 873, + 872, + 873, + 874, + 875, + 874, + 875, + 876, + 877, + 876, + 877, + 878, + 879, + 878, + 879, + 880, + 881, + 880, + 881, + 882, + 883, + 882, + 883, + 884, + 885, + 884, + 885, + 886, + 887, + 886, + 887 + ], + "green_stained_glass_pane": [ + 888, + 889, + 888, + 889, + 890, + 891, + 890, + 891, + 892, + 893, + 892, + 893, + 894, + 895, + 894, + 895, + 896, + 897, + 896, + 897, + 898, + 899, + 898, + 899, + 900, + 901, + 900, + 901, + 902, + 903, + 902, + 903 + ], + "red_stained_glass_pane": [ + 904, + 905, + 904, + 905, + 906, + 907, + 906, + 907, + 908, + 909, + 908, + 909, + 910, + 911, + 910, + 911, + 912, + 913, + 912, + 913, + 914, + 915, + 914, + 915, + 916, + 917, + 916, + 917, + 918, + 919, + 918, + 919 + ], + "black_stained_glass_pane": [ + 920, + 921, + 920, + 921, + 922, + 923, + 922, + 923, + 924, + 925, + 924, + 925, + 926, + 927, + 926, + 927, + 928, + 929, + 928, + 929, + 930, + 931, + 930, + 931, + 932, + 933, + 932, + 933, + 934, + 935, + 934, + 935 + ], + "acacia_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "cherry_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "dark_oak_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "pale_oak_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "mangrove_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "bamboo_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "bamboo_mosaic_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "slime_block": 1, + "barrier": 1, + "light": 0, + "iron_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "prismarine": 1, + "prismarine_bricks": 1, + "dark_prismarine": 1, + "prismarine_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "prismarine_brick_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "dark_prismarine_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "prismarine_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "prismarine_brick_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "dark_prismarine_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "sea_lantern": 1, + "hay_block": 1, + "white_carpet": 936, + "orange_carpet": 936, + "magenta_carpet": 936, + "light_blue_carpet": 936, + "yellow_carpet": 936, + "lime_carpet": 936, + "pink_carpet": 936, + "gray_carpet": 936, + "light_gray_carpet": 936, + "cyan_carpet": 936, + "purple_carpet": 936, + "blue_carpet": 936, + "brown_carpet": 936, + "green_carpet": 936, + "red_carpet": 936, + "black_carpet": 936, + "terracotta": 1, + "coal_block": 1, + "packed_ice": 1, + "sunflower": 0, + "lilac": 0, + "rose_bush": 0, + "peony": 0, + "tall_grass": 0, + "large_fern": 0, + "white_banner": 0, + "orange_banner": 0, + "magenta_banner": 0, + "light_blue_banner": 0, + "yellow_banner": 0, + "lime_banner": 0, + "pink_banner": 0, + "gray_banner": 0, + "light_gray_banner": 0, + "cyan_banner": 0, + "purple_banner": 0, + "blue_banner": 0, + "brown_banner": 0, + "green_banner": 0, + "red_banner": 0, + "black_banner": 0, + "white_wall_banner": 0, + "orange_wall_banner": 0, + "magenta_wall_banner": 0, + "light_blue_wall_banner": 0, + "yellow_wall_banner": 0, + "lime_wall_banner": 0, + "pink_wall_banner": 0, + "gray_wall_banner": 0, + "light_gray_wall_banner": 0, + "cyan_wall_banner": 0, + "purple_wall_banner": 0, + "blue_wall_banner": 0, + "brown_wall_banner": 0, + "green_wall_banner": 0, + "red_wall_banner": 0, + "black_wall_banner": 0, + "red_sandstone": 1, + "chiseled_red_sandstone": 1, + "cut_red_sandstone": 1, + "red_sandstone_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "oak_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "spruce_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "birch_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "jungle_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "acacia_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "cherry_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "dark_oak_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "pale_oak_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "mangrove_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "bamboo_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "bamboo_mosaic_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "stone_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "smooth_stone_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "sandstone_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "cut_sandstone_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "petrified_oak_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "cobblestone_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "brick_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "stone_brick_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "mud_brick_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "nether_brick_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "quartz_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "red_sandstone_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "cut_red_sandstone_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "purpur_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "smooth_stone": 1, + "smooth_sandstone": 1, + "smooth_quartz": 1, + "smooth_red_sandstone": 1, + "spruce_fence_gate": [ + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139 + ], + "birch_fence_gate": [ + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139 + ], + "jungle_fence_gate": [ + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139 + ], + "acacia_fence_gate": [ + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139 + ], + "cherry_fence_gate": [ + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139 + ], + "dark_oak_fence_gate": [ + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139 + ], + "pale_oak_fence_gate": [ + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139 + ], + "mangrove_fence_gate": [ + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139 + ], + "bamboo_fence_gate": [ + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139 + ], + "spruce_fence": [ + 937, + 938, + 937, + 938, + 939, + 940, + 939, + 940, + 941, + 942, + 941, + 942, + 943, + 944, + 943, + 944, + 945, + 946, + 945, + 946, + 947, + 948, + 947, + 948, + 949, + 950, + 949, + 950, + 951, + 952, + 951, + 952 + ], + "birch_fence": [ + 953, + 954, + 953, + 954, + 955, + 956, + 955, + 956, + 957, + 958, + 957, + 958, + 959, + 960, + 959, + 960, + 961, + 962, + 961, + 962, + 963, + 964, + 963, + 964, + 965, + 966, + 965, + 966, + 967, + 968, + 967, + 968 + ], + "jungle_fence": [ + 969, + 970, + 969, + 970, + 971, + 972, + 971, + 972, + 973, + 974, + 973, + 974, + 975, + 976, + 975, + 976, + 977, + 978, + 977, + 978, + 979, + 980, + 979, + 980, + 981, + 982, + 981, + 982, + 983, + 984, + 983, + 984 + ], + "acacia_fence": [ + 985, + 986, + 985, + 986, + 987, + 988, + 987, + 988, + 989, + 990, + 989, + 990, + 991, + 992, + 991, + 992, + 993, + 994, + 993, + 994, + 995, + 996, + 995, + 996, + 997, + 998, + 997, + 998, + 999, + 1000, + 999, + 1000 + ], + "cherry_fence": [ + 1001, + 1002, + 1001, + 1002, + 1003, + 1004, + 1003, + 1004, + 1005, + 1006, + 1005, + 1006, + 1007, + 1008, + 1007, + 1008, + 1009, + 1010, + 1009, + 1010, + 1011, + 1012, + 1011, + 1012, + 1013, + 1014, + 1013, + 1014, + 1015, + 1016, + 1015, + 1016 + ], + "dark_oak_fence": [ + 1017, + 1018, + 1017, + 1018, + 1019, + 1020, + 1019, + 1020, + 1021, + 1022, + 1021, + 1022, + 1023, + 1024, + 1023, + 1024, + 1025, + 1026, + 1025, + 1026, + 1027, + 1028, + 1027, + 1028, + 1029, + 1030, + 1029, + 1030, + 1031, + 1032, + 1031, + 1032 + ], + "pale_oak_fence": [ + 1033, + 1034, + 1033, + 1034, + 1035, + 1036, + 1035, + 1036, + 1037, + 1038, + 1037, + 1038, + 1039, + 1040, + 1039, + 1040, + 1041, + 1042, + 1041, + 1042, + 1043, + 1044, + 1043, + 1044, + 1045, + 1046, + 1045, + 1046, + 1047, + 1048, + 1047, + 1048 + ], + "mangrove_fence": [ + 1049, + 1050, + 1049, + 1050, + 1051, + 1052, + 1051, + 1052, + 1053, + 1054, + 1053, + 1054, + 1055, + 1056, + 1055, + 1056, + 1057, + 1058, + 1057, + 1058, + 1059, + 1060, + 1059, + 1060, + 1061, + 1062, + 1061, + 1062, + 1063, + 1064, + 1063, + 1064 + ], + "bamboo_fence": [ + 1065, + 1066, + 1065, + 1066, + 1067, + 1068, + 1067, + 1068, + 1069, + 1070, + 1069, + 1070, + 1071, + 1072, + 1071, + 1072, + 1073, + 1074, + 1073, + 1074, + 1075, + 1076, + 1075, + 1076, + 1077, + 1078, + 1077, + 1078, + 1079, + 1080, + 1079, + 1080 + ], + "spruce_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "birch_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "jungle_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "acacia_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "cherry_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "dark_oak_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "pale_oak_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "mangrove_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "bamboo_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "end_rod": [ + 1081, + 1082, + 1081, + 1082, + 1083, + 1083 + ], + "chorus_plant": [ + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147 + ], + "chorus_flower": 1, + "purpur_block": 1, + "purpur_pillar": 1, + "purpur_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "end_stone_bricks": 1, + "torchflower_crop": 0, + "pitcher_crop": [ + 1148, + 1148, + 0, + 1149, + 0, + 1149, + 0, + 1149, + 0, + 1149 + ], + "pitcher_plant": 0, + "beetroots": 0, + "dirt_path": 53, + "end_gateway": 0, + "repeating_command_block": 1, + "chain_command_block": 1, + "frosted_ice": 1, + "magma_block": 1, + "nether_wart_block": 1, + "red_nether_bricks": 1, + "bone_block": 1, + "structure_void": 0, + "observer": 1, + "shulker_box": 1, + "white_shulker_box": 1, + "orange_shulker_box": 1, + "magenta_shulker_box": 1, + "light_blue_shulker_box": 1, + "yellow_shulker_box": 1, + "lime_shulker_box": 1, + "pink_shulker_box": 1, + "gray_shulker_box": 1, + "light_gray_shulker_box": 1, + "cyan_shulker_box": 1, + "purple_shulker_box": 1, + "blue_shulker_box": 1, + "brown_shulker_box": 1, + "green_shulker_box": 1, + "red_shulker_box": 1, + "black_shulker_box": 1, + "white_glazed_terracotta": 1, + "orange_glazed_terracotta": 1, + "magenta_glazed_terracotta": 1, + "light_blue_glazed_terracotta": 1, + "yellow_glazed_terracotta": 1, + "lime_glazed_terracotta": 1, + "pink_glazed_terracotta": 1, + "gray_glazed_terracotta": 1, + "light_gray_glazed_terracotta": 1, + "cyan_glazed_terracotta": 1, + "purple_glazed_terracotta": 1, + "blue_glazed_terracotta": 1, + "brown_glazed_terracotta": 1, + "green_glazed_terracotta": 1, + "red_glazed_terracotta": 1, + "black_glazed_terracotta": 1, + "white_concrete": 1, + "orange_concrete": 1, + "magenta_concrete": 1, + "light_blue_concrete": 1, + "yellow_concrete": 1, + "lime_concrete": 1, + "pink_concrete": 1, + "gray_concrete": 1, + "light_gray_concrete": 1, + "cyan_concrete": 1, + "purple_concrete": 1, + "blue_concrete": 1, + "brown_concrete": 1, + "green_concrete": 1, + "red_concrete": 1, + "black_concrete": 1, + "white_concrete_powder": 1, + "orange_concrete_powder": 1, + "magenta_concrete_powder": 1, + "light_blue_concrete_powder": 1, + "yellow_concrete_powder": 1, + "lime_concrete_powder": 1, + "pink_concrete_powder": 1, + "gray_concrete_powder": 1, + "light_gray_concrete_powder": 1, + "cyan_concrete_powder": 1, + "purple_concrete_powder": 1, + "blue_concrete_powder": 1, + "brown_concrete_powder": 1, + "green_concrete_powder": 1, + "red_concrete_powder": 1, + "black_concrete_powder": 1, + "kelp": 0, + "kelp_plant": 0, + "dried_kelp_block": 1, + "turtle_egg": [ + 1150, + 1150, + 1150, + 1151, + 1151, + 1151, + 1151, + 1151, + 1151, + 1151, + 1151, + 1151 + ], + "sniffer_egg": 1152, + "dead_tube_coral_block": 1, + "dead_brain_coral_block": 1, + "dead_bubble_coral_block": 1, + "dead_fire_coral_block": 1, + "dead_horn_coral_block": 1, + "tube_coral_block": 1, + "brain_coral_block": 1, + "bubble_coral_block": 1, + "fire_coral_block": 1, + "horn_coral_block": 1, + "dead_tube_coral": 0, + "dead_brain_coral": 0, + "dead_bubble_coral": 0, + "dead_fire_coral": 0, + "dead_horn_coral": 0, + "tube_coral": 0, + "brain_coral": 0, + "bubble_coral": 0, + "fire_coral": 0, + "horn_coral": 0, + "dead_tube_coral_fan": 0, + "dead_brain_coral_fan": 0, + "dead_bubble_coral_fan": 0, + "dead_fire_coral_fan": 0, + "dead_horn_coral_fan": 0, + "tube_coral_fan": 0, + "brain_coral_fan": 0, + "bubble_coral_fan": 0, + "fire_coral_fan": 0, + "horn_coral_fan": 0, + "dead_tube_coral_wall_fan": 0, + "dead_brain_coral_wall_fan": 0, + "dead_bubble_coral_wall_fan": 0, + "dead_fire_coral_wall_fan": 0, + "dead_horn_coral_wall_fan": 0, + "tube_coral_wall_fan": 0, + "brain_coral_wall_fan": 0, + "bubble_coral_wall_fan": 0, + "fire_coral_wall_fan": 0, + "horn_coral_wall_fan": 0, + "sea_pickle": [ + 1153, + 1153, + 1154, + 1154, + 1155, + 1155, + 1156, + 1156 + ], + "blue_ice": 1, + "conduit": 1157, + "bamboo_sapling": 0, + "bamboo": [ + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169 + ], + "potted_bamboo": 661, + "void_air": 0, + "cave_air": 0, + "bubble_column": 0, + "polished_granite_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "smooth_red_sandstone_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "mossy_stone_brick_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "polished_diorite_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "mossy_cobblestone_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "end_stone_brick_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "stone_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "smooth_sandstone_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "smooth_quartz_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "granite_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "andesite_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "red_nether_brick_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "polished_andesite_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "diorite_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "polished_granite_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "smooth_red_sandstone_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "mossy_stone_brick_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "polished_diorite_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "mossy_cobblestone_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "end_stone_brick_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "smooth_sandstone_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "smooth_quartz_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "granite_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "andesite_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "red_nether_brick_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "polished_andesite_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "diorite_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "brick_wall": [ + 1170, + 1171, + 1172, + 1170, + 1171, + 1172, + 0, + 1173, + 1174, + 0, + 1173, + 1174, + 1175, + 1176, + 1177, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1229, + 1230, + 1231, + 1232, + 1233, + 1234, + 1232, + 1233, + 1234, + 1235, + 1236, + 1237, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1250, + 1251, + 1252, + 1253, + 1254, + 1255, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1259, + 1260, + 1261, + 1262, + 1263, + 1264, + 1262, + 1263, + 1264, + 1265, + 1266, + 1267, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1271, + 1272, + 1273, + 1274, + 1275, + 1276, + 1274, + 1275, + 1276, + 1277, + 1278, + 1279, + 1277, + 1278, + 1279, + 1280, + 1281, + 1282, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1283, + 1284, + 1285, + 1286, + 1287, + 1288, + 1286, + 1287, + 1288, + 1289, + 1290, + 1291, + 1289, + 1290, + 1291, + 1292, + 1293, + 1294, + 1292, + 1293, + 1294, + 1295, + 1296, + 1297, + 1295, + 1296, + 1297, + 1298, + 1299, + 1300, + 1298, + 1299, + 1300, + 1301, + 1302, + 1303, + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1307, + 1308, + 1309, + 1310, + 1311, + 1312, + 1310, + 1311, + 1312, + 1313, + 1314, + 1315, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1316, + 1317, + 1318, + 1319, + 1320, + 1321, + 1319, + 1320, + 1321, + 1322, + 1323, + 1324, + 1322, + 1323, + 1324, + 1325, + 1326, + 1327, + 1325, + 1326, + 1327, + 1328, + 1329, + 1330, + 1328, + 1329, + 1330 + ], + "prismarine_wall": [ + 1331, + 1332, + 1333, + 1331, + 1332, + 1333, + 0, + 1334, + 1335, + 0, + 1334, + 1335, + 1336, + 1337, + 1338, + 1336, + 1337, + 1338, + 1339, + 1340, + 1341, + 1339, + 1340, + 1341, + 1342, + 1343, + 1344, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1366, + 1367, + 1368, + 1369, + 1370, + 1371, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1432, + 1433, + 1434, + 1435, + 1436, + 1437, + 1435, + 1436, + 1437, + 1438, + 1439, + 1440, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1441, + 1442, + 1443, + 1444, + 1445, + 1446, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1459, + 1460, + 1461, + 1462, + 1463, + 1464, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1489, + 1490, + 1491 + ], + "red_sandstone_wall": [ + 1492, + 1493, + 1494, + 1492, + 1493, + 1494, + 0, + 1495, + 1496, + 0, + 1495, + 1496, + 1497, + 1498, + 1499, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1539, + 1540, + 1541, + 1542, + 1543, + 1544, + 1542, + 1543, + 1544, + 1545, + 1546, + 1547, + 1545, + 1546, + 1547, + 1548, + 1549, + 1550, + 1548, + 1549, + 1550, + 1551, + 1552, + 1553, + 1551, + 1552, + 1553, + 1554, + 1555, + 1556, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1566, + 1567, + 1568, + 1569, + 1570, + 1571, + 1569, + 1570, + 1571, + 1572, + 1573, + 1574, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1590, + 1591, + 1592, + 1593, + 1594, + 1595, + 1593, + 1594, + 1595, + 1596, + 1597, + 1598, + 1596, + 1597, + 1598, + 1599, + 1600, + 1601, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1608, + 1609, + 1610, + 1611, + 1612, + 1613, + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1623, + 1624, + 1625, + 1626, + 1627, + 1628, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652, + 1650, + 1651, + 1652 + ], + "mossy_stone_brick_wall": [ + 1653, + 1654, + 1655, + 1653, + 1654, + 1655, + 0, + 1656, + 1657, + 0, + 1656, + 1657, + 1658, + 1659, + 1660, + 1658, + 1659, + 1660, + 1661, + 1662, + 1663, + 1661, + 1662, + 1663, + 1664, + 1665, + 1666, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1667, + 1668, + 1669, + 1670, + 1671, + 1672, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1688, + 1689, + 1690, + 1691, + 1692, + 1693, + 1691, + 1692, + 1693, + 1694, + 1695, + 1696, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1703, + 1704, + 1705, + 1706, + 1707, + 1708, + 1706, + 1707, + 1708, + 1709, + 1710, + 1711, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1724, + 1725, + 1726, + 1727, + 1728, + 1729, + 1727, + 1728, + 1729, + 1730, + 1731, + 1732, + 1730, + 1731, + 1732, + 1733, + 1734, + 1735, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 1742, + 1743, + 1744, + 1745, + 1746, + 1747, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1748, + 1749, + 1750, + 1751, + 1752, + 1753, + 1751, + 1752, + 1753, + 1754, + 1755, + 1756, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1793, + 1794, + 1795, + 1796, + 1797, + 1798, + 1796, + 1797, + 1798, + 1799, + 1800, + 1801, + 1799, + 1800, + 1801, + 1802, + 1803, + 1804, + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1805, + 1806, + 1807, + 1808, + 1809, + 1810, + 1808, + 1809, + 1810, + 1811, + 1812, + 1813, + 1811, + 1812, + 1813 + ], + "granite_wall": [ + 1814, + 1815, + 1816, + 1814, + 1815, + 1816, + 0, + 1817, + 1818, + 0, + 1817, + 1818, + 1819, + 1820, + 1821, + 1819, + 1820, + 1821, + 1822, + 1823, + 1824, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1858, + 1859, + 1860, + 1861, + 1862, + 1863, + 1861, + 1862, + 1863, + 1864, + 1865, + 1866, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1870, + 1871, + 1872, + 1873, + 1874, + 1875, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1891, + 1892, + 1893, + 1894, + 1895, + 1896, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1915, + 1916, + 1917, + 1918, + 1919, + 1920, + 1918, + 1919, + 1920, + 1921, + 1922, + 1923, + 1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1972, + 1973, + 1974 + ], + "stone_brick_wall": [ + 1975, + 1976, + 1977, + 1975, + 1976, + 1977, + 0, + 1978, + 1979, + 0, + 1978, + 1979, + 1980, + 1981, + 1982, + 1980, + 1981, + 1982, + 1983, + 1984, + 1985, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 1992, + 1993, + 1994, + 1995, + 1996, + 1997, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 1998, + 1999, + 2000, + 2001, + 2002, + 2003, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2010, + 2011, + 2012, + 2013, + 2014, + 2015, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2034, + 2035, + 2036, + 2037, + 2038, + 2039, + 2037, + 2038, + 2039, + 2040, + 2041, + 2042, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2076, + 2077, + 2078, + 2079, + 2080, + 2081, + 2079, + 2080, + 2081, + 2082, + 2083, + 2084, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2133, + 2134, + 2135 + ], + "mud_brick_wall": [ + 2136, + 2137, + 2138, + 2136, + 2137, + 2138, + 0, + 2139, + 2140, + 0, + 2139, + 2140, + 2141, + 2142, + 2143, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182, + 2180, + 2181, + 2182, + 2183, + 2184, + 2185, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2261, + 2262, + 2263, + 2264, + 2265, + 2266, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2294, + 2295, + 2296 + ], + "nether_brick_wall": [ + 2297, + 2298, + 2299, + 2297, + 2298, + 2299, + 0, + 2300, + 2301, + 0, + 2300, + 2301, + 2302, + 2303, + 2304, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2305, + 2306, + 2307, + 2308, + 2309, + 2310, + 2308, + 2309, + 2310, + 2311, + 2312, + 2313, + 2311, + 2312, + 2313, + 2314, + 2315, + 2316, + 2314, + 2315, + 2316, + 2317, + 2318, + 2319, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2356, + 2357, + 2358, + 2359, + 2360, + 2361, + 2359, + 2360, + 2361, + 2362, + 2363, + 2364, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2395, + 2396, + 2397, + 2398, + 2399, + 2400, + 2398, + 2399, + 2400, + 2401, + 2402, + 2403, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2407, + 2408, + 2409, + 2410, + 2411, + 2412, + 2410, + 2411, + 2412, + 2413, + 2414, + 2415, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2455, + 2456, + 2457 + ], + "andesite_wall": [ + 2458, + 2459, + 2460, + 2458, + 2459, + 2460, + 0, + 2461, + 2462, + 0, + 2461, + 2462, + 2463, + 2464, + 2465, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2508, + 2509, + 2510, + 2511, + 2512, + 2513, + 2511, + 2512, + 2513, + 2514, + 2515, + 2516, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2547, + 2548, + 2549, + 2550, + 2551, + 2552, + 2550, + 2551, + 2552, + 2553, + 2554, + 2555, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2616, + 2617, + 2618 + ], + "red_nether_brick_wall": [ + 2619, + 2620, + 2621, + 2619, + 2620, + 2621, + 0, + 2622, + 2623, + 0, + 2622, + 2623, + 2624, + 2625, + 2626, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2777, + 2778, + 2779 + ], + "sandstone_wall": [ + 2780, + 2781, + 2782, + 2780, + 2781, + 2782, + 0, + 2783, + 2784, + 0, + 2783, + 2784, + 2785, + 2786, + 2787, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2827, + 2828, + 2829, + 2830, + 2831, + 2832, + 2830, + 2831, + 2832, + 2833, + 2834, + 2835, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2899, + 2900, + 2901, + 2902, + 2903, + 2904, + 2902, + 2903, + 2904, + 2905, + 2906, + 2907, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2938, + 2939, + 2940 + ], + "end_stone_brick_wall": [ + 2941, + 2942, + 2943, + 2941, + 2942, + 2943, + 0, + 2944, + 2945, + 0, + 2944, + 2945, + 2946, + 2947, + 2948, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951, + 2949, + 2950, + 2951, + 2952, + 2953, + 2954, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3024, + 3025, + 3026, + 3027, + 3028, + 3029, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068, + 3066, + 3067, + 3068, + 3069, + 3070, + 3071, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3078, + 3079, + 3080, + 3081, + 3082, + 3083, + 3081, + 3082, + 3083, + 3084, + 3085, + 3086, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3096, + 3097, + 3098, + 3099, + 3100, + 3101, + 3099, + 3100, + 3101 + ], + "diorite_wall": [ + 3102, + 3103, + 3104, + 3102, + 3103, + 3104, + 0, + 3105, + 3106, + 0, + 3105, + 3106, + 3107, + 3108, + 3109, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3116, + 3117, + 3118, + 3119, + 3120, + 3121, + 3119, + 3120, + 3121, + 3122, + 3123, + 3124, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3125, + 3126, + 3127, + 3128, + 3129, + 3130, + 3128, + 3129, + 3130, + 3131, + 3132, + 3133, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3158, + 3159, + 3160, + 3161, + 3162, + 3163, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3227, + 3228, + 3229, + 3230, + 3231, + 3232, + 3230, + 3231, + 3232, + 3233, + 3234, + 3235, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3242, + 3243, + 3244, + 3245, + 3246, + 3247, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3254, + 3255, + 3256, + 3257, + 3258, + 3259, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3260, + 3261, + 3262 + ], + "scaffolding": 3263, + "loom": 1, + "barrel": 1, + "smoker": 1, + "blast_furnace": 1, + "cartography_table": 1, + "fletching_table": 1, + "grindstone": [ + 3264, + 3264, + 3265, + 3265, + 3266, + 3267, + 3268, + 3269, + 3270, + 3270, + 3271, + 3271 + ], + "lectern": 3272, + "smithing_table": 1, + "stonecutter": 3273, + "bell": [ + 3274, + 3274, + 3274, + 3274, + 3275, + 3275, + 3275, + 3275, + 3276, + 3276, + 3276, + 3276, + 3276, + 3276, + 3276, + 3276, + 3277, + 3277, + 3278, + 3278, + 3279, + 3279, + 3280, + 3280, + 3281, + 3281, + 3281, + 3281, + 3282, + 3282, + 3282, + 3282 + ], + "lantern": [ + 3283, + 3283, + 3284, + 3284 + ], + "soul_lantern": [ + 3283, + 3283, + 3284, + 3284 + ], + "campfire": 3285, + "soul_campfire": 3285, + "sweet_berry_bush": 0, + "warped_stem": 1, + "stripped_warped_stem": 1, + "warped_hyphae": 1, + "stripped_warped_hyphae": 1, + "warped_nylium": 1, + "warped_fungus": 0, + "warped_wart_block": 1, + "warped_roots": 0, + "nether_sprouts": 0, + "crimson_stem": 1, + "stripped_crimson_stem": 1, + "crimson_hyphae": 1, + "stripped_crimson_hyphae": 1, + "crimson_nylium": 1, + "crimson_fungus": 0, + "shroomlight": 1, + "weeping_vines": 0, + "weeping_vines_plant": 0, + "twisting_vines": 0, + "twisting_vines_plant": 0, + "crimson_roots": 0, + "crimson_planks": 1, + "warped_planks": 1, + "crimson_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "warped_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "crimson_pressure_plate": 0, + "warped_pressure_plate": 0, + "crimson_fence": [ + 3286, + 3287, + 3286, + 3287, + 3288, + 3289, + 3288, + 3289, + 3290, + 3291, + 3290, + 3291, + 3292, + 3293, + 3292, + 3293, + 3294, + 3295, + 3294, + 3295, + 3296, + 3297, + 3296, + 3297, + 3298, + 3299, + 3298, + 3299, + 3300, + 3301, + 3300, + 3301 + ], + "warped_fence": [ + 3302, + 3303, + 3302, + 3303, + 3304, + 3305, + 3304, + 3305, + 3306, + 3307, + 3306, + 3307, + 3308, + 3309, + 3308, + 3309, + 3310, + 3311, + 3310, + 3311, + 3312, + 3313, + 3312, + 3313, + 3314, + 3315, + 3314, + 3315, + 3316, + 3317, + 3316, + 3317 + ], + "crimson_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "warped_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "crimson_fence_gate": [ + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139 + ], + "warped_fence_gate": [ + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 138, + 138, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139, + 0, + 0, + 139, + 139 + ], + "crimson_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "warped_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "crimson_button": 0, + "warped_button": 0, + "crimson_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "warped_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "crimson_sign": 0, + "warped_sign": 0, + "crimson_wall_sign": 0, + "warped_wall_sign": 0, + "structure_block": 1, + "jigsaw": 1, + "composter": 3318, + "target": 1, + "bee_nest": 1, + "beehive": 1, + "honey_block": 3319, + "honeycomb_block": 1, + "netherite_block": 1, + "ancient_debris": 1, + "crying_obsidian": 1, + "respawn_anchor": 1, + "potted_crimson_fungus": 661, + "potted_warped_fungus": 661, + "potted_crimson_roots": 661, + "potted_warped_roots": 661, + "lodestone": 1, + "blackstone": 1, + "blackstone_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "blackstone_wall": [ + 3320, + 3321, + 3322, + 3320, + 3321, + 3322, + 0, + 3323, + 3324, + 0, + 3323, + 3324, + 3325, + 3326, + 3327, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3337, + 3338, + 3339, + 3340, + 3341, + 3342, + 3340, + 3341, + 3342, + 3343, + 3344, + 3345, + 3343, + 3344, + 3345, + 3346, + 3347, + 3348, + 3346, + 3347, + 3348, + 3349, + 3350, + 3351, + 3349, + 3350, + 3351, + 3352, + 3353, + 3354, + 3352, + 3353, + 3354, + 3355, + 3356, + 3357, + 3355, + 3356, + 3357, + 3358, + 3359, + 3360, + 3358, + 3359, + 3360, + 3361, + 3362, + 3363, + 3361, + 3362, + 3363, + 3364, + 3365, + 3366, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3373, + 3374, + 3375, + 3376, + 3377, + 3378, + 3376, + 3377, + 3378, + 3379, + 3380, + 3381, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3394, + 3395, + 3396, + 3397, + 3398, + 3399, + 3397, + 3398, + 3399, + 3400, + 3401, + 3402, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3436, + 3437, + 3438, + 3439, + 3440, + 3441, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3478, + 3479, + 3480 + ], + "blackstone_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "polished_blackstone": 1, + "polished_blackstone_bricks": 1, + "cracked_polished_blackstone_bricks": 1, + "chiseled_polished_blackstone": 1, + "polished_blackstone_brick_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "polished_blackstone_brick_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "polished_blackstone_brick_wall": [ + 3481, + 3482, + 3483, + 3481, + 3482, + 3483, + 0, + 3484, + 3485, + 0, + 3484, + 3485, + 3486, + 3487, + 3488, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3546, + 3547, + 3548, + 3549, + 3550, + 3551, + 3549, + 3550, + 3551, + 3552, + 3553, + 3554, + 3552, + 3553, + 3554, + 3555, + 3556, + 3557, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3558, + 3559, + 3560, + 3561, + 3562, + 3563, + 3561, + 3562, + 3563, + 3564, + 3565, + 3566, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3588, + 3589, + 3590, + 3591, + 3592, + 3593, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3594, + 3595, + 3596, + 3597, + 3598, + 3599, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3639, + 3640, + 3641 + ], + "gilded_blackstone": 1, + "polished_blackstone_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "polished_blackstone_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "polished_blackstone_pressure_plate": 0, + "polished_blackstone_button": 0, + "polished_blackstone_wall": [ + 3642, + 3643, + 3644, + 3642, + 3643, + 3644, + 0, + 3645, + 3646, + 0, + 3645, + 3646, + 3647, + 3648, + 3649, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3665, + 3666, + 3667, + 3668, + 3669, + 3670, + 3668, + 3669, + 3670, + 3671, + 3672, + 3673, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3734, + 3735, + 3736, + 3737, + 3738, + 3739, + 3737, + 3738, + 3739, + 3740, + 3741, + 3742, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3794, + 3795, + 3796, + 3797, + 3798, + 3799, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3800, + 3801, + 3802 + ], + "chiseled_nether_bricks": 1, + "cracked_nether_bricks": 1, + "quartz_bricks": 1, + "candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "white_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "orange_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "magenta_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "light_blue_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "yellow_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "lime_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "pink_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "gray_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "light_gray_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "cyan_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "purple_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "blue_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "brown_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "green_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "red_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "black_candle": [ + 3803, + 3803, + 3803, + 3803, + 3804, + 3804, + 3804, + 3804, + 3805, + 3805, + 3805, + 3805, + 3806, + 3806, + 3806, + 3806 + ], + "candle_cake": 3807, + "white_candle_cake": 3807, + "orange_candle_cake": 3807, + "magenta_candle_cake": 3807, + "light_blue_candle_cake": 3807, + "yellow_candle_cake": 3807, + "lime_candle_cake": 3807, + "pink_candle_cake": 3807, + "gray_candle_cake": 3807, + "light_gray_candle_cake": 3807, + "cyan_candle_cake": 3807, + "purple_candle_cake": 3807, + "blue_candle_cake": 3807, + "brown_candle_cake": 3807, + "green_candle_cake": 3807, + "red_candle_cake": 3807, + "black_candle_cake": 3807, + "amethyst_block": 1, + "budding_amethyst": 1, + "amethyst_cluster": [ + 3808, + 3808, + 3809, + 3809, + 3810, + 3810, + 3811, + 3811, + 3812, + 3812, + 3813, + 3813 + ], + "large_amethyst_bud": [ + 3814, + 3814, + 3815, + 3815, + 3816, + 3816, + 3817, + 3817, + 3818, + 3818, + 3819, + 3819 + ], + "medium_amethyst_bud": [ + 3820, + 3820, + 3821, + 3821, + 3822, + 3822, + 3823, + 3823, + 3824, + 3824, + 3825, + 3825 + ], + "small_amethyst_bud": [ + 3826, + 3826, + 3827, + 3827, + 3828, + 3828, + 3829, + 3829, + 3830, + 3830, + 3831, + 3831 + ], + "tuff": 1, + "tuff_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "tuff_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "tuff_wall": [ + 3832, + 3833, + 3834, + 3832, + 3833, + 3834, + 0, + 3835, + 3836, + 0, + 3835, + 3836, + 3837, + 3838, + 3839, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3864, + 3865, + 3866, + 3867, + 3868, + 3869, + 3867, + 3868, + 3869, + 3870, + 3871, + 3872, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3873, + 3874, + 3875, + 3876, + 3877, + 3878, + 3876, + 3877, + 3878, + 3879, + 3880, + 3881, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3897, + 3898, + 3899, + 3900, + 3901, + 3902, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3924, + 3925, + 3926, + 3927, + 3928, + 3929, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 3930, + 3931, + 3932, + 3933, + 3934, + 3935, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3990, + 3991, + 3992 + ], + "polished_tuff": 1, + "polished_tuff_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "polished_tuff_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "polished_tuff_wall": [ + 3993, + 3994, + 3995, + 3993, + 3994, + 3995, + 0, + 3996, + 3997, + 0, + 3996, + 3997, + 3998, + 3999, + 4000, + 3998, + 3999, + 4000, + 4001, + 4002, + 4003, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033, + 4031, + 4032, + 4033, + 4034, + 4035, + 4036, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4058, + 4059, + 4060, + 4061, + 4062, + 4063, + 4061, + 4062, + 4063, + 4064, + 4065, + 4066, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4094, + 4095, + 4096, + 4097, + 4098, + 4099, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4151, + 4152, + 4153 + ], + "chiseled_tuff": 1, + "tuff_bricks": 1, + "tuff_brick_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "tuff_brick_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "tuff_brick_wall": [ + 4154, + 4155, + 4156, + 4154, + 4155, + 4156, + 0, + 4157, + 4158, + 0, + 4157, + 4158, + 4159, + 4160, + 4161, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4162, + 4163, + 4164, + 4165, + 4166, + 4167, + 4165, + 4166, + 4167, + 4168, + 4169, + 4170, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4174, + 4175, + 4176, + 4177, + 4178, + 4179, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4192, + 4193, + 4194, + 4195, + 4196, + 4197, + 4195, + 4196, + 4197, + 4198, + 4199, + 4200, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4210, + 4211, + 4212, + 4213, + 4214, + 4215, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4216, + 4217, + 4218, + 4219, + 4220, + 4221, + 4219, + 4220, + 4221, + 4222, + 4223, + 4224, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4228, + 4229, + 4230, + 4231, + 4232, + 4233, + 4231, + 4232, + 4233, + 4234, + 4235, + 4236, + 4234, + 4235, + 4236, + 4237, + 4238, + 4239, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4240, + 4241, + 4242, + 4243, + 4244, + 4245, + 4243, + 4244, + 4245, + 4246, + 4247, + 4248, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4252, + 4253, + 4254, + 4255, + 4256, + 4257, + 4255, + 4256, + 4257, + 4258, + 4259, + 4260, + 4258, + 4259, + 4260, + 4261, + 4262, + 4263, + 4261, + 4262, + 4263, + 4264, + 4265, + 4266, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4297, + 4298, + 4299, + 4300, + 4301, + 4302, + 4300, + 4301, + 4302, + 4303, + 4304, + 4305, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4312, + 4313, + 4314 + ], + "chiseled_tuff_bricks": 1, + "calcite": 1, + "tinted_glass": 1, + "powder_snow": 0, + "sculk_sensor": 4315, + "calibrated_sculk_sensor": 4315, + "sculk": 1, + "sculk_vein": 0, + "sculk_catalyst": 1, + "sculk_shrieker": 4316, + "copper_block": 1, + "exposed_copper": 1, + "weathered_copper": 1, + "oxidized_copper": 1, + "copper_ore": 1, + "deepslate_copper_ore": 1, + "oxidized_cut_copper": 1, + "weathered_cut_copper": 1, + "exposed_cut_copper": 1, + "cut_copper": 1, + "oxidized_chiseled_copper": 1, + "weathered_chiseled_copper": 1, + "exposed_chiseled_copper": 1, + "chiseled_copper": 1, + "waxed_oxidized_chiseled_copper": 1, + "waxed_weathered_chiseled_copper": 1, + "waxed_exposed_chiseled_copper": 1, + "waxed_chiseled_copper": 1, + "oxidized_cut_copper_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "weathered_cut_copper_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "exposed_cut_copper_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "cut_copper_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "oxidized_cut_copper_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "weathered_cut_copper_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "exposed_cut_copper_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "cut_copper_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "waxed_copper_block": 1, + "waxed_weathered_copper": 1, + "waxed_exposed_copper": 1, + "waxed_oxidized_copper": 1, + "waxed_oxidized_cut_copper": 1, + "waxed_weathered_cut_copper": 1, + "waxed_exposed_cut_copper": 1, + "waxed_cut_copper": 1, + "waxed_oxidized_cut_copper_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "waxed_weathered_cut_copper_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "waxed_exposed_cut_copper_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "waxed_cut_copper_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "waxed_oxidized_cut_copper_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "waxed_weathered_cut_copper_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "waxed_exposed_cut_copper_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "waxed_cut_copper_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "copper_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "exposed_copper_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "oxidized_copper_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "weathered_copper_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "waxed_copper_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "waxed_exposed_copper_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "waxed_oxidized_copper_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "waxed_weathered_copper_door": [ + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 54, + 54, + 55, + 55, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 57, + 57, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 55, + 55, + 56, + 56, + 57, + 57, + 56, + 56, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54, + 57, + 57, + 54, + 54, + 55, + 55, + 54, + 54 + ], + "copper_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "exposed_copper_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "oxidized_copper_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "weathered_copper_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "waxed_copper_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "waxed_exposed_copper_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "waxed_oxidized_copper_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "waxed_weathered_copper_trapdoor": [ + 97, + 97, + 97, + 97, + 98, + 98, + 98, + 98, + 97, + 97, + 97, + 97, + 99, + 99, + 99, + 99, + 100, + 100, + 100, + 100, + 98, + 98, + 98, + 98, + 100, + 100, + 100, + 100, + 99, + 99, + 99, + 99, + 101, + 101, + 101, + 101, + 98, + 98, + 98, + 98, + 101, + 101, + 101, + 101, + 99, + 99, + 99, + 99, + 102, + 102, + 102, + 102, + 98, + 98, + 98, + 98, + 102, + 102, + 102, + 102, + 99, + 99, + 99, + 99 + ], + "copper_grate": 1, + "exposed_copper_grate": 1, + "weathered_copper_grate": 1, + "oxidized_copper_grate": 1, + "waxed_copper_grate": 1, + "waxed_exposed_copper_grate": 1, + "waxed_weathered_copper_grate": 1, + "waxed_oxidized_copper_grate": 1, + "copper_bulb": 1, + "exposed_copper_bulb": 1, + "weathered_copper_bulb": 1, + "oxidized_copper_bulb": 1, + "waxed_copper_bulb": 1, + "waxed_exposed_copper_bulb": 1, + "waxed_weathered_copper_bulb": 1, + "waxed_oxidized_copper_bulb": 1, + "lightning_rod": [ + 1081, + 1081, + 1081, + 1081, + 1082, + 1082, + 1082, + 1082, + 1081, + 1081, + 1081, + 1081, + 1082, + 1082, + 1082, + 1082, + 1083, + 1083, + 1083, + 1083, + 1083, + 1083, + 1083, + 1083 + ], + "pointed_dripstone": [ + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336 + ], + "dripstone_block": 1, + "cave_vines": 0, + "cave_vines_plant": 0, + "spore_blossom": 0, + "azalea": 4337, + "flowering_azalea": 4337, + "moss_carpet": 936, + "pink_petals": 0, + "moss_block": 1, + "big_dripleaf": [ + 4338, + 4338, + 4339, + 4339, + 4340, + 4340, + 0, + 0, + 4338, + 4338, + 4339, + 4339, + 4340, + 4340, + 0, + 0, + 4338, + 4338, + 4339, + 4339, + 4340, + 4340, + 0, + 0, + 4338, + 4338, + 4339, + 4339, + 4340, + 4340, + 0, + 0 + ], + "big_dripleaf_stem": 0, + "small_dripleaf": 0, + "hanging_roots": 0, + "rooted_dirt": 1, + "mud": 4341, + "deepslate": 1, + "cobbled_deepslate": 1, + "cobbled_deepslate_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "cobbled_deepslate_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "cobbled_deepslate_wall": [ + 4342, + 4343, + 4344, + 4342, + 4343, + 4344, + 0, + 4345, + 4346, + 0, + 4345, + 4346, + 4347, + 4348, + 4349, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4365, + 4366, + 4367, + 4368, + 4369, + 4370, + 4368, + 4369, + 4370, + 4371, + 4372, + 4373, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4374, + 4375, + 4376, + 4377, + 4378, + 4379, + 4377, + 4378, + 4379, + 4380, + 4381, + 4382, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4392, + 4393, + 4394, + 4395, + 4396, + 4397, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4470, + 4471, + 4472, + 4473, + 4474, + 4475, + 4473, + 4474, + 4475, + 4476, + 4477, + 4478, + 4476, + 4477, + 4478, + 4479, + 4480, + 4481, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4482, + 4483, + 4484, + 4485, + 4486, + 4487, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4500, + 4501, + 4502 + ], + "polished_deepslate": 1, + "polished_deepslate_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "polished_deepslate_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "polished_deepslate_wall": [ + 4503, + 4504, + 4505, + 4503, + 4504, + 4505, + 0, + 4506, + 4507, + 0, + 4506, + 4507, + 4508, + 4509, + 4510, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4523, + 4524, + 4525, + 4526, + 4527, + 4528, + 4526, + 4527, + 4528, + 4529, + 4530, + 4531, + 4529, + 4530, + 4531, + 4532, + 4533, + 4534, + 4532, + 4533, + 4534, + 4535, + 4536, + 4537, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4541, + 4542, + 4543, + 4544, + 4545, + 4546, + 4544, + 4545, + 4546, + 4547, + 4548, + 4549, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4556, + 4557, + 4558, + 4559, + 4560, + 4561, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576, + 4574, + 4575, + 4576, + 4577, + 4578, + 4579, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4580, + 4581, + 4582, + 4583, + 4584, + 4585, + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4592, + 4593, + 4594, + 4595, + 4596, + 4597, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4598, + 4599, + 4600, + 4601, + 4602, + 4603, + 4601, + 4602, + 4603, + 4604, + 4605, + 4606, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4634, + 4635, + 4636, + 4637, + 4638, + 4639, + 4637, + 4638, + 4639, + 4640, + 4641, + 4642, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4658, + 4659, + 4660, + 4661, + 4662, + 4663, + 4661, + 4662, + 4663 + ], + "deepslate_tiles": 1, + "deepslate_tile_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "deepslate_tile_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "deepslate_tile_wall": [ + 4664, + 4665, + 4666, + 4664, + 4665, + 4666, + 0, + 4667, + 4668, + 0, + 4667, + 4668, + 4669, + 4670, + 4671, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4675, + 4676, + 4677, + 4678, + 4679, + 4680, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 4720, + 4721, + 4722, + 4723, + 4724, + 4725, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4726, + 4727, + 4728, + 4729, + 4730, + 4731, + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743, + 4741, + 4742, + 4743, + 4744, + 4745, + 4746, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4780, + 4781, + 4782, + 4783, + 4784, + 4785, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4795, + 4796, + 4797, + 4798, + 4799, + 4800, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4807, + 4808, + 4809, + 4810, + 4811, + 4812, + 4810, + 4811, + 4812, + 4813, + 4814, + 4815, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4822, + 4823, + 4824 + ], + "deepslate_bricks": 1, + "deepslate_brick_stairs": [ + 24, + 24, + 25, + 25, + 26, + 26, + 27, + 27, + 28, + 28, + 29, + 29, + 30, + 30, + 31, + 31, + 32, + 32, + 33, + 33, + 34, + 34, + 35, + 35, + 36, + 36, + 37, + 37, + 38, + 38, + 39, + 39, + 40, + 40, + 41, + 41, + 42, + 42, + 43, + 43, + 44, + 44, + 36, + 36, + 25, + 25, + 38, + 38, + 27, + 27, + 45, + 45, + 41, + 41, + 30, + 30, + 43, + 43, + 32, + 32, + 46, + 46, + 26, + 26, + 35, + 35, + 28, + 28, + 37, + 37, + 47, + 47, + 31, + 31, + 40, + 40, + 33, + 33, + 42, + 42 + ], + "deepslate_brick_slab": [ + 141, + 141, + 142, + 142, + 1, + 1 + ], + "deepslate_brick_wall": [ + 4825, + 4826, + 4827, + 4825, + 4826, + 4827, + 0, + 4828, + 4829, + 0, + 4828, + 4829, + 4830, + 4831, + 4832, + 4830, + 4831, + 4832, + 4833, + 4834, + 4835, + 4833, + 4834, + 4835, + 4836, + 4837, + 4838, + 4836, + 4837, + 4838, + 4839, + 4840, + 4841, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4842, + 4843, + 4844, + 4845, + 4846, + 4847, + 4845, + 4846, + 4847, + 4848, + 4849, + 4850, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4884, + 4885, + 4886, + 4887, + 4888, + 4889, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4899, + 4900, + 4901, + 4902, + 4903, + 4904, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4905, + 4906, + 4907, + 4908, + 4909, + 4910, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 4917, + 4918, + 4919, + 4920, + 4921, + 4922, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946, + 4944, + 4945, + 4946, + 4947, + 4948, + 4949, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4983, + 4984, + 4985 + ], + "chiseled_deepslate": 1, + "cracked_deepslate_bricks": 1, + "cracked_deepslate_tiles": 1, + "infested_deepslate": 1, + "smooth_basalt": 1, + "raw_iron_block": 1, + "raw_copper_block": 1, + "raw_gold_block": 1, + "potted_azalea_bush": 661, + "potted_flowering_azalea_bush": 661, + "ochre_froglight": 1, + "verdant_froglight": 1, + "pearlescent_froglight": 1, + "frogspawn": 0, + "reinforced_deepslate": 1, + "decorated_pot": 4986, + "crafter": 1, + "trial_spawner": 1, + "vault": 1, + "heavy_core": 4987, + "pale_moss_block": 1, + "pale_moss_carpet": [ + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 4988, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "pale_hanging_moss": 0, + "open_eyeblossom": 0, + "closed_eyeblossom": 0, + "potted_open_eyeblossom": 661, + "potted_closed_eyeblossom": 661 + }, + "shapes": { + "0": [], + "1": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0 + ] + ], + "2": [ + [ + 0.0, + 0.0, + 0.0, + 0.1875, + 0.5625, + 0.1875 + ], + [ + 0.8125, + 0.0, + 0.0, + 1.0, + 0.5625, + 0.1875 + ], + [ + 0.0, + 0.1875, + 0.1875, + 1.0, + 0.5625, + 1.0 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.5625, + 0.1875 + ] + ], + "3": [ + [ + 0.0, + 0.0, + 0.8125, + 0.1875, + 0.5625, + 1.0 + ], + [ + 0.8125, + 0.0, + 0.8125, + 1.0, + 0.5625, + 1.0 + ], + [ + 0.0, + 0.1875, + 0.0, + 1.0, + 0.5625, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.5625, + 1.0 + ] + ], + "4": [ + [ + 0.0, + 0.0, + 0.0, + 0.1875, + 0.5625, + 0.1875 + ], + [ + 0.0, + 0.0, + 0.8125, + 0.1875, + 0.5625, + 1.0 + ], + [ + 0.0, + 0.1875, + 0.1875, + 1.0, + 0.5625, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 1.0, + 0.5625, + 0.1875 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 1.0, + 0.5625, + 1.0 + ] + ], + "5": [ + [ + 0.8125, + 0.0, + 0.0, + 1.0, + 0.5625, + 0.1875 + ], + [ + 0.8125, + 0.0, + 0.8125, + 1.0, + 0.5625, + 1.0 + ], + [ + 0.0, + 0.1875, + 0.0, + 0.8125, + 0.5625, + 1.0 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.5625, + 0.8125 + ] + ], + "6": [ + [ + 0.0, + 0.0, + 0.25, + 1.0, + 1.0, + 1.0 + ] + ], + "7": [ + [ + 0.0, + 0.0, + 0.0, + 0.75, + 1.0, + 1.0 + ] + ], + "8": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 0.75 + ] + ], + "9": [ + [ + 0.25, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0 + ] + ], + "10": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.75, + 1.0 + ] + ], + "11": [ + [ + 0.0, + 0.25, + 0.0, + 1.0, + 1.0, + 1.0 + ] + ], + "12": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 0.25 + ], + [ + 0.375, + 0.375, + 0.25, + 0.625, + 0.625, + 1.0 + ] + ], + "13": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 0.25 + ], + [ + 0.375, + 0.375, + 0.25, + 0.625, + 0.625, + 1.25 + ] + ], + "14": [ + [ + 0.75, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0 + ], + [ + 0.0, + 0.375, + 0.375, + 0.75, + 0.625, + 0.625 + ] + ], + "15": [ + [ + 0.75, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0 + ], + [ + -0.25, + 0.375, + 0.375, + 0.75, + 0.625, + 0.625 + ] + ], + "16": [ + [ + 0.0, + 0.0, + 0.75, + 1.0, + 1.0, + 1.0 + ], + [ + 0.375, + 0.375, + 0.0, + 0.625, + 0.625, + 0.75 + ] + ], + "17": [ + [ + 0.0, + 0.0, + 0.75, + 1.0, + 1.0, + 1.0 + ], + [ + 0.375, + 0.375, + -0.25, + 0.625, + 0.625, + 0.75 + ] + ], + "18": [ + [ + 0.0, + 0.0, + 0.0, + 0.25, + 1.0, + 1.0 + ], + [ + 0.25, + 0.375, + 0.375, + 1.0, + 0.625, + 0.625 + ] + ], + "19": [ + [ + 0.0, + 0.0, + 0.0, + 0.25, + 1.0, + 1.0 + ], + [ + 0.25, + 0.375, + 0.375, + 1.25, + 0.625, + 0.625 + ] + ], + "20": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.0, + 0.625 + ], + [ + 0.0, + 0.75, + 0.0, + 0.375, + 1.0, + 1.0 + ], + [ + 0.375, + 0.75, + 0.0, + 1.0, + 1.0, + 0.375 + ], + [ + 0.375, + 0.75, + 0.625, + 1.0, + 1.0, + 1.0 + ], + [ + 0.625, + 0.75, + 0.375, + 1.0, + 1.0, + 0.625 + ] + ], + "21": [ + [ + 0.375, + -0.25, + 0.375, + 0.625, + 1.0, + 0.625 + ], + [ + 0.0, + 0.75, + 0.0, + 0.375, + 1.0, + 1.0 + ], + [ + 0.375, + 0.75, + 0.0, + 1.0, + 1.0, + 0.375 + ], + [ + 0.375, + 0.75, + 0.625, + 1.0, + 1.0, + 1.0 + ], + [ + 0.625, + 0.75, + 0.375, + 1.0, + 1.0, + 0.625 + ] + ], + "22": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.25, + 1.0 + ], + [ + 0.375, + 0.25, + 0.375, + 0.625, + 1.0, + 0.625 + ] + ], + "23": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.25, + 1.0 + ], + [ + 0.375, + 0.25, + 0.375, + 0.625, + 1.25, + 0.625 + ] + ], + "24": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 0.5 + ], + [ + 0.0, + 0.5, + 0.5, + 1.0, + 1.0, + 1.0 + ] + ], + "25": [ + [ + 0.0, + 0.0, + 0.0, + 0.5, + 1.0, + 1.0 + ], + [ + 0.5, + 0.0, + 0.0, + 1.0, + 1.0, + 0.5 + ], + [ + 0.5, + 0.5, + 0.5, + 1.0, + 1.0, + 1.0 + ] + ], + "26": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 0.5 + ], + [ + 0.5, + 0.0, + 0.5, + 1.0, + 1.0, + 1.0 + ], + [ + 0.0, + 0.5, + 0.5, + 0.5, + 1.0, + 1.0 + ] + ], + "27": [ + [ + 0.0, + 0.0, + 0.0, + 0.5, + 1.0, + 0.5 + ], + [ + 0.0, + 0.5, + 0.5, + 1.0, + 1.0, + 1.0 + ], + [ + 0.5, + 0.5, + 0.0, + 1.0, + 1.0, + 0.5 + ] + ], + "28": [ + [ + 0.5, + 0.0, + 0.0, + 1.0, + 1.0, + 0.5 + ], + [ + 0.0, + 0.5, + 0.0, + 0.5, + 1.0, + 1.0 + ], + [ + 0.5, + 0.5, + 0.5, + 1.0, + 1.0, + 1.0 + ] + ], + "29": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ], + [ + 0.0, + 0.5, + 0.0, + 1.0, + 1.0, + 0.5 + ] + ], + "30": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ], + [ + 0.0, + 0.5, + 0.0, + 0.5, + 1.0, + 1.0 + ], + [ + 0.5, + 0.5, + 0.0, + 1.0, + 1.0, + 0.5 + ] + ], + "31": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ], + [ + 0.0, + 0.5, + 0.0, + 1.0, + 1.0, + 0.5 + ], + [ + 0.5, + 0.5, + 0.5, + 1.0, + 1.0, + 1.0 + ] + ], + "32": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ], + [ + 0.0, + 0.5, + 0.0, + 0.5, + 1.0, + 0.5 + ] + ], + "33": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ], + [ + 0.5, + 0.5, + 0.0, + 1.0, + 1.0, + 0.5 + ] + ], + "34": [ + [ + 0.0, + 0.0, + 0.5, + 1.0, + 1.0, + 1.0 + ], + [ + 0.0, + 0.5, + 0.0, + 1.0, + 1.0, + 0.5 + ] + ], + "35": [ + [ + 0.0, + 0.0, + 0.5, + 1.0, + 1.0, + 1.0 + ], + [ + 0.5, + 0.0, + 0.0, + 1.0, + 1.0, + 0.5 + ], + [ + 0.0, + 0.5, + 0.0, + 0.5, + 1.0, + 0.5 + ] + ], + "36": [ + [ + 0.0, + 0.0, + 0.0, + 0.5, + 1.0, + 1.0 + ], + [ + 0.5, + 0.0, + 0.5, + 1.0, + 1.0, + 1.0 + ], + [ + 0.5, + 0.5, + 0.0, + 1.0, + 1.0, + 0.5 + ] + ], + "37": [ + [ + 0.5, + 0.0, + 0.5, + 1.0, + 1.0, + 1.0 + ], + [ + 0.0, + 0.5, + 0.0, + 0.5, + 1.0, + 1.0 + ], + [ + 0.5, + 0.5, + 0.0, + 1.0, + 1.0, + 0.5 + ] + ], + "38": [ + [ + 0.0, + 0.0, + 0.5, + 0.5, + 1.0, + 1.0 + ], + [ + 0.0, + 0.5, + 0.0, + 1.0, + 1.0, + 0.5 + ], + [ + 0.5, + 0.5, + 0.5, + 1.0, + 1.0, + 1.0 + ] + ], + "39": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ], + [ + 0.0, + 0.5, + 0.5, + 1.0, + 1.0, + 1.0 + ] + ], + "40": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ], + [ + 0.0, + 0.5, + 0.5, + 1.0, + 1.0, + 1.0 + ], + [ + 0.5, + 0.5, + 0.0, + 1.0, + 1.0, + 0.5 + ] + ], + "41": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ], + [ + 0.0, + 0.5, + 0.0, + 0.5, + 1.0, + 1.0 + ], + [ + 0.5, + 0.5, + 0.5, + 1.0, + 1.0, + 1.0 + ] + ], + "42": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ], + [ + 0.5, + 0.5, + 0.5, + 1.0, + 1.0, + 1.0 + ] + ], + "43": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ], + [ + 0.0, + 0.5, + 0.5, + 0.5, + 1.0, + 1.0 + ] + ], + "44": [ + [ + 0.0, + 0.0, + 0.0, + 0.5, + 1.0, + 1.0 + ], + [ + 0.5, + 0.5, + 0.0, + 1.0, + 1.0, + 1.0 + ] + ], + "45": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ], + [ + 0.0, + 0.5, + 0.0, + 0.5, + 1.0, + 1.0 + ] + ], + "46": [ + [ + 0.5, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0 + ], + [ + 0.0, + 0.5, + 0.0, + 0.5, + 1.0, + 1.0 + ] + ], + "47": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ], + [ + 0.5, + 0.5, + 0.0, + 1.0, + 1.0, + 1.0 + ] + ], + "48": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.9375, + 0.875, + 0.9375 + ] + ], + "49": [ + [ + 0.0625, + 0.0, + 0.0625, + 1.0, + 0.875, + 0.9375 + ] + ], + "50": [ + [ + 0.0, + 0.0, + 0.0625, + 0.9375, + 0.875, + 0.9375 + ] + ], + "51": [ + [ + 0.0625, + 0.0, + 0.0, + 0.9375, + 0.875, + 0.9375 + ] + ], + "52": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.9375, + 0.875, + 1.0 + ] + ], + "53": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.9375, + 1.0 + ] + ], + "54": [ + [ + 0.0, + 0.0, + 0.0, + 0.1875, + 1.0, + 1.0 + ] + ], + "55": [ + [ + 0.0, + 0.0, + 0.8125, + 1.0, + 1.0, + 1.0 + ] + ], + "56": [ + [ + 0.8125, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0 + ] + ], + "57": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 0.1875 + ] + ], + "58": [ + [ + 0.0, + 0.0, + 0.8125, + 1.0, + 1.0, + 1.0 + ] + ], + "59": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 0.1875 + ] + ], + "60": [ + [ + 0.8125, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0 + ] + ], + "61": [ + [ + 0.0, + 0.0, + 0.0, + 0.1875, + 1.0, + 1.0 + ] + ], + "62": [ + [ + 0.0, + 0.875, + 0.375, + 1.0, + 1.0, + 0.625 + ] + ], + "63": [ + [ + 0.375, + 0.875, + 0.0, + 0.625, + 1.0, + 1.0 + ] + ], + "64": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.125, + 1.0 + ] + ], + "65": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.25, + 1.0 + ] + ], + "66": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.375, + 1.0 + ] + ], + "67": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ] + ], + "68": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.625, + 1.0 + ] + ], + "69": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.75, + 1.0 + ] + ], + "70": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.875, + 1.0 + ] + ], + "71": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.9375, + 0.9375, + 0.9375 + ] + ], + "72": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "73": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "74": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "75": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "76": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "77": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "78": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "79": [ + [ + 0.375, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "80": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "81": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ] + ], + "82": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "83": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ] + ], + "84": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "85": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ] + ], + "86": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "87": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "88": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.875, + 1.0 + ] + ], + "89": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.9375, + 0.5, + 0.9375 + ] + ], + "90": [ + [ + 0.1875, + 0.0, + 0.0625, + 0.9375, + 0.5, + 0.9375 + ] + ], + "91": [ + [ + 0.3125, + 0.0, + 0.0625, + 0.9375, + 0.5, + 0.9375 + ] + ], + "92": [ + [ + 0.4375, + 0.0, + 0.0625, + 0.9375, + 0.5, + 0.9375 + ] + ], + "93": [ + [ + 0.5625, + 0.0, + 0.0625, + 0.9375, + 0.5, + 0.9375 + ] + ], + "94": [ + [ + 0.6875, + 0.0, + 0.0625, + 0.9375, + 0.5, + 0.9375 + ] + ], + "95": [ + [ + 0.8125, + 0.0, + 0.0625, + 0.9375, + 0.5, + 0.9375 + ] + ], + "96": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.125, + 1.0 + ] + ], + "97": [ + [ + 0.0, + 0.0, + 0.8125, + 1.0, + 1.0, + 1.0 + ] + ], + "98": [ + [ + 0.0, + 0.8125, + 0.0, + 1.0, + 1.0, + 1.0 + ] + ], + "99": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.1875, + 1.0 + ] + ], + "100": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 0.1875 + ] + ], + "101": [ + [ + 0.8125, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0 + ] + ], + "102": [ + [ + 0.0, + 0.0, + 0.0, + 0.1875, + 1.0, + 1.0 + ] + ], + "103": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "104": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "105": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "106": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "107": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "108": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "109": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "110": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "111": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "112": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "113": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "114": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "115": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "116": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "117": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "118": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "119": [ + [ + 0.0, + 0.40625, + 0.40625, + 1.0, + 0.59375, + 0.59375 + ] + ], + "120": [ + [ + 0.40625, + 0.0, + 0.40625, + 0.59375, + 1.0, + 0.59375 + ] + ], + "121": [ + [ + 0.40625, + 0.40625, + 0.0, + 0.59375, + 0.59375, + 1.0 + ] + ], + "122": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "123": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "124": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "125": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "126": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "127": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "128": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "129": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "130": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "131": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "132": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "133": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "134": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "135": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "136": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "137": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "138": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "139": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ] + ], + "140": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.9375, + 0.09375, + 0.9375 + ] + ], + "141": [ + [ + 0.0, + 0.5, + 0.0, + 1.0, + 1.0, + 1.0 + ] + ], + "142": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ] + ], + "143": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "144": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "145": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "146": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "147": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "148": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "149": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "150": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "151": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "152": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "153": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "154": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "155": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "156": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "157": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "158": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "159": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "160": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "161": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "162": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "163": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "164": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "165": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "166": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "167": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "168": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "169": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "170": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "171": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "172": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "173": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "174": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "175": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "176": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "177": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "178": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "179": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "180": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "181": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "182": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "183": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "184": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "185": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "186": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "187": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "188": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "189": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "190": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "191": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "192": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "193": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "194": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "195": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "196": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "197": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "198": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "199": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "200": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "201": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "202": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "203": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "204": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "205": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "206": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "207": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "208": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "209": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "210": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "211": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "212": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "213": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "214": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "215": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "216": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "217": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "218": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "219": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "220": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "221": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "222": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "223": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "224": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "225": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "226": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "227": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "228": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "229": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "230": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "231": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "232": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "233": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "234": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "235": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "236": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "237": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "238": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "239": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "240": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "241": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "242": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "243": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "244": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "245": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "246": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "247": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "248": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "249": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "250": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "251": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "252": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "253": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "254": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "255": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "256": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "257": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "258": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "259": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "260": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "261": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "262": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "263": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "264": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "265": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "266": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "267": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "268": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "269": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "270": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "271": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "272": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "273": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "274": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "275": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "276": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "277": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "278": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "279": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "280": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "281": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "282": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "283": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "284": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "285": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "286": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "287": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "288": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "289": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "290": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "291": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "292": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "293": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "294": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "295": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "296": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "297": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "298": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "299": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "300": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "301": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "302": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "303": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "304": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "305": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "306": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "307": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "308": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "309": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "310": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "311": [ + [ + 0.375, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "312": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "313": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ] + ], + "314": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "315": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ] + ], + "316": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "317": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ] + ], + "318": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "319": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "320": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.75, + 1.0 + ] + ], + "321": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.9375, + 0.125, + 0.9375 + ], + [ + 0.4375, + 0.125, + 0.4375, + 0.5625, + 0.875, + 0.5625 + ] + ], + "322": [ + [ + 0.0, + 0.0, + 0.0, + 0.125, + 1.0, + 0.25 + ], + [ + 0.0, + 0.0, + 0.75, + 0.125, + 1.0, + 1.0 + ], + [ + 0.125, + 0.0, + 0.0, + 0.25, + 1.0, + 0.125 + ], + [ + 0.125, + 0.0, + 0.875, + 0.25, + 1.0, + 1.0 + ], + [ + 0.75, + 0.0, + 0.0, + 1.0, + 1.0, + 0.125 + ], + [ + 0.75, + 0.0, + 0.875, + 1.0, + 1.0, + 1.0 + ], + [ + 0.875, + 0.0, + 0.125, + 1.0, + 1.0, + 0.25 + ], + [ + 0.875, + 0.0, + 0.75, + 1.0, + 1.0, + 0.875 + ], + [ + 0.0, + 0.1875, + 0.25, + 1.0, + 0.25, + 0.75 + ], + [ + 0.125, + 0.1875, + 0.125, + 0.875, + 0.25, + 0.25 + ], + [ + 0.125, + 0.1875, + 0.75, + 0.875, + 0.25, + 0.875 + ], + [ + 0.25, + 0.1875, + 0.0, + 0.75, + 1.0, + 0.125 + ], + [ + 0.25, + 0.1875, + 0.875, + 0.75, + 1.0, + 1.0 + ], + [ + 0.0, + 0.25, + 0.25, + 0.125, + 1.0, + 0.75 + ], + [ + 0.875, + 0.25, + 0.25, + 1.0, + 1.0, + 0.75 + ] + ], + "323": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.8125, + 1.0 + ], + [ + 0.25, + 0.8125, + 0.25, + 0.75, + 1.0, + 0.75 + ] + ], + "324": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.8125, + 1.0 + ] + ], + "325": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.9375, + 1.0, + 0.9375 + ] + ], + "326": [ + [ + 0.375, + 0.4375, + 0.0625, + 0.625, + 0.75, + 0.3125 + ] + ], + "327": [ + [ + 0.375, + 0.4375, + 0.6875, + 0.625, + 0.75, + 0.9375 + ] + ], + "328": [ + [ + 0.0625, + 0.4375, + 0.375, + 0.3125, + 0.75, + 0.625 + ] + ], + "329": [ + [ + 0.6875, + 0.4375, + 0.375, + 0.9375, + 0.75, + 0.625 + ] + ], + "330": [ + [ + 0.3125, + 0.3125, + 0.0625, + 0.6875, + 0.75, + 0.4375 + ] + ], + "331": [ + [ + 0.3125, + 0.3125, + 0.5625, + 0.6875, + 0.75, + 0.9375 + ] + ], + "332": [ + [ + 0.0625, + 0.3125, + 0.3125, + 0.4375, + 0.75, + 0.6875 + ] + ], + "333": [ + [ + 0.5625, + 0.3125, + 0.3125, + 0.9375, + 0.75, + 0.6875 + ] + ], + "334": [ + [ + 0.25, + 0.1875, + 0.0625, + 0.75, + 0.75, + 0.5625 + ] + ], + "335": [ + [ + 0.25, + 0.1875, + 0.4375, + 0.75, + 0.75, + 0.9375 + ] + ], + "336": [ + [ + 0.0625, + 0.1875, + 0.25, + 0.5625, + 0.75, + 0.75 + ] + ], + "337": [ + [ + 0.4375, + 0.1875, + 0.25, + 0.9375, + 0.75, + 0.75 + ] + ], + "338": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.9375, + 0.875, + 0.9375 + ] + ], + "339": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "340": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "341": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "342": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "343": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "344": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "345": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "346": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "347": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "348": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "349": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "350": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "351": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "352": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "353": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "354": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "355": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "356": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "357": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "358": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "359": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "360": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "361": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "362": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "363": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "364": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "365": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "366": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "367": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "368": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "369": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "370": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "371": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "372": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "373": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "374": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "375": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "376": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "377": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "378": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "379": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "380": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "381": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "382": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "383": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "384": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "385": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "386": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "387": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "388": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "389": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "390": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "391": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "392": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "393": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "394": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "395": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "396": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "397": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "398": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "399": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "400": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "401": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "402": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "403": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "404": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "405": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "406": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "407": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "408": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "409": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "410": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "411": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "412": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "413": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "414": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "415": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "416": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "417": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "418": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "419": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "420": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "421": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "422": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "423": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "424": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "425": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "426": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "427": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "428": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "429": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "430": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "431": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "432": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "433": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "434": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "435": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "436": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "437": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "438": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "439": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "440": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "441": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "442": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "443": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "444": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "445": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "446": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "447": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "448": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "449": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "450": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "451": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "452": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "453": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "454": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "455": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "456": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "457": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "458": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "459": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "460": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "461": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "462": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "463": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "464": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "465": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "466": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "467": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "468": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "469": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "470": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "471": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "472": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "473": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "474": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "475": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "476": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "477": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "478": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "479": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "480": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "481": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "482": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "483": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "484": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "485": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "486": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "487": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "488": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "489": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "490": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "491": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "492": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "493": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "494": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "495": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "496": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "497": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "498": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "499": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "500": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "501": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "502": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "503": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "504": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "505": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "506": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "507": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "508": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "509": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "510": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "511": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "512": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "513": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "514": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "515": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "516": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "517": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "518": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "519": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "520": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "521": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "522": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "523": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "524": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "525": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "526": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "527": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "528": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "529": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "530": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "531": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "532": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "533": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "534": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "535": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "536": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "537": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "538": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "539": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "540": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "541": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "542": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "543": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "544": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "545": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "546": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "547": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "548": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "549": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "550": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "551": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "552": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "553": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "554": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "555": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "556": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "557": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "558": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "559": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "560": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "561": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "562": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "563": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "564": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "565": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "566": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "567": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "568": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "569": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "570": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "571": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "572": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "573": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "574": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "575": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "576": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "577": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "578": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "579": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "580": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "581": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "582": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "583": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "584": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "585": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "586": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "587": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "588": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "589": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "590": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "591": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "592": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "593": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "594": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "595": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "596": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "597": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "598": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "599": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "600": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "601": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "602": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "603": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "604": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "605": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "606": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "607": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "608": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "609": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "610": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "611": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "612": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "613": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "614": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "615": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "616": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "617": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "618": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "619": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "620": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "621": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "622": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "623": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "624": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "625": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "626": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "627": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "628": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "629": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "630": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "631": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "632": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "633": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "634": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "635": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "636": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "637": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "638": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "639": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "640": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "641": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "642": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "643": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "644": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "645": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "646": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "647": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "648": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "649": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "650": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "651": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "652": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "653": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "654": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "655": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "656": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "657": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "658": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "659": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "660": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "661": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 0.375, + 0.6875 + ] + ], + "662": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 0.5, + 0.75 + ] + ], + "663": [ + [ + 0.25, + 0.25, + 0.5, + 0.75, + 0.75, + 1.0 + ] + ], + "664": [ + [ + 0.25, + 0.25, + 0.0, + 0.75, + 0.75, + 0.5 + ] + ], + "665": [ + [ + 0.5, + 0.25, + 0.25, + 1.0, + 0.75, + 0.75 + ] + ], + "666": [ + [ + 0.0, + 0.25, + 0.25, + 0.5, + 0.75, + 0.75 + ] + ], + "667": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.5, + 0.8125 + ] + ], + "668": [ + [ + 0.1875, + 0.25, + 0.5, + 0.8125, + 0.75, + 1.0 + ] + ], + "669": [ + [ + 0.1875, + 0.25, + 0.0, + 0.8125, + 0.75, + 0.5 + ] + ], + "670": [ + [ + 0.5, + 0.25, + 0.1875, + 1.0, + 0.75, + 0.8125 + ] + ], + "671": [ + [ + 0.0, + 0.25, + 0.1875, + 0.5, + 0.75, + 0.8125 + ] + ], + "672": [ + [ + 0.125, + 0.0, + 0.125, + 0.875, + 0.25, + 0.875 + ], + [ + 0.25, + 0.25, + 0.1875, + 0.75, + 0.3125, + 0.8125 + ], + [ + 0.375, + 0.3125, + 0.25, + 0.625, + 1.0, + 0.75 + ], + [ + 0.1875, + 0.625, + 0.0, + 0.375, + 1.0, + 1.0 + ], + [ + 0.375, + 0.625, + 0.0, + 0.8125, + 1.0, + 0.25 + ], + [ + 0.375, + 0.625, + 0.75, + 0.8125, + 1.0, + 1.0 + ], + [ + 0.625, + 0.625, + 0.25, + 0.8125, + 1.0, + 0.75 + ] + ], + "673": [ + [ + 0.125, + 0.0, + 0.125, + 0.875, + 0.25, + 0.875 + ], + [ + 0.1875, + 0.25, + 0.25, + 0.8125, + 0.3125, + 0.75 + ], + [ + 0.25, + 0.3125, + 0.375, + 0.75, + 1.0, + 0.625 + ], + [ + 0.0, + 0.625, + 0.1875, + 0.25, + 1.0, + 0.8125 + ], + [ + 0.25, + 0.625, + 0.1875, + 1.0, + 1.0, + 0.375 + ], + [ + 0.25, + 0.625, + 0.625, + 1.0, + 1.0, + 0.8125 + ], + [ + 0.75, + 0.625, + 0.375, + 1.0, + 1.0, + 0.625 + ] + ], + "674": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.375, + 1.0 + ] + ], + "675": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 0.6875, + 0.625 + ], + [ + 0.25, + 0.25, + 0.25, + 0.375, + 0.6875, + 0.75 + ], + [ + 0.375, + 0.25, + 0.25, + 0.75, + 0.6875, + 0.375 + ], + [ + 0.375, + 0.25, + 0.625, + 0.75, + 0.6875, + 0.75 + ], + [ + 0.625, + 0.25, + 0.375, + 0.75, + 0.6875, + 0.625 + ], + [ + 0.0, + 0.625, + 0.0, + 0.25, + 0.6875, + 1.0 + ], + [ + 0.25, + 0.625, + 0.0, + 1.0, + 0.6875, + 0.25 + ], + [ + 0.25, + 0.625, + 0.75, + 1.0, + 0.6875, + 1.0 + ], + [ + 0.75, + 0.625, + 0.25, + 1.0, + 0.6875, + 0.75 + ], + [ + 0.0, + 0.6875, + 0.0, + 0.125, + 1.0, + 1.0 + ], + [ + 0.125, + 0.6875, + 0.0, + 1.0, + 1.0, + 0.125 + ], + [ + 0.125, + 0.6875, + 0.875, + 1.0, + 1.0, + 1.0 + ], + [ + 0.875, + 0.6875, + 0.125, + 1.0, + 1.0, + 0.875 + ] + ], + "676": [ + [ + 0.25, + 0.25, + 0.25, + 0.75, + 0.6875, + 0.75 + ], + [ + 0.375, + 0.25, + 0.0, + 0.625, + 0.5, + 0.25 + ], + [ + 0.0, + 0.625, + 0.0, + 0.25, + 0.6875, + 1.0 + ], + [ + 0.25, + 0.625, + 0.0, + 1.0, + 0.6875, + 0.25 + ], + [ + 0.25, + 0.625, + 0.75, + 1.0, + 0.6875, + 1.0 + ], + [ + 0.75, + 0.625, + 0.25, + 1.0, + 0.6875, + 0.75 + ], + [ + 0.0, + 0.6875, + 0.0, + 0.125, + 1.0, + 1.0 + ], + [ + 0.125, + 0.6875, + 0.0, + 1.0, + 1.0, + 0.125 + ], + [ + 0.125, + 0.6875, + 0.875, + 1.0, + 1.0, + 1.0 + ], + [ + 0.875, + 0.6875, + 0.125, + 1.0, + 1.0, + 0.875 + ] + ], + "677": [ + [ + 0.25, + 0.25, + 0.25, + 0.75, + 0.6875, + 0.75 + ], + [ + 0.375, + 0.25, + 0.75, + 0.625, + 0.5, + 1.0 + ], + [ + 0.0, + 0.625, + 0.0, + 0.25, + 0.6875, + 1.0 + ], + [ + 0.25, + 0.625, + 0.0, + 1.0, + 0.6875, + 0.25 + ], + [ + 0.25, + 0.625, + 0.75, + 1.0, + 0.6875, + 1.0 + ], + [ + 0.75, + 0.625, + 0.25, + 1.0, + 0.6875, + 0.75 + ], + [ + 0.0, + 0.6875, + 0.0, + 0.125, + 1.0, + 1.0 + ], + [ + 0.125, + 0.6875, + 0.0, + 1.0, + 1.0, + 0.125 + ], + [ + 0.125, + 0.6875, + 0.875, + 1.0, + 1.0, + 1.0 + ], + [ + 0.875, + 0.6875, + 0.125, + 1.0, + 1.0, + 0.875 + ] + ], + "678": [ + [ + 0.0, + 0.25, + 0.375, + 0.75, + 0.5, + 0.625 + ], + [ + 0.25, + 0.25, + 0.25, + 0.75, + 0.6875, + 0.375 + ], + [ + 0.25, + 0.25, + 0.625, + 0.75, + 0.6875, + 0.75 + ], + [ + 0.25, + 0.5, + 0.375, + 0.75, + 0.6875, + 0.625 + ], + [ + 0.0, + 0.625, + 0.0, + 0.25, + 0.6875, + 1.0 + ], + [ + 0.25, + 0.625, + 0.0, + 1.0, + 0.6875, + 0.25 + ], + [ + 0.25, + 0.625, + 0.75, + 1.0, + 0.6875, + 1.0 + ], + [ + 0.75, + 0.625, + 0.25, + 1.0, + 0.6875, + 0.75 + ], + [ + 0.0, + 0.6875, + 0.0, + 0.125, + 1.0, + 1.0 + ], + [ + 0.125, + 0.6875, + 0.0, + 1.0, + 1.0, + 0.125 + ], + [ + 0.125, + 0.6875, + 0.875, + 1.0, + 1.0, + 1.0 + ], + [ + 0.875, + 0.6875, + 0.125, + 1.0, + 1.0, + 0.875 + ] + ], + "679": [ + [ + 0.25, + 0.25, + 0.25, + 0.75, + 0.6875, + 0.75 + ], + [ + 0.75, + 0.25, + 0.375, + 1.0, + 0.5, + 0.625 + ], + [ + 0.0, + 0.625, + 0.0, + 0.25, + 0.6875, + 1.0 + ], + [ + 0.25, + 0.625, + 0.0, + 1.0, + 0.6875, + 0.25 + ], + [ + 0.25, + 0.625, + 0.75, + 1.0, + 0.6875, + 1.0 + ], + [ + 0.75, + 0.625, + 0.25, + 1.0, + 0.6875, + 0.75 + ], + [ + 0.0, + 0.6875, + 0.0, + 0.125, + 1.0, + 1.0 + ], + [ + 0.125, + 0.6875, + 0.0, + 1.0, + 1.0, + 0.125 + ], + [ + 0.125, + 0.6875, + 0.875, + 1.0, + 1.0, + 1.0 + ], + [ + 0.875, + 0.6875, + 0.125, + 1.0, + 1.0, + 0.875 + ] + ], + "680": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "681": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "682": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "683": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "684": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "685": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "686": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "687": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "688": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "689": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "690": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "691": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "692": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "693": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "694": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "695": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "696": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "697": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "698": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "699": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "700": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "701": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "702": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "703": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "704": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "705": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "706": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "707": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "708": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "709": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "710": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "711": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "712": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "713": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "714": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "715": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "716": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "717": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "718": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "719": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "720": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "721": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "722": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "723": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "724": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "725": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "726": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "727": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "728": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "729": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "730": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "731": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "732": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "733": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "734": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "735": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "736": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "737": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "738": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "739": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "740": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "741": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "742": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "743": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "744": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "745": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "746": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "747": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "748": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "749": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "750": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "751": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "752": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "753": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "754": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "755": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "756": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "757": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "758": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "759": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "760": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "761": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "762": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "763": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "764": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "765": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "766": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "767": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "768": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "769": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "770": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "771": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "772": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "773": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "774": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "775": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "776": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "777": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "778": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "779": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "780": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "781": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "782": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "783": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "784": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "785": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "786": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "787": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "788": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "789": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "790": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "791": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "792": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "793": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "794": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "795": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "796": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "797": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "798": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "799": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "800": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "801": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "802": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "803": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "804": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "805": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "806": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "807": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "808": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "809": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "810": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "811": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "812": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "813": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "814": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "815": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "816": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "817": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "818": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "819": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "820": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "821": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "822": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "823": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "824": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "825": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "826": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "827": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "828": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "829": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "830": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "831": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "832": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "833": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "834": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "835": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "836": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "837": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "838": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "839": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "840": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "841": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "842": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "843": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "844": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "845": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "846": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "847": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "848": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "849": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "850": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "851": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "852": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "853": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "854": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "855": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "856": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "857": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "858": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "859": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "860": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "861": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "862": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "863": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "864": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "865": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "866": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "867": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "868": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "869": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "870": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "871": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "872": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "873": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "874": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "875": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "876": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "877": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "878": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "879": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "880": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "881": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "882": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "883": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "884": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "885": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "886": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "887": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "888": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "889": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "890": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "891": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "892": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "893": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "894": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "895": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "896": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "897": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "898": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "899": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "900": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "901": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "902": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "903": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "904": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "905": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "906": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "907": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "908": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "909": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "910": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "911": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "912": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "913": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "914": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "915": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "916": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "917": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "918": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "919": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "920": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "921": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "922": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "923": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "924": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "925": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ], + [ + 0.5625, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "926": [ + [ + 0.0, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "927": [ + [ + 0.4375, + 0.0, + 0.4375, + 1.0, + 1.0, + 0.5625 + ] + ], + "928": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "929": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 1.0 + ] + ], + "930": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.4375 + ] + ], + "931": [ + [ + 0.4375, + 0.0, + 0.0, + 0.5625, + 1.0, + 0.5625 + ] + ], + "932": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ], + [ + 0.4375, + 0.0, + 0.5625, + 0.5625, + 1.0, + 1.0 + ] + ], + "933": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 1.0 + ] + ], + "934": [ + [ + 0.0, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "935": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "936": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.0625, + 1.0 + ] + ], + "937": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "938": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "939": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "940": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "941": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "942": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "943": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "944": [ + [ + 0.375, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "945": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "946": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ] + ], + "947": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "948": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ] + ], + "949": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "950": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ] + ], + "951": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "952": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "953": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "954": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "955": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "956": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "957": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "958": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "959": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "960": [ + [ + 0.375, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "961": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "962": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ] + ], + "963": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "964": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ] + ], + "965": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "966": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ] + ], + "967": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "968": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "969": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "970": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "971": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "972": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "973": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "974": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "975": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "976": [ + [ + 0.375, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "977": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "978": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ] + ], + "979": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "980": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ] + ], + "981": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "982": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ] + ], + "983": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "984": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "985": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "986": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "987": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "988": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "989": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "990": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "991": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "992": [ + [ + 0.375, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "993": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "994": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ] + ], + "995": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "996": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ] + ], + "997": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "998": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ] + ], + "999": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "1000": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "1001": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1002": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1003": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "1004": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1005": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1006": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1007": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1008": [ + [ + 0.375, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1009": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1010": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ] + ], + "1011": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "1012": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ] + ], + "1013": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1014": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ] + ], + "1015": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "1016": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "1017": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1018": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1019": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "1020": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1021": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1022": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1023": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1024": [ + [ + 0.375, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1025": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1026": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ] + ], + "1027": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "1028": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ] + ], + "1029": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1030": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ] + ], + "1031": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "1032": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "1033": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1034": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1035": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "1036": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1037": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1038": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1039": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1040": [ + [ + 0.375, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1041": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1042": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ] + ], + "1043": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "1044": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ] + ], + "1045": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1046": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ] + ], + "1047": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "1048": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "1049": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1050": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1051": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "1052": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1053": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1054": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1055": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1056": [ + [ + 0.375, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1057": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1058": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ] + ], + "1059": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "1060": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ] + ], + "1061": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1062": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ] + ], + "1063": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "1064": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "1065": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1066": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1067": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "1068": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1069": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1070": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1071": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1072": [ + [ + 0.375, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "1073": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1074": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ] + ], + "1075": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "1076": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ] + ], + "1077": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "1078": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ] + ], + "1079": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "1080": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "1081": [ + [ + 0.375, + 0.375, + 0.0, + 0.625, + 0.625, + 1.0 + ] + ], + "1082": [ + [ + 0.0, + 0.375, + 0.375, + 1.0, + 0.625, + 0.625 + ] + ], + "1083": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.0, + 0.625 + ] + ], + "1084": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1085": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1086": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1087": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1088": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1089": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1090": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1091": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1092": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1093": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1094": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1095": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1096": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1097": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1098": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1099": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1100": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ] + ], + "1101": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ] + ], + "1102": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ] + ], + "1103": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ] + ], + "1104": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ] + ], + "1105": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ] + ], + "1106": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ] + ], + "1107": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ] + ], + "1108": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ] + ], + "1109": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ] + ], + "1110": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ] + ], + "1111": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ] + ], + "1112": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ] + ], + "1113": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1114": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.0, + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125 + ] + ], + "1115": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ] + ], + "1116": [ + [ + 0.0, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.1875, + 0.8125, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1117": [ + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.8125, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1118": [ + [ + 0.0, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ] + ], + "1119": [ + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1120": [ + [ + 0.0, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.1875, + 0.8125, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1121": [ + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.8125, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1122": [ + [ + 0.0, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ] + ], + "1123": [ + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1124": [ + [ + 0.0, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.1875, + 0.8125, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1125": [ + [ + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.8125, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1126": [ + [ + 0.0, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ] + ], + "1127": [ + [ + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.8125, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1128": [ + [ + 0.0, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.8125, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1129": [ + [ + 0.1875, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.8125, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1130": [ + [ + 0.0, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1131": [ + [ + 0.1875, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "1132": [ + [ + 0.0, + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.1875, + 0.8125, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1133": [ + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.1875, + 0.8125, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1134": [ + [ + 0.0, + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ] + ], + "1135": [ + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 1.0 + ] + ], + "1136": [ + [ + 0.0, + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ], + [ + 0.1875, + 0.8125, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1137": [ + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.8125, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1138": [ + [ + 0.0, + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.1875 + ] + ], + "1139": [ + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.8125 + ] + ], + "1140": [ + [ + 0.0, + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.1875, + 0.8125, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1141": [ + [ + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 1.0 + ], + [ + 0.1875, + 0.8125, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1142": [ + [ + 0.0, + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125, + 1.0 + ] + ], + "1143": [ + [ + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 1.0 + ] + ], + "1144": [ + [ + 0.0, + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ], + [ + 0.1875, + 0.8125, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1145": [ + [ + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "1146": [ + [ + 0.0, + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ] + ], + "1147": [ + [ + 0.1875, + 0.1875, + 0.1875, + 0.8125, + 0.8125, + 0.8125 + ] + ], + "1148": [ + [ + 0.3125, + -0.0625, + 0.3125, + 0.6875, + 0.1875, + 0.6875 + ] + ], + "1149": [ + [ + 0.1875, + -0.0625, + 0.1875, + 0.8125, + 0.3125, + 0.8125 + ] + ], + "1150": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.75, + 0.4375, + 0.75 + ] + ], + "1151": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.9375, + 0.4375, + 0.9375 + ] + ], + "1152": [ + [ + 0.0625, + 0.0, + 0.125, + 0.9375, + 1.0, + 0.875 + ] + ], + "1153": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 0.375, + 0.625 + ] + ], + "1154": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.375, + 0.8125 + ] + ], + "1155": [ + [ + 0.125, + 0.0, + 0.125, + 0.875, + 0.375, + 0.875 + ] + ], + "1156": [ + [ + 0.125, + 0.0, + 0.125, + 0.875, + 0.4375, + 0.875 + ] + ], + "1157": [ + [ + 0.3125, + 0.3125, + 0.3125, + 0.6875, + 0.6875, + 0.6875 + ] + ], + "1158": [ + [ + 0.15625, + 0.0, + 0.15625, + 0.34375, + 1.0, + 0.34375 + ] + ], + "1159": [ + [ + 0.15625, + 0.0, + 0.15625, + 0.34375, + 1.0, + 0.34375 + ] + ], + "1160": [ + [ + 0.15625, + 0.0, + 0.15625, + 0.34375, + 1.0, + 0.34375 + ] + ], + "1161": [ + [ + 0.15625, + 0.0, + 0.15625, + 0.34375, + 1.0, + 0.34375 + ] + ], + "1162": [ + [ + 0.15625, + 0.0, + 0.15625, + 0.34375, + 1.0, + 0.34375 + ] + ], + "1163": [ + [ + 0.15625, + 0.0, + 0.15625, + 0.34375, + 1.0, + 0.34375 + ] + ], + "1164": [ + [ + 0.15625, + 0.0, + 0.15625, + 0.34375, + 1.0, + 0.34375 + ] + ], + "1165": [ + [ + 0.15625, + 0.0, + 0.15625, + 0.34375, + 1.0, + 0.34375 + ] + ], + "1166": [ + [ + 0.15625, + 0.0, + 0.15625, + 0.34375, + 1.0, + 0.34375 + ] + ], + "1167": [ + [ + 0.15625, + 0.0, + 0.15625, + 0.34375, + 1.0, + 0.34375 + ] + ], + "1168": [ + [ + 0.15625, + 0.0, + 0.15625, + 0.34375, + 1.0, + 0.34375 + ] + ], + "1169": [ + [ + 0.15625, + 0.0, + 0.15625, + 0.34375, + 1.0, + 0.34375 + ] + ], + "1170": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "1171": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1172": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1173": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1174": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1175": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1176": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1177": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1178": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "1179": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1180": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1181": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1182": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1183": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1184": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "1185": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1186": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1187": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1188": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1189": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1190": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1191": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1192": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1193": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1194": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1195": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1196": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1197": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1198": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1199": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1200": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1201": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1202": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1203": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1204": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1205": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1206": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1207": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1208": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1209": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1210": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1211": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1212": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1213": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1214": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1215": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1216": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1217": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1218": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1219": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1220": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1221": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1222": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1223": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1224": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1225": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1226": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1227": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1228": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1229": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1230": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1231": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1232": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1233": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1234": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1235": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1236": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1237": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1238": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1239": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1240": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1241": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1242": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1243": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1244": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1245": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1246": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1247": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1248": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1249": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1250": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1251": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1252": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1253": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1254": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1255": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1256": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1257": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1258": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1259": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1260": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1261": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1262": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1263": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1264": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1265": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1266": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1267": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1268": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1269": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1270": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1271": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1272": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1273": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1274": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1275": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1276": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1277": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1278": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1279": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1280": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1281": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1282": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1283": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1284": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1285": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1286": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1287": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1288": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1289": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1290": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1291": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1292": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1293": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1294": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1295": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1296": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1297": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1298": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1299": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1300": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1301": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1302": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1303": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1304": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1305": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1306": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1307": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1308": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1309": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1310": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1311": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1312": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1313": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1314": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1315": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1316": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1317": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1318": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1319": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1320": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1321": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1322": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1323": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1324": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1325": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1326": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1327": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1328": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1329": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1330": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1331": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "1332": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1333": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1334": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1335": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1336": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1337": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1338": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1339": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "1340": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1341": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1342": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1343": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1344": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1345": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "1346": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1347": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1348": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1349": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1350": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1351": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1352": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1353": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1354": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1355": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1356": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1357": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1358": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1359": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1360": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1361": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1362": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1363": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1364": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1365": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1366": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1367": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1368": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1369": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1370": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1371": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1372": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1373": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1374": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1375": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1376": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1377": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1378": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1379": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1380": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1381": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1382": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1383": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1384": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1385": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1386": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1387": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1388": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1389": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1390": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1391": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1392": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1393": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1394": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1395": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1396": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1397": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1398": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1399": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1400": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1401": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1402": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1403": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1404": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1405": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1406": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1407": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1408": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1409": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1410": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1411": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1412": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1413": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1414": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1415": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1416": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1417": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1418": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1419": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1420": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1421": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1422": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1423": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1424": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1425": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1426": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1427": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1428": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1429": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1430": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1431": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1432": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1433": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1434": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1435": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1436": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1437": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1438": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1439": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1440": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1441": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1442": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1443": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1444": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1445": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1446": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1447": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1448": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1449": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1450": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1451": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1452": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1453": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1454": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1455": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1456": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1457": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1458": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1459": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1460": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1461": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1462": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1463": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1464": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1465": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1466": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1467": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1468": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1469": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1470": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1471": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1472": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1473": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1474": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1475": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1476": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1477": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1478": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1479": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1480": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1481": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1482": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1483": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1484": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1485": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1486": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1487": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1488": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1489": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1490": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1491": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1492": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "1493": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1494": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1495": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1496": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1497": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1498": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1499": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1500": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "1501": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1502": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1503": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1504": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1505": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1506": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "1507": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1508": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1509": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1510": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1511": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1512": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1513": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1514": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1515": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1516": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1517": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1518": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1519": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1520": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1521": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1522": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1523": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1524": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1525": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1526": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1527": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1528": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1529": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1530": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1531": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1532": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1533": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1534": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1535": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1536": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1537": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1538": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1539": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1540": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1541": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1542": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1543": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1544": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1545": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1546": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1547": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1548": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1549": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1550": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1551": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1552": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1553": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1554": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1555": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1556": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1557": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1558": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1559": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1560": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1561": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1562": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1563": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1564": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1565": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1566": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1567": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1568": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1569": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1570": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1571": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1572": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1573": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1574": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1575": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1576": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1577": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1578": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1579": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1580": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1581": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1582": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1583": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1584": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1585": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1586": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1587": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1588": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1589": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1590": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1591": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1592": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1593": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1594": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1595": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1596": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1597": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1598": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1599": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1600": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1601": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1602": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1603": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1604": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1605": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1606": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1607": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1608": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1609": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1610": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1611": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1612": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1613": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1614": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1615": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1616": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1617": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1618": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1619": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1620": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1621": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1622": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1623": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1624": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1625": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1626": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1627": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1628": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1629": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1630": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1631": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1632": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1633": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1634": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1635": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1636": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1637": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1638": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1639": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1640": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1641": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1642": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1643": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1644": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1645": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1646": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1647": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1648": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1649": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1650": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1651": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1652": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1653": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "1654": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1655": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1656": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1657": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1658": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1659": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1660": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1661": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "1662": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1663": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1664": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1665": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1666": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1667": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "1668": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1669": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1670": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1671": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1672": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1673": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1674": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1675": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1676": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1677": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1678": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1679": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1680": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1681": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1682": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1683": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1684": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1685": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1686": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1687": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1688": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1689": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1690": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1691": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1692": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1693": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1694": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1695": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1696": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1697": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1698": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1699": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1700": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1701": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1702": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1703": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1704": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1705": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1706": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1707": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1708": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1709": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1710": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1711": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1712": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1713": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1714": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1715": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1716": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1717": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1718": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1719": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1720": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1721": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1722": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1723": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1724": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1725": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1726": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1727": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1728": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1729": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1730": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1731": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1732": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1733": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1734": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1735": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1736": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1737": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1738": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1739": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1740": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1741": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1742": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1743": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1744": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1745": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1746": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1747": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1748": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1749": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1750": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1751": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1752": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1753": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1754": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1755": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1756": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1757": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1758": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1759": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1760": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1761": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1762": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1763": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1764": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1765": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1766": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1767": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1768": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1769": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1770": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1771": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1772": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1773": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1774": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1775": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1776": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1777": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1778": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1779": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1780": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1781": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1782": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1783": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1784": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1785": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1786": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1787": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1788": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1789": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1790": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1791": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1792": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1793": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1794": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1795": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1796": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1797": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1798": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1799": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1800": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1801": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1802": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1803": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1804": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1805": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1806": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1807": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1808": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1809": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1810": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1811": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1812": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1813": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1814": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "1815": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1816": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1817": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1818": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1819": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1820": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1821": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1822": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "1823": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1824": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1825": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1826": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1827": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1828": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "1829": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1830": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1831": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1832": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1833": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1834": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1835": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1836": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1837": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1838": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1839": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1840": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1841": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1842": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1843": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1844": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1845": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1846": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1847": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1848": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1849": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1850": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1851": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1852": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1853": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1854": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1855": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1856": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1857": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1858": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1859": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1860": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1861": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1862": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1863": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1864": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "1865": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1866": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1867": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1868": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1869": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1870": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1871": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1872": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1873": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1874": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1875": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1876": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1877": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1878": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1879": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1880": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1881": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1882": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1883": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1884": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1885": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1886": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1887": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1888": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1889": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1890": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1891": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1892": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1893": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1894": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1895": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1896": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1897": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1898": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1899": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1900": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1901": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1902": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1903": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1904": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1905": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1906": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1907": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1908": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1909": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1910": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1911": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1912": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1913": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1914": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1915": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1916": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1917": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1918": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1919": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1920": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1921": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1922": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1923": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1924": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1925": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1926": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1927": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1928": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1929": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1930": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1931": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1932": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1933": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1934": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1935": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1936": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1937": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1938": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1939": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1940": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1941": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1942": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1943": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1944": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1945": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1946": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1947": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1948": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1949": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1950": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1951": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1952": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1953": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1954": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1955": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1956": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1957": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1958": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1959": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1960": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1961": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1962": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1963": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1964": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1965": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1966": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1967": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1968": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1969": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1970": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1971": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1972": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "1973": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1974": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1975": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "1976": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1977": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "1978": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1979": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1980": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1981": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1982": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1983": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "1984": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1985": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1986": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1987": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1988": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1989": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "1990": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1991": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "1992": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1993": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1994": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "1995": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "1996": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1997": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "1998": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "1999": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2000": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2001": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2002": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2003": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2004": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2005": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2006": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2007": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2008": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2009": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2010": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2011": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2012": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2013": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2014": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2015": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2016": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2017": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2018": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2019": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2020": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2021": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2022": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2023": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2024": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2025": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2026": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2027": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2028": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2029": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2030": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2031": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2032": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2033": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2034": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2035": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2036": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2037": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2038": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2039": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2040": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2041": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2042": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2043": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2044": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2045": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2046": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2047": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2048": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2049": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2050": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2051": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2052": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2053": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2054": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2055": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2056": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2057": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2058": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2059": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2060": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2061": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2062": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2063": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2064": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2065": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2066": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2067": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2068": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2069": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2070": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2071": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2072": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2073": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2074": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2075": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2076": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2077": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2078": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2079": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2080": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2081": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2082": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2083": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2084": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2085": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2086": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2087": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2088": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2089": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2090": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2091": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2092": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2093": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2094": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2095": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2096": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2097": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2098": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2099": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2100": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2101": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2102": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2103": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2104": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2105": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2106": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2107": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2108": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2109": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2110": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2111": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2112": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2113": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2114": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2115": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2116": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2117": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2118": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2119": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2120": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2121": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2122": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2123": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2124": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2125": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2126": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2127": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2128": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2129": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2130": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2131": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2132": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2133": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2134": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2135": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2136": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "2137": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2138": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2139": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2140": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2141": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2142": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2143": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2144": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "2145": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2146": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2147": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2148": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2149": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2150": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "2151": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2152": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2153": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2154": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2155": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2156": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2157": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2158": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2159": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2160": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2161": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2162": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2163": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2164": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2165": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2166": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2167": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2168": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2169": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2170": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2171": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2172": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2173": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2174": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2175": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2176": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2177": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2178": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2179": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2180": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2181": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2182": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2183": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2184": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2185": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2186": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2187": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2188": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2189": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2190": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2191": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2192": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2193": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2194": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2195": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2196": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2197": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2198": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2199": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2200": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2201": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2202": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2203": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2204": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2205": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2206": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2207": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2208": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2209": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2210": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2211": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2212": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2213": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2214": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2215": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2216": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2217": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2218": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2219": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2220": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2221": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2222": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2223": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2224": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2225": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2226": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2227": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2228": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2229": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2230": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2231": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2232": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2233": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2234": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2235": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2236": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2237": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2238": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2239": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2240": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2241": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2242": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2243": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2244": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2245": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2246": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2247": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2248": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2249": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2250": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2251": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2252": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2253": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2254": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2255": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2256": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2257": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2258": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2259": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2260": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2261": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2262": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2263": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2264": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2265": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2266": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2267": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2268": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2269": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2270": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2271": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2272": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2273": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2274": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2275": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2276": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2277": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2278": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2279": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2280": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2281": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2282": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2283": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2284": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2285": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2286": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2287": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2288": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2289": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2290": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2291": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2292": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2293": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2294": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2295": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2296": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2297": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "2298": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2299": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2300": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2301": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2302": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2303": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2304": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2305": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "2306": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2307": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2308": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2309": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2310": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2311": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "2312": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2313": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2314": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2315": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2316": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2317": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2318": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2319": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2320": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2321": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2322": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2323": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2324": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2325": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2326": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2327": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2328": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2329": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2330": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2331": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2332": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2333": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2334": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2335": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2336": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2337": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2338": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2339": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2340": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2341": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2342": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2343": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2344": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2345": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2346": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2347": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2348": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2349": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2350": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2351": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2352": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2353": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2354": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2355": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2356": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2357": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2358": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2359": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2360": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2361": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2362": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2363": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2364": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2365": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2366": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2367": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2368": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2369": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2370": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2371": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2372": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2373": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2374": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2375": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2376": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2377": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2378": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2379": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2380": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2381": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2382": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2383": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2384": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2385": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2386": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2387": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2388": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2389": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2390": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2391": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2392": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2393": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2394": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2395": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2396": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2397": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2398": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2399": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2400": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2401": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2402": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2403": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2404": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2405": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2406": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2407": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2408": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2409": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2410": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2411": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2412": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2413": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2414": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2415": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2416": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2417": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2418": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2419": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2420": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2421": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2422": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2423": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2424": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2425": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2426": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2427": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2428": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2429": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2430": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2431": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2432": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2433": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2434": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2435": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2436": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2437": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2438": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2439": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2440": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2441": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2442": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2443": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2444": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2445": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2446": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2447": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2448": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2449": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2450": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2451": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2452": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2453": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2454": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2455": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2456": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2457": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2458": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "2459": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2460": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2461": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2462": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2463": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2464": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2465": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2466": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "2467": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2468": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2469": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2470": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2471": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2472": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "2473": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2474": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2475": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2476": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2477": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2478": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2479": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2480": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2481": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2482": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2483": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2484": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2485": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2486": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2487": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2488": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2489": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2490": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2491": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2492": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2493": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2494": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2495": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2496": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2497": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2498": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2499": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2500": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2501": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2502": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2503": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2504": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2505": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2506": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2507": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2508": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2509": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2510": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2511": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2512": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2513": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2514": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2515": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2516": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2517": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2518": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2519": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2520": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2521": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2522": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2523": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2524": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2525": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2526": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2527": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2528": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2529": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2530": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2531": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2532": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2533": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2534": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2535": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2536": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2537": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2538": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2539": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2540": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2541": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2542": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2543": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2544": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2545": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2546": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2547": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2548": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2549": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2550": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2551": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2552": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2553": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2554": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2555": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2556": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2557": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2558": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2559": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2560": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2561": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2562": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2563": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2564": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2565": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2566": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2567": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2568": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2569": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2570": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2571": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2572": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2573": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2574": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2575": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2576": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2577": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2578": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2579": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2580": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2581": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2582": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2583": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2584": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2585": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2586": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2587": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2588": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2589": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2590": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2591": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2592": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2593": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2594": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2595": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2596": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2597": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2598": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2599": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2600": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2601": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2602": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2603": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2604": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2605": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2606": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2607": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2608": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2609": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2610": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2611": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2612": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2613": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2614": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2615": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2616": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2617": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2618": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2619": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "2620": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2621": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2622": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2623": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2624": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2625": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2626": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2627": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "2628": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2629": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2630": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2631": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2632": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2633": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "2634": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2635": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2636": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2637": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2638": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2639": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2640": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2641": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2642": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2643": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2644": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2645": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2646": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2647": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2648": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2649": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2650": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2651": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2652": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2653": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2654": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2655": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2656": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2657": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2658": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2659": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2660": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2661": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2662": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2663": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2664": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2665": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2666": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2667": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2668": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2669": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2670": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2671": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2672": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2673": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2674": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2675": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2676": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2677": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2678": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2679": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2680": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2681": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2682": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2683": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2684": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2685": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2686": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2687": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2688": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2689": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2690": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2691": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2692": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2693": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2694": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2695": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2696": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2697": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2698": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2699": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2700": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2701": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2702": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2703": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2704": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2705": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2706": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2707": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2708": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2709": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2710": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2711": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2712": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2713": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2714": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2715": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2716": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2717": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2718": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2719": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2720": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2721": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2722": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2723": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2724": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2725": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2726": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2727": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2728": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2729": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2730": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2731": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2732": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2733": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2734": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2735": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2736": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2737": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2738": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2739": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2740": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2741": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2742": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2743": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2744": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2745": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2746": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2747": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2748": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2749": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2750": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2751": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2752": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2753": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2754": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2755": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2756": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2757": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2758": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2759": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2760": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2761": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2762": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2763": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2764": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2765": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2766": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2767": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2768": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2769": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2770": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2771": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2772": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2773": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2774": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2775": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2776": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2777": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2778": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2779": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2780": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "2781": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2782": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2783": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2784": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2785": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2786": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2787": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2788": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "2789": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2790": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2791": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2792": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2793": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2794": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "2795": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2796": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2797": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2798": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2799": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2800": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2801": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2802": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2803": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2804": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2805": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2806": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2807": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2808": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2809": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2810": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2811": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2812": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2813": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2814": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2815": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2816": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2817": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2818": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2819": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2820": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2821": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2822": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2823": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2824": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2825": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2826": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2827": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2828": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2829": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2830": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2831": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2832": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2833": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2834": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2835": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2836": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2837": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2838": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2839": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2840": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2841": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2842": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2843": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2844": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2845": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2846": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2847": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2848": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2849": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2850": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2851": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2852": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2853": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2854": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2855": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2856": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2857": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2858": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2859": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2860": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2861": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2862": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2863": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2864": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2865": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2866": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2867": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2868": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2869": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2870": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2871": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2872": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2873": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2874": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2875": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2876": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2877": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2878": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2879": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2880": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2881": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2882": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2883": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2884": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2885": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2886": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2887": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2888": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2889": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2890": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2891": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2892": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2893": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2894": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2895": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2896": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2897": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2898": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2899": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2900": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2901": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2902": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2903": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2904": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2905": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2906": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2907": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2908": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2909": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2910": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2911": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2912": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2913": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2914": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2915": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2916": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2917": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2918": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2919": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2920": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2921": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2922": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2923": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2924": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2925": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2926": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2927": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2928": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2929": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2930": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2931": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2932": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2933": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2934": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2935": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2936": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2937": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2938": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2939": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2940": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2941": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "2942": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2943": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2944": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2945": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2946": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2947": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2948": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2949": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "2950": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2951": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2952": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2953": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2954": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2955": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "2956": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2957": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2958": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2959": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2960": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2961": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2962": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2963": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2964": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2965": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2966": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2967": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2968": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2969": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2970": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2971": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2972": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2973": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2974": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2975": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2976": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2977": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2978": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "2979": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "2980": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2981": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "2982": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2983": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2984": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2985": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2986": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2987": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2988": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2989": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2990": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "2991": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "2992": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2993": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "2994": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2995": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2996": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "2997": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2998": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "2999": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3000": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3001": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3002": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3003": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3004": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3005": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3006": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3007": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3008": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3009": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3010": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3011": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3012": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3013": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3014": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3015": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3016": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3017": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3018": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3019": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3020": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3021": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3022": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3023": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3024": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3025": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3026": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3027": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3028": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3029": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3030": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3031": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3032": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3033": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3034": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3035": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3036": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3037": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3038": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3039": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3040": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3041": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3042": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3043": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3044": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3045": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3046": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3047": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3048": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3049": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3050": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3051": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3052": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3053": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3054": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3055": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3056": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3057": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3058": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3059": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3060": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3061": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3062": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3063": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3064": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3065": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3066": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3067": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3068": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3069": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3070": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3071": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3072": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3073": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3074": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3075": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3076": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3077": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3078": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3079": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3080": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3081": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3082": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3083": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3084": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3085": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3086": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3087": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3088": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3089": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3090": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3091": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3092": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3093": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3094": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3095": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3096": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3097": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3098": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3099": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3100": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3101": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3102": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "3103": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3104": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3105": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3106": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3107": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3108": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3109": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3110": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "3111": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3112": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3113": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3114": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3115": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3116": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "3117": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3118": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3119": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3120": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3121": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3122": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3123": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3124": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3125": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3126": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3127": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3128": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3129": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3130": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3131": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3132": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3133": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3134": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3135": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3136": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3137": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3138": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3139": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3140": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3141": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3142": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3143": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3144": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3145": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3146": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3147": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3148": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3149": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3150": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3151": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3152": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3153": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3154": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3155": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3156": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3157": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3158": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3159": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3160": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3161": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3162": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3163": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3164": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3165": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3166": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3167": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3168": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3169": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3170": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3171": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3172": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3173": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3174": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3175": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3176": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3177": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3178": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3179": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3180": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3181": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3182": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3183": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3184": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3185": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3186": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3187": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3188": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3189": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3190": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3191": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3192": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3193": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3194": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3195": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3196": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3197": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3198": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3199": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3200": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3201": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3202": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3203": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3204": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3205": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3206": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3207": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3208": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3209": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3210": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3211": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3212": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3213": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3214": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3215": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3216": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3217": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3218": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3219": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3220": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3221": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3222": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3223": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3224": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3225": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3226": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3227": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3228": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3229": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3230": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3231": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3232": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3233": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3234": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3235": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3236": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3237": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3238": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3239": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3240": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3241": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3242": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3243": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3244": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3245": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3246": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3247": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3248": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3249": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3250": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3251": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3252": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3253": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3254": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3255": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3256": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3257": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3258": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3259": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3260": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3261": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3262": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3263": [ + [ + 0.0, + 0.0, + 0.0, + 0.125, + 1.0, + 0.125 + ], + [ + 0.0, + 0.0, + 0.875, + 0.125, + 1.0, + 1.0 + ], + [ + 0.875, + 0.0, + 0.0, + 1.0, + 1.0, + 0.125 + ], + [ + 0.875, + 0.0, + 0.875, + 1.0, + 1.0, + 1.0 + ], + [ + 0.0, + 0.875, + 0.125, + 1.0, + 1.0, + 0.875 + ], + [ + 0.125, + 0.875, + 0.0, + 0.875, + 1.0, + 0.125 + ], + [ + 0.125, + 0.875, + 0.875, + 0.875, + 1.0, + 1.0 + ] + ], + "3264": [ + [ + 0.125, + 0.0, + 0.375, + 0.25, + 0.8125, + 0.625 + ], + [ + 0.75, + 0.0, + 0.375, + 0.875, + 0.8125, + 0.625 + ], + [ + 0.25, + 0.25, + 0.125, + 0.75, + 1.0, + 0.875 + ], + [ + 0.125, + 0.4375, + 0.3125, + 0.25, + 0.8125, + 0.375 + ], + [ + 0.125, + 0.4375, + 0.625, + 0.25, + 0.8125, + 0.6875 + ], + [ + 0.75, + 0.4375, + 0.3125, + 0.875, + 0.8125, + 0.375 + ], + [ + 0.75, + 0.4375, + 0.625, + 0.875, + 0.8125, + 0.6875 + ] + ], + "3265": [ + [ + 0.375, + 0.0, + 0.125, + 0.625, + 0.8125, + 0.25 + ], + [ + 0.375, + 0.0, + 0.75, + 0.625, + 0.8125, + 0.875 + ], + [ + 0.125, + 0.25, + 0.25, + 0.875, + 1.0, + 0.75 + ], + [ + 0.3125, + 0.4375, + 0.125, + 0.375, + 0.8125, + 0.25 + ], + [ + 0.3125, + 0.4375, + 0.75, + 0.375, + 0.8125, + 0.875 + ], + [ + 0.625, + 0.4375, + 0.125, + 0.6875, + 0.8125, + 0.25 + ], + [ + 0.625, + 0.4375, + 0.75, + 0.6875, + 0.8125, + 0.875 + ] + ], + "3266": [ + [ + 0.25, + 0.125, + 0.0, + 0.75, + 0.875, + 0.75 + ], + [ + 0.125, + 0.3125, + 0.1875, + 0.25, + 0.6875, + 0.5625 + ], + [ + 0.75, + 0.3125, + 0.1875, + 0.875, + 0.6875, + 0.5625 + ], + [ + 0.125, + 0.375, + 0.5625, + 0.25, + 0.625, + 1.0 + ], + [ + 0.75, + 0.375, + 0.5625, + 0.875, + 0.625, + 1.0 + ] + ], + "3267": [ + [ + 0.25, + 0.125, + 0.25, + 0.75, + 0.875, + 1.0 + ], + [ + 0.125, + 0.3125, + 0.4375, + 0.25, + 0.6875, + 0.8125 + ], + [ + 0.75, + 0.3125, + 0.4375, + 0.875, + 0.6875, + 0.8125 + ], + [ + 0.125, + 0.375, + 0.0, + 0.25, + 0.625, + 0.4375 + ], + [ + 0.75, + 0.375, + 0.0, + 0.875, + 0.625, + 0.4375 + ] + ], + "3268": [ + [ + 0.0, + 0.125, + 0.25, + 0.75, + 0.875, + 0.75 + ], + [ + 0.1875, + 0.3125, + 0.125, + 0.5625, + 0.6875, + 0.25 + ], + [ + 0.1875, + 0.3125, + 0.75, + 0.5625, + 0.6875, + 0.875 + ], + [ + 0.5625, + 0.375, + 0.125, + 1.0, + 0.625, + 0.25 + ], + [ + 0.5625, + 0.375, + 0.75, + 1.0, + 0.625, + 0.875 + ] + ], + "3269": [ + [ + 0.25, + 0.125, + 0.25, + 1.0, + 0.875, + 0.75 + ], + [ + 0.4375, + 0.3125, + 0.125, + 0.8125, + 0.6875, + 0.25 + ], + [ + 0.4375, + 0.3125, + 0.75, + 0.8125, + 0.6875, + 0.875 + ], + [ + 0.0, + 0.375, + 0.125, + 0.4375, + 0.625, + 0.25 + ], + [ + 0.0, + 0.375, + 0.75, + 0.4375, + 0.625, + 0.875 + ] + ], + "3270": [ + [ + 0.25, + 0.0, + 0.125, + 0.75, + 0.75, + 0.875 + ], + [ + 0.125, + 0.1875, + 0.3125, + 0.25, + 0.5625, + 0.6875 + ], + [ + 0.75, + 0.1875, + 0.3125, + 0.875, + 0.5625, + 0.6875 + ], + [ + 0.125, + 0.5625, + 0.375, + 0.25, + 1.0, + 0.625 + ], + [ + 0.75, + 0.5625, + 0.375, + 0.875, + 1.0, + 0.625 + ] + ], + "3271": [ + [ + 0.125, + 0.0, + 0.25, + 0.875, + 0.75, + 0.75 + ], + [ + 0.3125, + 0.1875, + 0.125, + 0.6875, + 0.5625, + 0.25 + ], + [ + 0.3125, + 0.1875, + 0.75, + 0.6875, + 0.5625, + 0.875 + ], + [ + 0.375, + 0.5625, + 0.125, + 0.625, + 1.0, + 0.25 + ], + [ + 0.375, + 0.5625, + 0.75, + 0.625, + 1.0, + 0.875 + ] + ], + "3272": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.125, + 1.0 + ], + [ + 0.25, + 0.125, + 0.25, + 0.75, + 0.875, + 0.75 + ] + ], + "3273": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5625, + 1.0 + ] + ], + "3274": [ + [ + 0.0, + 0.0, + 0.25, + 1.0, + 1.0, + 0.75 + ] + ], + "3275": [ + [ + 0.25, + 0.0, + 0.0, + 0.75, + 1.0, + 1.0 + ] + ], + "3276": [ + [ + 0.25, + 0.25, + 0.25, + 0.75, + 0.375, + 0.75 + ], + [ + 0.3125, + 0.375, + 0.3125, + 0.6875, + 0.8125, + 0.6875 + ], + [ + 0.4375, + 0.8125, + 0.4375, + 0.5625, + 1.0, + 0.5625 + ] + ], + "3277": [ + [ + 0.25, + 0.25, + 0.25, + 0.75, + 0.375, + 0.75 + ], + [ + 0.3125, + 0.375, + 0.3125, + 0.6875, + 0.8125, + 0.6875 + ], + [ + 0.4375, + 0.8125, + 0.0, + 0.5625, + 0.9375, + 0.8125 + ] + ], + "3278": [ + [ + 0.25, + 0.25, + 0.25, + 0.75, + 0.375, + 0.75 + ], + [ + 0.3125, + 0.375, + 0.3125, + 0.6875, + 0.8125, + 0.6875 + ], + [ + 0.4375, + 0.8125, + 0.1875, + 0.5625, + 0.9375, + 1.0 + ] + ], + "3279": [ + [ + 0.25, + 0.25, + 0.25, + 0.75, + 0.375, + 0.75 + ], + [ + 0.3125, + 0.375, + 0.3125, + 0.6875, + 0.8125, + 0.6875 + ], + [ + 0.0, + 0.8125, + 0.4375, + 0.8125, + 0.9375, + 0.5625 + ] + ], + "3280": [ + [ + 0.25, + 0.25, + 0.25, + 0.75, + 0.375, + 0.75 + ], + [ + 0.3125, + 0.375, + 0.3125, + 0.6875, + 0.8125, + 0.6875 + ], + [ + 0.1875, + 0.8125, + 0.4375, + 1.0, + 0.9375, + 0.5625 + ] + ], + "3281": [ + [ + 0.25, + 0.25, + 0.25, + 0.75, + 0.375, + 0.75 + ], + [ + 0.3125, + 0.375, + 0.3125, + 0.6875, + 0.8125, + 0.6875 + ], + [ + 0.4375, + 0.8125, + 0.0, + 0.5625, + 0.9375, + 1.0 + ] + ], + "3282": [ + [ + 0.25, + 0.25, + 0.25, + 0.75, + 0.375, + 0.75 + ], + [ + 0.3125, + 0.375, + 0.3125, + 0.6875, + 0.8125, + 0.6875 + ], + [ + 0.0, + 0.8125, + 0.4375, + 1.0, + 0.9375, + 0.5625 + ] + ], + "3283": [ + [ + 0.3125, + 0.0625, + 0.3125, + 0.6875, + 0.5, + 0.6875 + ], + [ + 0.375, + 0.5, + 0.375, + 0.625, + 0.625, + 0.625 + ] + ], + "3284": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 0.4375, + 0.6875 + ], + [ + 0.375, + 0.4375, + 0.375, + 0.625, + 0.5625, + 0.625 + ] + ], + "3285": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.4375, + 1.0 + ] + ], + "3286": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "3287": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "3288": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "3289": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "3290": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "3291": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "3292": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "3293": [ + [ + 0.375, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "3294": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "3295": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ] + ], + "3296": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "3297": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ] + ], + "3298": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "3299": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ] + ], + "3300": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "3301": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "3302": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "3303": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "3304": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "3305": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "3306": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "3307": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ], + [ + 0.625, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "3308": [ + [ + 0.0, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "3309": [ + [ + 0.375, + 0.0, + 0.375, + 1.0, + 1.5, + 0.625 + ] + ], + "3310": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "3311": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 1.0 + ] + ], + "3312": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.375 + ] + ], + "3313": [ + [ + 0.375, + 0.0, + 0.0, + 0.625, + 1.5, + 0.625 + ] + ], + "3314": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ], + [ + 0.375, + 0.0, + 0.625, + 0.625, + 1.5, + 1.0 + ] + ], + "3315": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 1.0 + ] + ], + "3316": [ + [ + 0.0, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "3317": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.5, + 0.625 + ] + ], + "3318": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.125, + 1.0 + ], + [ + 0.0, + 0.125, + 0.0, + 0.125, + 1.0, + 1.0 + ], + [ + 0.125, + 0.125, + 0.0, + 1.0, + 1.0, + 0.125 + ], + [ + 0.125, + 0.125, + 0.875, + 1.0, + 1.0, + 1.0 + ], + [ + 0.875, + 0.125, + 0.125, + 1.0, + 1.0, + 0.875 + ] + ], + "3319": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.9375, + 0.9375, + 0.9375 + ] + ], + "3320": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "3321": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3322": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3323": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3324": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3325": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3326": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3327": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3328": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "3329": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3330": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3331": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3332": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3333": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3334": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "3335": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3336": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3337": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3338": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3339": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3340": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3341": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3342": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3343": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3344": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3345": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3346": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3347": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3348": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3349": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3350": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3351": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3352": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3353": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3354": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3355": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3356": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3357": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3358": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3359": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3360": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3361": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3362": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3363": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3364": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3365": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3366": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3367": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3368": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3369": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3370": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3371": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3372": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3373": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3374": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3375": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3376": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3377": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3378": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3379": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3380": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3381": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3382": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3383": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3384": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3385": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3386": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3387": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3388": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3389": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3390": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3391": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3392": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3393": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3394": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3395": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3396": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3397": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3398": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3399": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3400": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3401": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3402": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3403": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3404": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3405": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3406": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3407": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3408": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3409": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3410": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3411": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3412": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3413": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3414": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3415": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3416": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3417": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3418": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3419": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3420": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3421": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3422": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3423": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3424": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3425": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3426": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3427": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3428": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3429": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3430": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3431": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3432": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3433": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3434": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3435": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3436": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3437": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3438": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3439": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3440": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3441": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3442": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3443": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3444": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3445": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3446": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3447": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3448": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3449": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3450": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3451": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3452": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3453": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3454": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3455": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3456": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3457": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3458": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3459": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3460": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3461": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3462": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3463": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3464": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3465": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3466": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3467": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3468": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3469": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3470": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3471": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3472": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3473": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3474": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3475": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3476": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3477": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3478": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3479": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3480": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3481": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "3482": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3483": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3484": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3485": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3486": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3487": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3488": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3489": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "3490": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3491": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3492": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3493": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3494": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3495": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "3496": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3497": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3498": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3499": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3500": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3501": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3502": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3503": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3504": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3505": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3506": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3507": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3508": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3509": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3510": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3511": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3512": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3513": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3514": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3515": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3516": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3517": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3518": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3519": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3520": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3521": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3522": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3523": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3524": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3525": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3526": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3527": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3528": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3529": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3530": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3531": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3532": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3533": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3534": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3535": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3536": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3537": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3538": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3539": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3540": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3541": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3542": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3543": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3544": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3545": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3546": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3547": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3548": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3549": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3550": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3551": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3552": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3553": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3554": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3555": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3556": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3557": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3558": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3559": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3560": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3561": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3562": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3563": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3564": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3565": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3566": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3567": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3568": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3569": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3570": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3571": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3572": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3573": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3574": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3575": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3576": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3577": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3578": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3579": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3580": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3581": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3582": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3583": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3584": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3585": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3586": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3587": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3588": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3589": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3590": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3591": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3592": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3593": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3594": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3595": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3596": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3597": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3598": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3599": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3600": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3601": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3602": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3603": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3604": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3605": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3606": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3607": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3608": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3609": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3610": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3611": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3612": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3613": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3614": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3615": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3616": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3617": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3618": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3619": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3620": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3621": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3622": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3623": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3624": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3625": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3626": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3627": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3628": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3629": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3630": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3631": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3632": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3633": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3634": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3635": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3636": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3637": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3638": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3639": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3640": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3641": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3642": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "3643": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3644": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3645": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3646": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3647": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3648": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3649": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3650": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "3651": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3652": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3653": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3654": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3655": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3656": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "3657": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3658": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3659": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3660": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3661": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3662": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3663": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3664": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3665": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3666": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3667": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3668": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3669": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3670": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3671": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3672": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3673": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3674": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3675": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3676": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3677": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3678": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3679": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3680": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3681": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3682": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3683": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3684": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3685": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3686": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3687": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3688": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3689": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3690": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3691": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3692": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3693": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3694": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3695": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3696": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3697": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3698": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3699": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3700": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3701": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3702": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3703": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3704": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3705": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3706": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3707": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3708": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3709": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3710": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3711": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3712": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3713": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3714": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3715": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3716": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3717": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3718": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3719": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3720": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3721": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3722": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3723": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3724": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3725": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3726": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3727": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3728": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3729": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3730": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3731": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3732": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3733": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3734": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3735": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3736": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3737": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3738": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3739": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3740": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3741": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3742": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3743": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3744": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3745": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3746": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3747": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3748": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3749": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3750": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3751": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3752": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3753": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3754": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3755": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3756": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3757": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3758": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3759": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3760": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3761": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3762": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3763": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3764": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3765": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3766": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3767": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3768": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3769": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3770": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3771": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3772": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3773": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3774": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3775": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3776": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3777": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3778": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3779": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3780": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3781": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3782": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3783": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3784": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3785": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3786": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3787": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3788": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3789": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3790": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3791": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3792": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3793": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3794": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3795": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3796": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3797": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3798": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3799": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3800": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3801": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3802": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3803": [ + [ + 0.4375, + 0.0, + 0.4375, + 0.5625, + 0.375, + 0.5625 + ] + ], + "3804": [ + [ + 0.3125, + 0.0, + 0.375, + 0.6875, + 0.375, + 0.5625 + ] + ], + "3805": [ + [ + 0.3125, + 0.0, + 0.375, + 0.625, + 0.375, + 0.6875 + ] + ], + "3806": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 0.375, + 0.625 + ] + ], + "3807": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.9375, + 0.5, + 0.9375 + ], + [ + 0.4375, + 0.5, + 0.4375, + 0.5625, + 0.875, + 0.5625 + ] + ], + "3808": [ + [ + 0.1875, + 0.1875, + 0.5625, + 0.8125, + 0.8125, + 1.0 + ] + ], + "3809": [ + [ + 0.0, + 0.1875, + 0.1875, + 0.4375, + 0.8125, + 0.8125 + ] + ], + "3810": [ + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.4375 + ] + ], + "3811": [ + [ + 0.5625, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "3812": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.4375, + 0.8125 + ] + ], + "3813": [ + [ + 0.1875, + 0.5625, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "3814": [ + [ + 0.1875, + 0.1875, + 0.6875, + 0.8125, + 0.8125, + 1.0 + ] + ], + "3815": [ + [ + 0.0, + 0.1875, + 0.1875, + 0.3125, + 0.8125, + 0.8125 + ] + ], + "3816": [ + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.3125 + ] + ], + "3817": [ + [ + 0.6875, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "3818": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.3125, + 0.8125 + ] + ], + "3819": [ + [ + 0.1875, + 0.6875, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "3820": [ + [ + 0.1875, + 0.1875, + 0.75, + 0.8125, + 0.8125, + 1.0 + ] + ], + "3821": [ + [ + 0.0, + 0.1875, + 0.1875, + 0.25, + 0.8125, + 0.8125 + ] + ], + "3822": [ + [ + 0.1875, + 0.1875, + 0.0, + 0.8125, + 0.8125, + 0.25 + ] + ], + "3823": [ + [ + 0.75, + 0.1875, + 0.1875, + 1.0, + 0.8125, + 0.8125 + ] + ], + "3824": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.8125, + 0.25, + 0.8125 + ] + ], + "3825": [ + [ + 0.1875, + 0.75, + 0.1875, + 0.8125, + 1.0, + 0.8125 + ] + ], + "3826": [ + [ + 0.25, + 0.25, + 0.8125, + 0.75, + 0.75, + 1.0 + ] + ], + "3827": [ + [ + 0.0, + 0.25, + 0.25, + 0.1875, + 0.75, + 0.75 + ] + ], + "3828": [ + [ + 0.25, + 0.25, + 0.0, + 0.75, + 0.75, + 0.1875 + ] + ], + "3829": [ + [ + 0.8125, + 0.25, + 0.25, + 1.0, + 0.75, + 0.75 + ] + ], + "3830": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 0.1875, + 0.75 + ] + ], + "3831": [ + [ + 0.25, + 0.8125, + 0.25, + 0.75, + 1.0, + 0.75 + ] + ], + "3832": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "3833": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3834": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3835": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3836": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3837": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3838": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3839": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3840": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "3841": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3842": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3843": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3844": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3845": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3846": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "3847": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3848": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3849": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3850": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3851": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3852": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3853": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3854": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3855": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3856": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3857": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3858": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3859": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3860": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3861": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3862": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3863": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3864": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3865": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3866": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3867": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3868": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3869": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3870": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3871": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3872": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3873": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3874": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3875": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3876": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3877": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3878": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3879": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3880": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3881": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3882": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "3883": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3884": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3885": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3886": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3887": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3888": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3889": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3890": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3891": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3892": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3893": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3894": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3895": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3896": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3897": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3898": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3899": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3900": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3901": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3902": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3903": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3904": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3905": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3906": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3907": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3908": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3909": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3910": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3911": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3912": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3913": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3914": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3915": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3916": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3917": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3918": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3919": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3920": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3921": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3922": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3923": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3924": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3925": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3926": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3927": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3928": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3929": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3930": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3931": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3932": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3933": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3934": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3935": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3936": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3937": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3938": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3939": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3940": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3941": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3942": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3943": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3944": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3945": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3946": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3947": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3948": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3949": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3950": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3951": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3952": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3953": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3954": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3955": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3956": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3957": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3958": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3959": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3960": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3961": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3962": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3963": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3964": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3965": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3966": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3967": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3968": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3969": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3970": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3971": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3972": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3973": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3974": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3975": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3976": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3977": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "3978": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3979": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3980": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "3981": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3982": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3983": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3984": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3985": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3986": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3987": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3988": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3989": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3990": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "3991": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3992": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "3993": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "3994": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3995": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "3996": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3997": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "3998": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "3999": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4000": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4001": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "4002": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4003": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4004": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4005": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4006": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4007": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "4008": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4009": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4010": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4011": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4012": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4013": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4014": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4015": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4016": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4017": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4018": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4019": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4020": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4021": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4022": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4023": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4024": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4025": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4026": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4027": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4028": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4029": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4030": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4031": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4032": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4033": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4034": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4035": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4036": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4037": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4038": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4039": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4040": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4041": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4042": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4043": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4044": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4045": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4046": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4047": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4048": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4049": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4050": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4051": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4052": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4053": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4054": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4055": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4056": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4057": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4058": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4059": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4060": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4061": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4062": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4063": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4064": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4065": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4066": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4067": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4068": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4069": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4070": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4071": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4072": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4073": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4074": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4075": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4076": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4077": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4078": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4079": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4080": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4081": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4082": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4083": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4084": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4085": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4086": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4087": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4088": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4089": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4090": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4091": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4092": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4093": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4094": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4095": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4096": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4097": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4098": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4099": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4100": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4101": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4102": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4103": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4104": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4105": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4106": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4107": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4108": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4109": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4110": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4111": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4112": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4113": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4114": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4115": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4116": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4117": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4118": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4119": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4120": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4121": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4122": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4123": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4124": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4125": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4126": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4127": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4128": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4129": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4130": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4131": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4132": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4133": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4134": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4135": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4136": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4137": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4138": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4139": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4140": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4141": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4142": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4143": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4144": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4145": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4146": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4147": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4148": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4149": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4150": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4151": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4152": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4153": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4154": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "4155": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4156": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4157": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4158": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4159": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4160": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4161": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4162": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "4163": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4164": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4165": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4166": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4167": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4168": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "4169": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4170": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4171": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4172": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4173": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4174": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4175": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4176": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4177": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4178": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4179": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4180": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4181": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4182": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4183": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4184": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4185": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4186": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4187": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4188": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4189": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4190": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4191": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4192": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4193": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4194": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4195": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4196": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4197": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4198": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4199": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4200": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4201": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4202": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4203": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4204": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4205": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4206": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4207": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4208": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4209": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4210": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4211": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4212": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4213": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4214": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4215": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4216": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4217": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4218": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4219": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4220": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4221": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4222": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4223": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4224": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4225": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4226": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4227": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4228": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4229": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4230": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4231": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4232": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4233": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4234": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4235": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4236": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4237": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4238": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4239": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4240": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4241": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4242": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4243": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4244": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4245": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4246": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4247": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4248": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4249": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4250": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4251": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4252": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4253": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4254": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4255": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4256": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4257": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4258": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4259": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4260": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4261": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4262": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4263": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4264": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4265": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4266": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4267": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4268": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4269": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4270": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4271": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4272": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4273": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4274": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4275": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4276": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4277": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4278": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4279": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4280": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4281": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4282": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4283": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4284": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4285": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4286": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4287": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4288": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4289": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4290": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4291": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4292": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4293": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4294": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4295": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4296": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4297": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4298": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4299": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4300": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4301": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4302": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4303": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4304": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4305": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4306": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4307": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4308": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4309": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4310": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4311": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4312": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4313": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4314": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4315": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ] + ], + "4316": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.5, + 1.0 + ] + ], + "4317": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.5625, + 1.0, + 0.5625 + ] + ], + "4318": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.5625, + 1.0, + 0.5625 + ] + ], + "4319": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.5625, + 1.0, + 0.5625 + ] + ], + "4320": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.5625, + 1.0, + 0.5625 + ] + ], + "4321": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.5625, + 0.6875, + 0.5625 + ] + ], + "4322": [ + [ + 0.1875, + 0.0, + 0.1875, + 0.5625, + 0.6875, + 0.5625 + ] + ], + "4323": [ + [ + 0.1875, + 0.3125, + 0.1875, + 0.5625, + 1.0, + 0.5625 + ] + ], + "4324": [ + [ + 0.1875, + 0.3125, + 0.1875, + 0.5625, + 1.0, + 0.5625 + ] + ], + "4325": [ + [ + 0.125, + 0.0, + 0.125, + 0.625, + 1.0, + 0.625 + ] + ], + "4326": [ + [ + 0.125, + 0.0, + 0.125, + 0.625, + 1.0, + 0.625 + ] + ], + "4327": [ + [ + 0.125, + 0.0, + 0.125, + 0.625, + 1.0, + 0.625 + ] + ], + "4328": [ + [ + 0.125, + 0.0, + 0.125, + 0.625, + 1.0, + 0.625 + ] + ], + "4329": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.6875, + 1.0, + 0.6875 + ] + ], + "4330": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.6875, + 1.0, + 0.6875 + ] + ], + "4331": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.6875, + 1.0, + 0.6875 + ] + ], + "4332": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.6875, + 1.0, + 0.6875 + ] + ], + "4333": [ + [ + 0.0, + 0.0, + 0.0, + 0.75, + 1.0, + 0.75 + ] + ], + "4334": [ + [ + 0.0, + 0.0, + 0.0, + 0.75, + 1.0, + 0.75 + ] + ], + "4335": [ + [ + 0.0, + 0.0, + 0.0, + 0.75, + 1.0, + 0.75 + ] + ], + "4336": [ + [ + 0.0, + 0.0, + 0.0, + 0.75, + 1.0, + 0.75 + ] + ], + "4337": [ + [ + 0.375, + 0.0, + 0.375, + 0.625, + 1.0, + 0.625 + ], + [ + 0.0, + 0.5, + 0.0, + 0.375, + 1.0, + 1.0 + ], + [ + 0.375, + 0.5, + 0.0, + 1.0, + 1.0, + 0.375 + ], + [ + 0.375, + 0.5, + 0.625, + 1.0, + 1.0, + 1.0 + ], + [ + 0.625, + 0.5, + 0.375, + 1.0, + 1.0, + 0.625 + ] + ], + "4338": [ + [ + 0.0, + 0.6875, + 0.0, + 1.0, + 0.9375, + 1.0 + ] + ], + "4339": [ + [ + 0.0, + 0.6875, + 0.0, + 1.0, + 0.9375, + 1.0 + ] + ], + "4340": [ + [ + 0.0, + 0.6875, + 0.0, + 1.0, + 0.8125, + 1.0 + ] + ], + "4341": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.875, + 1.0 + ] + ], + "4342": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "4343": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4344": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4345": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4346": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4347": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4348": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4349": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4350": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "4351": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4352": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4353": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4354": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4355": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4356": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "4357": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4358": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4359": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4360": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4361": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4362": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4363": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4364": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4365": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4366": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4367": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4368": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4369": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4370": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4371": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4372": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4373": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4374": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4375": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4376": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4377": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4378": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4379": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4380": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4381": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4382": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4383": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4384": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4385": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4386": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4387": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4388": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4389": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4390": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4391": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4392": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4393": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4394": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4395": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4396": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4397": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4398": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4399": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4400": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4401": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4402": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4403": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4404": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4405": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4406": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4407": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4408": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4409": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4410": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4411": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4412": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4413": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4414": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4415": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4416": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4417": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4418": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4419": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4420": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4421": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4422": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4423": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4424": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4425": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4426": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4427": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4428": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4429": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4430": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4431": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4432": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4433": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4434": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4435": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4436": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4437": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4438": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4439": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4440": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4441": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4442": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4443": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4444": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4445": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4446": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4447": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4448": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4449": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4450": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4451": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4452": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4453": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4454": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4455": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4456": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4457": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4458": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4459": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4460": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4461": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4462": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4463": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4464": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4465": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4466": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4467": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4468": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4469": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4470": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4471": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4472": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4473": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4474": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4475": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4476": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4477": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4478": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4479": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4480": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4481": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4482": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4483": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4484": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4485": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4486": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4487": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4488": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4489": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4490": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4491": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4492": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4493": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4494": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4495": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4496": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4497": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4498": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4499": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4500": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4501": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4502": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4503": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "4504": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4505": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4506": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4507": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4508": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4509": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4510": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4511": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "4512": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4513": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4514": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4515": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4516": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4517": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "4518": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4519": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4520": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4521": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4522": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4523": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4524": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4525": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4526": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4527": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4528": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4529": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4530": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4531": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4532": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4533": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4534": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4535": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4536": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4537": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4538": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4539": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4540": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4541": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4542": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4543": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4544": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4545": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4546": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4547": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4548": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4549": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4550": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4551": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4552": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4553": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4554": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4555": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4556": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4557": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4558": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4559": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4560": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4561": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4562": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4563": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4564": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4565": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4566": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4567": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4568": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4569": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4570": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4571": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4572": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4573": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4574": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4575": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4576": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4577": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4578": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4579": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4580": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4581": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4582": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4583": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4584": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4585": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4586": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4587": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4588": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4589": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4590": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4591": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4592": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4593": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4594": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4595": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4596": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4597": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4598": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4599": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4600": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4601": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4602": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4603": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4604": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4605": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4606": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4607": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4608": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4609": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4610": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4611": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4612": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4613": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4614": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4615": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4616": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4617": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4618": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4619": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4620": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4621": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4622": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4623": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4624": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4625": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4626": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4627": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4628": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4629": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4630": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4631": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4632": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4633": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4634": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4635": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4636": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4637": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4638": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4639": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4640": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4641": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4642": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4643": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4644": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4645": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4646": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4647": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4648": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4649": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4650": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4651": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4652": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4653": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4654": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4655": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4656": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4657": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4658": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4659": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4660": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4661": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4662": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4663": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4664": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "4665": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4666": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4667": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4668": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4669": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4670": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4671": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4672": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "4673": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4674": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4675": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4676": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4677": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4678": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "4679": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4680": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4681": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4682": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4683": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4684": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4685": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4686": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4687": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4688": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4689": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4690": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4691": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4692": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4693": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4694": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4695": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4696": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4697": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4698": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4699": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4700": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4701": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4702": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4703": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4704": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4705": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4706": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4707": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4708": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4709": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4710": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4711": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4712": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4713": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4714": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4715": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4716": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4717": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4718": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4719": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4720": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4721": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4722": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4723": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4724": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4725": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4726": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4727": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4728": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4729": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4730": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4731": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4732": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4733": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4734": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4735": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4736": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4737": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4738": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4739": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4740": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4741": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4742": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4743": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4744": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4745": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4746": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4747": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4748": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4749": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4750": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4751": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4752": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4753": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4754": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4755": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4756": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4757": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4758": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4759": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4760": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4761": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4762": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4763": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4764": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4765": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4766": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4767": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4768": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4769": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4770": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4771": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4772": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4773": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4774": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4775": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4776": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4777": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4778": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4779": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4780": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4781": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4782": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4783": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4784": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4785": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4786": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4787": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4788": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4789": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4790": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4791": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4792": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4793": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4794": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4795": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4796": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4797": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4798": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4799": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4800": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4801": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4802": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4803": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4804": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4805": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4806": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4807": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4808": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4809": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4810": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4811": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4812": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4813": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4814": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4815": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4816": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4817": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4818": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4819": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4820": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4821": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4822": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4823": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4824": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4825": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ] + ], + "4826": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4827": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4828": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4829": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4830": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4831": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4832": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4833": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "4834": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4835": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4836": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4837": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4838": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4839": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ] + ], + "4840": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4841": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4842": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4843": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4844": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4845": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4846": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4847": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4848": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4849": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4850": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4851": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4852": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4853": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4854": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4855": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4856": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4857": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4858": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4859": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4860": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4861": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4862": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4863": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ] + ], + "4864": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4865": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4866": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4867": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4868": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4869": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4870": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4871": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4872": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4873": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4874": [ + [ + 0.0, + 0.0, + 0.3125, + 0.75, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4875": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ] + ], + "4876": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4877": [ + [ + 0.0, + 0.0, + 0.3125, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4878": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4879": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4880": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4881": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4882": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4883": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4884": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4885": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4886": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4887": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4888": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4889": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4890": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4891": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4892": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4893": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4894": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4895": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4896": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4897": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4898": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4899": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4900": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4901": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4902": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4903": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4904": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4905": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4906": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4907": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4908": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4909": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4910": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4911": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4912": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4913": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4914": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4915": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4916": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4917": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4918": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4919": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4920": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4921": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4922": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4923": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4924": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4925": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4926": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4927": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4928": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4929": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4930": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4931": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4932": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4933": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4934": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ] + ], + "4935": [ + [ + 0.3125, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4936": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4937": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4938": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4939": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4940": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4941": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4942": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4943": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4944": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4945": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4946": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4947": [ + [ + 0.3125, + 0.0, + 0.3125, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4948": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4949": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4950": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4951": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4952": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4953": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4954": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4955": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4956": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4957": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4958": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4959": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4960": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4961": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4962": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4963": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4964": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4965": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4966": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4967": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4968": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4969": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4970": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ] + ], + "4971": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.6875 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4972": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4973": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ] + ], + "4974": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4975": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4976": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4977": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4978": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4979": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4980": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.75, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4981": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4982": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.25, + 0.0, + 0.25, + 0.75, + 1.5, + 0.3125 + ], + [ + 0.25, + 0.0, + 0.6875, + 0.75, + 1.5, + 0.75 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.25 + ], + [ + 0.3125, + 0.0, + 0.75, + 0.6875, + 1.5, + 1.0 + ] + ], + "4983": [ + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 1.0 + ], + [ + 0.6875, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ] + ], + "4984": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4985": [ + [ + 0.0, + 0.0, + 0.3125, + 1.0, + 1.5, + 0.6875 + ], + [ + 0.3125, + 0.0, + 0.0, + 0.6875, + 1.5, + 0.3125 + ], + [ + 0.3125, + 0.0, + 0.6875, + 0.6875, + 1.5, + 1.0 + ] + ], + "4986": [ + [ + 0.0625, + 0.0, + 0.0625, + 0.9375, + 1.0, + 0.9375 + ] + ], + "4987": [ + [ + 0.25, + 0.0, + 0.25, + 0.75, + 0.5, + 0.75 + ] + ], + "4988": [ + [ + 0.0, + 0.0, + 0.0, + 1.0, + 0.0625, + 1.0 + ] + ] + } +} \ No newline at end of file diff --git a/data/pc/1.21.4/blocks.json b/data/pc/1.21.4/blocks.json new file mode 100644 index 000000000..9529d49c1 --- /dev/null +++ b/data/pc/1.21.4/blocks.json @@ -0,0 +1,41063 @@ +[ + { + "id": 0, + "name": "air", + "displayName": "Air", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 0, + "minStateId": 0, + "maxStateId": 0, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 1, + "name": "stone", + "displayName": "Stone", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1, + "minStateId": 1, + "maxStateId": 1, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 35 + ], + "boundingBox": "block" + }, + { + "id": 2, + "name": "granite", + "displayName": "Granite", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2, + "minStateId": 2, + "maxStateId": 2, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 2 + ], + "boundingBox": "block" + }, + { + "id": 3, + "name": "polished_granite", + "displayName": "Polished Granite", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 3, + "minStateId": 3, + "maxStateId": 3, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 3 + ], + "boundingBox": "block" + }, + { + "id": 4, + "name": "diorite", + "displayName": "Diorite", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4, + "minStateId": 4, + "maxStateId": 4, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 4 + ], + "boundingBox": "block" + }, + { + "id": 5, + "name": "polished_diorite", + "displayName": "Polished Diorite", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5, + "minStateId": 5, + "maxStateId": 5, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 5 + ], + "boundingBox": "block" + }, + { + "id": 6, + "name": "andesite", + "displayName": "Andesite", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6, + "minStateId": 6, + "maxStateId": 6, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 6 + ], + "boundingBox": "block" + }, + { + "id": 7, + "name": "polished_andesite", + "displayName": "Polished Andesite", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7, + "minStateId": 7, + "maxStateId": 7, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 7 + ], + "boundingBox": "block" + }, + { + "id": 8, + "name": "grass_block", + "displayName": "Grass Block", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9, + "minStateId": 8, + "maxStateId": 9, + "states": [ + { + "name": "snowy", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 28 + ], + "boundingBox": "block" + }, + { + "id": 9, + "name": "dirt", + "displayName": "Dirt", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10, + "minStateId": 10, + "maxStateId": 10, + "states": [], + "drops": [ + 28 + ], + "boundingBox": "block" + }, + { + "id": 10, + "name": "coarse_dirt", + "displayName": "Coarse Dirt", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11, + "minStateId": 11, + "maxStateId": 11, + "states": [], + "drops": [ + 29 + ], + "boundingBox": "block" + }, + { + "id": 11, + "name": "podzol", + "displayName": "Podzol", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13, + "minStateId": 12, + "maxStateId": 13, + "states": [ + { + "name": "snowy", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 28 + ], + "boundingBox": "block" + }, + { + "id": 12, + "name": "cobblestone", + "displayName": "Cobblestone", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 14, + "minStateId": 14, + "maxStateId": 14, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 35 + ], + "boundingBox": "block" + }, + { + "id": 13, + "name": "oak_planks", + "displayName": "Oak Planks", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15, + "minStateId": 15, + "maxStateId": 15, + "states": [], + "drops": [ + 36 + ], + "boundingBox": "block" + }, + { + "id": 14, + "name": "spruce_planks", + "displayName": "Spruce Planks", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16, + "minStateId": 16, + "maxStateId": 16, + "states": [], + "drops": [ + 37 + ], + "boundingBox": "block" + }, + { + "id": 15, + "name": "birch_planks", + "displayName": "Birch Planks", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17, + "minStateId": 17, + "maxStateId": 17, + "states": [], + "drops": [ + 38 + ], + "boundingBox": "block" + }, + { + "id": 16, + "name": "jungle_planks", + "displayName": "Jungle Planks", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18, + "minStateId": 18, + "maxStateId": 18, + "states": [], + "drops": [ + 39 + ], + "boundingBox": "block" + }, + { + "id": 17, + "name": "acacia_planks", + "displayName": "Acacia Planks", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19, + "minStateId": 19, + "maxStateId": 19, + "states": [], + "drops": [ + 40 + ], + "boundingBox": "block" + }, + { + "id": 18, + "name": "cherry_planks", + "displayName": "Cherry Planks", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20, + "minStateId": 20, + "maxStateId": 20, + "states": [], + "drops": [ + 41 + ], + "boundingBox": "block" + }, + { + "id": 19, + "name": "dark_oak_planks", + "displayName": "Dark Oak Planks", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 21, + "minStateId": 21, + "maxStateId": 21, + "states": [], + "drops": [ + 42 + ], + "boundingBox": "block" + }, + { + "id": 20, + "name": "pale_oak_wood", + "displayName": "Pale Oak Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23, + "minStateId": 22, + "maxStateId": 24, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 177 + ], + "boundingBox": "block" + }, + { + "id": 21, + "name": "pale_oak_planks", + "displayName": "Pale Oak Planks", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 25, + "minStateId": 25, + "maxStateId": 25, + "states": [], + "drops": [ + 43 + ], + "boundingBox": "block" + }, + { + "id": 22, + "name": "mangrove_planks", + "displayName": "Mangrove Planks", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 26, + "minStateId": 26, + "maxStateId": 26, + "states": [], + "drops": [ + 44 + ], + "boundingBox": "block" + }, + { + "id": 23, + "name": "bamboo_planks", + "displayName": "Bamboo Planks", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 27, + "minStateId": 27, + "maxStateId": 27, + "states": [], + "drops": [ + 45 + ], + "boundingBox": "block" + }, + { + "id": 24, + "name": "bamboo_mosaic", + "displayName": "Bamboo Mosaic", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 28, + "minStateId": 28, + "maxStateId": 28, + "states": [], + "drops": [ + 48 + ], + "boundingBox": "block" + }, + { + "id": 25, + "name": "oak_sapling", + "displayName": "Oak Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 29, + "minStateId": 29, + "maxStateId": 30, + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 49 + ], + "boundingBox": "empty" + }, + { + "id": 26, + "name": "spruce_sapling", + "displayName": "Spruce Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 31, + "minStateId": 31, + "maxStateId": 32, + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 50 + ], + "boundingBox": "empty" + }, + { + "id": 27, + "name": "birch_sapling", + "displayName": "Birch Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 33, + "minStateId": 33, + "maxStateId": 34, + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 51 + ], + "boundingBox": "empty" + }, + { + "id": 28, + "name": "jungle_sapling", + "displayName": "Jungle Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 35, + "minStateId": 35, + "maxStateId": 36, + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 52 + ], + "boundingBox": "empty" + }, + { + "id": 29, + "name": "acacia_sapling", + "displayName": "Acacia Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 37, + "minStateId": 37, + "maxStateId": 38, + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 53 + ], + "boundingBox": "empty" + }, + { + "id": 30, + "name": "cherry_sapling", + "displayName": "Cherry Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 39, + "minStateId": 39, + "maxStateId": 40, + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 54 + ], + "boundingBox": "empty" + }, + { + "id": 31, + "name": "dark_oak_sapling", + "displayName": "Dark Oak Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 41, + "minStateId": 41, + "maxStateId": 42, + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 55 + ], + "boundingBox": "empty" + }, + { + "id": 32, + "name": "pale_oak_sapling", + "displayName": "Pale Oak Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 43, + "minStateId": 43, + "maxStateId": 44, + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 56 + ], + "boundingBox": "empty" + }, + { + "id": 33, + "name": "mangrove_propagule", + "displayName": "Mangrove Propagule", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 50, + "minStateId": 45, + "maxStateId": 84, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 5, + "values": [ + "0", + "1", + "2", + "3", + "4" + ] + }, + { + "name": "hanging", + "type": "bool", + "num_values": 2 + }, + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 34, + "name": "bedrock", + "displayName": "Bedrock", + "hardness": -1.0, + "resistance": 3600000.0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 85, + "minStateId": 85, + "maxStateId": 85, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 35, + "name": "water", + "displayName": "Water", + "hardness": 100.0, + "resistance": 100.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 86, + "minStateId": 86, + "maxStateId": 101, + "states": [ + { + "name": "level", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 36, + "name": "lava", + "displayName": "Lava", + "hardness": 100.0, + "resistance": 100.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 1, + "defaultState": 102, + "minStateId": 102, + "maxStateId": 117, + "states": [ + { + "name": "level", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 37, + "name": "sand", + "displayName": "Sand", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 118, + "minStateId": 118, + "maxStateId": 118, + "states": [], + "drops": [ + 59 + ], + "boundingBox": "block" + }, + { + "id": 38, + "name": "suspicious_sand", + "displayName": "Suspicious Sand", + "hardness": 0.25, + "resistance": 0.25, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 119, + "minStateId": 119, + "maxStateId": 122, + "states": [ + { + "name": "dusted", + "type": "int", + "num_values": 4, + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 39, + "name": "red_sand", + "displayName": "Red Sand", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 123, + "minStateId": 123, + "maxStateId": 123, + "states": [], + "drops": [ + 62 + ], + "boundingBox": "block" + }, + { + "id": 40, + "name": "gravel", + "displayName": "Gravel", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 124, + "minStateId": 124, + "maxStateId": 124, + "states": [], + "drops": [ + 63 + ], + "boundingBox": "block" + }, + { + "id": 41, + "name": "suspicious_gravel", + "displayName": "Suspicious Gravel", + "hardness": 0.25, + "resistance": 0.25, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 125, + "minStateId": 125, + "maxStateId": 128, + "states": [ + { + "name": "dusted", + "type": "int", + "num_values": 4, + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 42, + "name": "gold_ore", + "displayName": "Gold Ore", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 129, + "minStateId": 129, + "maxStateId": 129, + "states": [], + "harvestTools": { + "866": true, + "871": true, + "876": true + }, + "drops": [ + 845 + ], + "boundingBox": "block" + }, + { + "id": 43, + "name": "deepslate_gold_ore", + "displayName": "Deepslate Gold Ore", + "hardness": 4.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 130, + "minStateId": 130, + "maxStateId": 130, + "states": [], + "harvestTools": { + "866": true, + "871": true, + "876": true + }, + "drops": [ + 845 + ], + "boundingBox": "block" + }, + { + "id": 44, + "name": "iron_ore", + "displayName": "Iron Ore", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 131, + "minStateId": 131, + "maxStateId": 131, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 841 + ], + "boundingBox": "block" + }, + { + "id": 45, + "name": "deepslate_iron_ore", + "displayName": "Deepslate Iron Ore", + "hardness": 4.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 132, + "minStateId": 132, + "maxStateId": 132, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 841 + ], + "boundingBox": "block" + }, + { + "id": 46, + "name": "coal_ore", + "displayName": "Coal Ore", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 133, + "minStateId": 133, + "maxStateId": 133, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 834 + ], + "boundingBox": "block" + }, + { + "id": 47, + "name": "deepslate_coal_ore", + "displayName": "Deepslate Coal Ore", + "hardness": 4.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 134, + "minStateId": 134, + "maxStateId": 134, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 834 + ], + "boundingBox": "block" + }, + { + "id": 48, + "name": "nether_gold_ore", + "displayName": "Nether Gold Ore", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 135, + "minStateId": 135, + "maxStateId": 135, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1045 + ], + "boundingBox": "block" + }, + { + "id": 49, + "name": "oak_log", + "displayName": "Oak Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 137, + "minStateId": 136, + "maxStateId": 138, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 134 + ], + "boundingBox": "block" + }, + { + "id": 50, + "name": "spruce_log", + "displayName": "Spruce Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 140, + "minStateId": 139, + "maxStateId": 141, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 135 + ], + "boundingBox": "block" + }, + { + "id": 51, + "name": "birch_log", + "displayName": "Birch Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 143, + "minStateId": 142, + "maxStateId": 144, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 136 + ], + "boundingBox": "block" + }, + { + "id": 52, + "name": "jungle_log", + "displayName": "Jungle Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 146, + "minStateId": 145, + "maxStateId": 147, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 137 + ], + "boundingBox": "block" + }, + { + "id": 53, + "name": "acacia_log", + "displayName": "Acacia Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 149, + "minStateId": 148, + "maxStateId": 150, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 138 + ], + "boundingBox": "block" + }, + { + "id": 54, + "name": "cherry_log", + "displayName": "Cherry Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 152, + "minStateId": 151, + "maxStateId": 153, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 139 + ], + "boundingBox": "block" + }, + { + "id": 55, + "name": "dark_oak_log", + "displayName": "Dark Oak Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 155, + "minStateId": 154, + "maxStateId": 156, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 141 + ], + "boundingBox": "block" + }, + { + "id": 56, + "name": "pale_oak_log", + "displayName": "Pale Oak Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 158, + "minStateId": 157, + "maxStateId": 159, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 140 + ], + "boundingBox": "block" + }, + { + "id": 57, + "name": "mangrove_log", + "displayName": "Mangrove Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 161, + "minStateId": 160, + "maxStateId": 162, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 142 + ], + "boundingBox": "block" + }, + { + "id": 58, + "name": "mangrove_roots", + "displayName": "Mangrove Roots", + "hardness": 0.7, + "resistance": 0.7, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 164, + "minStateId": 163, + "maxStateId": 164, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 143 + ], + "boundingBox": "block" + }, + { + "id": 59, + "name": "muddy_mangrove_roots", + "displayName": "Muddy Mangrove Roots", + "hardness": 0.7, + "resistance": 0.7, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 166, + "minStateId": 165, + "maxStateId": 167, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 144 + ], + "boundingBox": "block" + }, + { + "id": 60, + "name": "bamboo_block", + "displayName": "Block of Bamboo", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 169, + "minStateId": 168, + "maxStateId": 170, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 147 + ], + "boundingBox": "block" + }, + { + "id": 61, + "name": "stripped_spruce_log", + "displayName": "Stripped Spruce Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 172, + "minStateId": 171, + "maxStateId": 173, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 149 + ], + "boundingBox": "block" + }, + { + "id": 62, + "name": "stripped_birch_log", + "displayName": "Stripped Birch Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 175, + "minStateId": 174, + "maxStateId": 176, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 150 + ], + "boundingBox": "block" + }, + { + "id": 63, + "name": "stripped_jungle_log", + "displayName": "Stripped Jungle Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 178, + "minStateId": 177, + "maxStateId": 179, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 151 + ], + "boundingBox": "block" + }, + { + "id": 64, + "name": "stripped_acacia_log", + "displayName": "Stripped Acacia Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 181, + "minStateId": 180, + "maxStateId": 182, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 152 + ], + "boundingBox": "block" + }, + { + "id": 65, + "name": "stripped_cherry_log", + "displayName": "Stripped Cherry Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 184, + "minStateId": 183, + "maxStateId": 185, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 153 + ], + "boundingBox": "block" + }, + { + "id": 66, + "name": "stripped_dark_oak_log", + "displayName": "Stripped Dark Oak Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 187, + "minStateId": 186, + "maxStateId": 188, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 154 + ], + "boundingBox": "block" + }, + { + "id": 67, + "name": "stripped_pale_oak_log", + "displayName": "Stripped Pale Oak Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 190, + "minStateId": 189, + "maxStateId": 191, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 155 + ], + "boundingBox": "block" + }, + { + "id": 68, + "name": "stripped_oak_log", + "displayName": "Stripped Oak Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 193, + "minStateId": 192, + "maxStateId": 194, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 148 + ], + "boundingBox": "block" + }, + { + "id": 69, + "name": "stripped_mangrove_log", + "displayName": "Stripped Mangrove Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 196, + "minStateId": 195, + "maxStateId": 197, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 156 + ], + "boundingBox": "block" + }, + { + "id": 70, + "name": "stripped_bamboo_block", + "displayName": "Block of Stripped Bamboo", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 199, + "minStateId": 198, + "maxStateId": 200, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 170 + ], + "boundingBox": "block" + }, + { + "id": 71, + "name": "oak_wood", + "displayName": "Oak Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 202, + "minStateId": 201, + "maxStateId": 203, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 171 + ], + "boundingBox": "block" + }, + { + "id": 72, + "name": "spruce_wood", + "displayName": "Spruce Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 205, + "minStateId": 204, + "maxStateId": 206, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 172 + ], + "boundingBox": "block" + }, + { + "id": 73, + "name": "birch_wood", + "displayName": "Birch Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 208, + "minStateId": 207, + "maxStateId": 209, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 173 + ], + "boundingBox": "block" + }, + { + "id": 74, + "name": "jungle_wood", + "displayName": "Jungle Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 211, + "minStateId": 210, + "maxStateId": 212, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 174 + ], + "boundingBox": "block" + }, + { + "id": 75, + "name": "acacia_wood", + "displayName": "Acacia Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 214, + "minStateId": 213, + "maxStateId": 215, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 175 + ], + "boundingBox": "block" + }, + { + "id": 76, + "name": "cherry_wood", + "displayName": "Cherry Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 217, + "minStateId": 216, + "maxStateId": 218, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 176 + ], + "boundingBox": "block" + }, + { + "id": 77, + "name": "dark_oak_wood", + "displayName": "Dark Oak Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 220, + "minStateId": 219, + "maxStateId": 221, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 178 + ], + "boundingBox": "block" + }, + { + "id": 78, + "name": "mangrove_wood", + "displayName": "Mangrove Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 223, + "minStateId": 222, + "maxStateId": 224, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 179 + ], + "boundingBox": "block" + }, + { + "id": 79, + "name": "stripped_oak_wood", + "displayName": "Stripped Oak Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 226, + "minStateId": 225, + "maxStateId": 227, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 159 + ], + "boundingBox": "block" + }, + { + "id": 80, + "name": "stripped_spruce_wood", + "displayName": "Stripped Spruce Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 229, + "minStateId": 228, + "maxStateId": 230, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 160 + ], + "boundingBox": "block" + }, + { + "id": 81, + "name": "stripped_birch_wood", + "displayName": "Stripped Birch Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 232, + "minStateId": 231, + "maxStateId": 233, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 161 + ], + "boundingBox": "block" + }, + { + "id": 82, + "name": "stripped_jungle_wood", + "displayName": "Stripped Jungle Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 235, + "minStateId": 234, + "maxStateId": 236, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 162 + ], + "boundingBox": "block" + }, + { + "id": 83, + "name": "stripped_acacia_wood", + "displayName": "Stripped Acacia Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 238, + "minStateId": 237, + "maxStateId": 239, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 163 + ], + "boundingBox": "block" + }, + { + "id": 84, + "name": "stripped_cherry_wood", + "displayName": "Stripped Cherry Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 241, + "minStateId": 240, + "maxStateId": 242, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 164 + ], + "boundingBox": "block" + }, + { + "id": 85, + "name": "stripped_dark_oak_wood", + "displayName": "Stripped Dark Oak Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 244, + "minStateId": 243, + "maxStateId": 245, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 165 + ], + "boundingBox": "block" + }, + { + "id": 86, + "name": "stripped_pale_oak_wood", + "displayName": "Stripped Pale Oak Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 247, + "minStateId": 246, + "maxStateId": 248, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 166 + ], + "boundingBox": "block" + }, + { + "id": 87, + "name": "stripped_mangrove_wood", + "displayName": "Stripped Mangrove Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 250, + "minStateId": 249, + "maxStateId": 251, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 167 + ], + "boundingBox": "block" + }, + { + "id": 88, + "name": "oak_leaves", + "displayName": "Oak Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 279, + "minStateId": 252, + "maxStateId": 279, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 89, + "name": "spruce_leaves", + "displayName": "Spruce Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 307, + "minStateId": 280, + "maxStateId": 307, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 90, + "name": "birch_leaves", + "displayName": "Birch Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 335, + "minStateId": 308, + "maxStateId": 335, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 91, + "name": "jungle_leaves", + "displayName": "Jungle Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 363, + "minStateId": 336, + "maxStateId": 363, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 92, + "name": "acacia_leaves", + "displayName": "Acacia Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 391, + "minStateId": 364, + "maxStateId": 391, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 93, + "name": "cherry_leaves", + "displayName": "Cherry Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 419, + "minStateId": 392, + "maxStateId": 419, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 94, + "name": "dark_oak_leaves", + "displayName": "Dark Oak Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 447, + "minStateId": 420, + "maxStateId": 447, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 95, + "name": "pale_oak_leaves", + "displayName": "Pale Oak Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 475, + "minStateId": 448, + "maxStateId": 475, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 96, + "name": "mangrove_leaves", + "displayName": "Mangrove Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 503, + "minStateId": 476, + "maxStateId": 503, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 97, + "name": "azalea_leaves", + "displayName": "Azalea Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 531, + "minStateId": 504, + "maxStateId": 531, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 98, + "name": "flowering_azalea_leaves", + "displayName": "Flowering Azalea Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 559, + "minStateId": 532, + "maxStateId": 559, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 99, + "name": "sponge", + "displayName": "Sponge", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 560, + "minStateId": 560, + "maxStateId": 560, + "states": [], + "drops": [ + 193 + ], + "boundingBox": "block" + }, + { + "id": 100, + "name": "wet_sponge", + "displayName": "Wet Sponge", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 561, + "minStateId": 561, + "maxStateId": 561, + "states": [], + "drops": [ + 194 + ], + "boundingBox": "block" + }, + { + "id": 101, + "name": "glass", + "displayName": "Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 562, + "minStateId": 562, + "maxStateId": 562, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 102, + "name": "lapis_ore", + "displayName": "Lapis Lazuli Ore", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 563, + "minStateId": 563, + "maxStateId": 563, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 838 + ], + "boundingBox": "block" + }, + { + "id": 103, + "name": "deepslate_lapis_ore", + "displayName": "Deepslate Lapis Lazuli Ore", + "hardness": 4.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 564, + "minStateId": 564, + "maxStateId": 564, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 838 + ], + "boundingBox": "block" + }, + { + "id": 104, + "name": "lapis_block", + "displayName": "Block of Lapis Lazuli", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 565, + "minStateId": 565, + "maxStateId": 565, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 197 + ], + "boundingBox": "block" + }, + { + "id": 105, + "name": "dispenser", + "displayName": "Dispenser", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 567, + "minStateId": 566, + "maxStateId": 577, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "triggered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 691 + ], + "boundingBox": "block" + }, + { + "id": 106, + "name": "sandstone", + "displayName": "Sandstone", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 578, + "minStateId": 578, + "maxStateId": 578, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 198 + ], + "boundingBox": "block" + }, + { + "id": 107, + "name": "chiseled_sandstone", + "displayName": "Chiseled Sandstone", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 579, + "minStateId": 579, + "maxStateId": 579, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 199 + ], + "boundingBox": "block" + }, + { + "id": 108, + "name": "cut_sandstone", + "displayName": "Cut Sandstone", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 580, + "minStateId": 580, + "maxStateId": 580, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 200 + ], + "boundingBox": "block" + }, + { + "id": 109, + "name": "note_block", + "displayName": "Note Block", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 582, + "minStateId": 581, + "maxStateId": 1730, + "states": [ + { + "name": "instrument", + "type": "enum", + "num_values": 23, + "values": [ + "harp", + "basedrum", + "snare", + "hat", + "bass", + "flute", + "bell", + "guitar", + "chime", + "xylophone", + "iron_xylophone", + "cow_bell", + "didgeridoo", + "bit", + "banjo", + "pling", + "zombie", + "skeleton", + "creeper", + "dragon", + "wither_skeleton", + "piglin", + "custom_head" + ] + }, + { + "name": "note", + "type": "int", + "num_values": 25, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 704 + ], + "boundingBox": "block" + }, + { + "id": 110, + "name": "white_bed", + "displayName": "White Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1734, + "minStateId": 1731, + "maxStateId": 1746, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 111, + "name": "orange_bed", + "displayName": "Orange Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1750, + "minStateId": 1747, + "maxStateId": 1762, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 112, + "name": "magenta_bed", + "displayName": "Magenta Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1766, + "minStateId": 1763, + "maxStateId": 1778, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 113, + "name": "light_blue_bed", + "displayName": "Light Blue Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1782, + "minStateId": 1779, + "maxStateId": 1794, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 114, + "name": "yellow_bed", + "displayName": "Yellow Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1798, + "minStateId": 1795, + "maxStateId": 1810, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 115, + "name": "lime_bed", + "displayName": "Lime Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1814, + "minStateId": 1811, + "maxStateId": 1826, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 116, + "name": "pink_bed", + "displayName": "Pink Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1830, + "minStateId": 1827, + "maxStateId": 1842, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 117, + "name": "gray_bed", + "displayName": "Gray Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1846, + "minStateId": 1843, + "maxStateId": 1858, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 118, + "name": "light_gray_bed", + "displayName": "Light Gray Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1862, + "minStateId": 1859, + "maxStateId": 1874, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 119, + "name": "cyan_bed", + "displayName": "Cyan Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1878, + "minStateId": 1875, + "maxStateId": 1890, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 120, + "name": "purple_bed", + "displayName": "Purple Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1894, + "minStateId": 1891, + "maxStateId": 1906, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 121, + "name": "blue_bed", + "displayName": "Blue Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1910, + "minStateId": 1907, + "maxStateId": 1922, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 122, + "name": "brown_bed", + "displayName": "Brown Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1926, + "minStateId": 1923, + "maxStateId": 1938, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 123, + "name": "green_bed", + "displayName": "Green Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1942, + "minStateId": 1939, + "maxStateId": 1954, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 124, + "name": "red_bed", + "displayName": "Red Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1958, + "minStateId": 1955, + "maxStateId": 1970, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 125, + "name": "black_bed", + "displayName": "Black Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1974, + "minStateId": 1971, + "maxStateId": 1986, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 126, + "name": "powered_rail", + "displayName": "Powered Rail", + "hardness": 0.7, + "resistance": 0.7, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2000, + "minStateId": 1987, + "maxStateId": 2010, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "shape", + "type": "enum", + "num_values": 6, + "values": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 789 + ], + "boundingBox": "empty" + }, + { + "id": 127, + "name": "detector_rail", + "displayName": "Detector Rail", + "hardness": 0.7, + "resistance": 0.7, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2024, + "minStateId": 2011, + "maxStateId": 2034, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "shape", + "type": "enum", + "num_values": 6, + "values": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 790 + ], + "boundingBox": "empty" + }, + { + "id": 128, + "name": "sticky_piston", + "displayName": "Sticky Piston", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2041, + "minStateId": 2035, + "maxStateId": 2046, + "states": [ + { + "name": "extended", + "type": "bool", + "num_values": 2 + }, + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 686 + ], + "boundingBox": "block" + }, + { + "id": 129, + "name": "cobweb", + "displayName": "Cobweb", + "hardness": 4.0, + "resistance": 4.0, + "stackSize": 64, + "diggable": true, + "material": "coweb", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 2047, + "minStateId": 2047, + "maxStateId": 2047, + "states": [], + "harvestTools": { + "849": true, + "854": true, + "859": true, + "864": true, + "869": true, + "874": true, + "1032": true + }, + "drops": [ + 881 + ], + "boundingBox": "empty" + }, + { + "id": 130, + "name": "short_grass", + "displayName": "Short Grass", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2048, + "minStateId": 2048, + "maxStateId": 2048, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 131, + "name": "fern", + "displayName": "Fern", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2049, + "minStateId": 2049, + "maxStateId": 2049, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 132, + "name": "dead_bush", + "displayName": "Dead Bush", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2050, + "minStateId": 2050, + "maxStateId": 2050, + "states": [], + "drops": [ + 879 + ], + "boundingBox": "empty" + }, + { + "id": 133, + "name": "seagrass", + "displayName": "Seagrass", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 2051, + "minStateId": 2051, + "maxStateId": 2051, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 134, + "name": "tall_seagrass", + "displayName": "Tall Seagrass", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 2053, + "minStateId": 2052, + "maxStateId": 2053, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 135, + "name": "piston", + "displayName": "Piston", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2060, + "minStateId": 2054, + "maxStateId": 2065, + "states": [ + { + "name": "extended", + "type": "bool", + "num_values": 2 + }, + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 685 + ], + "boundingBox": "block" + }, + { + "id": 136, + "name": "piston_head", + "displayName": "Piston Head", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2068, + "minStateId": 2066, + "maxStateId": 2089, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "short", + "type": "bool", + "num_values": 2 + }, + { + "name": "type", + "type": "enum", + "num_values": 2, + "values": [ + "normal", + "sticky" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 137, + "name": "white_wool", + "displayName": "White Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2090, + "minStateId": 2090, + "maxStateId": 2090, + "states": [], + "drops": [ + 209 + ], + "boundingBox": "block" + }, + { + "id": 138, + "name": "orange_wool", + "displayName": "Orange Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2091, + "minStateId": 2091, + "maxStateId": 2091, + "states": [], + "drops": [ + 210 + ], + "boundingBox": "block" + }, + { + "id": 139, + "name": "magenta_wool", + "displayName": "Magenta Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2092, + "minStateId": 2092, + "maxStateId": 2092, + "states": [], + "drops": [ + 211 + ], + "boundingBox": "block" + }, + { + "id": 140, + "name": "light_blue_wool", + "displayName": "Light Blue Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2093, + "minStateId": 2093, + "maxStateId": 2093, + "states": [], + "drops": [ + 212 + ], + "boundingBox": "block" + }, + { + "id": 141, + "name": "yellow_wool", + "displayName": "Yellow Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2094, + "minStateId": 2094, + "maxStateId": 2094, + "states": [], + "drops": [ + 213 + ], + "boundingBox": "block" + }, + { + "id": 142, + "name": "lime_wool", + "displayName": "Lime Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2095, + "minStateId": 2095, + "maxStateId": 2095, + "states": [], + "drops": [ + 214 + ], + "boundingBox": "block" + }, + { + "id": 143, + "name": "pink_wool", + "displayName": "Pink Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2096, + "minStateId": 2096, + "maxStateId": 2096, + "states": [], + "drops": [ + 215 + ], + "boundingBox": "block" + }, + { + "id": 144, + "name": "gray_wool", + "displayName": "Gray Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2097, + "minStateId": 2097, + "maxStateId": 2097, + "states": [], + "drops": [ + 216 + ], + "boundingBox": "block" + }, + { + "id": 145, + "name": "light_gray_wool", + "displayName": "Light Gray Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2098, + "minStateId": 2098, + "maxStateId": 2098, + "states": [], + "drops": [ + 217 + ], + "boundingBox": "block" + }, + { + "id": 146, + "name": "cyan_wool", + "displayName": "Cyan Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2099, + "minStateId": 2099, + "maxStateId": 2099, + "states": [], + "drops": [ + 218 + ], + "boundingBox": "block" + }, + { + "id": 147, + "name": "purple_wool", + "displayName": "Purple Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2100, + "minStateId": 2100, + "maxStateId": 2100, + "states": [], + "drops": [ + 219 + ], + "boundingBox": "block" + }, + { + "id": 148, + "name": "blue_wool", + "displayName": "Blue Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2101, + "minStateId": 2101, + "maxStateId": 2101, + "states": [], + "drops": [ + 220 + ], + "boundingBox": "block" + }, + { + "id": 149, + "name": "brown_wool", + "displayName": "Brown Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2102, + "minStateId": 2102, + "maxStateId": 2102, + "states": [], + "drops": [ + 221 + ], + "boundingBox": "block" + }, + { + "id": 150, + "name": "green_wool", + "displayName": "Green Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2103, + "minStateId": 2103, + "maxStateId": 2103, + "states": [], + "drops": [ + 222 + ], + "boundingBox": "block" + }, + { + "id": 151, + "name": "red_wool", + "displayName": "Red Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2104, + "minStateId": 2104, + "maxStateId": 2104, + "states": [], + "drops": [ + 223 + ], + "boundingBox": "block" + }, + { + "id": 152, + "name": "black_wool", + "displayName": "Black Wool", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "wool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2105, + "minStateId": 2105, + "maxStateId": 2105, + "states": [], + "drops": [ + 224 + ], + "boundingBox": "block" + }, + { + "id": 153, + "name": "moving_piston", + "displayName": "Moving Piston", + "hardness": -1.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2106, + "minStateId": 2106, + "maxStateId": 2117, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "type", + "type": "enum", + "num_values": 2, + "values": [ + "normal", + "sticky" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 154, + "name": "dandelion", + "displayName": "Dandelion", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2118, + "minStateId": 2118, + "maxStateId": 2118, + "states": [], + "drops": [ + 225 + ], + "boundingBox": "empty" + }, + { + "id": 155, + "name": "torchflower", + "displayName": "Torchflower", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2119, + "minStateId": 2119, + "maxStateId": 2119, + "states": [], + "drops": [ + 240 + ], + "boundingBox": "empty" + }, + { + "id": 156, + "name": "poppy", + "displayName": "Poppy", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2120, + "minStateId": 2120, + "maxStateId": 2120, + "states": [], + "drops": [ + 228 + ], + "boundingBox": "empty" + }, + { + "id": 157, + "name": "blue_orchid", + "displayName": "Blue Orchid", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2121, + "minStateId": 2121, + "maxStateId": 2121, + "states": [], + "drops": [ + 229 + ], + "boundingBox": "empty" + }, + { + "id": 158, + "name": "allium", + "displayName": "Allium", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2122, + "minStateId": 2122, + "maxStateId": 2122, + "states": [], + "drops": [ + 230 + ], + "boundingBox": "empty" + }, + { + "id": 159, + "name": "azure_bluet", + "displayName": "Azure Bluet", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2123, + "minStateId": 2123, + "maxStateId": 2123, + "states": [], + "drops": [ + 231 + ], + "boundingBox": "empty" + }, + { + "id": 160, + "name": "red_tulip", + "displayName": "Red Tulip", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2124, + "minStateId": 2124, + "maxStateId": 2124, + "states": [], + "drops": [ + 232 + ], + "boundingBox": "empty" + }, + { + "id": 161, + "name": "orange_tulip", + "displayName": "Orange Tulip", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2125, + "minStateId": 2125, + "maxStateId": 2125, + "states": [], + "drops": [ + 233 + ], + "boundingBox": "empty" + }, + { + "id": 162, + "name": "white_tulip", + "displayName": "White Tulip", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2126, + "minStateId": 2126, + "maxStateId": 2126, + "states": [], + "drops": [ + 234 + ], + "boundingBox": "empty" + }, + { + "id": 163, + "name": "pink_tulip", + "displayName": "Pink Tulip", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2127, + "minStateId": 2127, + "maxStateId": 2127, + "states": [], + "drops": [ + 235 + ], + "boundingBox": "empty" + }, + { + "id": 164, + "name": "oxeye_daisy", + "displayName": "Oxeye Daisy", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2128, + "minStateId": 2128, + "maxStateId": 2128, + "states": [], + "drops": [ + 236 + ], + "boundingBox": "empty" + }, + { + "id": 165, + "name": "cornflower", + "displayName": "Cornflower", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2129, + "minStateId": 2129, + "maxStateId": 2129, + "states": [], + "drops": [ + 237 + ], + "boundingBox": "empty" + }, + { + "id": 166, + "name": "wither_rose", + "displayName": "Wither Rose", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2130, + "minStateId": 2130, + "maxStateId": 2130, + "states": [], + "drops": [ + 239 + ], + "boundingBox": "empty" + }, + { + "id": 167, + "name": "lily_of_the_valley", + "displayName": "Lily of the Valley", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2131, + "minStateId": 2131, + "maxStateId": 2131, + "states": [], + "drops": [ + 238 + ], + "boundingBox": "empty" + }, + { + "id": 168, + "name": "brown_mushroom", + "displayName": "Brown Mushroom", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 1, + "filterLight": 0, + "defaultState": 2132, + "minStateId": 2132, + "maxStateId": 2132, + "states": [], + "drops": [ + 243 + ], + "boundingBox": "empty" + }, + { + "id": 169, + "name": "red_mushroom", + "displayName": "Red Mushroom", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2133, + "minStateId": 2133, + "maxStateId": 2133, + "states": [], + "drops": [ + 244 + ], + "boundingBox": "empty" + }, + { + "id": 170, + "name": "gold_block", + "displayName": "Block of Gold", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2134, + "minStateId": 2134, + "maxStateId": 2134, + "states": [], + "harvestTools": { + "866": true, + "871": true, + "876": true + }, + "drops": [ + 92 + ], + "boundingBox": "block" + }, + { + "id": 171, + "name": "iron_block", + "displayName": "Block of Iron", + "hardness": 5.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2135, + "minStateId": 2135, + "maxStateId": 2135, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 90 + ], + "boundingBox": "block" + }, + { + "id": 172, + "name": "bricks", + "displayName": "Bricks", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2136, + "minStateId": 2136, + "maxStateId": 2136, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 298 + ], + "boundingBox": "block" + }, + { + "id": 173, + "name": "tnt", + "displayName": "TNT", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2138, + "minStateId": 2137, + "maxStateId": 2138, + "states": [ + { + "name": "unstable", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 702 + ], + "boundingBox": "block" + }, + { + "id": 174, + "name": "bookshelf", + "displayName": "Bookshelf", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2139, + "minStateId": 2139, + "maxStateId": 2139, + "states": [], + "drops": [ + 958 + ], + "boundingBox": "block" + }, + { + "id": 175, + "name": "chiseled_bookshelf", + "displayName": "Chiseled Bookshelf", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2203, + "minStateId": 2140, + "maxStateId": 2395, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "slot_0_occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "slot_1_occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "slot_2_occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "slot_3_occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "slot_4_occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "slot_5_occupied", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 176, + "name": "mossy_cobblestone", + "displayName": "Mossy Cobblestone", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2396, + "minStateId": 2396, + "maxStateId": 2396, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 302 + ], + "boundingBox": "block" + }, + { + "id": 177, + "name": "obsidian", + "displayName": "Obsidian", + "hardness": 50.0, + "resistance": 1200.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2397, + "minStateId": 2397, + "maxStateId": 2397, + "states": [], + "harvestTools": { + "871": true, + "876": true + }, + "drops": [ + 303 + ], + "boundingBox": "block" + }, + { + "id": 178, + "name": "torch", + "displayName": "Torch", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 14, + "filterLight": 0, + "defaultState": 2398, + "minStateId": 2398, + "maxStateId": 2398, + "states": [], + "drops": [ + 304 + ], + "boundingBox": "empty" + }, + { + "id": 179, + "name": "wall_torch", + "displayName": "Torch", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 14, + "filterLight": 0, + "defaultState": 2399, + "minStateId": 2399, + "maxStateId": 2402, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 304 + ], + "boundingBox": "empty" + }, + { + "id": 180, + "name": "fire", + "displayName": "Fire", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 2434, + "minStateId": 2403, + "maxStateId": 2914, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 181, + "name": "soul_fire", + "displayName": "Soul Fire", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 10, + "filterLight": 0, + "defaultState": 2915, + "minStateId": 2915, + "maxStateId": 2915, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 182, + "name": "spawner", + "displayName": "Monster Spawner", + "hardness": 5.0, + "resistance": 5.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 2916, + "minStateId": 2916, + "maxStateId": 2916, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "block" + }, + { + "id": 183, + "name": "creaking_heart", + "displayName": "Creaking Heart", + "hardness": 10.0, + "resistance": 10.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2926, + "minStateId": 2917, + "maxStateId": 2928, + "states": [ + { + "name": "active", + "type": "bool", + "num_values": 2 + }, + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + }, + { + "name": "natural", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 376 + ], + "boundingBox": "block" + }, + { + "id": 184, + "name": "oak_stairs", + "displayName": "Oak Stairs", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2940, + "minStateId": 2929, + "maxStateId": 3008, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 405 + ], + "boundingBox": "block" + }, + { + "id": 185, + "name": "chest", + "displayName": "Chest", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3010, + "minStateId": 3009, + "maxStateId": 3032, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "single", + "left", + "right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 313 + ], + "boundingBox": "block" + }, + { + "id": 186, + "name": "redstone_wire", + "displayName": "Redstone Wire", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4193, + "minStateId": 3033, + "maxStateId": 4328, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "up", + "side", + "none" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "up", + "side", + "none" + ] + }, + { + "name": "power", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "up", + "side", + "none" + ] + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "up", + "side", + "none" + ] + } + ], + "drops": [ + 680 + ], + "boundingBox": "empty" + }, + { + "id": 187, + "name": "diamond_ore", + "displayName": "Diamond Ore", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4329, + "minStateId": 4329, + "maxStateId": 4329, + "states": [], + "harvestTools": { + "866": true, + "871": true, + "876": true + }, + "drops": [ + 836 + ], + "boundingBox": "block" + }, + { + "id": 188, + "name": "deepslate_diamond_ore", + "displayName": "Deepslate Diamond Ore", + "hardness": 4.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4330, + "minStateId": 4330, + "maxStateId": 4330, + "states": [], + "harvestTools": { + "866": true, + "871": true, + "876": true + }, + "drops": [ + 836 + ], + "boundingBox": "block" + }, + { + "id": 189, + "name": "diamond_block", + "displayName": "Block of Diamond", + "hardness": 5.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4331, + "minStateId": 4331, + "maxStateId": 4331, + "states": [], + "harvestTools": { + "866": true, + "871": true, + "876": true + }, + "drops": [ + 93 + ], + "boundingBox": "block" + }, + { + "id": 190, + "name": "crafting_table", + "displayName": "Crafting Table", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4332, + "minStateId": 4332, + "maxStateId": 4332, + "states": [], + "drops": [ + 314 + ], + "boundingBox": "block" + }, + { + "id": 191, + "name": "wheat", + "displayName": "Wheat Crops", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4333, + "minStateId": 4333, + "maxStateId": 4340, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 8, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "drops": [ + 884 + ], + "boundingBox": "empty" + }, + { + "id": 192, + "name": "farmland", + "displayName": "Farmland", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4341, + "minStateId": 4341, + "maxStateId": 4348, + "states": [ + { + "name": "moisture", + "type": "int", + "num_values": 8, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "drops": [ + 28 + ], + "boundingBox": "block" + }, + { + "id": 193, + "name": "furnace", + "displayName": "Furnace", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4350, + "minStateId": 4349, + "maxStateId": 4356, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 316 + ], + "boundingBox": "block" + }, + { + "id": 194, + "name": "oak_sign", + "displayName": "Oak Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4358, + "minStateId": 4357, + "maxStateId": 4388, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 917 + ], + "boundingBox": "empty" + }, + { + "id": 195, + "name": "spruce_sign", + "displayName": "Spruce Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4390, + "minStateId": 4389, + "maxStateId": 4420, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 918 + ], + "boundingBox": "empty" + }, + { + "id": 196, + "name": "birch_sign", + "displayName": "Birch Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4422, + "minStateId": 4421, + "maxStateId": 4452, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 919 + ], + "boundingBox": "empty" + }, + { + "id": 197, + "name": "acacia_sign", + "displayName": "Acacia Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4454, + "minStateId": 4453, + "maxStateId": 4484, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 921 + ], + "boundingBox": "empty" + }, + { + "id": 198, + "name": "cherry_sign", + "displayName": "Cherry Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4486, + "minStateId": 4485, + "maxStateId": 4516, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 922 + ], + "boundingBox": "empty" + }, + { + "id": 199, + "name": "jungle_sign", + "displayName": "Jungle Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4518, + "minStateId": 4517, + "maxStateId": 4548, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 920 + ], + "boundingBox": "empty" + }, + { + "id": 200, + "name": "dark_oak_sign", + "displayName": "Dark Oak Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4550, + "minStateId": 4549, + "maxStateId": 4580, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 923 + ], + "boundingBox": "empty" + }, + { + "id": 201, + "name": "pale_oak_sign", + "displayName": "Pale Oak Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4582, + "minStateId": 4581, + "maxStateId": 4612, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 924 + ], + "boundingBox": "empty" + }, + { + "id": 202, + "name": "mangrove_sign", + "displayName": "Mangrove Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4614, + "minStateId": 4613, + "maxStateId": 4644, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 925 + ], + "boundingBox": "empty" + }, + { + "id": 203, + "name": "bamboo_sign", + "displayName": "Bamboo Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4646, + "minStateId": 4645, + "maxStateId": 4676, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 926 + ], + "boundingBox": "empty" + }, + { + "id": 204, + "name": "oak_door", + "displayName": "Oak Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4688, + "minStateId": 4677, + "maxStateId": 4740, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 736 + ], + "boundingBox": "block" + }, + { + "id": 205, + "name": "ladder", + "displayName": "Ladder", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4742, + "minStateId": 4741, + "maxStateId": 4748, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 317 + ], + "boundingBox": "block" + }, + { + "id": 206, + "name": "rail", + "displayName": "Rail", + "hardness": 0.7, + "resistance": 0.7, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4750, + "minStateId": 4749, + "maxStateId": 4768, + "states": [ + { + "name": "shape", + "type": "enum", + "num_values": 10, + "values": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south", + "south_east", + "south_west", + "north_west", + "north_east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 791 + ], + "boundingBox": "empty" + }, + { + "id": 207, + "name": "cobblestone_stairs", + "displayName": "Cobblestone Stairs", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4780, + "minStateId": 4769, + "maxStateId": 4848, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 318 + ], + "boundingBox": "block" + }, + { + "id": 208, + "name": "oak_wall_sign", + "displayName": "Oak Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4850, + "minStateId": 4849, + "maxStateId": 4856, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 917 + ], + "boundingBox": "empty" + }, + { + "id": 209, + "name": "spruce_wall_sign", + "displayName": "Spruce Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4858, + "minStateId": 4857, + "maxStateId": 4864, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 918 + ], + "boundingBox": "empty" + }, + { + "id": 210, + "name": "birch_wall_sign", + "displayName": "Birch Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4866, + "minStateId": 4865, + "maxStateId": 4872, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 919 + ], + "boundingBox": "empty" + }, + { + "id": 211, + "name": "acacia_wall_sign", + "displayName": "Acacia Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4874, + "minStateId": 4873, + "maxStateId": 4880, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 921 + ], + "boundingBox": "empty" + }, + { + "id": 212, + "name": "cherry_wall_sign", + "displayName": "Cherry Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4882, + "minStateId": 4881, + "maxStateId": 4888, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 922 + ], + "boundingBox": "empty" + }, + { + "id": 213, + "name": "jungle_wall_sign", + "displayName": "Jungle Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4890, + "minStateId": 4889, + "maxStateId": 4896, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 920 + ], + "boundingBox": "empty" + }, + { + "id": 214, + "name": "dark_oak_wall_sign", + "displayName": "Dark Oak Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4898, + "minStateId": 4897, + "maxStateId": 4904, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 923 + ], + "boundingBox": "empty" + }, + { + "id": 215, + "name": "pale_oak_wall_sign", + "displayName": "Pale Oak Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4906, + "minStateId": 4905, + "maxStateId": 4912, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 924 + ], + "boundingBox": "empty" + }, + { + "id": 216, + "name": "mangrove_wall_sign", + "displayName": "Mangrove Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4914, + "minStateId": 4913, + "maxStateId": 4920, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 925 + ], + "boundingBox": "empty" + }, + { + "id": 217, + "name": "bamboo_wall_sign", + "displayName": "Bamboo Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4922, + "minStateId": 4921, + "maxStateId": 4928, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 926 + ], + "boundingBox": "empty" + }, + { + "id": 218, + "name": "oak_hanging_sign", + "displayName": "Oak Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4962, + "minStateId": 4929, + "maxStateId": 4992, + "states": [ + { + "name": "attached", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 929 + ], + "boundingBox": "empty" + }, + { + "id": 219, + "name": "spruce_hanging_sign", + "displayName": "Spruce Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5026, + "minStateId": 4993, + "maxStateId": 5056, + "states": [ + { + "name": "attached", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 930 + ], + "boundingBox": "empty" + }, + { + "id": 220, + "name": "birch_hanging_sign", + "displayName": "Birch Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5090, + "minStateId": 5057, + "maxStateId": 5120, + "states": [ + { + "name": "attached", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 931 + ], + "boundingBox": "empty" + }, + { + "id": 221, + "name": "acacia_hanging_sign", + "displayName": "Acacia Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5154, + "minStateId": 5121, + "maxStateId": 5184, + "states": [ + { + "name": "attached", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 933 + ], + "boundingBox": "empty" + }, + { + "id": 222, + "name": "cherry_hanging_sign", + "displayName": "Cherry Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5218, + "minStateId": 5185, + "maxStateId": 5248, + "states": [ + { + "name": "attached", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 934 + ], + "boundingBox": "empty" + }, + { + "id": 223, + "name": "jungle_hanging_sign", + "displayName": "Jungle Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5282, + "minStateId": 5249, + "maxStateId": 5312, + "states": [ + { + "name": "attached", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 932 + ], + "boundingBox": "empty" + }, + { + "id": 224, + "name": "dark_oak_hanging_sign", + "displayName": "Dark Oak Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5346, + "minStateId": 5313, + "maxStateId": 5376, + "states": [ + { + "name": "attached", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 935 + ], + "boundingBox": "empty" + }, + { + "id": 225, + "name": "pale_oak_hanging_sign", + "displayName": "Pale Oak Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5410, + "minStateId": 5377, + "maxStateId": 5440, + "states": [ + { + "name": "attached", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 936 + ], + "boundingBox": "empty" + }, + { + "id": 226, + "name": "crimson_hanging_sign", + "displayName": "Crimson Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5474, + "minStateId": 5441, + "maxStateId": 5504, + "states": [ + { + "name": "attached", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 939 + ], + "boundingBox": "empty" + }, + { + "id": 227, + "name": "warped_hanging_sign", + "displayName": "Warped Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5538, + "minStateId": 5505, + "maxStateId": 5568, + "states": [ + { + "name": "attached", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 940 + ], + "boundingBox": "empty" + }, + { + "id": 228, + "name": "mangrove_hanging_sign", + "displayName": "Mangrove Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5602, + "minStateId": 5569, + "maxStateId": 5632, + "states": [ + { + "name": "attached", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 937 + ], + "boundingBox": "empty" + }, + { + "id": 229, + "name": "bamboo_hanging_sign", + "displayName": "Bamboo Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5666, + "minStateId": 5633, + "maxStateId": 5696, + "states": [ + { + "name": "attached", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 938 + ], + "boundingBox": "empty" + }, + { + "id": 230, + "name": "oak_wall_hanging_sign", + "displayName": "Oak Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5698, + "minStateId": 5697, + "maxStateId": 5704, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 929 + ], + "boundingBox": "block" + }, + { + "id": 231, + "name": "spruce_wall_hanging_sign", + "displayName": "Spruce Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5706, + "minStateId": 5705, + "maxStateId": 5712, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 930 + ], + "boundingBox": "block" + }, + { + "id": 232, + "name": "birch_wall_hanging_sign", + "displayName": "Birch Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5714, + "minStateId": 5713, + "maxStateId": 5720, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 931 + ], + "boundingBox": "block" + }, + { + "id": 233, + "name": "acacia_wall_hanging_sign", + "displayName": "Acacia Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5722, + "minStateId": 5721, + "maxStateId": 5728, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 933 + ], + "boundingBox": "block" + }, + { + "id": 234, + "name": "cherry_wall_hanging_sign", + "displayName": "Cherry Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5730, + "minStateId": 5729, + "maxStateId": 5736, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 934 + ], + "boundingBox": "block" + }, + { + "id": 235, + "name": "jungle_wall_hanging_sign", + "displayName": "Jungle Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5738, + "minStateId": 5737, + "maxStateId": 5744, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 932 + ], + "boundingBox": "block" + }, + { + "id": 236, + "name": "dark_oak_wall_hanging_sign", + "displayName": "Dark Oak Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5746, + "minStateId": 5745, + "maxStateId": 5752, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 935 + ], + "boundingBox": "block" + }, + { + "id": 237, + "name": "pale_oak_wall_hanging_sign", + "displayName": "Pale Oak Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5754, + "minStateId": 5753, + "maxStateId": 5760, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 936 + ], + "boundingBox": "block" + }, + { + "id": 238, + "name": "mangrove_wall_hanging_sign", + "displayName": "Mangrove Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5762, + "minStateId": 5761, + "maxStateId": 5768, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 937 + ], + "boundingBox": "block" + }, + { + "id": 239, + "name": "crimson_wall_hanging_sign", + "displayName": "Crimson Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5770, + "minStateId": 5769, + "maxStateId": 5776, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 939 + ], + "boundingBox": "block" + }, + { + "id": 240, + "name": "warped_wall_hanging_sign", + "displayName": "Warped Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5778, + "minStateId": 5777, + "maxStateId": 5784, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 940 + ], + "boundingBox": "block" + }, + { + "id": 241, + "name": "bamboo_wall_hanging_sign", + "displayName": "Bamboo Hanging Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5786, + "minStateId": 5785, + "maxStateId": 5792, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 938 + ], + "boundingBox": "block" + }, + { + "id": 242, + "name": "lever", + "displayName": "Lever", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5802, + "minStateId": 5793, + "maxStateId": 5816, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 695 + ], + "boundingBox": "empty" + }, + { + "id": 243, + "name": "stone_pressure_plate", + "displayName": "Stone Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5818, + "minStateId": 5817, + "maxStateId": 5818, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 719 + ], + "boundingBox": "empty" + }, + { + "id": 244, + "name": "iron_door", + "displayName": "Iron Door", + "hardness": 5.0, + "resistance": 5.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5830, + "minStateId": 5819, + "maxStateId": 5882, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 735 + ], + "boundingBox": "block" + }, + { + "id": 245, + "name": "oak_pressure_plate", + "displayName": "Oak Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5884, + "minStateId": 5883, + "maxStateId": 5884, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 723 + ], + "boundingBox": "empty" + }, + { + "id": 246, + "name": "spruce_pressure_plate", + "displayName": "Spruce Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5886, + "minStateId": 5885, + "maxStateId": 5886, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 724 + ], + "boundingBox": "empty" + }, + { + "id": 247, + "name": "birch_pressure_plate", + "displayName": "Birch Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5888, + "minStateId": 5887, + "maxStateId": 5888, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 725 + ], + "boundingBox": "empty" + }, + { + "id": 248, + "name": "jungle_pressure_plate", + "displayName": "Jungle Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5890, + "minStateId": 5889, + "maxStateId": 5890, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 726 + ], + "boundingBox": "empty" + }, + { + "id": 249, + "name": "acacia_pressure_plate", + "displayName": "Acacia Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5892, + "minStateId": 5891, + "maxStateId": 5892, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 727 + ], + "boundingBox": "empty" + }, + { + "id": 250, + "name": "cherry_pressure_plate", + "displayName": "Cherry Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5894, + "minStateId": 5893, + "maxStateId": 5894, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 728 + ], + "boundingBox": "empty" + }, + { + "id": 251, + "name": "dark_oak_pressure_plate", + "displayName": "Dark Oak Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5896, + "minStateId": 5895, + "maxStateId": 5896, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 729 + ], + "boundingBox": "empty" + }, + { + "id": 252, + "name": "pale_oak_pressure_plate", + "displayName": "Pale Oak Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5898, + "minStateId": 5897, + "maxStateId": 5898, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 730 + ], + "boundingBox": "empty" + }, + { + "id": 253, + "name": "mangrove_pressure_plate", + "displayName": "Mangrove Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5900, + "minStateId": 5899, + "maxStateId": 5900, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 731 + ], + "boundingBox": "empty" + }, + { + "id": 254, + "name": "bamboo_pressure_plate", + "displayName": "Bamboo Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5902, + "minStateId": 5901, + "maxStateId": 5902, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 732 + ], + "boundingBox": "empty" + }, + { + "id": 255, + "name": "redstone_ore", + "displayName": "Redstone Ore", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5904, + "minStateId": 5903, + "maxStateId": 5904, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "866": true, + "871": true, + "876": true + }, + "drops": [ + 680 + ], + "boundingBox": "block" + }, + { + "id": 256, + "name": "deepslate_redstone_ore", + "displayName": "Deepslate Redstone Ore", + "hardness": 4.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5906, + "minStateId": 5905, + "maxStateId": 5906, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "866": true, + "871": true, + "876": true + }, + "drops": [ + 680 + ], + "boundingBox": "block" + }, + { + "id": 257, + "name": "redstone_torch", + "displayName": "Redstone Torch", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 7, + "filterLight": 0, + "defaultState": 5907, + "minStateId": 5907, + "maxStateId": 5908, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 681 + ], + "boundingBox": "empty" + }, + { + "id": 258, + "name": "redstone_wall_torch", + "displayName": "Redstone Torch", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 7, + "filterLight": 0, + "defaultState": 5909, + "minStateId": 5909, + "maxStateId": 5916, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 681 + ], + "boundingBox": "empty" + }, + { + "id": 259, + "name": "stone_button", + "displayName": "Stone Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5926, + "minStateId": 5917, + "maxStateId": 5940, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 705 + ], + "boundingBox": "empty" + }, + { + "id": 260, + "name": "snow", + "displayName": "Snow", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5941, + "minStateId": 5941, + "maxStateId": 5948, + "states": [ + { + "name": "layers", + "type": "int", + "num_values": 8, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + } + ], + "harvestTools": { + "850": true, + "855": true, + "860": true, + "865": true, + "870": true, + "875": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 261, + "name": "ice", + "displayName": "Ice", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 5949, + "minStateId": 5949, + "maxStateId": 5949, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 262, + "name": "snow_block", + "displayName": "Snow Block", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5950, + "minStateId": 5950, + "maxStateId": 5950, + "states": [], + "harvestTools": { + "850": true, + "855": true, + "860": true, + "865": true, + "870": true, + "875": true + }, + "drops": [ + 945 + ], + "boundingBox": "block" + }, + { + "id": 263, + "name": "cactus", + "displayName": "Cactus", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5951, + "minStateId": 5951, + "maxStateId": 5966, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 322 + ], + "boundingBox": "block" + }, + { + "id": 264, + "name": "clay", + "displayName": "Clay", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5967, + "minStateId": 5967, + "maxStateId": 5967, + "states": [], + "drops": [ + 955 + ], + "boundingBox": "block" + }, + { + "id": 265, + "name": "sugar_cane", + "displayName": "Sugar Cane", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5968, + "minStateId": 5968, + "maxStateId": 5983, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 252 + ], + "boundingBox": "empty" + }, + { + "id": 266, + "name": "jukebox", + "displayName": "Jukebox", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5985, + "minStateId": 5984, + "maxStateId": 5985, + "states": [ + { + "name": "has_record", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 324 + ], + "boundingBox": "block" + }, + { + "id": 267, + "name": "oak_fence", + "displayName": "Oak Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6017, + "minStateId": 5986, + "maxStateId": 6017, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 325 + ], + "boundingBox": "block" + }, + { + "id": 268, + "name": "netherrack", + "displayName": "Netherrack", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6018, + "minStateId": 6018, + "maxStateId": 6018, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 340 + ], + "boundingBox": "block" + }, + { + "id": 269, + "name": "soul_sand", + "displayName": "Soul Sand", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6019, + "minStateId": 6019, + "maxStateId": 6019, + "states": [], + "drops": [ + 341 + ], + "boundingBox": "block" + }, + { + "id": 270, + "name": "soul_soil", + "displayName": "Soul Soil", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6020, + "minStateId": 6020, + "maxStateId": 6020, + "states": [], + "drops": [ + 342 + ], + "boundingBox": "block" + }, + { + "id": 271, + "name": "basalt", + "displayName": "Basalt", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6022, + "minStateId": 6021, + "maxStateId": 6023, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 343 + ], + "boundingBox": "block" + }, + { + "id": 272, + "name": "polished_basalt", + "displayName": "Polished Basalt", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6025, + "minStateId": 6024, + "maxStateId": 6026, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 344 + ], + "boundingBox": "block" + }, + { + "id": 273, + "name": "soul_torch", + "displayName": "Soul Torch", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 10, + "filterLight": 0, + "defaultState": 6027, + "minStateId": 6027, + "maxStateId": 6027, + "states": [], + "drops": [ + 346 + ], + "boundingBox": "empty" + }, + { + "id": 274, + "name": "soul_wall_torch", + "displayName": "Soul Torch", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 10, + "filterLight": 0, + "defaultState": 6028, + "minStateId": 6028, + "maxStateId": 6031, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 346 + ], + "boundingBox": "empty" + }, + { + "id": 275, + "name": "glowstone", + "displayName": "Glowstone", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 6032, + "minStateId": 6032, + "maxStateId": 6032, + "states": [], + "drops": [ + 983 + ], + "boundingBox": "block" + }, + { + "id": 276, + "name": "nether_portal", + "displayName": "Nether Portal", + "hardness": -1.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 11, + "filterLight": 0, + "defaultState": 6033, + "minStateId": 6033, + "maxStateId": 6034, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 2, + "values": [ + "x", + "z" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 277, + "name": "carved_pumpkin", + "displayName": "Carved Pumpkin", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6035, + "minStateId": 6035, + "maxStateId": 6038, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 338 + ], + "boundingBox": "block" + }, + { + "id": 278, + "name": "jack_o_lantern", + "displayName": "Jack o'Lantern", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "gourd;mineable/axe", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 6039, + "minStateId": 6039, + "maxStateId": 6042, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 339 + ], + "boundingBox": "block" + }, + { + "id": 279, + "name": "cake", + "displayName": "Cake", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6043, + "minStateId": 6043, + "maxStateId": 6049, + "states": [ + { + "name": "bites", + "type": "int", + "num_values": 7, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 280, + "name": "repeater", + "displayName": "Redstone Repeater", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6053, + "minStateId": 6050, + "maxStateId": 6113, + "states": [ + { + "name": "delay", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "locked", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 683 + ], + "boundingBox": "block" + }, + { + "id": 281, + "name": "white_stained_glass", + "displayName": "White Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6114, + "minStateId": 6114, + "maxStateId": 6114, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 282, + "name": "orange_stained_glass", + "displayName": "Orange Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6115, + "minStateId": 6115, + "maxStateId": 6115, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 283, + "name": "magenta_stained_glass", + "displayName": "Magenta Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6116, + "minStateId": 6116, + "maxStateId": 6116, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 284, + "name": "light_blue_stained_glass", + "displayName": "Light Blue Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6117, + "minStateId": 6117, + "maxStateId": 6117, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 285, + "name": "yellow_stained_glass", + "displayName": "Yellow Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6118, + "minStateId": 6118, + "maxStateId": 6118, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 286, + "name": "lime_stained_glass", + "displayName": "Lime Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6119, + "minStateId": 6119, + "maxStateId": 6119, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 287, + "name": "pink_stained_glass", + "displayName": "Pink Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6120, + "minStateId": 6120, + "maxStateId": 6120, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 288, + "name": "gray_stained_glass", + "displayName": "Gray Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6121, + "minStateId": 6121, + "maxStateId": 6121, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 289, + "name": "light_gray_stained_glass", + "displayName": "Light Gray Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6122, + "minStateId": 6122, + "maxStateId": 6122, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 290, + "name": "cyan_stained_glass", + "displayName": "Cyan Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6123, + "minStateId": 6123, + "maxStateId": 6123, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 291, + "name": "purple_stained_glass", + "displayName": "Purple Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6124, + "minStateId": 6124, + "maxStateId": 6124, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 292, + "name": "blue_stained_glass", + "displayName": "Blue Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6125, + "minStateId": 6125, + "maxStateId": 6125, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 293, + "name": "brown_stained_glass", + "displayName": "Brown Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6126, + "minStateId": 6126, + "maxStateId": 6126, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 294, + "name": "green_stained_glass", + "displayName": "Green Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6127, + "minStateId": 6127, + "maxStateId": 6127, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 295, + "name": "red_stained_glass", + "displayName": "Red Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6128, + "minStateId": 6128, + "maxStateId": 6128, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 296, + "name": "black_stained_glass", + "displayName": "Black Stained Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6129, + "minStateId": 6129, + "maxStateId": 6129, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 297, + "name": "oak_trapdoor", + "displayName": "Oak Trapdoor", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6145, + "minStateId": 6130, + "maxStateId": 6193, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 757 + ], + "boundingBox": "block" + }, + { + "id": 298, + "name": "spruce_trapdoor", + "displayName": "Spruce Trapdoor", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6209, + "minStateId": 6194, + "maxStateId": 6257, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 758 + ], + "boundingBox": "block" + }, + { + "id": 299, + "name": "birch_trapdoor", + "displayName": "Birch Trapdoor", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6273, + "minStateId": 6258, + "maxStateId": 6321, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 759 + ], + "boundingBox": "block" + }, + { + "id": 300, + "name": "jungle_trapdoor", + "displayName": "Jungle Trapdoor", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6337, + "minStateId": 6322, + "maxStateId": 6385, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 760 + ], + "boundingBox": "block" + }, + { + "id": 301, + "name": "acacia_trapdoor", + "displayName": "Acacia Trapdoor", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6401, + "minStateId": 6386, + "maxStateId": 6449, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 761 + ], + "boundingBox": "block" + }, + { + "id": 302, + "name": "cherry_trapdoor", + "displayName": "Cherry Trapdoor", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6465, + "minStateId": 6450, + "maxStateId": 6513, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 762 + ], + "boundingBox": "block" + }, + { + "id": 303, + "name": "dark_oak_trapdoor", + "displayName": "Dark Oak Trapdoor", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6529, + "minStateId": 6514, + "maxStateId": 6577, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 763 + ], + "boundingBox": "block" + }, + { + "id": 304, + "name": "pale_oak_trapdoor", + "displayName": "Pale Oak Trapdoor", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6593, + "minStateId": 6578, + "maxStateId": 6641, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 764 + ], + "boundingBox": "block" + }, + { + "id": 305, + "name": "mangrove_trapdoor", + "displayName": "Mangrove Trapdoor", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6657, + "minStateId": 6642, + "maxStateId": 6705, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 765 + ], + "boundingBox": "block" + }, + { + "id": 306, + "name": "bamboo_trapdoor", + "displayName": "Bamboo Trapdoor", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6721, + "minStateId": 6706, + "maxStateId": 6769, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 766 + ], + "boundingBox": "block" + }, + { + "id": 307, + "name": "stone_bricks", + "displayName": "Stone Bricks", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6770, + "minStateId": 6770, + "maxStateId": 6770, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 355 + ], + "boundingBox": "block" + }, + { + "id": 308, + "name": "mossy_stone_bricks", + "displayName": "Mossy Stone Bricks", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6771, + "minStateId": 6771, + "maxStateId": 6771, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 356 + ], + "boundingBox": "block" + }, + { + "id": 309, + "name": "cracked_stone_bricks", + "displayName": "Cracked Stone Bricks", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6772, + "minStateId": 6772, + "maxStateId": 6772, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 357 + ], + "boundingBox": "block" + }, + { + "id": 310, + "name": "chiseled_stone_bricks", + "displayName": "Chiseled Stone Bricks", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6773, + "minStateId": 6773, + "maxStateId": 6773, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 358 + ], + "boundingBox": "block" + }, + { + "id": 311, + "name": "packed_mud", + "displayName": "Packed Mud", + "hardness": 1.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6774, + "minStateId": 6774, + "maxStateId": 6774, + "states": [], + "drops": [ + 359 + ], + "boundingBox": "block" + }, + { + "id": 312, + "name": "mud_bricks", + "displayName": "Mud Bricks", + "hardness": 1.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6775, + "minStateId": 6775, + "maxStateId": 6775, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 360 + ], + "boundingBox": "block" + }, + { + "id": 313, + "name": "infested_stone", + "displayName": "Infested Stone", + "hardness": 0.75, + "resistance": 0.75, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6776, + "minStateId": 6776, + "maxStateId": 6776, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 314, + "name": "infested_cobblestone", + "displayName": "Infested Cobblestone", + "hardness": 1.0, + "resistance": 0.75, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6777, + "minStateId": 6777, + "maxStateId": 6777, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 315, + "name": "infested_stone_bricks", + "displayName": "Infested Stone Bricks", + "hardness": 0.75, + "resistance": 0.75, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6778, + "minStateId": 6778, + "maxStateId": 6778, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 316, + "name": "infested_mossy_stone_bricks", + "displayName": "Infested Mossy Stone Bricks", + "hardness": 0.75, + "resistance": 0.75, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6779, + "minStateId": 6779, + "maxStateId": 6779, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 317, + "name": "infested_cracked_stone_bricks", + "displayName": "Infested Cracked Stone Bricks", + "hardness": 0.75, + "resistance": 0.75, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6780, + "minStateId": 6780, + "maxStateId": 6780, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 318, + "name": "infested_chiseled_stone_bricks", + "displayName": "Infested Chiseled Stone Bricks", + "hardness": 0.75, + "resistance": 0.75, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6781, + "minStateId": 6781, + "maxStateId": 6781, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 319, + "name": "brown_mushroom_block", + "displayName": "Brown Mushroom Block", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6782, + "minStateId": 6782, + "maxStateId": 6845, + "states": [ + { + "name": "down", + "type": "bool", + "num_values": 2 + }, + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 0 + ], + "boundingBox": "block" + }, + { + "id": 320, + "name": "red_mushroom_block", + "displayName": "Red Mushroom Block", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6846, + "minStateId": 6846, + "maxStateId": 6909, + "states": [ + { + "name": "down", + "type": "bool", + "num_values": 2 + }, + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 0 + ], + "boundingBox": "block" + }, + { + "id": 321, + "name": "mushroom_stem", + "displayName": "Mushroom Stem", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6910, + "minStateId": 6910, + "maxStateId": 6973, + "states": [ + { + "name": "down", + "type": "bool", + "num_values": 2 + }, + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 322, + "name": "iron_bars", + "displayName": "Iron Bars", + "hardness": 5.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7005, + "minStateId": 6974, + "maxStateId": 7005, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 370 + ], + "boundingBox": "block" + }, + { + "id": 323, + "name": "chain", + "displayName": "Chain", + "hardness": 5.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7009, + "minStateId": 7006, + "maxStateId": 7011, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 371 + ], + "boundingBox": "block" + }, + { + "id": 324, + "name": "glass_pane", + "displayName": "Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7043, + "minStateId": 7012, + "maxStateId": 7043, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 325, + "name": "pumpkin", + "displayName": "Pumpkin", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "gourd;mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7044, + "minStateId": 7044, + "maxStateId": 7044, + "states": [], + "drops": [ + 337 + ], + "boundingBox": "block" + }, + { + "id": 326, + "name": "melon", + "displayName": "Melon", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "gourd;mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7045, + "minStateId": 7045, + "maxStateId": 7045, + "states": [], + "drops": [ + 1033 + ], + "boundingBox": "block" + }, + { + "id": 327, + "name": "attached_pumpkin_stem", + "displayName": "Attached Pumpkin Stem", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7046, + "minStateId": 7046, + "maxStateId": 7049, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1035 + ], + "boundingBox": "empty" + }, + { + "id": 328, + "name": "attached_melon_stem", + "displayName": "Attached Melon Stem", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7050, + "minStateId": 7050, + "maxStateId": 7053, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1036 + ], + "boundingBox": "empty" + }, + { + "id": 329, + "name": "pumpkin_stem", + "displayName": "Pumpkin Stem", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7054, + "minStateId": 7054, + "maxStateId": 7061, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 8, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "drops": [ + 0 + ], + "boundingBox": "empty" + }, + { + "id": 330, + "name": "melon_stem", + "displayName": "Melon Stem", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7062, + "minStateId": 7062, + "maxStateId": 7069, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 8, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "drops": [ + 1036 + ], + "boundingBox": "empty" + }, + { + "id": 331, + "name": "vine", + "displayName": "Vines", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "vine_or_glow_lichen;plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7101, + "minStateId": 7070, + "maxStateId": 7101, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 332, + "name": "glow_lichen", + "displayName": "Glow Lichen", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "vine_or_glow_lichen;plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7229, + "minStateId": 7102, + "maxStateId": 7229, + "states": [ + { + "name": "down", + "type": "bool", + "num_values": 2 + }, + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 333, + "name": "resin_clump", + "displayName": "Resin Clump", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 7357, + "minStateId": 7230, + "maxStateId": 7357, + "states": [ + { + "name": "down", + "type": "bool", + "num_values": 2 + }, + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 0 + ], + "boundingBox": "empty" + }, + { + "id": 334, + "name": "oak_fence_gate", + "displayName": "Oak Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7365, + "minStateId": 7358, + "maxStateId": 7389, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 777 + ], + "boundingBox": "block" + }, + { + "id": 335, + "name": "brick_stairs", + "displayName": "Brick Stairs", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7401, + "minStateId": 7390, + "maxStateId": 7469, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 383 + ], + "boundingBox": "block" + }, + { + "id": 336, + "name": "stone_brick_stairs", + "displayName": "Stone Brick Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7481, + "minStateId": 7470, + "maxStateId": 7549, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 384 + ], + "boundingBox": "block" + }, + { + "id": 337, + "name": "mud_brick_stairs", + "displayName": "Mud Brick Stairs", + "hardness": 1.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7561, + "minStateId": 7550, + "maxStateId": 7629, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 385 + ], + "boundingBox": "block" + }, + { + "id": 338, + "name": "mycelium", + "displayName": "Mycelium", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7631, + "minStateId": 7630, + "maxStateId": 7631, + "states": [ + { + "name": "snowy", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 28 + ], + "boundingBox": "block" + }, + { + "id": 339, + "name": "lily_pad", + "displayName": "Lily Pad", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7632, + "minStateId": 7632, + "maxStateId": 7632, + "states": [], + "drops": [ + 387 + ], + "boundingBox": "block" + }, + { + "id": 340, + "name": "resin_block", + "displayName": "Block of Resin", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7633, + "minStateId": 7633, + "maxStateId": 7633, + "states": [], + "drops": [ + 377 + ], + "boundingBox": "block" + }, + { + "id": 341, + "name": "resin_bricks", + "displayName": "Resin Bricks", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7634, + "minStateId": 7634, + "maxStateId": 7634, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 378 + ], + "boundingBox": "block" + }, + { + "id": 342, + "name": "resin_brick_stairs", + "displayName": "Resin Brick Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7646, + "minStateId": 7635, + "maxStateId": 7714, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 379 + ], + "boundingBox": "block" + }, + { + "id": 343, + "name": "resin_brick_slab", + "displayName": "Resin Brick Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7718, + "minStateId": 7715, + "maxStateId": 7720, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 380 + ], + "boundingBox": "block" + }, + { + "id": 344, + "name": "resin_brick_wall", + "displayName": "Resin Brick Wall", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7724, + "minStateId": 7721, + "maxStateId": 8044, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 381 + ], + "boundingBox": "block" + }, + { + "id": 345, + "name": "chiseled_resin_bricks", + "displayName": "Chiseled Resin Bricks", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8045, + "minStateId": 8045, + "maxStateId": 8045, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 382 + ], + "boundingBox": "block" + }, + { + "id": 346, + "name": "nether_bricks", + "displayName": "Nether Bricks", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8046, + "minStateId": 8046, + "maxStateId": 8046, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 388 + ], + "boundingBox": "block" + }, + { + "id": 347, + "name": "nether_brick_fence", + "displayName": "Nether Brick Fence", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8078, + "minStateId": 8047, + "maxStateId": 8078, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 391 + ], + "boundingBox": "block" + }, + { + "id": 348, + "name": "nether_brick_stairs", + "displayName": "Nether Brick Stairs", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8090, + "minStateId": 8079, + "maxStateId": 8158, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 392 + ], + "boundingBox": "block" + }, + { + "id": 349, + "name": "nether_wart", + "displayName": "Nether Wart", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8159, + "minStateId": 8159, + "maxStateId": 8162, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 4, + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], + "drops": [ + 1046 + ], + "boundingBox": "empty" + }, + { + "id": 350, + "name": "enchanting_table", + "displayName": "Enchanting Table", + "hardness": 5.0, + "resistance": 1200.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 7, + "filterLight": 0, + "defaultState": 8163, + "minStateId": 8163, + "maxStateId": 8163, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 397 + ], + "boundingBox": "block" + }, + { + "id": 351, + "name": "brewing_stand", + "displayName": "Brewing Stand", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 1, + "filterLight": 0, + "defaultState": 8171, + "minStateId": 8164, + "maxStateId": 8171, + "states": [ + { + "name": "has_bottle_0", + "type": "bool", + "num_values": 2 + }, + { + "name": "has_bottle_1", + "type": "bool", + "num_values": 2 + }, + { + "name": "has_bottle_2", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1053 + ], + "boundingBox": "block" + }, + { + "id": 352, + "name": "cauldron", + "displayName": "Cauldron", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8172, + "minStateId": 8172, + "maxStateId": 8172, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1054 + ], + "boundingBox": "block" + }, + { + "id": 353, + "name": "water_cauldron", + "displayName": "Water Cauldron", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8173, + "minStateId": 8173, + "maxStateId": 8175, + "states": [ + { + "name": "level", + "type": "int", + "num_values": 3, + "values": [ + "1", + "2", + "3" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1054 + ], + "boundingBox": "block" + }, + { + "id": 354, + "name": "lava_cauldron", + "displayName": "Lava Cauldron", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 8176, + "minStateId": 8176, + "maxStateId": 8176, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1054 + ], + "boundingBox": "block" + }, + { + "id": 355, + "name": "powder_snow_cauldron", + "displayName": "Powder Snow Cauldron", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8177, + "minStateId": 8177, + "maxStateId": 8179, + "states": [ + { + "name": "level", + "type": "int", + "num_values": 3, + "values": [ + "1", + "2", + "3" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1054 + ], + "boundingBox": "block" + }, + { + "id": 356, + "name": "end_portal", + "displayName": "End Portal", + "hardness": -1.0, + "resistance": 3600000.0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 8180, + "minStateId": 8180, + "maxStateId": 8180, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 357, + "name": "end_portal_frame", + "displayName": "End Portal Frame", + "hardness": -1.0, + "resistance": 3600000.0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 1, + "filterLight": 0, + "defaultState": 8185, + "minStateId": 8181, + "maxStateId": 8188, + "states": [ + { + "name": "eye", + "type": "bool", + "num_values": 2 + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 358, + "name": "end_stone", + "displayName": "End Stone", + "hardness": 3.0, + "resistance": 9.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8189, + "minStateId": 8189, + "maxStateId": 8189, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 399 + ], + "boundingBox": "block" + }, + { + "id": 359, + "name": "dragon_egg", + "displayName": "Dragon Egg", + "hardness": 3.0, + "resistance": 9.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 1, + "filterLight": 0, + "defaultState": 8190, + "minStateId": 8190, + "maxStateId": 8190, + "states": [], + "drops": [ + 401 + ], + "boundingBox": "block" + }, + { + "id": 360, + "name": "redstone_lamp", + "displayName": "Redstone Lamp", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8192, + "minStateId": 8191, + "maxStateId": 8192, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 703 + ], + "boundingBox": "block" + }, + { + "id": 361, + "name": "cocoa", + "displayName": "Cocoa", + "hardness": 0.2, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8193, + "minStateId": 8193, + "maxStateId": 8204, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 3, + "values": [ + "0", + "1", + "2" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 992 + ], + "boundingBox": "block" + }, + { + "id": 362, + "name": "sandstone_stairs", + "displayName": "Sandstone Stairs", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8216, + "minStateId": 8205, + "maxStateId": 8284, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 402 + ], + "boundingBox": "block" + }, + { + "id": 363, + "name": "emerald_ore", + "displayName": "Emerald Ore", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8285, + "minStateId": 8285, + "maxStateId": 8285, + "states": [], + "harvestTools": { + "866": true, + "871": true, + "876": true + }, + "drops": [ + 837 + ], + "boundingBox": "block" + }, + { + "id": 364, + "name": "deepslate_emerald_ore", + "displayName": "Deepslate Emerald Ore", + "hardness": 4.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8286, + "minStateId": 8286, + "maxStateId": 8286, + "states": [], + "harvestTools": { + "866": true, + "871": true, + "876": true + }, + "drops": [ + 837 + ], + "boundingBox": "block" + }, + { + "id": 365, + "name": "ender_chest", + "displayName": "Ender Chest", + "hardness": 22.5, + "resistance": 600.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 7, + "filterLight": 0, + "defaultState": 8288, + "minStateId": 8287, + "maxStateId": 8294, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 303 + ], + "boundingBox": "block" + }, + { + "id": 366, + "name": "tripwire_hook", + "displayName": "Tripwire Hook", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8304, + "minStateId": 8295, + "maxStateId": 8310, + "states": [ + { + "name": "attached", + "type": "bool", + "num_values": 2 + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 700 + ], + "boundingBox": "empty" + }, + { + "id": 367, + "name": "tripwire", + "displayName": "Tripwire", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8438, + "minStateId": 8311, + "maxStateId": 8438, + "states": [ + { + "name": "attached", + "type": "bool", + "num_values": 2 + }, + { + "name": "disarmed", + "type": "bool", + "num_values": 2 + }, + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 881 + ], + "boundingBox": "empty" + }, + { + "id": 368, + "name": "emerald_block", + "displayName": "Block of Emerald", + "hardness": 5.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8439, + "minStateId": 8439, + "maxStateId": 8439, + "states": [], + "harvestTools": { + "866": true, + "871": true, + "876": true + }, + "drops": [ + 404 + ], + "boundingBox": "block" + }, + { + "id": 369, + "name": "spruce_stairs", + "displayName": "Spruce Stairs", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8451, + "minStateId": 8440, + "maxStateId": 8519, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 406 + ], + "boundingBox": "block" + }, + { + "id": 370, + "name": "birch_stairs", + "displayName": "Birch Stairs", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8531, + "minStateId": 8520, + "maxStateId": 8599, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 407 + ], + "boundingBox": "block" + }, + { + "id": 371, + "name": "jungle_stairs", + "displayName": "Jungle Stairs", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8611, + "minStateId": 8600, + "maxStateId": 8679, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 408 + ], + "boundingBox": "block" + }, + { + "id": 372, + "name": "command_block", + "displayName": "Command Block", + "hardness": -1.0, + "resistance": 3600000.0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8686, + "minStateId": 8680, + "maxStateId": 8691, + "states": [ + { + "name": "conditional", + "type": "bool", + "num_values": 2 + }, + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 373, + "name": "beacon", + "displayName": "Beacon", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 1, + "defaultState": 8692, + "minStateId": 8692, + "maxStateId": 8692, + "states": [], + "drops": [ + 419 + ], + "boundingBox": "block" + }, + { + "id": 374, + "name": "cobblestone_wall", + "displayName": "Cobblestone Wall", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8696, + "minStateId": 8693, + "maxStateId": 9016, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 420 + ], + "boundingBox": "block" + }, + { + "id": 375, + "name": "mossy_cobblestone_wall", + "displayName": "Mossy Cobblestone Wall", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9020, + "minStateId": 9017, + "maxStateId": 9340, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 421 + ], + "boundingBox": "block" + }, + { + "id": 376, + "name": "flower_pot", + "displayName": "Flower Pot", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9341, + "minStateId": 9341, + "maxStateId": 9341, + "states": [], + "drops": [ + 1147 + ], + "boundingBox": "block" + }, + { + "id": 377, + "name": "potted_torchflower", + "displayName": "Potted Torchflower", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9342, + "minStateId": 9342, + "maxStateId": 9342, + "states": [], + "drops": [ + 1147, + 240 + ], + "boundingBox": "block" + }, + { + "id": 378, + "name": "potted_oak_sapling", + "displayName": "Potted Oak Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9343, + "minStateId": 9343, + "maxStateId": 9343, + "states": [], + "drops": [ + 1147, + 49 + ], + "boundingBox": "block" + }, + { + "id": 379, + "name": "potted_spruce_sapling", + "displayName": "Potted Spruce Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9344, + "minStateId": 9344, + "maxStateId": 9344, + "states": [], + "drops": [ + 1147, + 50 + ], + "boundingBox": "block" + }, + { + "id": 380, + "name": "potted_birch_sapling", + "displayName": "Potted Birch Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9345, + "minStateId": 9345, + "maxStateId": 9345, + "states": [], + "drops": [ + 1147, + 51 + ], + "boundingBox": "block" + }, + { + "id": 381, + "name": "potted_jungle_sapling", + "displayName": "Potted Jungle Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9346, + "minStateId": 9346, + "maxStateId": 9346, + "states": [], + "drops": [ + 1147, + 52 + ], + "boundingBox": "block" + }, + { + "id": 382, + "name": "potted_acacia_sapling", + "displayName": "Potted Acacia Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9347, + "minStateId": 9347, + "maxStateId": 9347, + "states": [], + "drops": [ + 1147, + 53 + ], + "boundingBox": "block" + }, + { + "id": 383, + "name": "potted_cherry_sapling", + "displayName": "Potted Cherry Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9348, + "minStateId": 9348, + "maxStateId": 9348, + "states": [], + "drops": [ + 1147, + 54 + ], + "boundingBox": "block" + }, + { + "id": 384, + "name": "potted_dark_oak_sapling", + "displayName": "Potted Dark Oak Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9349, + "minStateId": 9349, + "maxStateId": 9349, + "states": [], + "drops": [ + 1147, + 55 + ], + "boundingBox": "block" + }, + { + "id": 385, + "name": "potted_pale_oak_sapling", + "displayName": "Potted Pale Oak Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9350, + "minStateId": 9350, + "maxStateId": 9350, + "states": [], + "drops": [ + 1147, + 56 + ], + "boundingBox": "block" + }, + { + "id": 386, + "name": "potted_mangrove_propagule", + "displayName": "Potted Mangrove Propagule", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9351, + "minStateId": 9351, + "maxStateId": 9351, + "states": [], + "drops": [ + 1147, + 57 + ], + "boundingBox": "block" + }, + { + "id": 387, + "name": "potted_fern", + "displayName": "Potted Fern", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9352, + "minStateId": 9352, + "maxStateId": 9352, + "states": [], + "drops": [ + 1147, + 203 + ], + "boundingBox": "block" + }, + { + "id": 388, + "name": "potted_dandelion", + "displayName": "Potted Dandelion", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9353, + "minStateId": 9353, + "maxStateId": 9353, + "states": [], + "drops": [ + 1147, + 225 + ], + "boundingBox": "block" + }, + { + "id": 389, + "name": "potted_poppy", + "displayName": "Potted Poppy", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9354, + "minStateId": 9354, + "maxStateId": 9354, + "states": [], + "drops": [ + 1147, + 228 + ], + "boundingBox": "block" + }, + { + "id": 390, + "name": "potted_blue_orchid", + "displayName": "Potted Blue Orchid", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9355, + "minStateId": 9355, + "maxStateId": 9355, + "states": [], + "drops": [ + 1147, + 229 + ], + "boundingBox": "block" + }, + { + "id": 391, + "name": "potted_allium", + "displayName": "Potted Allium", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9356, + "minStateId": 9356, + "maxStateId": 9356, + "states": [], + "drops": [ + 1147, + 230 + ], + "boundingBox": "block" + }, + { + "id": 392, + "name": "potted_azure_bluet", + "displayName": "Potted Azure Bluet", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9357, + "minStateId": 9357, + "maxStateId": 9357, + "states": [], + "drops": [ + 1147, + 231 + ], + "boundingBox": "block" + }, + { + "id": 393, + "name": "potted_red_tulip", + "displayName": "Potted Red Tulip", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9358, + "minStateId": 9358, + "maxStateId": 9358, + "states": [], + "drops": [ + 1147, + 232 + ], + "boundingBox": "block" + }, + { + "id": 394, + "name": "potted_orange_tulip", + "displayName": "Potted Orange Tulip", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9359, + "minStateId": 9359, + "maxStateId": 9359, + "states": [], + "drops": [ + 1147, + 233 + ], + "boundingBox": "block" + }, + { + "id": 395, + "name": "potted_white_tulip", + "displayName": "Potted White Tulip", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9360, + "minStateId": 9360, + "maxStateId": 9360, + "states": [], + "drops": [ + 1147, + 234 + ], + "boundingBox": "block" + }, + { + "id": 396, + "name": "potted_pink_tulip", + "displayName": "Potted Pink Tulip", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9361, + "minStateId": 9361, + "maxStateId": 9361, + "states": [], + "drops": [ + 1147, + 235 + ], + "boundingBox": "block" + }, + { + "id": 397, + "name": "potted_oxeye_daisy", + "displayName": "Potted Oxeye Daisy", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9362, + "minStateId": 9362, + "maxStateId": 9362, + "states": [], + "drops": [ + 1147, + 236 + ], + "boundingBox": "block" + }, + { + "id": 398, + "name": "potted_cornflower", + "displayName": "Potted Cornflower", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9363, + "minStateId": 9363, + "maxStateId": 9363, + "states": [], + "drops": [ + 1147, + 237 + ], + "boundingBox": "block" + }, + { + "id": 399, + "name": "potted_lily_of_the_valley", + "displayName": "Potted Lily of the Valley", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9364, + "minStateId": 9364, + "maxStateId": 9364, + "states": [], + "drops": [ + 1147, + 238 + ], + "boundingBox": "block" + }, + { + "id": 400, + "name": "potted_wither_rose", + "displayName": "Potted Wither Rose", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9365, + "minStateId": 9365, + "maxStateId": 9365, + "states": [], + "drops": [ + 1147, + 239 + ], + "boundingBox": "block" + }, + { + "id": 401, + "name": "potted_red_mushroom", + "displayName": "Potted Red Mushroom", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9366, + "minStateId": 9366, + "maxStateId": 9366, + "states": [], + "drops": [ + 1147, + 244 + ], + "boundingBox": "block" + }, + { + "id": 402, + "name": "potted_brown_mushroom", + "displayName": "Potted Brown Mushroom", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9367, + "minStateId": 9367, + "maxStateId": 9367, + "states": [], + "drops": [ + 1147, + 243 + ], + "boundingBox": "block" + }, + { + "id": 403, + "name": "potted_dead_bush", + "displayName": "Potted Dead Bush", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9368, + "minStateId": 9368, + "maxStateId": 9368, + "states": [], + "drops": [ + 1147, + 206 + ], + "boundingBox": "block" + }, + { + "id": 404, + "name": "potted_cactus", + "displayName": "Potted Cactus", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9369, + "minStateId": 9369, + "maxStateId": 9369, + "states": [], + "drops": [ + 1147, + 322 + ], + "boundingBox": "block" + }, + { + "id": 405, + "name": "carrots", + "displayName": "Carrots", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9370, + "minStateId": 9370, + "maxStateId": 9377, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 8, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "drops": [ + 1148 + ], + "boundingBox": "empty" + }, + { + "id": 406, + "name": "potatoes", + "displayName": "Potatoes", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9378, + "minStateId": 9378, + "maxStateId": 9385, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 8, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "drops": [ + 1149 + ], + "boundingBox": "empty" + }, + { + "id": 407, + "name": "oak_button", + "displayName": "Oak Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9395, + "minStateId": 9386, + "maxStateId": 9409, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 707 + ], + "boundingBox": "empty" + }, + { + "id": 408, + "name": "spruce_button", + "displayName": "Spruce Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9419, + "minStateId": 9410, + "maxStateId": 9433, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 708 + ], + "boundingBox": "empty" + }, + { + "id": 409, + "name": "birch_button", + "displayName": "Birch Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9443, + "minStateId": 9434, + "maxStateId": 9457, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 709 + ], + "boundingBox": "empty" + }, + { + "id": 410, + "name": "jungle_button", + "displayName": "Jungle Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9467, + "minStateId": 9458, + "maxStateId": 9481, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 710 + ], + "boundingBox": "empty" + }, + { + "id": 411, + "name": "acacia_button", + "displayName": "Acacia Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9491, + "minStateId": 9482, + "maxStateId": 9505, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 711 + ], + "boundingBox": "empty" + }, + { + "id": 412, + "name": "cherry_button", + "displayName": "Cherry Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9515, + "minStateId": 9506, + "maxStateId": 9529, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 712 + ], + "boundingBox": "empty" + }, + { + "id": 413, + "name": "dark_oak_button", + "displayName": "Dark Oak Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9539, + "minStateId": 9530, + "maxStateId": 9553, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 713 + ], + "boundingBox": "empty" + }, + { + "id": 414, + "name": "pale_oak_button", + "displayName": "Pale Oak Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9563, + "minStateId": 9554, + "maxStateId": 9577, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 714 + ], + "boundingBox": "empty" + }, + { + "id": 415, + "name": "mangrove_button", + "displayName": "Mangrove Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9587, + "minStateId": 9578, + "maxStateId": 9601, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 715 + ], + "boundingBox": "empty" + }, + { + "id": 416, + "name": "bamboo_button", + "displayName": "Bamboo Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9611, + "minStateId": 9602, + "maxStateId": 9625, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 716 + ], + "boundingBox": "empty" + }, + { + "id": 417, + "name": "skeleton_skull", + "displayName": "Skeleton Skull", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9642, + "minStateId": 9626, + "maxStateId": 9657, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1154 + ], + "boundingBox": "block" + }, + { + "id": 418, + "name": "skeleton_wall_skull", + "displayName": "Skeleton Skull", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9659, + "minStateId": 9658, + "maxStateId": 9665, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1154 + ], + "boundingBox": "block" + }, + { + "id": 419, + "name": "wither_skeleton_skull", + "displayName": "Wither Skeleton Skull", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9682, + "minStateId": 9666, + "maxStateId": 9697, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1155 + ], + "boundingBox": "block" + }, + { + "id": 420, + "name": "wither_skeleton_wall_skull", + "displayName": "Wither Skeleton Skull", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9699, + "minStateId": 9698, + "maxStateId": 9705, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1155 + ], + "boundingBox": "block" + }, + { + "id": 421, + "name": "zombie_head", + "displayName": "Zombie Head", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9722, + "minStateId": 9706, + "maxStateId": 9737, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1157 + ], + "boundingBox": "block" + }, + { + "id": 422, + "name": "zombie_wall_head", + "displayName": "Zombie Head", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9739, + "minStateId": 9738, + "maxStateId": 9745, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1157 + ], + "boundingBox": "block" + }, + { + "id": 423, + "name": "player_head", + "displayName": "Player Head", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9762, + "minStateId": 9746, + "maxStateId": 9777, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1156 + ], + "boundingBox": "block" + }, + { + "id": 424, + "name": "player_wall_head", + "displayName": "Player Head", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9779, + "minStateId": 9778, + "maxStateId": 9785, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1156 + ], + "boundingBox": "block" + }, + { + "id": 425, + "name": "creeper_head", + "displayName": "Creeper Head", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9802, + "minStateId": 9786, + "maxStateId": 9817, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1158 + ], + "boundingBox": "block" + }, + { + "id": 426, + "name": "creeper_wall_head", + "displayName": "Creeper Head", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9819, + "minStateId": 9818, + "maxStateId": 9825, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1158 + ], + "boundingBox": "block" + }, + { + "id": 427, + "name": "dragon_head", + "displayName": "Dragon Head", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9842, + "minStateId": 9826, + "maxStateId": 9857, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1159 + ], + "boundingBox": "block" + }, + { + "id": 428, + "name": "dragon_wall_head", + "displayName": "Dragon Head", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9859, + "minStateId": 9858, + "maxStateId": 9865, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1159 + ], + "boundingBox": "block" + }, + { + "id": 429, + "name": "piglin_head", + "displayName": "Piglin Head", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9882, + "minStateId": 9866, + "maxStateId": 9897, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1160 + ], + "boundingBox": "block" + }, + { + "id": 430, + "name": "piglin_wall_head", + "displayName": "Piglin Head", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9899, + "minStateId": 9898, + "maxStateId": 9905, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1160 + ], + "boundingBox": "block" + }, + { + "id": 431, + "name": "anvil", + "displayName": "Anvil", + "hardness": 5.0, + "resistance": 1200.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9906, + "minStateId": 9906, + "maxStateId": 9909, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 442 + ], + "boundingBox": "block" + }, + { + "id": 432, + "name": "chipped_anvil", + "displayName": "Chipped Anvil", + "hardness": 5.0, + "resistance": 1200.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9910, + "minStateId": 9910, + "maxStateId": 9913, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 443 + ], + "boundingBox": "block" + }, + { + "id": 433, + "name": "damaged_anvil", + "displayName": "Damaged Anvil", + "hardness": 5.0, + "resistance": 1200.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9914, + "minStateId": 9914, + "maxStateId": 9917, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 444 + ], + "boundingBox": "block" + }, + { + "id": 434, + "name": "trapped_chest", + "displayName": "Trapped Chest", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9919, + "minStateId": 9918, + "maxStateId": 9941, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "single", + "left", + "right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 701 + ], + "boundingBox": "block" + }, + { + "id": 435, + "name": "light_weighted_pressure_plate", + "displayName": "Light Weighted Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9942, + "minStateId": 9942, + "maxStateId": 9957, + "states": [ + { + "name": "power", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 721 + ], + "boundingBox": "empty" + }, + { + "id": 436, + "name": "heavy_weighted_pressure_plate", + "displayName": "Heavy Weighted Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9958, + "minStateId": 9958, + "maxStateId": 9973, + "states": [ + { + "name": "power", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 722 + ], + "boundingBox": "empty" + }, + { + "id": 437, + "name": "comparator", + "displayName": "Redstone Comparator", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9975, + "minStateId": 9974, + "maxStateId": 9989, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "mode", + "type": "enum", + "num_values": 2, + "values": [ + "compare", + "subtract" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 684 + ], + "boundingBox": "block" + }, + { + "id": 438, + "name": "daylight_detector", + "displayName": "Daylight Detector", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10006, + "minStateId": 9990, + "maxStateId": 10021, + "states": [ + { + "name": "inverted", + "type": "bool", + "num_values": 2 + }, + { + "name": "power", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 697 + ], + "boundingBox": "block" + }, + { + "id": 439, + "name": "redstone_block", + "displayName": "Block of Redstone", + "hardness": 5.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10022, + "minStateId": 10022, + "maxStateId": 10022, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 682 + ], + "boundingBox": "block" + }, + { + "id": 440, + "name": "nether_quartz_ore", + "displayName": "Nether Quartz Ore", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10023, + "minStateId": 10023, + "maxStateId": 10023, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 839 + ], + "boundingBox": "block" + }, + { + "id": 441, + "name": "hopper", + "displayName": "Hopper", + "hardness": 3.0, + "resistance": 4.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10024, + "minStateId": 10024, + "maxStateId": 10033, + "states": [ + { + "name": "enabled", + "type": "bool", + "num_values": 2 + }, + { + "name": "facing", + "type": "enum", + "num_values": 5, + "values": [ + "down", + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 690 + ], + "boundingBox": "block" + }, + { + "id": 442, + "name": "quartz_block", + "displayName": "Block of Quartz", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10034, + "minStateId": 10034, + "maxStateId": 10034, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 446 + ], + "boundingBox": "block" + }, + { + "id": 443, + "name": "chiseled_quartz_block", + "displayName": "Chiseled Quartz Block", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10035, + "minStateId": 10035, + "maxStateId": 10035, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 445 + ], + "boundingBox": "block" + }, + { + "id": 444, + "name": "quartz_pillar", + "displayName": "Quartz Pillar", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10037, + "minStateId": 10036, + "maxStateId": 10038, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 448 + ], + "boundingBox": "block" + }, + { + "id": 445, + "name": "quartz_stairs", + "displayName": "Quartz Stairs", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10050, + "minStateId": 10039, + "maxStateId": 10118, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 449 + ], + "boundingBox": "block" + }, + { + "id": 446, + "name": "activator_rail", + "displayName": "Activator Rail", + "hardness": 0.7, + "resistance": 0.7, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10132, + "minStateId": 10119, + "maxStateId": 10142, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "shape", + "type": "enum", + "num_values": 6, + "values": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 792 + ], + "boundingBox": "empty" + }, + { + "id": 447, + "name": "dropper", + "displayName": "Dropper", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10144, + "minStateId": 10143, + "maxStateId": 10154, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "triggered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 692 + ], + "boundingBox": "block" + }, + { + "id": 448, + "name": "white_terracotta", + "displayName": "White Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10155, + "minStateId": 10155, + "maxStateId": 10155, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 450 + ], + "boundingBox": "block" + }, + { + "id": 449, + "name": "orange_terracotta", + "displayName": "Orange Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10156, + "minStateId": 10156, + "maxStateId": 10156, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 451 + ], + "boundingBox": "block" + }, + { + "id": 450, + "name": "magenta_terracotta", + "displayName": "Magenta Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10157, + "minStateId": 10157, + "maxStateId": 10157, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 452 + ], + "boundingBox": "block" + }, + { + "id": 451, + "name": "light_blue_terracotta", + "displayName": "Light Blue Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10158, + "minStateId": 10158, + "maxStateId": 10158, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 453 + ], + "boundingBox": "block" + }, + { + "id": 452, + "name": "yellow_terracotta", + "displayName": "Yellow Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10159, + "minStateId": 10159, + "maxStateId": 10159, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 454 + ], + "boundingBox": "block" + }, + { + "id": 453, + "name": "lime_terracotta", + "displayName": "Lime Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10160, + "minStateId": 10160, + "maxStateId": 10160, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 455 + ], + "boundingBox": "block" + }, + { + "id": 454, + "name": "pink_terracotta", + "displayName": "Pink Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10161, + "minStateId": 10161, + "maxStateId": 10161, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 456 + ], + "boundingBox": "block" + }, + { + "id": 455, + "name": "gray_terracotta", + "displayName": "Gray Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10162, + "minStateId": 10162, + "maxStateId": 10162, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 457 + ], + "boundingBox": "block" + }, + { + "id": 456, + "name": "light_gray_terracotta", + "displayName": "Light Gray Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10163, + "minStateId": 10163, + "maxStateId": 10163, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 458 + ], + "boundingBox": "block" + }, + { + "id": 457, + "name": "cyan_terracotta", + "displayName": "Cyan Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10164, + "minStateId": 10164, + "maxStateId": 10164, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 459 + ], + "boundingBox": "block" + }, + { + "id": 458, + "name": "purple_terracotta", + "displayName": "Purple Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10165, + "minStateId": 10165, + "maxStateId": 10165, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 460 + ], + "boundingBox": "block" + }, + { + "id": 459, + "name": "blue_terracotta", + "displayName": "Blue Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10166, + "minStateId": 10166, + "maxStateId": 10166, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 461 + ], + "boundingBox": "block" + }, + { + "id": 460, + "name": "brown_terracotta", + "displayName": "Brown Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10167, + "minStateId": 10167, + "maxStateId": 10167, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 462 + ], + "boundingBox": "block" + }, + { + "id": 461, + "name": "green_terracotta", + "displayName": "Green Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10168, + "minStateId": 10168, + "maxStateId": 10168, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 463 + ], + "boundingBox": "block" + }, + { + "id": 462, + "name": "red_terracotta", + "displayName": "Red Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10169, + "minStateId": 10169, + "maxStateId": 10169, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 464 + ], + "boundingBox": "block" + }, + { + "id": 463, + "name": "black_terracotta", + "displayName": "Black Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 10170, + "minStateId": 10170, + "maxStateId": 10170, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 465 + ], + "boundingBox": "block" + }, + { + "id": 464, + "name": "white_stained_glass_pane", + "displayName": "White Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10202, + "minStateId": 10171, + "maxStateId": 10202, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 465, + "name": "orange_stained_glass_pane", + "displayName": "Orange Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10234, + "minStateId": 10203, + "maxStateId": 10234, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 466, + "name": "magenta_stained_glass_pane", + "displayName": "Magenta Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10266, + "minStateId": 10235, + "maxStateId": 10266, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 467, + "name": "light_blue_stained_glass_pane", + "displayName": "Light Blue Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10298, + "minStateId": 10267, + "maxStateId": 10298, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 468, + "name": "yellow_stained_glass_pane", + "displayName": "Yellow Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10330, + "minStateId": 10299, + "maxStateId": 10330, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 469, + "name": "lime_stained_glass_pane", + "displayName": "Lime Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10362, + "minStateId": 10331, + "maxStateId": 10362, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 470, + "name": "pink_stained_glass_pane", + "displayName": "Pink Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10394, + "minStateId": 10363, + "maxStateId": 10394, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 471, + "name": "gray_stained_glass_pane", + "displayName": "Gray Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10426, + "minStateId": 10395, + "maxStateId": 10426, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 472, + "name": "light_gray_stained_glass_pane", + "displayName": "Light Gray Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10458, + "minStateId": 10427, + "maxStateId": 10458, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 473, + "name": "cyan_stained_glass_pane", + "displayName": "Cyan Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10490, + "minStateId": 10459, + "maxStateId": 10490, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 474, + "name": "purple_stained_glass_pane", + "displayName": "Purple Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10522, + "minStateId": 10491, + "maxStateId": 10522, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 475, + "name": "blue_stained_glass_pane", + "displayName": "Blue Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10554, + "minStateId": 10523, + "maxStateId": 10554, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 476, + "name": "brown_stained_glass_pane", + "displayName": "Brown Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10586, + "minStateId": 10555, + "maxStateId": 10586, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 477, + "name": "green_stained_glass_pane", + "displayName": "Green Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10618, + "minStateId": 10587, + "maxStateId": 10618, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 478, + "name": "red_stained_glass_pane", + "displayName": "Red Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10650, + "minStateId": 10619, + "maxStateId": 10650, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 479, + "name": "black_stained_glass_pane", + "displayName": "Black Stained Glass Pane", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10682, + "minStateId": 10651, + "maxStateId": 10682, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 480, + "name": "acacia_stairs", + "displayName": "Acacia Stairs", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10694, + "minStateId": 10683, + "maxStateId": 10762, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 409 + ], + "boundingBox": "block" + }, + { + "id": 481, + "name": "cherry_stairs", + "displayName": "Cherry Stairs", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10774, + "minStateId": 10763, + "maxStateId": 10842, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 410 + ], + "boundingBox": "block" + }, + { + "id": 482, + "name": "dark_oak_stairs", + "displayName": "Dark Oak Stairs", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10854, + "minStateId": 10843, + "maxStateId": 10922, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 411 + ], + "boundingBox": "block" + }, + { + "id": 483, + "name": "pale_oak_stairs", + "displayName": "Pale Oak Stairs", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10934, + "minStateId": 10923, + "maxStateId": 11002, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 412 + ], + "boundingBox": "block" + }, + { + "id": 484, + "name": "mangrove_stairs", + "displayName": "Mangrove Stairs", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11014, + "minStateId": 11003, + "maxStateId": 11082, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 413 + ], + "boundingBox": "block" + }, + { + "id": 485, + "name": "bamboo_stairs", + "displayName": "Bamboo Stairs", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11094, + "minStateId": 11083, + "maxStateId": 11162, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 414 + ], + "boundingBox": "block" + }, + { + "id": 486, + "name": "bamboo_mosaic_stairs", + "displayName": "Bamboo Mosaic Stairs", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11174, + "minStateId": 11163, + "maxStateId": 11242, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 415 + ], + "boundingBox": "block" + }, + { + "id": 487, + "name": "slime_block", + "displayName": "Slime Block", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 11243, + "minStateId": 11243, + "maxStateId": 11243, + "states": [], + "drops": [ + 687 + ], + "boundingBox": "block" + }, + { + "id": 488, + "name": "barrier", + "displayName": "Barrier", + "hardness": -1.0, + "resistance": 3600000.8, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11245, + "minStateId": 11244, + "maxStateId": 11245, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 489, + "name": "light", + "displayName": "Light", + "hardness": -1.0, + "resistance": 3600000.8, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 11277, + "minStateId": 11246, + "maxStateId": 11277, + "states": [ + { + "name": "level", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 490, + "name": "iron_trapdoor", + "displayName": "Iron Trapdoor", + "hardness": 5.0, + "resistance": 5.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11293, + "minStateId": 11278, + "maxStateId": 11341, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 756 + ], + "boundingBox": "block" + }, + { + "id": 491, + "name": "prismarine", + "displayName": "Prismarine", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11342, + "minStateId": 11342, + "maxStateId": 11342, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 526 + ], + "boundingBox": "block" + }, + { + "id": 492, + "name": "prismarine_bricks", + "displayName": "Prismarine Bricks", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11343, + "minStateId": 11343, + "maxStateId": 11343, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 527 + ], + "boundingBox": "block" + }, + { + "id": 493, + "name": "dark_prismarine", + "displayName": "Dark Prismarine", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11344, + "minStateId": 11344, + "maxStateId": 11344, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 528 + ], + "boundingBox": "block" + }, + { + "id": 494, + "name": "prismarine_stairs", + "displayName": "Prismarine Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11356, + "minStateId": 11345, + "maxStateId": 11424, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 529 + ], + "boundingBox": "block" + }, + { + "id": 495, + "name": "prismarine_brick_stairs", + "displayName": "Prismarine Brick Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11436, + "minStateId": 11425, + "maxStateId": 11504, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 530 + ], + "boundingBox": "block" + }, + { + "id": 496, + "name": "dark_prismarine_stairs", + "displayName": "Dark Prismarine Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11516, + "minStateId": 11505, + "maxStateId": 11584, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 531 + ], + "boundingBox": "block" + }, + { + "id": 497, + "name": "prismarine_slab", + "displayName": "Prismarine Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11588, + "minStateId": 11585, + "maxStateId": 11590, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 291 + ], + "boundingBox": "block" + }, + { + "id": 498, + "name": "prismarine_brick_slab", + "displayName": "Prismarine Brick Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11594, + "minStateId": 11591, + "maxStateId": 11596, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 292 + ], + "boundingBox": "block" + }, + { + "id": 499, + "name": "dark_prismarine_slab", + "displayName": "Dark Prismarine Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11600, + "minStateId": 11597, + "maxStateId": 11602, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 293 + ], + "boundingBox": "block" + }, + { + "id": 500, + "name": "sea_lantern", + "displayName": "Sea Lantern", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 11603, + "minStateId": 11603, + "maxStateId": 11603, + "states": [], + "drops": [ + 1169 + ], + "boundingBox": "block" + }, + { + "id": 501, + "name": "hay_block", + "displayName": "Hay Bale", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11605, + "minStateId": 11604, + "maxStateId": 11606, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 468 + ], + "boundingBox": "block" + }, + { + "id": 502, + "name": "white_carpet", + "displayName": "White Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11607, + "minStateId": 11607, + "maxStateId": 11607, + "states": [], + "drops": [ + 469 + ], + "boundingBox": "block" + }, + { + "id": 503, + "name": "orange_carpet", + "displayName": "Orange Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11608, + "minStateId": 11608, + "maxStateId": 11608, + "states": [], + "drops": [ + 470 + ], + "boundingBox": "block" + }, + { + "id": 504, + "name": "magenta_carpet", + "displayName": "Magenta Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11609, + "minStateId": 11609, + "maxStateId": 11609, + "states": [], + "drops": [ + 471 + ], + "boundingBox": "block" + }, + { + "id": 505, + "name": "light_blue_carpet", + "displayName": "Light Blue Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11610, + "minStateId": 11610, + "maxStateId": 11610, + "states": [], + "drops": [ + 472 + ], + "boundingBox": "block" + }, + { + "id": 506, + "name": "yellow_carpet", + "displayName": "Yellow Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11611, + "minStateId": 11611, + "maxStateId": 11611, + "states": [], + "drops": [ + 473 + ], + "boundingBox": "block" + }, + { + "id": 507, + "name": "lime_carpet", + "displayName": "Lime Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11612, + "minStateId": 11612, + "maxStateId": 11612, + "states": [], + "drops": [ + 474 + ], + "boundingBox": "block" + }, + { + "id": 508, + "name": "pink_carpet", + "displayName": "Pink Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11613, + "minStateId": 11613, + "maxStateId": 11613, + "states": [], + "drops": [ + 475 + ], + "boundingBox": "block" + }, + { + "id": 509, + "name": "gray_carpet", + "displayName": "Gray Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11614, + "minStateId": 11614, + "maxStateId": 11614, + "states": [], + "drops": [ + 476 + ], + "boundingBox": "block" + }, + { + "id": 510, + "name": "light_gray_carpet", + "displayName": "Light Gray Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11615, + "minStateId": 11615, + "maxStateId": 11615, + "states": [], + "drops": [ + 477 + ], + "boundingBox": "block" + }, + { + "id": 511, + "name": "cyan_carpet", + "displayName": "Cyan Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11616, + "minStateId": 11616, + "maxStateId": 11616, + "states": [], + "drops": [ + 478 + ], + "boundingBox": "block" + }, + { + "id": 512, + "name": "purple_carpet", + "displayName": "Purple Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11617, + "minStateId": 11617, + "maxStateId": 11617, + "states": [], + "drops": [ + 479 + ], + "boundingBox": "block" + }, + { + "id": 513, + "name": "blue_carpet", + "displayName": "Blue Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11618, + "minStateId": 11618, + "maxStateId": 11618, + "states": [], + "drops": [ + 480 + ], + "boundingBox": "block" + }, + { + "id": 514, + "name": "brown_carpet", + "displayName": "Brown Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11619, + "minStateId": 11619, + "maxStateId": 11619, + "states": [], + "drops": [ + 481 + ], + "boundingBox": "block" + }, + { + "id": 515, + "name": "green_carpet", + "displayName": "Green Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11620, + "minStateId": 11620, + "maxStateId": 11620, + "states": [], + "drops": [ + 482 + ], + "boundingBox": "block" + }, + { + "id": 516, + "name": "red_carpet", + "displayName": "Red Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11621, + "minStateId": 11621, + "maxStateId": 11621, + "states": [], + "drops": [ + 483 + ], + "boundingBox": "block" + }, + { + "id": 517, + "name": "black_carpet", + "displayName": "Black Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11622, + "minStateId": 11622, + "maxStateId": 11622, + "states": [], + "drops": [ + 484 + ], + "boundingBox": "block" + }, + { + "id": 518, + "name": "terracotta", + "displayName": "Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11623, + "minStateId": 11623, + "maxStateId": 11623, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 485 + ], + "boundingBox": "block" + }, + { + "id": 519, + "name": "coal_block", + "displayName": "Block of Coal", + "hardness": 5.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11624, + "minStateId": 11624, + "maxStateId": 11624, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 83 + ], + "boundingBox": "block" + }, + { + "id": 520, + "name": "packed_ice", + "displayName": "Packed Ice", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11625, + "minStateId": 11625, + "maxStateId": 11625, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 521, + "name": "sunflower", + "displayName": "Sunflower", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11627, + "minStateId": 11626, + "maxStateId": 11627, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [ + 488 + ], + "boundingBox": "empty" + }, + { + "id": 522, + "name": "lilac", + "displayName": "Lilac", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11629, + "minStateId": 11628, + "maxStateId": 11629, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [ + 489 + ], + "boundingBox": "empty" + }, + { + "id": 523, + "name": "rose_bush", + "displayName": "Rose Bush", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11631, + "minStateId": 11630, + "maxStateId": 11631, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [ + 490 + ], + "boundingBox": "empty" + }, + { + "id": 524, + "name": "peony", + "displayName": "Peony", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11633, + "minStateId": 11632, + "maxStateId": 11633, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [ + 491 + ], + "boundingBox": "empty" + }, + { + "id": 525, + "name": "tall_grass", + "displayName": "Tall Grass", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11635, + "minStateId": 11634, + "maxStateId": 11635, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 526, + "name": "large_fern", + "displayName": "Large Fern", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11637, + "minStateId": 11636, + "maxStateId": 11637, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 527, + "name": "white_banner", + "displayName": "White Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11638, + "minStateId": 11638, + "maxStateId": 11653, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1185 + ], + "boundingBox": "empty" + }, + { + "id": 528, + "name": "orange_banner", + "displayName": "Orange Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11654, + "minStateId": 11654, + "maxStateId": 11669, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1186 + ], + "boundingBox": "empty" + }, + { + "id": 529, + "name": "magenta_banner", + "displayName": "Magenta Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11670, + "minStateId": 11670, + "maxStateId": 11685, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1187 + ], + "boundingBox": "empty" + }, + { + "id": 530, + "name": "light_blue_banner", + "displayName": "Light Blue Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11686, + "minStateId": 11686, + "maxStateId": 11701, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1188 + ], + "boundingBox": "empty" + }, + { + "id": 531, + "name": "yellow_banner", + "displayName": "Yellow Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11702, + "minStateId": 11702, + "maxStateId": 11717, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1189 + ], + "boundingBox": "empty" + }, + { + "id": 532, + "name": "lime_banner", + "displayName": "Lime Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11718, + "minStateId": 11718, + "maxStateId": 11733, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1190 + ], + "boundingBox": "empty" + }, + { + "id": 533, + "name": "pink_banner", + "displayName": "Pink Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11734, + "minStateId": 11734, + "maxStateId": 11749, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1191 + ], + "boundingBox": "empty" + }, + { + "id": 534, + "name": "gray_banner", + "displayName": "Gray Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11750, + "minStateId": 11750, + "maxStateId": 11765, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1192 + ], + "boundingBox": "empty" + }, + { + "id": 535, + "name": "light_gray_banner", + "displayName": "Light Gray Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11766, + "minStateId": 11766, + "maxStateId": 11781, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1193 + ], + "boundingBox": "empty" + }, + { + "id": 536, + "name": "cyan_banner", + "displayName": "Cyan Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11782, + "minStateId": 11782, + "maxStateId": 11797, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1194 + ], + "boundingBox": "empty" + }, + { + "id": 537, + "name": "purple_banner", + "displayName": "Purple Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11798, + "minStateId": 11798, + "maxStateId": 11813, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1195 + ], + "boundingBox": "empty" + }, + { + "id": 538, + "name": "blue_banner", + "displayName": "Blue Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11814, + "minStateId": 11814, + "maxStateId": 11829, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1196 + ], + "boundingBox": "empty" + }, + { + "id": 539, + "name": "brown_banner", + "displayName": "Brown Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11830, + "minStateId": 11830, + "maxStateId": 11845, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1197 + ], + "boundingBox": "empty" + }, + { + "id": 540, + "name": "green_banner", + "displayName": "Green Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11846, + "minStateId": 11846, + "maxStateId": 11861, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1198 + ], + "boundingBox": "empty" + }, + { + "id": 541, + "name": "red_banner", + "displayName": "Red Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11862, + "minStateId": 11862, + "maxStateId": 11877, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1199 + ], + "boundingBox": "empty" + }, + { + "id": 542, + "name": "black_banner", + "displayName": "Black Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11878, + "minStateId": 11878, + "maxStateId": 11893, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1200 + ], + "boundingBox": "empty" + }, + { + "id": 543, + "name": "white_wall_banner", + "displayName": "White Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11894, + "minStateId": 11894, + "maxStateId": 11897, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1185 + ], + "boundingBox": "empty" + }, + { + "id": 544, + "name": "orange_wall_banner", + "displayName": "Orange Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11898, + "minStateId": 11898, + "maxStateId": 11901, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1186 + ], + "boundingBox": "empty" + }, + { + "id": 545, + "name": "magenta_wall_banner", + "displayName": "Magenta Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11902, + "minStateId": 11902, + "maxStateId": 11905, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1187 + ], + "boundingBox": "empty" + }, + { + "id": 546, + "name": "light_blue_wall_banner", + "displayName": "Light Blue Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11906, + "minStateId": 11906, + "maxStateId": 11909, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1188 + ], + "boundingBox": "empty" + }, + { + "id": 547, + "name": "yellow_wall_banner", + "displayName": "Yellow Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11910, + "minStateId": 11910, + "maxStateId": 11913, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1189 + ], + "boundingBox": "empty" + }, + { + "id": 548, + "name": "lime_wall_banner", + "displayName": "Lime Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11914, + "minStateId": 11914, + "maxStateId": 11917, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1190 + ], + "boundingBox": "empty" + }, + { + "id": 549, + "name": "pink_wall_banner", + "displayName": "Pink Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11918, + "minStateId": 11918, + "maxStateId": 11921, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1191 + ], + "boundingBox": "empty" + }, + { + "id": 550, + "name": "gray_wall_banner", + "displayName": "Gray Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11922, + "minStateId": 11922, + "maxStateId": 11925, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1192 + ], + "boundingBox": "empty" + }, + { + "id": 551, + "name": "light_gray_wall_banner", + "displayName": "Light Gray Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11926, + "minStateId": 11926, + "maxStateId": 11929, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1193 + ], + "boundingBox": "empty" + }, + { + "id": 552, + "name": "cyan_wall_banner", + "displayName": "Cyan Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11930, + "minStateId": 11930, + "maxStateId": 11933, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1194 + ], + "boundingBox": "empty" + }, + { + "id": 553, + "name": "purple_wall_banner", + "displayName": "Purple Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11934, + "minStateId": 11934, + "maxStateId": 11937, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1195 + ], + "boundingBox": "empty" + }, + { + "id": 554, + "name": "blue_wall_banner", + "displayName": "Blue Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11938, + "minStateId": 11938, + "maxStateId": 11941, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1196 + ], + "boundingBox": "empty" + }, + { + "id": 555, + "name": "brown_wall_banner", + "displayName": "Brown Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11942, + "minStateId": 11942, + "maxStateId": 11945, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1197 + ], + "boundingBox": "empty" + }, + { + "id": 556, + "name": "green_wall_banner", + "displayName": "Green Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11946, + "minStateId": 11946, + "maxStateId": 11949, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1198 + ], + "boundingBox": "empty" + }, + { + "id": 557, + "name": "red_wall_banner", + "displayName": "Red Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11950, + "minStateId": 11950, + "maxStateId": 11953, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1199 + ], + "boundingBox": "empty" + }, + { + "id": 558, + "name": "black_wall_banner", + "displayName": "Black Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11954, + "minStateId": 11954, + "maxStateId": 11957, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1200 + ], + "boundingBox": "empty" + }, + { + "id": 559, + "name": "red_sandstone", + "displayName": "Red Sandstone", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11958, + "minStateId": 11958, + "maxStateId": 11958, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 533 + ], + "boundingBox": "block" + }, + { + "id": 560, + "name": "chiseled_red_sandstone", + "displayName": "Chiseled Red Sandstone", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11959, + "minStateId": 11959, + "maxStateId": 11959, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 534 + ], + "boundingBox": "block" + }, + { + "id": 561, + "name": "cut_red_sandstone", + "displayName": "Cut Red Sandstone", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 11960, + "minStateId": 11960, + "maxStateId": 11960, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 535 + ], + "boundingBox": "block" + }, + { + "id": 562, + "name": "red_sandstone_stairs", + "displayName": "Red Sandstone Stairs", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11972, + "minStateId": 11961, + "maxStateId": 12040, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 536 + ], + "boundingBox": "block" + }, + { + "id": 563, + "name": "oak_slab", + "displayName": "Oak Slab", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12044, + "minStateId": 12041, + "maxStateId": 12046, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 264 + ], + "boundingBox": "block" + }, + { + "id": 564, + "name": "spruce_slab", + "displayName": "Spruce Slab", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12050, + "minStateId": 12047, + "maxStateId": 12052, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 265 + ], + "boundingBox": "block" + }, + { + "id": 565, + "name": "birch_slab", + "displayName": "Birch Slab", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12056, + "minStateId": 12053, + "maxStateId": 12058, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 266 + ], + "boundingBox": "block" + }, + { + "id": 566, + "name": "jungle_slab", + "displayName": "Jungle Slab", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12062, + "minStateId": 12059, + "maxStateId": 12064, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 267 + ], + "boundingBox": "block" + }, + { + "id": 567, + "name": "acacia_slab", + "displayName": "Acacia Slab", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12068, + "minStateId": 12065, + "maxStateId": 12070, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 268 + ], + "boundingBox": "block" + }, + { + "id": 568, + "name": "cherry_slab", + "displayName": "Cherry Slab", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12074, + "minStateId": 12071, + "maxStateId": 12076, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 269 + ], + "boundingBox": "block" + }, + { + "id": 569, + "name": "dark_oak_slab", + "displayName": "Dark Oak Slab", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12080, + "minStateId": 12077, + "maxStateId": 12082, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 270 + ], + "boundingBox": "block" + }, + { + "id": 570, + "name": "pale_oak_slab", + "displayName": "Pale Oak Slab", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12086, + "minStateId": 12083, + "maxStateId": 12088, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 271 + ], + "boundingBox": "block" + }, + { + "id": 571, + "name": "mangrove_slab", + "displayName": "Mangrove Slab", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12092, + "minStateId": 12089, + "maxStateId": 12094, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 272 + ], + "boundingBox": "block" + }, + { + "id": 572, + "name": "bamboo_slab", + "displayName": "Bamboo Slab", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12098, + "minStateId": 12095, + "maxStateId": 12100, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 273 + ], + "boundingBox": "block" + }, + { + "id": 573, + "name": "bamboo_mosaic_slab", + "displayName": "Bamboo Mosaic Slab", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12104, + "minStateId": 12101, + "maxStateId": 12106, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 274 + ], + "boundingBox": "block" + }, + { + "id": 574, + "name": "stone_slab", + "displayName": "Stone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12110, + "minStateId": 12107, + "maxStateId": 12112, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 277 + ], + "boundingBox": "block" + }, + { + "id": 575, + "name": "smooth_stone_slab", + "displayName": "Smooth Stone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12116, + "minStateId": 12113, + "maxStateId": 12118, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 278 + ], + "boundingBox": "block" + }, + { + "id": 576, + "name": "sandstone_slab", + "displayName": "Sandstone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12122, + "minStateId": 12119, + "maxStateId": 12124, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 279 + ], + "boundingBox": "block" + }, + { + "id": 577, + "name": "cut_sandstone_slab", + "displayName": "Cut Sandstone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12128, + "minStateId": 12125, + "maxStateId": 12130, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 280 + ], + "boundingBox": "block" + }, + { + "id": 578, + "name": "petrified_oak_slab", + "displayName": "Petrified Oak Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12134, + "minStateId": 12131, + "maxStateId": 12136, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 281 + ], + "boundingBox": "block" + }, + { + "id": 579, + "name": "cobblestone_slab", + "displayName": "Cobblestone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12140, + "minStateId": 12137, + "maxStateId": 12142, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 282 + ], + "boundingBox": "block" + }, + { + "id": 580, + "name": "brick_slab", + "displayName": "Brick Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12146, + "minStateId": 12143, + "maxStateId": 12148, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 283 + ], + "boundingBox": "block" + }, + { + "id": 581, + "name": "stone_brick_slab", + "displayName": "Stone Brick Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12152, + "minStateId": 12149, + "maxStateId": 12154, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 284 + ], + "boundingBox": "block" + }, + { + "id": 582, + "name": "mud_brick_slab", + "displayName": "Mud Brick Slab", + "hardness": 1.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12158, + "minStateId": 12155, + "maxStateId": 12160, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 285 + ], + "boundingBox": "block" + }, + { + "id": 583, + "name": "nether_brick_slab", + "displayName": "Nether Brick Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12164, + "minStateId": 12161, + "maxStateId": 12166, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 286 + ], + "boundingBox": "block" + }, + { + "id": 584, + "name": "quartz_slab", + "displayName": "Quartz Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12170, + "minStateId": 12167, + "maxStateId": 12172, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 287 + ], + "boundingBox": "block" + }, + { + "id": 585, + "name": "red_sandstone_slab", + "displayName": "Red Sandstone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12176, + "minStateId": 12173, + "maxStateId": 12178, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 288 + ], + "boundingBox": "block" + }, + { + "id": 586, + "name": "cut_red_sandstone_slab", + "displayName": "Cut Red Sandstone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12182, + "minStateId": 12179, + "maxStateId": 12184, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 289 + ], + "boundingBox": "block" + }, + { + "id": 587, + "name": "purpur_slab", + "displayName": "Purpur Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12188, + "minStateId": 12185, + "maxStateId": 12190, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 290 + ], + "boundingBox": "block" + }, + { + "id": 588, + "name": "smooth_stone", + "displayName": "Smooth Stone", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12191, + "minStateId": 12191, + "maxStateId": 12191, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 297 + ], + "boundingBox": "block" + }, + { + "id": 589, + "name": "smooth_sandstone", + "displayName": "Smooth Sandstone", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12192, + "minStateId": 12192, + "maxStateId": 12192, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 296 + ], + "boundingBox": "block" + }, + { + "id": 590, + "name": "smooth_quartz", + "displayName": "Smooth Quartz Block", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12193, + "minStateId": 12193, + "maxStateId": 12193, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 294 + ], + "boundingBox": "block" + }, + { + "id": 591, + "name": "smooth_red_sandstone", + "displayName": "Smooth Red Sandstone", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 12194, + "minStateId": 12194, + "maxStateId": 12194, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 295 + ], + "boundingBox": "block" + }, + { + "id": 592, + "name": "spruce_fence_gate", + "displayName": "Spruce Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12202, + "minStateId": 12195, + "maxStateId": 12226, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 778 + ], + "boundingBox": "block" + }, + { + "id": 593, + "name": "birch_fence_gate", + "displayName": "Birch Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12234, + "minStateId": 12227, + "maxStateId": 12258, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 779 + ], + "boundingBox": "block" + }, + { + "id": 594, + "name": "jungle_fence_gate", + "displayName": "Jungle Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12266, + "minStateId": 12259, + "maxStateId": 12290, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 780 + ], + "boundingBox": "block" + }, + { + "id": 595, + "name": "acacia_fence_gate", + "displayName": "Acacia Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12298, + "minStateId": 12291, + "maxStateId": 12322, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 781 + ], + "boundingBox": "block" + }, + { + "id": 596, + "name": "cherry_fence_gate", + "displayName": "Cherry Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12330, + "minStateId": 12323, + "maxStateId": 12354, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 782 + ], + "boundingBox": "block" + }, + { + "id": 597, + "name": "dark_oak_fence_gate", + "displayName": "Dark Oak Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12362, + "minStateId": 12355, + "maxStateId": 12386, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 783 + ], + "boundingBox": "block" + }, + { + "id": 598, + "name": "pale_oak_fence_gate", + "displayName": "Pale Oak Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12394, + "minStateId": 12387, + "maxStateId": 12418, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 784 + ], + "boundingBox": "block" + }, + { + "id": 599, + "name": "mangrove_fence_gate", + "displayName": "Mangrove Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12426, + "minStateId": 12419, + "maxStateId": 12450, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 785 + ], + "boundingBox": "block" + }, + { + "id": 600, + "name": "bamboo_fence_gate", + "displayName": "Bamboo Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12458, + "minStateId": 12451, + "maxStateId": 12482, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 786 + ], + "boundingBox": "block" + }, + { + "id": 601, + "name": "spruce_fence", + "displayName": "Spruce Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12514, + "minStateId": 12483, + "maxStateId": 12514, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 326 + ], + "boundingBox": "block" + }, + { + "id": 602, + "name": "birch_fence", + "displayName": "Birch Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12546, + "minStateId": 12515, + "maxStateId": 12546, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 327 + ], + "boundingBox": "block" + }, + { + "id": 603, + "name": "jungle_fence", + "displayName": "Jungle Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12578, + "minStateId": 12547, + "maxStateId": 12578, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 328 + ], + "boundingBox": "block" + }, + { + "id": 604, + "name": "acacia_fence", + "displayName": "Acacia Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12610, + "minStateId": 12579, + "maxStateId": 12610, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 329 + ], + "boundingBox": "block" + }, + { + "id": 605, + "name": "cherry_fence", + "displayName": "Cherry Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12642, + "minStateId": 12611, + "maxStateId": 12642, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 330 + ], + "boundingBox": "block" + }, + { + "id": 606, + "name": "dark_oak_fence", + "displayName": "Dark Oak Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12674, + "minStateId": 12643, + "maxStateId": 12674, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 331 + ], + "boundingBox": "block" + }, + { + "id": 607, + "name": "pale_oak_fence", + "displayName": "Pale Oak Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12706, + "minStateId": 12675, + "maxStateId": 12706, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 332 + ], + "boundingBox": "block" + }, + { + "id": 608, + "name": "mangrove_fence", + "displayName": "Mangrove Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12738, + "minStateId": 12707, + "maxStateId": 12738, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 333 + ], + "boundingBox": "block" + }, + { + "id": 609, + "name": "bamboo_fence", + "displayName": "Bamboo Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12770, + "minStateId": 12739, + "maxStateId": 12770, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 334 + ], + "boundingBox": "block" + }, + { + "id": 610, + "name": "spruce_door", + "displayName": "Spruce Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12782, + "minStateId": 12771, + "maxStateId": 12834, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 737 + ], + "boundingBox": "block" + }, + { + "id": 611, + "name": "birch_door", + "displayName": "Birch Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12846, + "minStateId": 12835, + "maxStateId": 12898, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 738 + ], + "boundingBox": "block" + }, + { + "id": 612, + "name": "jungle_door", + "displayName": "Jungle Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12910, + "minStateId": 12899, + "maxStateId": 12962, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 739 + ], + "boundingBox": "block" + }, + { + "id": 613, + "name": "acacia_door", + "displayName": "Acacia Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12974, + "minStateId": 12963, + "maxStateId": 13026, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 740 + ], + "boundingBox": "block" + }, + { + "id": 614, + "name": "cherry_door", + "displayName": "Cherry Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13038, + "minStateId": 13027, + "maxStateId": 13090, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 741 + ], + "boundingBox": "block" + }, + { + "id": 615, + "name": "dark_oak_door", + "displayName": "Dark Oak Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13102, + "minStateId": 13091, + "maxStateId": 13154, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 742 + ], + "boundingBox": "block" + }, + { + "id": 616, + "name": "pale_oak_door", + "displayName": "Pale Oak Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13166, + "minStateId": 13155, + "maxStateId": 13218, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 743 + ], + "boundingBox": "block" + }, + { + "id": 617, + "name": "mangrove_door", + "displayName": "Mangrove Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13230, + "minStateId": 13219, + "maxStateId": 13282, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 744 + ], + "boundingBox": "block" + }, + { + "id": 618, + "name": "bamboo_door", + "displayName": "Bamboo Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13294, + "minStateId": 13283, + "maxStateId": 13346, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 745 + ], + "boundingBox": "block" + }, + { + "id": 619, + "name": "end_rod", + "displayName": "End Rod", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 14, + "filterLight": 0, + "defaultState": 13351, + "minStateId": 13347, + "maxStateId": 13352, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 305 + ], + "boundingBox": "block" + }, + { + "id": 620, + "name": "chorus_plant", + "displayName": "Chorus Plant", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13416, + "minStateId": 13353, + "maxStateId": 13416, + "states": [ + { + "name": "down", + "type": "bool", + "num_values": 2 + }, + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 0 + ], + "boundingBox": "block" + }, + { + "id": 621, + "name": "chorus_flower", + "displayName": "Chorus Flower", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13417, + "minStateId": 13417, + "maxStateId": 13422, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 6, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 622, + "name": "purpur_block", + "displayName": "Purpur Block", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13423, + "minStateId": 13423, + "maxStateId": 13423, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 308 + ], + "boundingBox": "block" + }, + { + "id": 623, + "name": "purpur_pillar", + "displayName": "Purpur Pillar", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13425, + "minStateId": 13424, + "maxStateId": 13426, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 309 + ], + "boundingBox": "block" + }, + { + "id": 624, + "name": "purpur_stairs", + "displayName": "Purpur Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13438, + "minStateId": 13427, + "maxStateId": 13506, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 310 + ], + "boundingBox": "block" + }, + { + "id": 625, + "name": "end_stone_bricks", + "displayName": "End Stone Bricks", + "hardness": 3.0, + "resistance": 9.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13507, + "minStateId": 13507, + "maxStateId": 13507, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 400 + ], + "boundingBox": "block" + }, + { + "id": 626, + "name": "torchflower_crop", + "displayName": "Torchflower Crop", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13508, + "minStateId": 13508, + "maxStateId": 13509, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 1204 + ], + "boundingBox": "empty" + }, + { + "id": 627, + "name": "pitcher_crop", + "displayName": "Pitcher Crop", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13511, + "minStateId": 13510, + "maxStateId": 13519, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 5, + "values": [ + "0", + "1", + "2", + "3", + "4" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [ + 1205 + ], + "boundingBox": "block" + }, + { + "id": 628, + "name": "pitcher_plant", + "displayName": "Pitcher Plant", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13521, + "minStateId": 13520, + "maxStateId": 13521, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [ + 241 + ], + "boundingBox": "empty" + }, + { + "id": 629, + "name": "beetroots", + "displayName": "Beetroots", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13522, + "minStateId": 13522, + "maxStateId": 13525, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 4, + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], + "drops": [ + 1207 + ], + "boundingBox": "empty" + }, + { + "id": 630, + "name": "dirt_path", + "displayName": "Dirt Path", + "hardness": 0.65, + "resistance": 0.65, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13526, + "minStateId": 13526, + "maxStateId": 13526, + "states": [], + "drops": [ + 28 + ], + "boundingBox": "block" + }, + { + "id": 631, + "name": "end_gateway", + "displayName": "End Gateway", + "hardness": -1.0, + "resistance": 3600000.0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 1, + "defaultState": 13527, + "minStateId": 13527, + "maxStateId": 13527, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 632, + "name": "repeating_command_block", + "displayName": "Repeating Command Block", + "hardness": -1.0, + "resistance": 3600000.0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13534, + "minStateId": 13528, + "maxStateId": 13539, + "states": [ + { + "name": "conditional", + "type": "bool", + "num_values": 2 + }, + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 633, + "name": "chain_command_block", + "displayName": "Chain Command Block", + "hardness": -1.0, + "resistance": 3600000.0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13546, + "minStateId": 13540, + "maxStateId": 13551, + "states": [ + { + "name": "conditional", + "type": "bool", + "num_values": 2 + }, + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 634, + "name": "frosted_ice", + "displayName": "Frosted Ice", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13552, + "minStateId": 13552, + "maxStateId": 13555, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 4, + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 635, + "name": "magma_block", + "displayName": "Magma Block", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 3, + "filterLight": 15, + "defaultState": 13556, + "minStateId": 13556, + "maxStateId": 13556, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 539 + ], + "boundingBox": "block" + }, + { + "id": 636, + "name": "nether_wart_block", + "displayName": "Nether Wart Block", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13557, + "minStateId": 13557, + "maxStateId": 13557, + "states": [], + "drops": [ + 540 + ], + "boundingBox": "block" + }, + { + "id": 637, + "name": "red_nether_bricks", + "displayName": "Red Nether Bricks", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13558, + "minStateId": 13558, + "maxStateId": 13558, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 542 + ], + "boundingBox": "block" + }, + { + "id": 638, + "name": "bone_block", + "displayName": "Bone Block", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13560, + "minStateId": 13559, + "maxStateId": 13561, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 543 + ], + "boundingBox": "block" + }, + { + "id": 639, + "name": "structure_void", + "displayName": "Structure Void", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13562, + "minStateId": 13562, + "maxStateId": 13562, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 640, + "name": "observer", + "displayName": "Observer", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13568, + "minStateId": 13563, + "maxStateId": 13574, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 689 + ], + "boundingBox": "block" + }, + { + "id": 641, + "name": "shulker_box", + "displayName": "Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13579, + "minStateId": 13575, + "maxStateId": 13580, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 545 + ], + "boundingBox": "block" + }, + { + "id": 642, + "name": "white_shulker_box", + "displayName": "White Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13585, + "minStateId": 13581, + "maxStateId": 13586, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 546 + ], + "boundingBox": "block" + }, + { + "id": 643, + "name": "orange_shulker_box", + "displayName": "Orange Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13591, + "minStateId": 13587, + "maxStateId": 13592, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 547 + ], + "boundingBox": "block" + }, + { + "id": 644, + "name": "magenta_shulker_box", + "displayName": "Magenta Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13597, + "minStateId": 13593, + "maxStateId": 13598, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 548 + ], + "boundingBox": "block" + }, + { + "id": 645, + "name": "light_blue_shulker_box", + "displayName": "Light Blue Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13603, + "minStateId": 13599, + "maxStateId": 13604, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 549 + ], + "boundingBox": "block" + }, + { + "id": 646, + "name": "yellow_shulker_box", + "displayName": "Yellow Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13609, + "minStateId": 13605, + "maxStateId": 13610, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 550 + ], + "boundingBox": "block" + }, + { + "id": 647, + "name": "lime_shulker_box", + "displayName": "Lime Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13615, + "minStateId": 13611, + "maxStateId": 13616, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 551 + ], + "boundingBox": "block" + }, + { + "id": 648, + "name": "pink_shulker_box", + "displayName": "Pink Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13621, + "minStateId": 13617, + "maxStateId": 13622, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 552 + ], + "boundingBox": "block" + }, + { + "id": 649, + "name": "gray_shulker_box", + "displayName": "Gray Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13627, + "minStateId": 13623, + "maxStateId": 13628, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 553 + ], + "boundingBox": "block" + }, + { + "id": 650, + "name": "light_gray_shulker_box", + "displayName": "Light Gray Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13633, + "minStateId": 13629, + "maxStateId": 13634, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 554 + ], + "boundingBox": "block" + }, + { + "id": 651, + "name": "cyan_shulker_box", + "displayName": "Cyan Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13639, + "minStateId": 13635, + "maxStateId": 13640, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 555 + ], + "boundingBox": "block" + }, + { + "id": 652, + "name": "purple_shulker_box", + "displayName": "Purple Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13645, + "minStateId": 13641, + "maxStateId": 13646, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 556 + ], + "boundingBox": "block" + }, + { + "id": 653, + "name": "blue_shulker_box", + "displayName": "Blue Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13651, + "minStateId": 13647, + "maxStateId": 13652, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 557 + ], + "boundingBox": "block" + }, + { + "id": 654, + "name": "brown_shulker_box", + "displayName": "Brown Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13657, + "minStateId": 13653, + "maxStateId": 13658, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 558 + ], + "boundingBox": "block" + }, + { + "id": 655, + "name": "green_shulker_box", + "displayName": "Green Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13663, + "minStateId": 13659, + "maxStateId": 13664, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 559 + ], + "boundingBox": "block" + }, + { + "id": 656, + "name": "red_shulker_box", + "displayName": "Red Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13669, + "minStateId": 13665, + "maxStateId": 13670, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 560 + ], + "boundingBox": "block" + }, + { + "id": 657, + "name": "black_shulker_box", + "displayName": "Black Shulker Box", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13675, + "minStateId": 13671, + "maxStateId": 13676, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 561 + ], + "boundingBox": "block" + }, + { + "id": 658, + "name": "white_glazed_terracotta", + "displayName": "White Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13677, + "minStateId": 13677, + "maxStateId": 13680, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 562 + ], + "boundingBox": "block" + }, + { + "id": 659, + "name": "orange_glazed_terracotta", + "displayName": "Orange Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13681, + "minStateId": 13681, + "maxStateId": 13684, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 563 + ], + "boundingBox": "block" + }, + { + "id": 660, + "name": "magenta_glazed_terracotta", + "displayName": "Magenta Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13685, + "minStateId": 13685, + "maxStateId": 13688, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 564 + ], + "boundingBox": "block" + }, + { + "id": 661, + "name": "light_blue_glazed_terracotta", + "displayName": "Light Blue Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13689, + "minStateId": 13689, + "maxStateId": 13692, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 565 + ], + "boundingBox": "block" + }, + { + "id": 662, + "name": "yellow_glazed_terracotta", + "displayName": "Yellow Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13693, + "minStateId": 13693, + "maxStateId": 13696, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 566 + ], + "boundingBox": "block" + }, + { + "id": 663, + "name": "lime_glazed_terracotta", + "displayName": "Lime Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13697, + "minStateId": 13697, + "maxStateId": 13700, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 567 + ], + "boundingBox": "block" + }, + { + "id": 664, + "name": "pink_glazed_terracotta", + "displayName": "Pink Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13701, + "minStateId": 13701, + "maxStateId": 13704, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 568 + ], + "boundingBox": "block" + }, + { + "id": 665, + "name": "gray_glazed_terracotta", + "displayName": "Gray Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13705, + "minStateId": 13705, + "maxStateId": 13708, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 569 + ], + "boundingBox": "block" + }, + { + "id": 666, + "name": "light_gray_glazed_terracotta", + "displayName": "Light Gray Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13709, + "minStateId": 13709, + "maxStateId": 13712, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 570 + ], + "boundingBox": "block" + }, + { + "id": 667, + "name": "cyan_glazed_terracotta", + "displayName": "Cyan Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13713, + "minStateId": 13713, + "maxStateId": 13716, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 571 + ], + "boundingBox": "block" + }, + { + "id": 668, + "name": "purple_glazed_terracotta", + "displayName": "Purple Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13717, + "minStateId": 13717, + "maxStateId": 13720, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 572 + ], + "boundingBox": "block" + }, + { + "id": 669, + "name": "blue_glazed_terracotta", + "displayName": "Blue Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13721, + "minStateId": 13721, + "maxStateId": 13724, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 573 + ], + "boundingBox": "block" + }, + { + "id": 670, + "name": "brown_glazed_terracotta", + "displayName": "Brown Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13725, + "minStateId": 13725, + "maxStateId": 13728, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 574 + ], + "boundingBox": "block" + }, + { + "id": 671, + "name": "green_glazed_terracotta", + "displayName": "Green Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13729, + "minStateId": 13729, + "maxStateId": 13732, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 575 + ], + "boundingBox": "block" + }, + { + "id": 672, + "name": "red_glazed_terracotta", + "displayName": "Red Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13733, + "minStateId": 13733, + "maxStateId": 13736, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 576 + ], + "boundingBox": "block" + }, + { + "id": 673, + "name": "black_glazed_terracotta", + "displayName": "Black Glazed Terracotta", + "hardness": 1.4, + "resistance": 1.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13737, + "minStateId": 13737, + "maxStateId": 13740, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 577 + ], + "boundingBox": "block" + }, + { + "id": 674, + "name": "white_concrete", + "displayName": "White Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13741, + "minStateId": 13741, + "maxStateId": 13741, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 578 + ], + "boundingBox": "block" + }, + { + "id": 675, + "name": "orange_concrete", + "displayName": "Orange Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13742, + "minStateId": 13742, + "maxStateId": 13742, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 579 + ], + "boundingBox": "block" + }, + { + "id": 676, + "name": "magenta_concrete", + "displayName": "Magenta Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13743, + "minStateId": 13743, + "maxStateId": 13743, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 580 + ], + "boundingBox": "block" + }, + { + "id": 677, + "name": "light_blue_concrete", + "displayName": "Light Blue Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13744, + "minStateId": 13744, + "maxStateId": 13744, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 581 + ], + "boundingBox": "block" + }, + { + "id": 678, + "name": "yellow_concrete", + "displayName": "Yellow Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13745, + "minStateId": 13745, + "maxStateId": 13745, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 582 + ], + "boundingBox": "block" + }, + { + "id": 679, + "name": "lime_concrete", + "displayName": "Lime Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13746, + "minStateId": 13746, + "maxStateId": 13746, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 583 + ], + "boundingBox": "block" + }, + { + "id": 680, + "name": "pink_concrete", + "displayName": "Pink Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13747, + "minStateId": 13747, + "maxStateId": 13747, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 584 + ], + "boundingBox": "block" + }, + { + "id": 681, + "name": "gray_concrete", + "displayName": "Gray Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13748, + "minStateId": 13748, + "maxStateId": 13748, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 585 + ], + "boundingBox": "block" + }, + { + "id": 682, + "name": "light_gray_concrete", + "displayName": "Light Gray Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13749, + "minStateId": 13749, + "maxStateId": 13749, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 586 + ], + "boundingBox": "block" + }, + { + "id": 683, + "name": "cyan_concrete", + "displayName": "Cyan Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13750, + "minStateId": 13750, + "maxStateId": 13750, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 587 + ], + "boundingBox": "block" + }, + { + "id": 684, + "name": "purple_concrete", + "displayName": "Purple Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13751, + "minStateId": 13751, + "maxStateId": 13751, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 588 + ], + "boundingBox": "block" + }, + { + "id": 685, + "name": "blue_concrete", + "displayName": "Blue Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13752, + "minStateId": 13752, + "maxStateId": 13752, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 589 + ], + "boundingBox": "block" + }, + { + "id": 686, + "name": "brown_concrete", + "displayName": "Brown Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13753, + "minStateId": 13753, + "maxStateId": 13753, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 590 + ], + "boundingBox": "block" + }, + { + "id": 687, + "name": "green_concrete", + "displayName": "Green Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13754, + "minStateId": 13754, + "maxStateId": 13754, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 591 + ], + "boundingBox": "block" + }, + { + "id": 688, + "name": "red_concrete", + "displayName": "Red Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13755, + "minStateId": 13755, + "maxStateId": 13755, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 592 + ], + "boundingBox": "block" + }, + { + "id": 689, + "name": "black_concrete", + "displayName": "Black Concrete", + "hardness": 1.8, + "resistance": 1.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13756, + "minStateId": 13756, + "maxStateId": 13756, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 593 + ], + "boundingBox": "block" + }, + { + "id": 690, + "name": "white_concrete_powder", + "displayName": "White Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13757, + "minStateId": 13757, + "maxStateId": 13757, + "states": [], + "drops": [ + 594 + ], + "boundingBox": "block" + }, + { + "id": 691, + "name": "orange_concrete_powder", + "displayName": "Orange Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13758, + "minStateId": 13758, + "maxStateId": 13758, + "states": [], + "drops": [ + 595 + ], + "boundingBox": "block" + }, + { + "id": 692, + "name": "magenta_concrete_powder", + "displayName": "Magenta Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13759, + "minStateId": 13759, + "maxStateId": 13759, + "states": [], + "drops": [ + 596 + ], + "boundingBox": "block" + }, + { + "id": 693, + "name": "light_blue_concrete_powder", + "displayName": "Light Blue Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13760, + "minStateId": 13760, + "maxStateId": 13760, + "states": [], + "drops": [ + 597 + ], + "boundingBox": "block" + }, + { + "id": 694, + "name": "yellow_concrete_powder", + "displayName": "Yellow Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13761, + "minStateId": 13761, + "maxStateId": 13761, + "states": [], + "drops": [ + 598 + ], + "boundingBox": "block" + }, + { + "id": 695, + "name": "lime_concrete_powder", + "displayName": "Lime Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13762, + "minStateId": 13762, + "maxStateId": 13762, + "states": [], + "drops": [ + 599 + ], + "boundingBox": "block" + }, + { + "id": 696, + "name": "pink_concrete_powder", + "displayName": "Pink Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13763, + "minStateId": 13763, + "maxStateId": 13763, + "states": [], + "drops": [ + 600 + ], + "boundingBox": "block" + }, + { + "id": 697, + "name": "gray_concrete_powder", + "displayName": "Gray Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13764, + "minStateId": 13764, + "maxStateId": 13764, + "states": [], + "drops": [ + 601 + ], + "boundingBox": "block" + }, + { + "id": 698, + "name": "light_gray_concrete_powder", + "displayName": "Light Gray Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13765, + "minStateId": 13765, + "maxStateId": 13765, + "states": [], + "drops": [ + 602 + ], + "boundingBox": "block" + }, + { + "id": 699, + "name": "cyan_concrete_powder", + "displayName": "Cyan Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13766, + "minStateId": 13766, + "maxStateId": 13766, + "states": [], + "drops": [ + 603 + ], + "boundingBox": "block" + }, + { + "id": 700, + "name": "purple_concrete_powder", + "displayName": "Purple Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13767, + "minStateId": 13767, + "maxStateId": 13767, + "states": [], + "drops": [ + 604 + ], + "boundingBox": "block" + }, + { + "id": 701, + "name": "blue_concrete_powder", + "displayName": "Blue Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13768, + "minStateId": 13768, + "maxStateId": 13768, + "states": [], + "drops": [ + 605 + ], + "boundingBox": "block" + }, + { + "id": 702, + "name": "brown_concrete_powder", + "displayName": "Brown Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13769, + "minStateId": 13769, + "maxStateId": 13769, + "states": [], + "drops": [ + 606 + ], + "boundingBox": "block" + }, + { + "id": 703, + "name": "green_concrete_powder", + "displayName": "Green Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13770, + "minStateId": 13770, + "maxStateId": 13770, + "states": [], + "drops": [ + 607 + ], + "boundingBox": "block" + }, + { + "id": 704, + "name": "red_concrete_powder", + "displayName": "Red Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13771, + "minStateId": 13771, + "maxStateId": 13771, + "states": [], + "drops": [ + 608 + ], + "boundingBox": "block" + }, + { + "id": 705, + "name": "black_concrete_powder", + "displayName": "Black Concrete Powder", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13772, + "minStateId": 13772, + "maxStateId": 13772, + "states": [], + "drops": [ + 609 + ], + "boundingBox": "block" + }, + { + "id": 706, + "name": "kelp", + "displayName": "Kelp", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13773, + "minStateId": 13773, + "maxStateId": 13798, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 26, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + } + ], + "drops": [ + 253 + ], + "boundingBox": "empty" + }, + { + "id": 707, + "name": "kelp_plant", + "displayName": "Kelp Plant", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13799, + "minStateId": 13799, + "maxStateId": 13799, + "states": [], + "drops": [ + 253 + ], + "boundingBox": "empty" + }, + { + "id": 708, + "name": "dried_kelp_block", + "displayName": "Dried Kelp Block", + "hardness": 0.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13800, + "minStateId": 13800, + "maxStateId": 13800, + "states": [], + "drops": [ + 956 + ], + "boundingBox": "block" + }, + { + "id": 709, + "name": "turtle_egg", + "displayName": "Turtle Egg", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13801, + "minStateId": 13801, + "maxStateId": 13812, + "states": [ + { + "name": "eggs", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "hatch", + "type": "int", + "num_values": 3, + "values": [ + "0", + "1", + "2" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 710, + "name": "sniffer_egg", + "displayName": "Sniffer Egg", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13813, + "minStateId": 13813, + "maxStateId": 13815, + "states": [ + { + "name": "hatch", + "type": "int", + "num_values": 3, + "values": [ + "0", + "1", + "2" + ] + } + ], + "drops": [ + 611 + ], + "boundingBox": "block" + }, + { + "id": 711, + "name": "dead_tube_coral_block", + "displayName": "Dead Tube Coral Block", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13816, + "minStateId": 13816, + "maxStateId": 13816, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 612 + ], + "boundingBox": "block" + }, + { + "id": 712, + "name": "dead_brain_coral_block", + "displayName": "Dead Brain Coral Block", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13817, + "minStateId": 13817, + "maxStateId": 13817, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 613 + ], + "boundingBox": "block" + }, + { + "id": 713, + "name": "dead_bubble_coral_block", + "displayName": "Dead Bubble Coral Block", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13818, + "minStateId": 13818, + "maxStateId": 13818, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 614 + ], + "boundingBox": "block" + }, + { + "id": 714, + "name": "dead_fire_coral_block", + "displayName": "Dead Fire Coral Block", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13819, + "minStateId": 13819, + "maxStateId": 13819, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 615 + ], + "boundingBox": "block" + }, + { + "id": 715, + "name": "dead_horn_coral_block", + "displayName": "Dead Horn Coral Block", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13820, + "minStateId": 13820, + "maxStateId": 13820, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 616 + ], + "boundingBox": "block" + }, + { + "id": 716, + "name": "tube_coral_block", + "displayName": "Tube Coral Block", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13821, + "minStateId": 13821, + "maxStateId": 13821, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 612 + ], + "boundingBox": "block" + }, + { + "id": 717, + "name": "brain_coral_block", + "displayName": "Brain Coral Block", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13822, + "minStateId": 13822, + "maxStateId": 13822, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 613 + ], + "boundingBox": "block" + }, + { + "id": 718, + "name": "bubble_coral_block", + "displayName": "Bubble Coral Block", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13823, + "minStateId": 13823, + "maxStateId": 13823, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 614 + ], + "boundingBox": "block" + }, + { + "id": 719, + "name": "fire_coral_block", + "displayName": "Fire Coral Block", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13824, + "minStateId": 13824, + "maxStateId": 13824, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 615 + ], + "boundingBox": "block" + }, + { + "id": 720, + "name": "horn_coral_block", + "displayName": "Horn Coral Block", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13825, + "minStateId": 13825, + "maxStateId": 13825, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 616 + ], + "boundingBox": "block" + }, + { + "id": 721, + "name": "dead_tube_coral", + "displayName": "Dead Tube Coral", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13826, + "minStateId": 13826, + "maxStateId": 13827, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 722, + "name": "dead_brain_coral", + "displayName": "Dead Brain Coral", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13828, + "minStateId": 13828, + "maxStateId": 13829, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 723, + "name": "dead_bubble_coral", + "displayName": "Dead Bubble Coral", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13830, + "minStateId": 13830, + "maxStateId": 13831, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 724, + "name": "dead_fire_coral", + "displayName": "Dead Fire Coral", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13832, + "minStateId": 13832, + "maxStateId": 13833, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 725, + "name": "dead_horn_coral", + "displayName": "Dead Horn Coral", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13834, + "minStateId": 13834, + "maxStateId": 13835, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 726, + "name": "tube_coral", + "displayName": "Tube Coral", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13836, + "minStateId": 13836, + "maxStateId": 13837, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 727, + "name": "brain_coral", + "displayName": "Brain Coral", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13838, + "minStateId": 13838, + "maxStateId": 13839, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 728, + "name": "bubble_coral", + "displayName": "Bubble Coral", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13840, + "minStateId": 13840, + "maxStateId": 13841, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 729, + "name": "fire_coral", + "displayName": "Fire Coral", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13842, + "minStateId": 13842, + "maxStateId": 13843, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 730, + "name": "horn_coral", + "displayName": "Horn Coral", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13844, + "minStateId": 13844, + "maxStateId": 13845, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 731, + "name": "dead_tube_coral_fan", + "displayName": "Dead Tube Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13846, + "minStateId": 13846, + "maxStateId": 13847, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 732, + "name": "dead_brain_coral_fan", + "displayName": "Dead Brain Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13848, + "minStateId": 13848, + "maxStateId": 13849, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 733, + "name": "dead_bubble_coral_fan", + "displayName": "Dead Bubble Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13850, + "minStateId": 13850, + "maxStateId": 13851, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 734, + "name": "dead_fire_coral_fan", + "displayName": "Dead Fire Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13852, + "minStateId": 13852, + "maxStateId": 13853, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 735, + "name": "dead_horn_coral_fan", + "displayName": "Dead Horn Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13854, + "minStateId": 13854, + "maxStateId": 13855, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 736, + "name": "tube_coral_fan", + "displayName": "Tube Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13856, + "minStateId": 13856, + "maxStateId": 13857, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 737, + "name": "brain_coral_fan", + "displayName": "Brain Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13858, + "minStateId": 13858, + "maxStateId": 13859, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 738, + "name": "bubble_coral_fan", + "displayName": "Bubble Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13860, + "minStateId": 13860, + "maxStateId": 13861, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 739, + "name": "fire_coral_fan", + "displayName": "Fire Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13862, + "minStateId": 13862, + "maxStateId": 13863, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 740, + "name": "horn_coral_fan", + "displayName": "Horn Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13864, + "minStateId": 13864, + "maxStateId": 13865, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 741, + "name": "dead_tube_coral_wall_fan", + "displayName": "Dead Tube Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13866, + "minStateId": 13866, + "maxStateId": 13873, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 742, + "name": "dead_brain_coral_wall_fan", + "displayName": "Dead Brain Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13874, + "minStateId": 13874, + "maxStateId": 13881, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 743, + "name": "dead_bubble_coral_wall_fan", + "displayName": "Dead Bubble Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13882, + "minStateId": 13882, + "maxStateId": 13889, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 744, + "name": "dead_fire_coral_wall_fan", + "displayName": "Dead Fire Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13890, + "minStateId": 13890, + "maxStateId": 13897, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 745, + "name": "dead_horn_coral_wall_fan", + "displayName": "Dead Horn Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13898, + "minStateId": 13898, + "maxStateId": 13905, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 746, + "name": "tube_coral_wall_fan", + "displayName": "Tube Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13906, + "minStateId": 13906, + "maxStateId": 13913, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 747, + "name": "brain_coral_wall_fan", + "displayName": "Brain Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13914, + "minStateId": 13914, + "maxStateId": 13921, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 748, + "name": "bubble_coral_wall_fan", + "displayName": "Bubble Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13922, + "minStateId": 13922, + "maxStateId": 13929, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 749, + "name": "fire_coral_wall_fan", + "displayName": "Fire Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13930, + "minStateId": 13930, + "maxStateId": 13937, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 750, + "name": "horn_coral_wall_fan", + "displayName": "Horn Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13938, + "minStateId": 13938, + "maxStateId": 13945, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 751, + "name": "sea_pickle", + "displayName": "Sea Pickle", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 6, + "filterLight": 1, + "defaultState": 13946, + "minStateId": 13946, + "maxStateId": 13953, + "states": [ + { + "name": "pickles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 208 + ], + "boundingBox": "block" + }, + { + "id": 752, + "name": "blue_ice", + "displayName": "Blue Ice", + "hardness": 2.8, + "resistance": 2.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 13954, + "minStateId": 13954, + "maxStateId": 13954, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 753, + "name": "conduit", + "displayName": "Conduit", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 15, + "filterLight": 1, + "defaultState": 13955, + "minStateId": 13955, + "maxStateId": 13956, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 643 + ], + "boundingBox": "block" + }, + { + "id": 754, + "name": "bamboo_sapling", + "displayName": "Bamboo Shoot", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13957, + "minStateId": 13957, + "maxStateId": 13957, + "states": [], + "drops": [ + 263 + ], + "boundingBox": "empty" + }, + { + "id": 755, + "name": "bamboo", + "displayName": "Bamboo", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13958, + "minStateId": 13958, + "maxStateId": 13969, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + }, + { + "name": "leaves", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "small", + "large" + ] + }, + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 263 + ], + "boundingBox": "block" + }, + { + "id": 756, + "name": "potted_bamboo", + "displayName": "Potted Bamboo", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13970, + "minStateId": 13970, + "maxStateId": 13970, + "states": [], + "drops": [ + 1147, + 263 + ], + "boundingBox": "block" + }, + { + "id": 757, + "name": "void_air", + "displayName": "Void Air", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13971, + "minStateId": 13971, + "maxStateId": 13971, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 758, + "name": "cave_air", + "displayName": "Cave Air", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13972, + "minStateId": 13972, + "maxStateId": 13972, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 759, + "name": "bubble_column", + "displayName": "Bubble Column", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 13973, + "minStateId": 13973, + "maxStateId": 13974, + "states": [ + { + "name": "drag", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 760, + "name": "polished_granite_stairs", + "displayName": "Polished Granite Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13986, + "minStateId": 13975, + "maxStateId": 14054, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 644 + ], + "boundingBox": "block" + }, + { + "id": 761, + "name": "smooth_red_sandstone_stairs", + "displayName": "Smooth Red Sandstone Stairs", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14066, + "minStateId": 14055, + "maxStateId": 14134, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 645 + ], + "boundingBox": "block" + }, + { + "id": 762, + "name": "mossy_stone_brick_stairs", + "displayName": "Mossy Stone Brick Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14146, + "minStateId": 14135, + "maxStateId": 14214, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 646 + ], + "boundingBox": "block" + }, + { + "id": 763, + "name": "polished_diorite_stairs", + "displayName": "Polished Diorite Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14226, + "minStateId": 14215, + "maxStateId": 14294, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 647 + ], + "boundingBox": "block" + }, + { + "id": 764, + "name": "mossy_cobblestone_stairs", + "displayName": "Mossy Cobblestone Stairs", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14306, + "minStateId": 14295, + "maxStateId": 14374, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 648 + ], + "boundingBox": "block" + }, + { + "id": 765, + "name": "end_stone_brick_stairs", + "displayName": "End Stone Brick Stairs", + "hardness": 3.0, + "resistance": 9.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14386, + "minStateId": 14375, + "maxStateId": 14454, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 649 + ], + "boundingBox": "block" + }, + { + "id": 766, + "name": "stone_stairs", + "displayName": "Stone Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14466, + "minStateId": 14455, + "maxStateId": 14534, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 650 + ], + "boundingBox": "block" + }, + { + "id": 767, + "name": "smooth_sandstone_stairs", + "displayName": "Smooth Sandstone Stairs", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14546, + "minStateId": 14535, + "maxStateId": 14614, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 651 + ], + "boundingBox": "block" + }, + { + "id": 768, + "name": "smooth_quartz_stairs", + "displayName": "Smooth Quartz Stairs", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14626, + "minStateId": 14615, + "maxStateId": 14694, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 652 + ], + "boundingBox": "block" + }, + { + "id": 769, + "name": "granite_stairs", + "displayName": "Granite Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14706, + "minStateId": 14695, + "maxStateId": 14774, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 653 + ], + "boundingBox": "block" + }, + { + "id": 770, + "name": "andesite_stairs", + "displayName": "Andesite Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14786, + "minStateId": 14775, + "maxStateId": 14854, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 654 + ], + "boundingBox": "block" + }, + { + "id": 771, + "name": "red_nether_brick_stairs", + "displayName": "Red Nether Brick Stairs", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14866, + "minStateId": 14855, + "maxStateId": 14934, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 655 + ], + "boundingBox": "block" + }, + { + "id": 772, + "name": "polished_andesite_stairs", + "displayName": "Polished Andesite Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14946, + "minStateId": 14935, + "maxStateId": 15014, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 656 + ], + "boundingBox": "block" + }, + { + "id": 773, + "name": "diorite_stairs", + "displayName": "Diorite Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15026, + "minStateId": 15015, + "maxStateId": 15094, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 657 + ], + "boundingBox": "block" + }, + { + "id": 774, + "name": "polished_granite_slab", + "displayName": "Polished Granite Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15098, + "minStateId": 15095, + "maxStateId": 15100, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 662 + ], + "boundingBox": "block" + }, + { + "id": 775, + "name": "smooth_red_sandstone_slab", + "displayName": "Smooth Red Sandstone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15104, + "minStateId": 15101, + "maxStateId": 15106, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 663 + ], + "boundingBox": "block" + }, + { + "id": 776, + "name": "mossy_stone_brick_slab", + "displayName": "Mossy Stone Brick Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15110, + "minStateId": 15107, + "maxStateId": 15112, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 664 + ], + "boundingBox": "block" + }, + { + "id": 777, + "name": "polished_diorite_slab", + "displayName": "Polished Diorite Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15116, + "minStateId": 15113, + "maxStateId": 15118, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 665 + ], + "boundingBox": "block" + }, + { + "id": 778, + "name": "mossy_cobblestone_slab", + "displayName": "Mossy Cobblestone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15122, + "minStateId": 15119, + "maxStateId": 15124, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 666 + ], + "boundingBox": "block" + }, + { + "id": 779, + "name": "end_stone_brick_slab", + "displayName": "End Stone Brick Slab", + "hardness": 3.0, + "resistance": 9.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15128, + "minStateId": 15125, + "maxStateId": 15130, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 667 + ], + "boundingBox": "block" + }, + { + "id": 780, + "name": "smooth_sandstone_slab", + "displayName": "Smooth Sandstone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15134, + "minStateId": 15131, + "maxStateId": 15136, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 668 + ], + "boundingBox": "block" + }, + { + "id": 781, + "name": "smooth_quartz_slab", + "displayName": "Smooth Quartz Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15140, + "minStateId": 15137, + "maxStateId": 15142, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 669 + ], + "boundingBox": "block" + }, + { + "id": 782, + "name": "granite_slab", + "displayName": "Granite Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15146, + "minStateId": 15143, + "maxStateId": 15148, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 670 + ], + "boundingBox": "block" + }, + { + "id": 783, + "name": "andesite_slab", + "displayName": "Andesite Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15152, + "minStateId": 15149, + "maxStateId": 15154, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 671 + ], + "boundingBox": "block" + }, + { + "id": 784, + "name": "red_nether_brick_slab", + "displayName": "Red Nether Brick Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15158, + "minStateId": 15155, + "maxStateId": 15160, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 672 + ], + "boundingBox": "block" + }, + { + "id": 785, + "name": "polished_andesite_slab", + "displayName": "Polished Andesite Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15164, + "minStateId": 15161, + "maxStateId": 15166, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 673 + ], + "boundingBox": "block" + }, + { + "id": 786, + "name": "diorite_slab", + "displayName": "Diorite Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15170, + "minStateId": 15167, + "maxStateId": 15172, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 674 + ], + "boundingBox": "block" + }, + { + "id": 787, + "name": "brick_wall", + "displayName": "Brick Wall", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15176, + "minStateId": 15173, + "maxStateId": 15496, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 422 + ], + "boundingBox": "block" + }, + { + "id": 788, + "name": "prismarine_wall", + "displayName": "Prismarine Wall", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15500, + "minStateId": 15497, + "maxStateId": 15820, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 423 + ], + "boundingBox": "block" + }, + { + "id": 789, + "name": "red_sandstone_wall", + "displayName": "Red Sandstone Wall", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15824, + "minStateId": 15821, + "maxStateId": 16144, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 424 + ], + "boundingBox": "block" + }, + { + "id": 790, + "name": "mossy_stone_brick_wall", + "displayName": "Mossy Stone Brick Wall", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16148, + "minStateId": 16145, + "maxStateId": 16468, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 425 + ], + "boundingBox": "block" + }, + { + "id": 791, + "name": "granite_wall", + "displayName": "Granite Wall", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16472, + "minStateId": 16469, + "maxStateId": 16792, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 426 + ], + "boundingBox": "block" + }, + { + "id": 792, + "name": "stone_brick_wall", + "displayName": "Stone Brick Wall", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16796, + "minStateId": 16793, + "maxStateId": 17116, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 427 + ], + "boundingBox": "block" + }, + { + "id": 793, + "name": "mud_brick_wall", + "displayName": "Mud Brick Wall", + "hardness": 1.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17120, + "minStateId": 17117, + "maxStateId": 17440, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 428 + ], + "boundingBox": "block" + }, + { + "id": 794, + "name": "nether_brick_wall", + "displayName": "Nether Brick Wall", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17444, + "minStateId": 17441, + "maxStateId": 17764, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 429 + ], + "boundingBox": "block" + }, + { + "id": 795, + "name": "andesite_wall", + "displayName": "Andesite Wall", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17768, + "minStateId": 17765, + "maxStateId": 18088, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 430 + ], + "boundingBox": "block" + }, + { + "id": 796, + "name": "red_nether_brick_wall", + "displayName": "Red Nether Brick Wall", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18092, + "minStateId": 18089, + "maxStateId": 18412, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 431 + ], + "boundingBox": "block" + }, + { + "id": 797, + "name": "sandstone_wall", + "displayName": "Sandstone Wall", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18416, + "minStateId": 18413, + "maxStateId": 18736, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 432 + ], + "boundingBox": "block" + }, + { + "id": 798, + "name": "end_stone_brick_wall", + "displayName": "End Stone Brick Wall", + "hardness": 3.0, + "resistance": 9.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18740, + "minStateId": 18737, + "maxStateId": 19060, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 433 + ], + "boundingBox": "block" + }, + { + "id": 799, + "name": "diorite_wall", + "displayName": "Diorite Wall", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19064, + "minStateId": 19061, + "maxStateId": 19384, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 434 + ], + "boundingBox": "block" + }, + { + "id": 800, + "name": "scaffolding", + "displayName": "Scaffolding", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19416, + "minStateId": 19385, + "maxStateId": 19416, + "states": [ + { + "name": "bottom", + "type": "bool", + "num_values": 2 + }, + { + "name": "distance", + "type": "int", + "num_values": 8, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 679 + ], + "boundingBox": "block" + }, + { + "id": 801, + "name": "loom", + "displayName": "Loom", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19417, + "minStateId": 19417, + "maxStateId": 19420, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1245 + ], + "boundingBox": "block" + }, + { + "id": 802, + "name": "barrel", + "displayName": "Barrel", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19422, + "minStateId": 19421, + "maxStateId": 19432, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1258 + ], + "boundingBox": "block" + }, + { + "id": 803, + "name": "smoker", + "displayName": "Smoker", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19434, + "minStateId": 19433, + "maxStateId": 19440, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1259 + ], + "boundingBox": "block" + }, + { + "id": 804, + "name": "blast_furnace", + "displayName": "Blast Furnace", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19442, + "minStateId": 19441, + "maxStateId": 19448, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1260 + ], + "boundingBox": "block" + }, + { + "id": 805, + "name": "cartography_table", + "displayName": "Cartography Table", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19449, + "minStateId": 19449, + "maxStateId": 19449, + "states": [], + "drops": [ + 1261 + ], + "boundingBox": "block" + }, + { + "id": 806, + "name": "fletching_table", + "displayName": "Fletching Table", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19450, + "minStateId": 19450, + "maxStateId": 19450, + "states": [], + "drops": [ + 1262 + ], + "boundingBox": "block" + }, + { + "id": 807, + "name": "grindstone", + "displayName": "Grindstone", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19455, + "minStateId": 19451, + "maxStateId": 19462, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1263 + ], + "boundingBox": "block" + }, + { + "id": 808, + "name": "lectern", + "displayName": "Lectern", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19466, + "minStateId": 19463, + "maxStateId": 19478, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "has_book", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 693 + ], + "boundingBox": "block" + }, + { + "id": 809, + "name": "smithing_table", + "displayName": "Smithing Table", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19479, + "minStateId": 19479, + "maxStateId": 19479, + "states": [], + "drops": [ + 1264 + ], + "boundingBox": "block" + }, + { + "id": 810, + "name": "stonecutter", + "displayName": "Stonecutter", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19480, + "minStateId": 19480, + "maxStateId": 19483, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1265 + ], + "boundingBox": "block" + }, + { + "id": 811, + "name": "bell", + "displayName": "Bell", + "hardness": 5.0, + "resistance": 5.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19485, + "minStateId": 19484, + "maxStateId": 19515, + "states": [ + { + "name": "attachment", + "type": "enum", + "num_values": 4, + "values": [ + "floor", + "ceiling", + "single_wall", + "double_wall" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1266 + ], + "boundingBox": "block" + }, + { + "id": 812, + "name": "lantern", + "displayName": "Lantern", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 19519, + "minStateId": 19516, + "maxStateId": 19519, + "states": [ + { + "name": "hanging", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1267 + ], + "boundingBox": "block" + }, + { + "id": 813, + "name": "soul_lantern", + "displayName": "Soul Lantern", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 10, + "filterLight": 0, + "defaultState": 19523, + "minStateId": 19520, + "maxStateId": 19523, + "states": [ + { + "name": "hanging", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1268 + ], + "boundingBox": "block" + }, + { + "id": 814, + "name": "campfire", + "displayName": "Campfire", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 19527, + "minStateId": 19524, + "maxStateId": 19555, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "signal_fire", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 835 + ], + "boundingBox": "block" + }, + { + "id": 815, + "name": "soul_campfire", + "displayName": "Soul Campfire", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 10, + "filterLight": 0, + "defaultState": 19559, + "minStateId": 19556, + "maxStateId": 19587, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "signal_fire", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 342 + ], + "boundingBox": "block" + }, + { + "id": 816, + "name": "sweet_berry_bush", + "displayName": "Sweet Berry Bush", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19588, + "minStateId": 19588, + "maxStateId": 19591, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 4, + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 817, + "name": "warped_stem", + "displayName": "Warped Stem", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19593, + "minStateId": 19592, + "maxStateId": 19594, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 146 + ], + "boundingBox": "block" + }, + { + "id": 818, + "name": "stripped_warped_stem", + "displayName": "Stripped Warped Stem", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19596, + "minStateId": 19595, + "maxStateId": 19597, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 158 + ], + "boundingBox": "block" + }, + { + "id": 819, + "name": "warped_hyphae", + "displayName": "Warped Hyphae", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19599, + "minStateId": 19598, + "maxStateId": 19600, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 181 + ], + "boundingBox": "block" + }, + { + "id": 820, + "name": "stripped_warped_hyphae", + "displayName": "Stripped Warped Hyphae", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19602, + "minStateId": 19601, + "maxStateId": 19603, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 169 + ], + "boundingBox": "block" + }, + { + "id": 821, + "name": "warped_nylium", + "displayName": "Warped Nylium", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19604, + "minStateId": 19604, + "maxStateId": 19604, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 340 + ], + "boundingBox": "block" + }, + { + "id": 822, + "name": "warped_fungus", + "displayName": "Warped Fungus", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19605, + "minStateId": 19605, + "maxStateId": 19605, + "states": [], + "drops": [ + 246 + ], + "boundingBox": "empty" + }, + { + "id": 823, + "name": "warped_wart_block", + "displayName": "Warped Wart Block", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19606, + "minStateId": 19606, + "maxStateId": 19606, + "states": [], + "drops": [ + 541 + ], + "boundingBox": "block" + }, + { + "id": 824, + "name": "warped_roots", + "displayName": "Warped Roots", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19607, + "minStateId": 19607, + "maxStateId": 19607, + "states": [], + "drops": [ + 248 + ], + "boundingBox": "empty" + }, + { + "id": 825, + "name": "nether_sprouts", + "displayName": "Nether Sprouts", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19608, + "minStateId": 19608, + "maxStateId": 19608, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 826, + "name": "crimson_stem", + "displayName": "Crimson Stem", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19610, + "minStateId": 19609, + "maxStateId": 19611, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 145 + ], + "boundingBox": "block" + }, + { + "id": 827, + "name": "stripped_crimson_stem", + "displayName": "Stripped Crimson Stem", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19613, + "minStateId": 19612, + "maxStateId": 19614, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 157 + ], + "boundingBox": "block" + }, + { + "id": 828, + "name": "crimson_hyphae", + "displayName": "Crimson Hyphae", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19616, + "minStateId": 19615, + "maxStateId": 19617, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 180 + ], + "boundingBox": "block" + }, + { + "id": 829, + "name": "stripped_crimson_hyphae", + "displayName": "Stripped Crimson Hyphae", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19619, + "minStateId": 19618, + "maxStateId": 19620, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 168 + ], + "boundingBox": "block" + }, + { + "id": 830, + "name": "crimson_nylium", + "displayName": "Crimson Nylium", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19621, + "minStateId": 19621, + "maxStateId": 19621, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 340 + ], + "boundingBox": "block" + }, + { + "id": 831, + "name": "crimson_fungus", + "displayName": "Crimson Fungus", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19622, + "minStateId": 19622, + "maxStateId": 19622, + "states": [], + "drops": [ + 245 + ], + "boundingBox": "empty" + }, + { + "id": 832, + "name": "shroomlight", + "displayName": "Shroomlight", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 19623, + "minStateId": 19623, + "maxStateId": 19623, + "states": [], + "drops": [ + 1273 + ], + "boundingBox": "block" + }, + { + "id": 833, + "name": "weeping_vines", + "displayName": "Weeping Vines", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19624, + "minStateId": 19624, + "maxStateId": 19649, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 26, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + } + ], + "drops": [ + 250 + ], + "boundingBox": "empty" + }, + { + "id": 834, + "name": "weeping_vines_plant", + "displayName": "Weeping Vines Plant", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19650, + "minStateId": 19650, + "maxStateId": 19650, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 835, + "name": "twisting_vines", + "displayName": "Twisting Vines", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19651, + "minStateId": 19651, + "maxStateId": 19676, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 26, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 836, + "name": "twisting_vines_plant", + "displayName": "Twisting Vines Plant", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19677, + "minStateId": 19677, + "maxStateId": 19677, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 837, + "name": "crimson_roots", + "displayName": "Crimson Roots", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19678, + "minStateId": 19678, + "maxStateId": 19678, + "states": [], + "drops": [ + 247 + ], + "boundingBox": "empty" + }, + { + "id": 838, + "name": "crimson_planks", + "displayName": "Crimson Planks", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19679, + "minStateId": 19679, + "maxStateId": 19679, + "states": [], + "drops": [ + 46 + ], + "boundingBox": "block" + }, + { + "id": 839, + "name": "warped_planks", + "displayName": "Warped Planks", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19680, + "minStateId": 19680, + "maxStateId": 19680, + "states": [], + "drops": [ + 47 + ], + "boundingBox": "block" + }, + { + "id": 840, + "name": "crimson_slab", + "displayName": "Crimson Slab", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19684, + "minStateId": 19681, + "maxStateId": 19686, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 275 + ], + "boundingBox": "block" + }, + { + "id": 841, + "name": "warped_slab", + "displayName": "Warped Slab", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19690, + "minStateId": 19687, + "maxStateId": 19692, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 276 + ], + "boundingBox": "block" + }, + { + "id": 842, + "name": "crimson_pressure_plate", + "displayName": "Crimson Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19694, + "minStateId": 19693, + "maxStateId": 19694, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 733 + ], + "boundingBox": "empty" + }, + { + "id": 843, + "name": "warped_pressure_plate", + "displayName": "Warped Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19696, + "minStateId": 19695, + "maxStateId": 19696, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 734 + ], + "boundingBox": "empty" + }, + { + "id": 844, + "name": "crimson_fence", + "displayName": "Crimson Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19728, + "minStateId": 19697, + "maxStateId": 19728, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 335 + ], + "boundingBox": "block" + }, + { + "id": 845, + "name": "warped_fence", + "displayName": "Warped Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19760, + "minStateId": 19729, + "maxStateId": 19760, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 336 + ], + "boundingBox": "block" + }, + { + "id": 846, + "name": "crimson_trapdoor", + "displayName": "Crimson Trapdoor", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19776, + "minStateId": 19761, + "maxStateId": 19824, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 767 + ], + "boundingBox": "block" + }, + { + "id": 847, + "name": "warped_trapdoor", + "displayName": "Warped Trapdoor", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19840, + "minStateId": 19825, + "maxStateId": 19888, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 768 + ], + "boundingBox": "block" + }, + { + "id": 848, + "name": "crimson_fence_gate", + "displayName": "Crimson Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19896, + "minStateId": 19889, + "maxStateId": 19920, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 787 + ], + "boundingBox": "block" + }, + { + "id": 849, + "name": "warped_fence_gate", + "displayName": "Warped Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19928, + "minStateId": 19921, + "maxStateId": 19952, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 788 + ], + "boundingBox": "block" + }, + { + "id": 850, + "name": "crimson_stairs", + "displayName": "Crimson Stairs", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19964, + "minStateId": 19953, + "maxStateId": 20032, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 416 + ], + "boundingBox": "block" + }, + { + "id": 851, + "name": "warped_stairs", + "displayName": "Warped Stairs", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20044, + "minStateId": 20033, + "maxStateId": 20112, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 417 + ], + "boundingBox": "block" + }, + { + "id": 852, + "name": "crimson_button", + "displayName": "Crimson Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20122, + "minStateId": 20113, + "maxStateId": 20136, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 717 + ], + "boundingBox": "empty" + }, + { + "id": 853, + "name": "warped_button", + "displayName": "Warped Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20146, + "minStateId": 20137, + "maxStateId": 20160, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 718 + ], + "boundingBox": "empty" + }, + { + "id": 854, + "name": "crimson_door", + "displayName": "Crimson Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20172, + "minStateId": 20161, + "maxStateId": 20224, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 746 + ], + "boundingBox": "block" + }, + { + "id": 855, + "name": "warped_door", + "displayName": "Warped Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20236, + "minStateId": 20225, + "maxStateId": 20288, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 747 + ], + "boundingBox": "block" + }, + { + "id": 856, + "name": "crimson_sign", + "displayName": "Crimson Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20290, + "minStateId": 20289, + "maxStateId": 20320, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 927 + ], + "boundingBox": "empty" + }, + { + "id": 857, + "name": "warped_sign", + "displayName": "Warped Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20322, + "minStateId": 20321, + "maxStateId": 20352, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 928 + ], + "boundingBox": "empty" + }, + { + "id": 858, + "name": "crimson_wall_sign", + "displayName": "Crimson Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20354, + "minStateId": 20353, + "maxStateId": 20360, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 927 + ], + "boundingBox": "empty" + }, + { + "id": 859, + "name": "warped_wall_sign", + "displayName": "Warped Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20362, + "minStateId": 20361, + "maxStateId": 20368, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 928 + ], + "boundingBox": "empty" + }, + { + "id": 860, + "name": "structure_block", + "displayName": "Structure Block", + "hardness": -1.0, + "resistance": 3600000.0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20370, + "minStateId": 20369, + "maxStateId": 20372, + "states": [ + { + "name": "mode", + "type": "enum", + "num_values": 4, + "values": [ + "save", + "load", + "corner", + "data" + ] + } + ], + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 861, + "name": "jigsaw", + "displayName": "Jigsaw Block", + "hardness": -1.0, + "resistance": 3600000.0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20383, + "minStateId": 20373, + "maxStateId": 20384, + "states": [ + { + "name": "orientation", + "type": "enum", + "num_values": 12, + "values": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" + ] + } + ], + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 862, + "name": "composter", + "displayName": "Composter", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20385, + "minStateId": 20385, + "maxStateId": 20393, + "states": [ + { + "name": "level", + "type": "int", + "num_values": 9, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + } + ], + "drops": [ + 1257 + ], + "boundingBox": "block" + }, + { + "id": 863, + "name": "target", + "displayName": "Target", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20394, + "minStateId": 20394, + "maxStateId": 20409, + "states": [ + { + "name": "power", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 694 + ], + "boundingBox": "block" + }, + { + "id": 864, + "name": "bee_nest", + "displayName": "Bee Nest", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20410, + "minStateId": 20410, + "maxStateId": 20433, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "honey_level", + "type": "int", + "num_values": 6, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 865, + "name": "beehive", + "displayName": "Beehive", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20434, + "minStateId": 20434, + "maxStateId": 20457, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "honey_level", + "type": "int", + "num_values": 6, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + } + ], + "drops": [ + 1276 + ], + "boundingBox": "block" + }, + { + "id": 866, + "name": "honey_block", + "displayName": "Honey Block", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 20458, + "minStateId": 20458, + "maxStateId": 20458, + "states": [], + "drops": [ + 688 + ], + "boundingBox": "block" + }, + { + "id": 867, + "name": "honeycomb_block", + "displayName": "Honeycomb Block", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20459, + "minStateId": 20459, + "maxStateId": 20459, + "states": [], + "drops": [ + 1278 + ], + "boundingBox": "block" + }, + { + "id": 868, + "name": "netherite_block", + "displayName": "Block of Netherite", + "hardness": 50.0, + "resistance": 1200.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20460, + "minStateId": 20460, + "maxStateId": 20460, + "states": [], + "harvestTools": { + "871": true, + "876": true + }, + "drops": [ + 94 + ], + "boundingBox": "block" + }, + { + "id": 869, + "name": "ancient_debris", + "displayName": "Ancient Debris", + "hardness": 30.0, + "resistance": 1200.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20461, + "minStateId": 20461, + "maxStateId": 20461, + "states": [], + "harvestTools": { + "871": true, + "876": true + }, + "drops": [ + 82 + ], + "boundingBox": "block" + }, + { + "id": 870, + "name": "crying_obsidian", + "displayName": "Crying Obsidian", + "hardness": 50.0, + "resistance": 1200.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 10, + "filterLight": 15, + "defaultState": 20462, + "minStateId": 20462, + "maxStateId": 20462, + "states": [], + "harvestTools": { + "871": true, + "876": true + }, + "drops": [ + 1280 + ], + "boundingBox": "block" + }, + { + "id": 871, + "name": "respawn_anchor", + "displayName": "Respawn Anchor", + "hardness": 50.0, + "resistance": 1200.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20463, + "minStateId": 20463, + "maxStateId": 20467, + "states": [ + { + "name": "charges", + "type": "int", + "num_values": 5, + "values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + ], + "harvestTools": { + "871": true, + "876": true + }, + "drops": [ + 1293 + ], + "boundingBox": "block" + }, + { + "id": 872, + "name": "potted_crimson_fungus", + "displayName": "Potted Crimson Fungus", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20468, + "minStateId": 20468, + "maxStateId": 20468, + "states": [], + "drops": [ + 1147, + 245 + ], + "boundingBox": "block" + }, + { + "id": 873, + "name": "potted_warped_fungus", + "displayName": "Potted Warped Fungus", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20469, + "minStateId": 20469, + "maxStateId": 20469, + "states": [], + "drops": [ + 1147, + 246 + ], + "boundingBox": "block" + }, + { + "id": 874, + "name": "potted_crimson_roots", + "displayName": "Potted Crimson Roots", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20470, + "minStateId": 20470, + "maxStateId": 20470, + "states": [], + "drops": [ + 1147, + 247 + ], + "boundingBox": "block" + }, + { + "id": 875, + "name": "potted_warped_roots", + "displayName": "Potted Warped Roots", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20471, + "minStateId": 20471, + "maxStateId": 20471, + "states": [], + "drops": [ + 1147, + 248 + ], + "boundingBox": "block" + }, + { + "id": 876, + "name": "lodestone", + "displayName": "Lodestone", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20472, + "minStateId": 20472, + "maxStateId": 20472, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1279 + ], + "boundingBox": "block" + }, + { + "id": 877, + "name": "blackstone", + "displayName": "Blackstone", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20473, + "minStateId": 20473, + "maxStateId": 20473, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1281 + ], + "boundingBox": "block" + }, + { + "id": 878, + "name": "blackstone_stairs", + "displayName": "Blackstone Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20485, + "minStateId": 20474, + "maxStateId": 20553, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1283 + ], + "boundingBox": "block" + }, + { + "id": 879, + "name": "blackstone_wall", + "displayName": "Blackstone Wall", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20557, + "minStateId": 20554, + "maxStateId": 20877, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 435 + ], + "boundingBox": "block" + }, + { + "id": 880, + "name": "blackstone_slab", + "displayName": "Blackstone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20881, + "minStateId": 20878, + "maxStateId": 20883, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1282 + ], + "boundingBox": "block" + }, + { + "id": 881, + "name": "polished_blackstone", + "displayName": "Polished Blackstone", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20884, + "minStateId": 20884, + "maxStateId": 20884, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1285 + ], + "boundingBox": "block" + }, + { + "id": 882, + "name": "polished_blackstone_bricks", + "displayName": "Polished Blackstone Bricks", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20885, + "minStateId": 20885, + "maxStateId": 20885, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1289 + ], + "boundingBox": "block" + }, + { + "id": 883, + "name": "cracked_polished_blackstone_bricks", + "displayName": "Cracked Polished Blackstone Bricks", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20886, + "minStateId": 20886, + "maxStateId": 20886, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1292 + ], + "boundingBox": "block" + }, + { + "id": 884, + "name": "chiseled_polished_blackstone", + "displayName": "Chiseled Polished Blackstone", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20887, + "minStateId": 20887, + "maxStateId": 20887, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1288 + ], + "boundingBox": "block" + }, + { + "id": 885, + "name": "polished_blackstone_brick_slab", + "displayName": "Polished Blackstone Brick Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20891, + "minStateId": 20888, + "maxStateId": 20893, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1290 + ], + "boundingBox": "block" + }, + { + "id": 886, + "name": "polished_blackstone_brick_stairs", + "displayName": "Polished Blackstone Brick Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20905, + "minStateId": 20894, + "maxStateId": 20973, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1291 + ], + "boundingBox": "block" + }, + { + "id": 887, + "name": "polished_blackstone_brick_wall", + "displayName": "Polished Blackstone Brick Wall", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20977, + "minStateId": 20974, + "maxStateId": 21297, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 437 + ], + "boundingBox": "block" + }, + { + "id": 888, + "name": "gilded_blackstone", + "displayName": "Gilded Blackstone", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 21298, + "minStateId": 21298, + "maxStateId": 21298, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1284 + ], + "boundingBox": "block" + }, + { + "id": 889, + "name": "polished_blackstone_stairs", + "displayName": "Polished Blackstone Stairs", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21310, + "minStateId": 21299, + "maxStateId": 21378, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1287 + ], + "boundingBox": "block" + }, + { + "id": 890, + "name": "polished_blackstone_slab", + "displayName": "Polished Blackstone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21382, + "minStateId": 21379, + "maxStateId": 21384, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1286 + ], + "boundingBox": "block" + }, + { + "id": 891, + "name": "polished_blackstone_pressure_plate", + "displayName": "Polished Blackstone Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21386, + "minStateId": 21385, + "maxStateId": 21386, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 720 + ], + "boundingBox": "empty" + }, + { + "id": 892, + "name": "polished_blackstone_button", + "displayName": "Polished Blackstone Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21396, + "minStateId": 21387, + "maxStateId": 21410, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 706 + ], + "boundingBox": "empty" + }, + { + "id": 893, + "name": "polished_blackstone_wall", + "displayName": "Polished Blackstone Wall", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21414, + "minStateId": 21411, + "maxStateId": 21734, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 436 + ], + "boundingBox": "block" + }, + { + "id": 894, + "name": "chiseled_nether_bricks", + "displayName": "Chiseled Nether Bricks", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 21735, + "minStateId": 21735, + "maxStateId": 21735, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 390 + ], + "boundingBox": "block" + }, + { + "id": 895, + "name": "cracked_nether_bricks", + "displayName": "Cracked Nether Bricks", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 21736, + "minStateId": 21736, + "maxStateId": 21736, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 389 + ], + "boundingBox": "block" + }, + { + "id": 896, + "name": "quartz_bricks", + "displayName": "Quartz Bricks", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 21737, + "minStateId": 21737, + "maxStateId": 21737, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 447 + ], + "boundingBox": "block" + }, + { + "id": 897, + "name": "candle", + "displayName": "Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21741, + "minStateId": 21738, + "maxStateId": 21753, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1294 + ], + "boundingBox": "block" + }, + { + "id": 898, + "name": "white_candle", + "displayName": "White Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21757, + "minStateId": 21754, + "maxStateId": 21769, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1295 + ], + "boundingBox": "block" + }, + { + "id": 899, + "name": "orange_candle", + "displayName": "Orange Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21773, + "minStateId": 21770, + "maxStateId": 21785, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1296 + ], + "boundingBox": "block" + }, + { + "id": 900, + "name": "magenta_candle", + "displayName": "Magenta Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21789, + "minStateId": 21786, + "maxStateId": 21801, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1297 + ], + "boundingBox": "block" + }, + { + "id": 901, + "name": "light_blue_candle", + "displayName": "Light Blue Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21805, + "minStateId": 21802, + "maxStateId": 21817, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1298 + ], + "boundingBox": "block" + }, + { + "id": 902, + "name": "yellow_candle", + "displayName": "Yellow Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21821, + "minStateId": 21818, + "maxStateId": 21833, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1299 + ], + "boundingBox": "block" + }, + { + "id": 903, + "name": "lime_candle", + "displayName": "Lime Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21837, + "minStateId": 21834, + "maxStateId": 21849, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1300 + ], + "boundingBox": "block" + }, + { + "id": 904, + "name": "pink_candle", + "displayName": "Pink Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21853, + "minStateId": 21850, + "maxStateId": 21865, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1301 + ], + "boundingBox": "block" + }, + { + "id": 905, + "name": "gray_candle", + "displayName": "Gray Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21869, + "minStateId": 21866, + "maxStateId": 21881, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1302 + ], + "boundingBox": "block" + }, + { + "id": 906, + "name": "light_gray_candle", + "displayName": "Light Gray Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21885, + "minStateId": 21882, + "maxStateId": 21897, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1303 + ], + "boundingBox": "block" + }, + { + "id": 907, + "name": "cyan_candle", + "displayName": "Cyan Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21901, + "minStateId": 21898, + "maxStateId": 21913, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1304 + ], + "boundingBox": "block" + }, + { + "id": 908, + "name": "purple_candle", + "displayName": "Purple Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21917, + "minStateId": 21914, + "maxStateId": 21929, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1305 + ], + "boundingBox": "block" + }, + { + "id": 909, + "name": "blue_candle", + "displayName": "Blue Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21933, + "minStateId": 21930, + "maxStateId": 21945, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1306 + ], + "boundingBox": "block" + }, + { + "id": 910, + "name": "brown_candle", + "displayName": "Brown Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21949, + "minStateId": 21946, + "maxStateId": 21961, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1307 + ], + "boundingBox": "block" + }, + { + "id": 911, + "name": "green_candle", + "displayName": "Green Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21965, + "minStateId": 21962, + "maxStateId": 21977, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1308 + ], + "boundingBox": "block" + }, + { + "id": 912, + "name": "red_candle", + "displayName": "Red Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21981, + "minStateId": 21978, + "maxStateId": 21993, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1309 + ], + "boundingBox": "block" + }, + { + "id": 913, + "name": "black_candle", + "displayName": "Black Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21997, + "minStateId": 21994, + "maxStateId": 22009, + "states": [ + { + "name": "candles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1310 + ], + "boundingBox": "block" + }, + { + "id": 914, + "name": "candle_cake", + "displayName": "Cake with Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22011, + "minStateId": 22010, + "maxStateId": 22011, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1294 + ], + "boundingBox": "block" + }, + { + "id": 915, + "name": "white_candle_cake", + "displayName": "Cake with White Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22013, + "minStateId": 22012, + "maxStateId": 22013, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1295 + ], + "boundingBox": "block" + }, + { + "id": 916, + "name": "orange_candle_cake", + "displayName": "Cake with Orange Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22015, + "minStateId": 22014, + "maxStateId": 22015, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1296 + ], + "boundingBox": "block" + }, + { + "id": 917, + "name": "magenta_candle_cake", + "displayName": "Cake with Magenta Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22017, + "minStateId": 22016, + "maxStateId": 22017, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1297 + ], + "boundingBox": "block" + }, + { + "id": 918, + "name": "light_blue_candle_cake", + "displayName": "Cake with Light Blue Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22019, + "minStateId": 22018, + "maxStateId": 22019, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1298 + ], + "boundingBox": "block" + }, + { + "id": 919, + "name": "yellow_candle_cake", + "displayName": "Cake with Yellow Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22021, + "minStateId": 22020, + "maxStateId": 22021, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1299 + ], + "boundingBox": "block" + }, + { + "id": 920, + "name": "lime_candle_cake", + "displayName": "Cake with Lime Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22023, + "minStateId": 22022, + "maxStateId": 22023, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1300 + ], + "boundingBox": "block" + }, + { + "id": 921, + "name": "pink_candle_cake", + "displayName": "Cake with Pink Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22025, + "minStateId": 22024, + "maxStateId": 22025, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1301 + ], + "boundingBox": "block" + }, + { + "id": 922, + "name": "gray_candle_cake", + "displayName": "Cake with Gray Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22027, + "minStateId": 22026, + "maxStateId": 22027, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1302 + ], + "boundingBox": "block" + }, + { + "id": 923, + "name": "light_gray_candle_cake", + "displayName": "Cake with Light Gray Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22029, + "minStateId": 22028, + "maxStateId": 22029, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1303 + ], + "boundingBox": "block" + }, + { + "id": 924, + "name": "cyan_candle_cake", + "displayName": "Cake with Cyan Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22031, + "minStateId": 22030, + "maxStateId": 22031, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1304 + ], + "boundingBox": "block" + }, + { + "id": 925, + "name": "purple_candle_cake", + "displayName": "Cake with Purple Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22033, + "minStateId": 22032, + "maxStateId": 22033, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1305 + ], + "boundingBox": "block" + }, + { + "id": 926, + "name": "blue_candle_cake", + "displayName": "Cake with Blue Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22035, + "minStateId": 22034, + "maxStateId": 22035, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1306 + ], + "boundingBox": "block" + }, + { + "id": 927, + "name": "brown_candle_cake", + "displayName": "Cake with Brown Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22037, + "minStateId": 22036, + "maxStateId": 22037, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1307 + ], + "boundingBox": "block" + }, + { + "id": 928, + "name": "green_candle_cake", + "displayName": "Cake with Green Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22039, + "minStateId": 22038, + "maxStateId": 22039, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1308 + ], + "boundingBox": "block" + }, + { + "id": 929, + "name": "red_candle_cake", + "displayName": "Cake with Red Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22041, + "minStateId": 22040, + "maxStateId": 22041, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1309 + ], + "boundingBox": "block" + }, + { + "id": 930, + "name": "black_candle_cake", + "displayName": "Cake with Black Candle", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22043, + "minStateId": 22042, + "maxStateId": 22043, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1310 + ], + "boundingBox": "block" + }, + { + "id": 931, + "name": "amethyst_block", + "displayName": "Block of Amethyst", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 22044, + "minStateId": 22044, + "maxStateId": 22044, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 88 + ], + "boundingBox": "block" + }, + { + "id": 932, + "name": "budding_amethyst", + "displayName": "Budding Amethyst", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 22045, + "minStateId": 22045, + "maxStateId": 22045, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [], + "boundingBox": "block" + }, + { + "id": 933, + "name": "amethyst_cluster", + "displayName": "Amethyst Cluster", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 5, + "filterLight": 0, + "defaultState": 22055, + "minStateId": 22046, + "maxStateId": 22057, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 840 + ], + "boundingBox": "block" + }, + { + "id": 934, + "name": "large_amethyst_bud", + "displayName": "Large Amethyst Bud", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 4, + "filterLight": 0, + "defaultState": 22067, + "minStateId": 22058, + "maxStateId": 22069, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 935, + "name": "medium_amethyst_bud", + "displayName": "Medium Amethyst Bud", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 2, + "filterLight": 0, + "defaultState": 22079, + "minStateId": 22070, + "maxStateId": 22081, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 936, + "name": "small_amethyst_bud", + "displayName": "Small Amethyst Bud", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 1, + "filterLight": 0, + "defaultState": 22091, + "minStateId": 22082, + "maxStateId": 22093, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 937, + "name": "tuff", + "displayName": "Tuff", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 22094, + "minStateId": 22094, + "maxStateId": 22094, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 12 + ], + "boundingBox": "block" + }, + { + "id": 938, + "name": "tuff_slab", + "displayName": "Tuff Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22098, + "minStateId": 22095, + "maxStateId": 22100, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 13 + ], + "boundingBox": "block" + }, + { + "id": 939, + "name": "tuff_stairs", + "displayName": "Tuff Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22112, + "minStateId": 22101, + "maxStateId": 22180, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 14 + ], + "boundingBox": "block" + }, + { + "id": 940, + "name": "tuff_wall", + "displayName": "Tuff Wall", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22184, + "minStateId": 22181, + "maxStateId": 22504, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 15 + ], + "boundingBox": "block" + }, + { + "id": 941, + "name": "polished_tuff", + "displayName": "Polished Tuff", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 22505, + "minStateId": 22505, + "maxStateId": 22505, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 17 + ], + "boundingBox": "block" + }, + { + "id": 942, + "name": "polished_tuff_slab", + "displayName": "Polished Tuff Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22509, + "minStateId": 22506, + "maxStateId": 22511, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 18 + ], + "boundingBox": "block" + }, + { + "id": 943, + "name": "polished_tuff_stairs", + "displayName": "Polished Tuff Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22523, + "minStateId": 22512, + "maxStateId": 22591, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 19 + ], + "boundingBox": "block" + }, + { + "id": 944, + "name": "polished_tuff_wall", + "displayName": "Polished Tuff Wall", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22595, + "minStateId": 22592, + "maxStateId": 22915, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 20 + ], + "boundingBox": "block" + }, + { + "id": 945, + "name": "chiseled_tuff", + "displayName": "Chiseled Tuff", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 22916, + "minStateId": 22916, + "maxStateId": 22916, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 16 + ], + "boundingBox": "block" + }, + { + "id": 946, + "name": "tuff_bricks", + "displayName": "Tuff Bricks", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 22917, + "minStateId": 22917, + "maxStateId": 22917, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 21 + ], + "boundingBox": "block" + }, + { + "id": 947, + "name": "tuff_brick_slab", + "displayName": "Tuff Brick Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22921, + "minStateId": 22918, + "maxStateId": 22923, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 22 + ], + "boundingBox": "block" + }, + { + "id": 948, + "name": "tuff_brick_stairs", + "displayName": "Tuff Brick Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 22935, + "minStateId": 22924, + "maxStateId": 23003, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 23 + ], + "boundingBox": "block" + }, + { + "id": 949, + "name": "tuff_brick_wall", + "displayName": "Tuff Brick Wall", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 23007, + "minStateId": 23004, + "maxStateId": 23327, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 24 + ], + "boundingBox": "block" + }, + { + "id": 950, + "name": "chiseled_tuff_bricks", + "displayName": "Chiseled Tuff Bricks", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23328, + "minStateId": 23328, + "maxStateId": 23328, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 25 + ], + "boundingBox": "block" + }, + { + "id": 951, + "name": "calcite", + "displayName": "Calcite", + "hardness": 0.75, + "resistance": 0.75, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23329, + "minStateId": 23329, + "maxStateId": 23329, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 11 + ], + "boundingBox": "block" + }, + { + "id": 952, + "name": "tinted_glass", + "displayName": "Tinted Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23330, + "minStateId": 23330, + "maxStateId": 23330, + "states": [], + "drops": [ + 196 + ], + "boundingBox": "block" + }, + { + "id": 953, + "name": "powder_snow", + "displayName": "Powder Snow", + "hardness": 0.25, + "resistance": 0.25, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 23331, + "minStateId": 23331, + "maxStateId": 23331, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 954, + "name": "sculk_sensor", + "displayName": "Sculk Sensor", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 1, + "filterLight": 0, + "defaultState": 23333, + "minStateId": 23332, + "maxStateId": 23427, + "states": [ + { + "name": "power", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "sculk_sensor_phase", + "type": "enum", + "num_values": 3, + "values": [ + "inactive", + "active", + "cooldown" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 955, + "name": "calibrated_sculk_sensor", + "displayName": "Calibrated Sculk Sensor", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 1, + "filterLight": 0, + "defaultState": 23429, + "minStateId": 23428, + "maxStateId": 23811, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "power", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "sculk_sensor_phase", + "type": "enum", + "num_values": 3, + "values": [ + "inactive", + "active", + "cooldown" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 956, + "name": "sculk", + "displayName": "Sculk", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23812, + "minStateId": 23812, + "maxStateId": 23812, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 957, + "name": "sculk_vein", + "displayName": "Sculk Vein", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 23940, + "minStateId": 23813, + "maxStateId": 23940, + "states": [ + { + "name": "down", + "type": "bool", + "num_values": 2 + }, + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 958, + "name": "sculk_catalyst", + "displayName": "Sculk Catalyst", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 6, + "filterLight": 15, + "defaultState": 23942, + "minStateId": 23941, + "maxStateId": 23942, + "states": [ + { + "name": "bloom", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 959, + "name": "sculk_shrieker", + "displayName": "Sculk Shrieker", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 1, + "defaultState": 23950, + "minStateId": 23943, + "maxStateId": 23950, + "states": [ + { + "name": "can_summon", + "type": "bool", + "num_values": 2 + }, + { + "name": "shrieking", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 960, + "name": "copper_block", + "displayName": "Block of Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23951, + "minStateId": 23951, + "maxStateId": 23951, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 91 + ], + "boundingBox": "block" + }, + { + "id": 961, + "name": "exposed_copper", + "displayName": "Exposed Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23952, + "minStateId": 23952, + "maxStateId": 23952, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 95 + ], + "boundingBox": "block" + }, + { + "id": 962, + "name": "weathered_copper", + "displayName": "Weathered Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23953, + "minStateId": 23953, + "maxStateId": 23953, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 96 + ], + "boundingBox": "block" + }, + { + "id": 963, + "name": "oxidized_copper", + "displayName": "Oxidized Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23954, + "minStateId": 23954, + "maxStateId": 23954, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 97 + ], + "boundingBox": "block" + }, + { + "id": 964, + "name": "copper_ore", + "displayName": "Copper Ore", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23955, + "minStateId": 23955, + "maxStateId": 23955, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 843 + ], + "boundingBox": "block" + }, + { + "id": 965, + "name": "deepslate_copper_ore", + "displayName": "Deepslate Copper Ore", + "hardness": 4.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23956, + "minStateId": 23956, + "maxStateId": 23956, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 843 + ], + "boundingBox": "block" + }, + { + "id": 966, + "name": "oxidized_cut_copper", + "displayName": "Oxidized Cut Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23957, + "minStateId": 23957, + "maxStateId": 23957, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 105 + ], + "boundingBox": "block" + }, + { + "id": 967, + "name": "weathered_cut_copper", + "displayName": "Weathered Cut Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23958, + "minStateId": 23958, + "maxStateId": 23958, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 104 + ], + "boundingBox": "block" + }, + { + "id": 968, + "name": "exposed_cut_copper", + "displayName": "Exposed Cut Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23959, + "minStateId": 23959, + "maxStateId": 23959, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 103 + ], + "boundingBox": "block" + }, + { + "id": 969, + "name": "cut_copper", + "displayName": "Cut Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23960, + "minStateId": 23960, + "maxStateId": 23960, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 102 + ], + "boundingBox": "block" + }, + { + "id": 970, + "name": "oxidized_chiseled_copper", + "displayName": "Oxidized Chiseled Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23961, + "minStateId": 23961, + "maxStateId": 23961, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 101 + ], + "boundingBox": "block" + }, + { + "id": 971, + "name": "weathered_chiseled_copper", + "displayName": "Weathered Chiseled Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23962, + "minStateId": 23962, + "maxStateId": 23962, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 100 + ], + "boundingBox": "block" + }, + { + "id": 972, + "name": "exposed_chiseled_copper", + "displayName": "Exposed Chiseled Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23963, + "minStateId": 23963, + "maxStateId": 23963, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 99 + ], + "boundingBox": "block" + }, + { + "id": 973, + "name": "chiseled_copper", + "displayName": "Chiseled Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23964, + "minStateId": 23964, + "maxStateId": 23964, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 98 + ], + "boundingBox": "block" + }, + { + "id": 974, + "name": "waxed_oxidized_chiseled_copper", + "displayName": "Waxed Oxidized Chiseled Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23965, + "minStateId": 23965, + "maxStateId": 23965, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 121 + ], + "boundingBox": "block" + }, + { + "id": 975, + "name": "waxed_weathered_chiseled_copper", + "displayName": "Waxed Weathered Chiseled Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23966, + "minStateId": 23966, + "maxStateId": 23966, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 120 + ], + "boundingBox": "block" + }, + { + "id": 976, + "name": "waxed_exposed_chiseled_copper", + "displayName": "Waxed Exposed Chiseled Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23967, + "minStateId": 23967, + "maxStateId": 23967, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 119 + ], + "boundingBox": "block" + }, + { + "id": 977, + "name": "waxed_chiseled_copper", + "displayName": "Waxed Chiseled Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 23968, + "minStateId": 23968, + "maxStateId": 23968, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 118 + ], + "boundingBox": "block" + }, + { + "id": 978, + "name": "oxidized_cut_copper_stairs", + "displayName": "Oxidized Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 23980, + "minStateId": 23969, + "maxStateId": 24048, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 109 + ], + "boundingBox": "block" + }, + { + "id": 979, + "name": "weathered_cut_copper_stairs", + "displayName": "Weathered Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24060, + "minStateId": 24049, + "maxStateId": 24128, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 108 + ], + "boundingBox": "block" + }, + { + "id": 980, + "name": "exposed_cut_copper_stairs", + "displayName": "Exposed Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24140, + "minStateId": 24129, + "maxStateId": 24208, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 107 + ], + "boundingBox": "block" + }, + { + "id": 981, + "name": "cut_copper_stairs", + "displayName": "Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24220, + "minStateId": 24209, + "maxStateId": 24288, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 106 + ], + "boundingBox": "block" + }, + { + "id": 982, + "name": "oxidized_cut_copper_slab", + "displayName": "Oxidized Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24292, + "minStateId": 24289, + "maxStateId": 24294, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 113 + ], + "boundingBox": "block" + }, + { + "id": 983, + "name": "weathered_cut_copper_slab", + "displayName": "Weathered Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24298, + "minStateId": 24295, + "maxStateId": 24300, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 112 + ], + "boundingBox": "block" + }, + { + "id": 984, + "name": "exposed_cut_copper_slab", + "displayName": "Exposed Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24304, + "minStateId": 24301, + "maxStateId": 24306, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 111 + ], + "boundingBox": "block" + }, + { + "id": 985, + "name": "cut_copper_slab", + "displayName": "Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24310, + "minStateId": 24307, + "maxStateId": 24312, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 110 + ], + "boundingBox": "block" + }, + { + "id": 986, + "name": "waxed_copper_block", + "displayName": "Waxed Block of Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 24313, + "minStateId": 24313, + "maxStateId": 24313, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 114 + ], + "boundingBox": "block" + }, + { + "id": 987, + "name": "waxed_weathered_copper", + "displayName": "Waxed Weathered Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 24314, + "minStateId": 24314, + "maxStateId": 24314, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 116 + ], + "boundingBox": "block" + }, + { + "id": 988, + "name": "waxed_exposed_copper", + "displayName": "Waxed Exposed Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 24315, + "minStateId": 24315, + "maxStateId": 24315, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 115 + ], + "boundingBox": "block" + }, + { + "id": 989, + "name": "waxed_oxidized_copper", + "displayName": "Waxed Oxidized Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 24316, + "minStateId": 24316, + "maxStateId": 24316, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 117 + ], + "boundingBox": "block" + }, + { + "id": 990, + "name": "waxed_oxidized_cut_copper", + "displayName": "Waxed Oxidized Cut Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 24317, + "minStateId": 24317, + "maxStateId": 24317, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 125 + ], + "boundingBox": "block" + }, + { + "id": 991, + "name": "waxed_weathered_cut_copper", + "displayName": "Waxed Weathered Cut Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 24318, + "minStateId": 24318, + "maxStateId": 24318, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 124 + ], + "boundingBox": "block" + }, + { + "id": 992, + "name": "waxed_exposed_cut_copper", + "displayName": "Waxed Exposed Cut Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 24319, + "minStateId": 24319, + "maxStateId": 24319, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 123 + ], + "boundingBox": "block" + }, + { + "id": 993, + "name": "waxed_cut_copper", + "displayName": "Waxed Cut Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 24320, + "minStateId": 24320, + "maxStateId": 24320, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 122 + ], + "boundingBox": "block" + }, + { + "id": 994, + "name": "waxed_oxidized_cut_copper_stairs", + "displayName": "Waxed Oxidized Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24332, + "minStateId": 24321, + "maxStateId": 24400, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 129 + ], + "boundingBox": "block" + }, + { + "id": 995, + "name": "waxed_weathered_cut_copper_stairs", + "displayName": "Waxed Weathered Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24412, + "minStateId": 24401, + "maxStateId": 24480, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 128 + ], + "boundingBox": "block" + }, + { + "id": 996, + "name": "waxed_exposed_cut_copper_stairs", + "displayName": "Waxed Exposed Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24492, + "minStateId": 24481, + "maxStateId": 24560, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 127 + ], + "boundingBox": "block" + }, + { + "id": 997, + "name": "waxed_cut_copper_stairs", + "displayName": "Waxed Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24572, + "minStateId": 24561, + "maxStateId": 24640, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 126 + ], + "boundingBox": "block" + }, + { + "id": 998, + "name": "waxed_oxidized_cut_copper_slab", + "displayName": "Waxed Oxidized Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24644, + "minStateId": 24641, + "maxStateId": 24646, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 133 + ], + "boundingBox": "block" + }, + { + "id": 999, + "name": "waxed_weathered_cut_copper_slab", + "displayName": "Waxed Weathered Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24650, + "minStateId": 24647, + "maxStateId": 24652, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 132 + ], + "boundingBox": "block" + }, + { + "id": 1000, + "name": "waxed_exposed_cut_copper_slab", + "displayName": "Waxed Exposed Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24656, + "minStateId": 24653, + "maxStateId": 24658, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 131 + ], + "boundingBox": "block" + }, + { + "id": 1001, + "name": "waxed_cut_copper_slab", + "displayName": "Waxed Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24662, + "minStateId": 24659, + "maxStateId": 24664, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 130 + ], + "boundingBox": "block" + }, + { + "id": 1002, + "name": "copper_door", + "displayName": "Copper Door", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24676, + "minStateId": 24665, + "maxStateId": 24728, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 748 + ], + "boundingBox": "block" + }, + { + "id": 1003, + "name": "exposed_copper_door", + "displayName": "Exposed Copper Door", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24740, + "minStateId": 24729, + "maxStateId": 24792, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 749 + ], + "boundingBox": "block" + }, + { + "id": 1004, + "name": "oxidized_copper_door", + "displayName": "Oxidized Copper Door", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24804, + "minStateId": 24793, + "maxStateId": 24856, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 751 + ], + "boundingBox": "block" + }, + { + "id": 1005, + "name": "weathered_copper_door", + "displayName": "Weathered Copper Door", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24868, + "minStateId": 24857, + "maxStateId": 24920, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 750 + ], + "boundingBox": "block" + }, + { + "id": 1006, + "name": "waxed_copper_door", + "displayName": "Waxed Copper Door", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24932, + "minStateId": 24921, + "maxStateId": 24984, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 752 + ], + "boundingBox": "block" + }, + { + "id": 1007, + "name": "waxed_exposed_copper_door", + "displayName": "Waxed Exposed Copper Door", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 24996, + "minStateId": 24985, + "maxStateId": 25048, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 753 + ], + "boundingBox": "block" + }, + { + "id": 1008, + "name": "waxed_oxidized_copper_door", + "displayName": "Waxed Oxidized Copper Door", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25060, + "minStateId": 25049, + "maxStateId": 25112, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 755 + ], + "boundingBox": "block" + }, + { + "id": 1009, + "name": "waxed_weathered_copper_door", + "displayName": "Waxed Weathered Copper Door", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25124, + "minStateId": 25113, + "maxStateId": 25176, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 754 + ], + "boundingBox": "block" + }, + { + "id": 1010, + "name": "copper_trapdoor", + "displayName": "Copper Trapdoor", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25192, + "minStateId": 25177, + "maxStateId": 25240, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 769 + ], + "boundingBox": "block" + }, + { + "id": 1011, + "name": "exposed_copper_trapdoor", + "displayName": "Exposed Copper Trapdoor", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25256, + "minStateId": 25241, + "maxStateId": 25304, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 770 + ], + "boundingBox": "block" + }, + { + "id": 1012, + "name": "oxidized_copper_trapdoor", + "displayName": "Oxidized Copper Trapdoor", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25320, + "minStateId": 25305, + "maxStateId": 25368, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 772 + ], + "boundingBox": "block" + }, + { + "id": 1013, + "name": "weathered_copper_trapdoor", + "displayName": "Weathered Copper Trapdoor", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25384, + "minStateId": 25369, + "maxStateId": 25432, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 771 + ], + "boundingBox": "block" + }, + { + "id": 1014, + "name": "waxed_copper_trapdoor", + "displayName": "Waxed Copper Trapdoor", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25448, + "minStateId": 25433, + "maxStateId": 25496, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 773 + ], + "boundingBox": "block" + }, + { + "id": 1015, + "name": "waxed_exposed_copper_trapdoor", + "displayName": "Waxed Exposed Copper Trapdoor", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25512, + "minStateId": 25497, + "maxStateId": 25560, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 774 + ], + "boundingBox": "block" + }, + { + "id": 1016, + "name": "waxed_oxidized_copper_trapdoor", + "displayName": "Waxed Oxidized Copper Trapdoor", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25576, + "minStateId": 25561, + "maxStateId": 25624, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 776 + ], + "boundingBox": "block" + }, + { + "id": 1017, + "name": "waxed_weathered_copper_trapdoor", + "displayName": "Waxed Weathered Copper Trapdoor", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25640, + "minStateId": 25625, + "maxStateId": 25688, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 775 + ], + "boundingBox": "block" + }, + { + "id": 1018, + "name": "copper_grate", + "displayName": "Copper Grate", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25690, + "minStateId": 25689, + "maxStateId": 25690, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1364 + ], + "boundingBox": "block" + }, + { + "id": 1019, + "name": "exposed_copper_grate", + "displayName": "Exposed Copper Grate", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25692, + "minStateId": 25691, + "maxStateId": 25692, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1365 + ], + "boundingBox": "block" + }, + { + "id": 1020, + "name": "weathered_copper_grate", + "displayName": "Weathered Copper Grate", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25694, + "minStateId": 25693, + "maxStateId": 25694, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1366 + ], + "boundingBox": "block" + }, + { + "id": 1021, + "name": "oxidized_copper_grate", + "displayName": "Oxidized Copper Grate", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25696, + "minStateId": 25695, + "maxStateId": 25696, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1367 + ], + "boundingBox": "block" + }, + { + "id": 1022, + "name": "waxed_copper_grate", + "displayName": "Waxed Copper Grate", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25698, + "minStateId": 25697, + "maxStateId": 25698, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1368 + ], + "boundingBox": "block" + }, + { + "id": 1023, + "name": "waxed_exposed_copper_grate", + "displayName": "Waxed Exposed Copper Grate", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25700, + "minStateId": 25699, + "maxStateId": 25700, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1369 + ], + "boundingBox": "block" + }, + { + "id": 1024, + "name": "waxed_weathered_copper_grate", + "displayName": "Waxed Weathered Copper Grate", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25702, + "minStateId": 25701, + "maxStateId": 25702, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1370 + ], + "boundingBox": "block" + }, + { + "id": 1025, + "name": "waxed_oxidized_copper_grate", + "displayName": "Waxed Oxidized Copper Grate", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25704, + "minStateId": 25703, + "maxStateId": 25704, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1371 + ], + "boundingBox": "block" + }, + { + "id": 1026, + "name": "copper_bulb", + "displayName": "Copper Bulb", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 25708, + "minStateId": 25705, + "maxStateId": 25708, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1372 + ], + "boundingBox": "block" + }, + { + "id": 1027, + "name": "exposed_copper_bulb", + "displayName": "Exposed Copper Bulb", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 25712, + "minStateId": 25709, + "maxStateId": 25712, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1373 + ], + "boundingBox": "block" + }, + { + "id": 1028, + "name": "weathered_copper_bulb", + "displayName": "Weathered Copper Bulb", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 25716, + "minStateId": 25713, + "maxStateId": 25716, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1374 + ], + "boundingBox": "block" + }, + { + "id": 1029, + "name": "oxidized_copper_bulb", + "displayName": "Oxidized Copper Bulb", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 25720, + "minStateId": 25717, + "maxStateId": 25720, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1375 + ], + "boundingBox": "block" + }, + { + "id": 1030, + "name": "waxed_copper_bulb", + "displayName": "Waxed Copper Bulb", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 25724, + "minStateId": 25721, + "maxStateId": 25724, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1376 + ], + "boundingBox": "block" + }, + { + "id": 1031, + "name": "waxed_exposed_copper_bulb", + "displayName": "Waxed Exposed Copper Bulb", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 25728, + "minStateId": 25725, + "maxStateId": 25728, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1377 + ], + "boundingBox": "block" + }, + { + "id": 1032, + "name": "waxed_weathered_copper_bulb", + "displayName": "Waxed Weathered Copper Bulb", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 25732, + "minStateId": 25729, + "maxStateId": 25732, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1378 + ], + "boundingBox": "block" + }, + { + "id": 1033, + "name": "waxed_oxidized_copper_bulb", + "displayName": "Waxed Oxidized Copper Bulb", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 25736, + "minStateId": 25733, + "maxStateId": 25736, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 1379 + ], + "boundingBox": "block" + }, + { + "id": 1034, + "name": "lightning_rod", + "displayName": "Lightning Rod", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25756, + "minStateId": 25737, + "maxStateId": 25760, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 696 + ], + "boundingBox": "block" + }, + { + "id": 1035, + "name": "pointed_dripstone", + "displayName": "Pointed Dripstone", + "hardness": 1.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25766, + "minStateId": 25761, + "maxStateId": 25780, + "states": [ + { + "name": "thickness", + "type": "enum", + "num_values": 5, + "values": [ + "tip_merge", + "tip", + "frustum", + "middle", + "base" + ] + }, + { + "name": "vertical_direction", + "type": "enum", + "num_values": 2, + "values": [ + "up", + "down" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1315 + ], + "boundingBox": "block" + }, + { + "id": 1036, + "name": "dripstone_block", + "displayName": "Dripstone Block", + "hardness": 1.5, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 25781, + "minStateId": 25781, + "maxStateId": 25781, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 26 + ], + "boundingBox": "block" + }, + { + "id": 1037, + "name": "cave_vines", + "displayName": "Cave Vines", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25783, + "minStateId": 25782, + "maxStateId": 25833, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 26, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + }, + { + "name": "berries", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 1038, + "name": "cave_vines_plant", + "displayName": "Cave Vines Plant", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25835, + "minStateId": 25834, + "maxStateId": 25835, + "states": [ + { + "name": "berries", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 1039, + "name": "spore_blossom", + "displayName": "Spore Blossom", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25836, + "minStateId": 25836, + "maxStateId": 25836, + "states": [], + "drops": [ + 242 + ], + "boundingBox": "empty" + }, + { + "id": 1040, + "name": "azalea", + "displayName": "Azalea", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25837, + "minStateId": 25837, + "maxStateId": 25837, + "states": [], + "drops": [ + 204 + ], + "boundingBox": "block" + }, + { + "id": 1041, + "name": "flowering_azalea", + "displayName": "Flowering Azalea", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25838, + "minStateId": 25838, + "maxStateId": 25838, + "states": [], + "drops": [ + 205 + ], + "boundingBox": "block" + }, + { + "id": 1042, + "name": "moss_carpet", + "displayName": "Moss Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25839, + "minStateId": 25839, + "maxStateId": 25839, + "states": [], + "drops": [ + 255 + ], + "boundingBox": "block" + }, + { + "id": 1043, + "name": "pink_petals", + "displayName": "Pink Petals", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25840, + "minStateId": 25840, + "maxStateId": 25855, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "flower_amount", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + } + ], + "drops": [ + 254 + ], + "boundingBox": "empty" + }, + { + "id": 1044, + "name": "moss_block", + "displayName": "Moss Block", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 25856, + "minStateId": 25856, + "maxStateId": 25856, + "states": [], + "drops": [ + 256 + ], + "boundingBox": "block" + }, + { + "id": 1045, + "name": "big_dripleaf", + "displayName": "Big Dripleaf", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25858, + "minStateId": 25857, + "maxStateId": 25888, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "tilt", + "type": "enum", + "num_values": 4, + "values": [ + "none", + "unstable", + "partial", + "full" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 261 + ], + "boundingBox": "block" + }, + { + "id": 1046, + "name": "big_dripleaf_stem", + "displayName": "Big Dripleaf Stem", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25890, + "minStateId": 25889, + "maxStateId": 25896, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 261 + ], + "boundingBox": "empty" + }, + { + "id": 1047, + "name": "small_dripleaf", + "displayName": "Small Dripleaf", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25900, + "minStateId": 25897, + "maxStateId": 25912, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 1048, + "name": "hanging_roots", + "displayName": "Hanging Roots", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25914, + "minStateId": 25913, + "maxStateId": 25914, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 1049, + "name": "rooted_dirt", + "displayName": "Rooted Dirt", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 25915, + "minStateId": 25915, + "maxStateId": 25915, + "states": [], + "drops": [ + 31 + ], + "boundingBox": "block" + }, + { + "id": 1050, + "name": "mud", + "displayName": "Mud", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 25916, + "minStateId": 25916, + "maxStateId": 25916, + "states": [], + "drops": [ + 32 + ], + "boundingBox": "block" + }, + { + "id": 1051, + "name": "deepslate", + "displayName": "Deepslate", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 25918, + "minStateId": 25917, + "maxStateId": 25919, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 9 + ], + "boundingBox": "block" + }, + { + "id": 1052, + "name": "cobbled_deepslate", + "displayName": "Cobbled Deepslate", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 25920, + "minStateId": 25920, + "maxStateId": 25920, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 9 + ], + "boundingBox": "block" + }, + { + "id": 1053, + "name": "cobbled_deepslate_stairs", + "displayName": "Cobbled Deepslate Stairs", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25932, + "minStateId": 25921, + "maxStateId": 26000, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 658 + ], + "boundingBox": "block" + }, + { + "id": 1054, + "name": "cobbled_deepslate_slab", + "displayName": "Cobbled Deepslate Slab", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 26004, + "minStateId": 26001, + "maxStateId": 26006, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 675 + ], + "boundingBox": "block" + }, + { + "id": 1055, + "name": "cobbled_deepslate_wall", + "displayName": "Cobbled Deepslate Wall", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 26010, + "minStateId": 26007, + "maxStateId": 26330, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 438 + ], + "boundingBox": "block" + }, + { + "id": 1056, + "name": "polished_deepslate", + "displayName": "Polished Deepslate", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 26331, + "minStateId": 26331, + "maxStateId": 26331, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 10 + ], + "boundingBox": "block" + }, + { + "id": 1057, + "name": "polished_deepslate_stairs", + "displayName": "Polished Deepslate Stairs", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 26343, + "minStateId": 26332, + "maxStateId": 26411, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 659 + ], + "boundingBox": "block" + }, + { + "id": 1058, + "name": "polished_deepslate_slab", + "displayName": "Polished Deepslate Slab", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 26415, + "minStateId": 26412, + "maxStateId": 26417, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 676 + ], + "boundingBox": "block" + }, + { + "id": 1059, + "name": "polished_deepslate_wall", + "displayName": "Polished Deepslate Wall", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 26421, + "minStateId": 26418, + "maxStateId": 26741, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 439 + ], + "boundingBox": "block" + }, + { + "id": 1060, + "name": "deepslate_tiles", + "displayName": "Deepslate Tiles", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 26742, + "minStateId": 26742, + "maxStateId": 26742, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 363 + ], + "boundingBox": "block" + }, + { + "id": 1061, + "name": "deepslate_tile_stairs", + "displayName": "Deepslate Tile Stairs", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 26754, + "minStateId": 26743, + "maxStateId": 26822, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 661 + ], + "boundingBox": "block" + }, + { + "id": 1062, + "name": "deepslate_tile_slab", + "displayName": "Deepslate Tile Slab", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 26826, + "minStateId": 26823, + "maxStateId": 26828, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 678 + ], + "boundingBox": "block" + }, + { + "id": 1063, + "name": "deepslate_tile_wall", + "displayName": "Deepslate Tile Wall", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 26832, + "minStateId": 26829, + "maxStateId": 27152, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 441 + ], + "boundingBox": "block" + }, + { + "id": 1064, + "name": "deepslate_bricks", + "displayName": "Deepslate Bricks", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 27153, + "minStateId": 27153, + "maxStateId": 27153, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 361 + ], + "boundingBox": "block" + }, + { + "id": 1065, + "name": "deepslate_brick_stairs", + "displayName": "Deepslate Brick Stairs", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 27165, + "minStateId": 27154, + "maxStateId": 27233, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 660 + ], + "boundingBox": "block" + }, + { + "id": 1066, + "name": "deepslate_brick_slab", + "displayName": "Deepslate Brick Slab", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 27237, + "minStateId": 27234, + "maxStateId": 27239, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 677 + ], + "boundingBox": "block" + }, + { + "id": 1067, + "name": "deepslate_brick_wall", + "displayName": "Deepslate Brick Wall", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 27243, + "minStateId": 27240, + "maxStateId": 27563, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 440 + ], + "boundingBox": "block" + }, + { + "id": 1068, + "name": "chiseled_deepslate", + "displayName": "Chiseled Deepslate", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 27564, + "minStateId": 27564, + "maxStateId": 27564, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 365 + ], + "boundingBox": "block" + }, + { + "id": 1069, + "name": "cracked_deepslate_bricks", + "displayName": "Cracked Deepslate Bricks", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 27565, + "minStateId": 27565, + "maxStateId": 27565, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 362 + ], + "boundingBox": "block" + }, + { + "id": 1070, + "name": "cracked_deepslate_tiles", + "displayName": "Cracked Deepslate Tiles", + "hardness": 3.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 27566, + "minStateId": 27566, + "maxStateId": 27566, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 364 + ], + "boundingBox": "block" + }, + { + "id": 1071, + "name": "infested_deepslate", + "displayName": "Infested Deepslate", + "hardness": 1.5, + "resistance": 0.75, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 27568, + "minStateId": 27567, + "maxStateId": 27569, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 1072, + "name": "smooth_basalt", + "displayName": "Smooth Basalt", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 27570, + "minStateId": 27570, + "maxStateId": 27570, + "states": [], + "harvestTools": { + "851": true, + "856": true, + "861": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 345 + ], + "boundingBox": "block" + }, + { + "id": 1073, + "name": "raw_iron_block", + "displayName": "Block of Raw Iron", + "hardness": 5.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 27571, + "minStateId": 27571, + "maxStateId": 27571, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 84 + ], + "boundingBox": "block" + }, + { + "id": 1074, + "name": "raw_copper_block", + "displayName": "Block of Raw Copper", + "hardness": 5.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 27572, + "minStateId": 27572, + "maxStateId": 27572, + "states": [], + "harvestTools": { + "856": true, + "866": true, + "871": true, + "876": true + }, + "drops": [ + 85 + ], + "boundingBox": "block" + }, + { + "id": 1075, + "name": "raw_gold_block", + "displayName": "Block of Raw Gold", + "hardness": 5.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 27573, + "minStateId": 27573, + "maxStateId": 27573, + "states": [], + "harvestTools": { + "866": true, + "871": true, + "876": true + }, + "drops": [ + 86 + ], + "boundingBox": "block" + }, + { + "id": 1076, + "name": "potted_azalea_bush", + "displayName": "Potted Azalea", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 27574, + "minStateId": 27574, + "maxStateId": 27574, + "states": [], + "drops": [ + 1147, + 204 + ], + "boundingBox": "block" + }, + { + "id": 1077, + "name": "potted_flowering_azalea_bush", + "displayName": "Potted Flowering Azalea", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 27575, + "minStateId": 27575, + "maxStateId": 27575, + "states": [], + "drops": [ + 1147, + 205 + ], + "boundingBox": "block" + }, + { + "id": 1078, + "name": "ochre_froglight", + "displayName": "Ochre Froglight", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 27577, + "minStateId": 27576, + "maxStateId": 27578, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 1316 + ], + "boundingBox": "block" + }, + { + "id": 1079, + "name": "verdant_froglight", + "displayName": "Verdant Froglight", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 27580, + "minStateId": 27579, + "maxStateId": 27581, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 1317 + ], + "boundingBox": "block" + }, + { + "id": 1080, + "name": "pearlescent_froglight", + "displayName": "Pearlescent Froglight", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 27583, + "minStateId": 27582, + "maxStateId": 27584, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 1318 + ], + "boundingBox": "block" + }, + { + "id": 1081, + "name": "frogspawn", + "displayName": "Frogspawn", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 27585, + "minStateId": 27585, + "maxStateId": 27585, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 1082, + "name": "reinforced_deepslate", + "displayName": "Reinforced Deepslate", + "hardness": 55.0, + "resistance": 1200.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 27586, + "minStateId": 27586, + "maxStateId": 27586, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 1083, + "name": "decorated_pot", + "displayName": "Decorated Pot", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 27596, + "minStateId": 27587, + "maxStateId": 27602, + "states": [ + { + "name": "cracked", + "type": "bool", + "num_values": 2 + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 301 + ], + "boundingBox": "block" + }, + { + "id": 1084, + "name": "crafter", + "displayName": "Crafter", + "hardness": 1.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "incorrect_for_wooden_tool", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 27648, + "minStateId": 27603, + "maxStateId": 27650, + "states": [ + { + "name": "crafting", + "type": "bool", + "num_values": 2 + }, + { + "name": "orientation", + "type": "enum", + "num_values": 12, + "values": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" + ] + }, + { + "name": "triggered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1030 + ], + "boundingBox": "block" + }, + { + "id": 1085, + "name": "trial_spawner", + "displayName": "Trial Spawner", + "hardness": 50.0, + "resistance": 50.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 27657, + "minStateId": 27651, + "maxStateId": 27662, + "states": [ + { + "name": "ominous", + "type": "bool", + "num_values": 2 + }, + { + "name": "trial_spawner_state", + "type": "enum", + "num_values": 6, + "values": [ + "inactive", + "waiting_for_players", + "active", + "waiting_for_reward_ejection", + "ejecting_reward", + "cooldown" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 1086, + "name": "vault", + "displayName": "Vault", + "hardness": 50.0, + "resistance": 50.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 6, + "filterLight": 1, + "defaultState": 27667, + "minStateId": 27663, + "maxStateId": 27694, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "ominous", + "type": "bool", + "num_values": 2 + }, + { + "name": "vault_state", + "type": "enum", + "num_values": 4, + "values": [ + "inactive", + "active", + "unlocking", + "ejecting" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 1087, + "name": "heavy_core", + "displayName": "Heavy Core", + "hardness": 10.0, + "resistance": 1200.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 27696, + "minStateId": 27695, + "maxStateId": 27696, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 87 + ], + "boundingBox": "block" + }, + { + "id": 1088, + "name": "pale_moss_block", + "displayName": "Pale Moss Block", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 27697, + "minStateId": 27697, + "maxStateId": 27697, + "states": [], + "drops": [ + 259 + ], + "boundingBox": "block" + }, + { + "id": 1089, + "name": "pale_moss_carpet", + "displayName": "Pale Moss Carpet", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 27698, + "minStateId": 27698, + "maxStateId": 27859, + "states": [ + { + "name": "bottom", + "type": "bool", + "num_values": 2 + }, + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "drops": [ + 257 + ], + "boundingBox": "block" + }, + { + "id": 1090, + "name": "pale_hanging_moss", + "displayName": "Pale Hanging Moss", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 27860, + "minStateId": 27860, + "maxStateId": 27861, + "states": [ + { + "name": "tip", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 1091, + "name": "open_eyeblossom", + "displayName": "Open Eyeblossom", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 27862, + "minStateId": 27862, + "maxStateId": 27862, + "states": [], + "drops": [ + 226 + ], + "boundingBox": "empty" + }, + { + "id": 1092, + "name": "closed_eyeblossom", + "displayName": "Closed Eyeblossom", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 27863, + "minStateId": 27863, + "maxStateId": 27863, + "states": [], + "drops": [ + 227 + ], + "boundingBox": "empty" + }, + { + "id": 1093, + "name": "potted_open_eyeblossom", + "displayName": "Potted Open Eyeblossom", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 27864, + "minStateId": 27864, + "maxStateId": 27864, + "states": [], + "drops": [ + 1147, + 226 + ], + "boundingBox": "block" + }, + { + "id": 1094, + "name": "potted_closed_eyeblossom", + "displayName": "Potted Closed Eyeblossom", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 27865, + "minStateId": 27865, + "maxStateId": 27865, + "states": [], + "drops": [ + 1147, + 227 + ], + "boundingBox": "block" + } +] \ No newline at end of file diff --git a/data/pc/1.21.4/effects.json b/data/pc/1.21.4/effects.json new file mode 100644 index 000000000..28d70e827 --- /dev/null +++ b/data/pc/1.21.4/effects.json @@ -0,0 +1,236 @@ +[ + { + "id": 0, + "name": "Speed", + "displayName": "Speed", + "type": "good" + }, + { + "id": 1, + "name": "Slowness", + "displayName": "Slowness", + "type": "bad" + }, + { + "id": 2, + "name": "Haste", + "displayName": "Haste", + "type": "good" + }, + { + "id": 3, + "name": "MiningFatigue", + "displayName": "Mining Fatigue", + "type": "bad" + }, + { + "id": 4, + "name": "Strength", + "displayName": "Strength", + "type": "good" + }, + { + "id": 5, + "name": "InstantHealth", + "displayName": "Instant Health", + "type": "good" + }, + { + "id": 6, + "name": "InstantDamage", + "displayName": "Instant Damage", + "type": "bad" + }, + { + "id": 7, + "name": "JumpBoost", + "displayName": "Jump Boost", + "type": "good" + }, + { + "id": 8, + "name": "Nausea", + "displayName": "Nausea", + "type": "bad" + }, + { + "id": 9, + "name": "Regeneration", + "displayName": "Regeneration", + "type": "good" + }, + { + "id": 10, + "name": "Resistance", + "displayName": "Resistance", + "type": "good" + }, + { + "id": 11, + "name": "FireResistance", + "displayName": "Fire Resistance", + "type": "good" + }, + { + "id": 12, + "name": "WaterBreathing", + "displayName": "Water Breathing", + "type": "good" + }, + { + "id": 13, + "name": "Invisibility", + "displayName": "Invisibility", + "type": "good" + }, + { + "id": 14, + "name": "Blindness", + "displayName": "Blindness", + "type": "bad" + }, + { + "id": 15, + "name": "NightVision", + "displayName": "Night Vision", + "type": "good" + }, + { + "id": 16, + "name": "Hunger", + "displayName": "Hunger", + "type": "bad" + }, + { + "id": 17, + "name": "Weakness", + "displayName": "Weakness", + "type": "bad" + }, + { + "id": 18, + "name": "Poison", + "displayName": "Poison", + "type": "bad" + }, + { + "id": 19, + "name": "Wither", + "displayName": "Wither", + "type": "bad" + }, + { + "id": 20, + "name": "HealthBoost", + "displayName": "Health Boost", + "type": "good" + }, + { + "id": 21, + "name": "Absorption", + "displayName": "Absorption", + "type": "good" + }, + { + "id": 22, + "name": "Saturation", + "displayName": "Saturation", + "type": "good" + }, + { + "id": 23, + "name": "Glowing", + "displayName": "Glowing", + "type": "bad" + }, + { + "id": 24, + "name": "Levitation", + "displayName": "Levitation", + "type": "bad" + }, + { + "id": 25, + "name": "Luck", + "displayName": "Luck", + "type": "good" + }, + { + "id": 26, + "name": "Unluck", + "displayName": "Bad Luck", + "type": "bad" + }, + { + "id": 27, + "name": "SlowFalling", + "displayName": "Slow Falling", + "type": "good" + }, + { + "id": 28, + "name": "ConduitPower", + "displayName": "Conduit Power", + "type": "good" + }, + { + "id": 29, + "name": "DolphinsGrace", + "displayName": "Dolphin's Grace", + "type": "good" + }, + { + "id": 30, + "name": "BadOmen", + "displayName": "Bad Omen", + "type": "bad" + }, + { + "id": 31, + "name": "HeroOfTheVillage", + "displayName": "Hero of the Village", + "type": "good" + }, + { + "id": 32, + "name": "Darkness", + "displayName": "Darkness", + "type": "bad" + }, + { + "id": 33, + "name": "TrialOmen", + "displayName": "Trial Omen", + "type": "bad" + }, + { + "id": 34, + "name": "RaidOmen", + "displayName": "Raid Omen", + "type": "bad" + }, + { + "id": 35, + "name": "WindCharged", + "displayName": "Wind Charged", + "type": "bad" + }, + { + "id": 36, + "name": "Weaving", + "displayName": "Weaving", + "type": "bad" + }, + { + "id": 37, + "name": "Oozing", + "displayName": "Oozing", + "type": "bad" + }, + { + "id": 38, + "name": "Infested", + "displayName": "Infested", + "type": "bad" + } +] \ No newline at end of file diff --git a/data/pc/1.21.4/enchantments.json b/data/pc/1.21.4/enchantments.json new file mode 100644 index 000000000..8cc576ebc --- /dev/null +++ b/data/pc/1.21.4/enchantments.json @@ -0,0 +1,959 @@ +[ + { + "id": 0, + "name": "aqua_affinity", + "displayName": "Aqua Affinity", + "maxLevel": 1, + "minCost": { + "a": 0, + "b": 1 + }, + "maxCost": { + "a": 0, + "b": 41 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "head_armor", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 1, + "name": "bane_of_arthropods", + "displayName": "Bane of Arthropods", + "maxLevel": 5, + "minCost": { + "a": 8, + "b": -3 + }, + "maxCost": { + "a": 8, + "b": 17 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "breach", + "density", + "impaling", + "sharpness", + "smite" + ], + "category": "weapon", + "weight": 5, + "tradeable": true, + "discoverable": true + }, + { + "id": 2, + "name": "binding_curse", + "displayName": "Curse of Binding", + "maxLevel": 1, + "minCost": { + "a": 0, + "b": 25 + }, + "maxCost": { + "a": 0, + "b": 50 + }, + "treasureOnly": true, + "curse": true, + "exclude": [], + "category": "equippable", + "weight": 1, + "tradeable": true, + "discoverable": true + }, + { + "id": 3, + "name": "blast_protection", + "displayName": "Blast Protection", + "maxLevel": 4, + "minCost": { + "a": 8, + "b": -3 + }, + "maxCost": { + "a": 8, + "b": 5 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "fire_protection", + "projectile_protection", + "protection" + ], + "category": "armor", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 4, + "name": "breach", + "displayName": "Breach", + "maxLevel": 4, + "minCost": { + "a": 9, + "b": 6 + }, + "maxCost": { + "a": 9, + "b": 56 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "bane_of_arthropods", + "density", + "impaling", + "sharpness", + "smite" + ], + "category": "mace", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 5, + "name": "channeling", + "displayName": "Channeling", + "maxLevel": 1, + "minCost": { + "a": 0, + "b": 25 + }, + "maxCost": { + "a": 0, + "b": 50 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "riptide" + ], + "category": "trident", + "weight": 1, + "tradeable": true, + "discoverable": true + }, + { + "id": 6, + "name": "density", + "displayName": "Density", + "maxLevel": 5, + "minCost": { + "a": 8, + "b": -3 + }, + "maxCost": { + "a": 8, + "b": 17 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "bane_of_arthropods", + "breach", + "impaling", + "sharpness", + "smite" + ], + "category": "mace", + "weight": 5, + "tradeable": true, + "discoverable": true + }, + { + "id": 7, + "name": "depth_strider", + "displayName": "Depth Strider", + "maxLevel": 3, + "minCost": { + "a": 10, + "b": 0 + }, + "maxCost": { + "a": 10, + "b": 15 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "frost_walker" + ], + "category": "foot_armor", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 8, + "name": "efficiency", + "displayName": "Efficiency", + "maxLevel": 5, + "minCost": { + "a": 10, + "b": -9 + }, + "maxCost": { + "a": 10, + "b": 41 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "mining", + "weight": 10, + "tradeable": true, + "discoverable": true + }, + { + "id": 9, + "name": "feather_falling", + "displayName": "Feather Falling", + "maxLevel": 4, + "minCost": { + "a": 6, + "b": -1 + }, + "maxCost": { + "a": 6, + "b": 5 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "foot_armor", + "weight": 5, + "tradeable": true, + "discoverable": true + }, + { + "id": 10, + "name": "fire_aspect", + "displayName": "Fire Aspect", + "maxLevel": 2, + "minCost": { + "a": 20, + "b": -10 + }, + "maxCost": { + "a": 20, + "b": 40 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "fire_aspect", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 11, + "name": "fire_protection", + "displayName": "Fire Protection", + "maxLevel": 4, + "minCost": { + "a": 8, + "b": 2 + }, + "maxCost": { + "a": 8, + "b": 10 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "blast_protection", + "projectile_protection", + "protection" + ], + "category": "armor", + "weight": 5, + "tradeable": true, + "discoverable": true + }, + { + "id": 12, + "name": "flame", + "displayName": "Flame", + "maxLevel": 1, + "minCost": { + "a": 0, + "b": 20 + }, + "maxCost": { + "a": 0, + "b": 50 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "bow", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 13, + "name": "fortune", + "displayName": "Fortune", + "maxLevel": 3, + "minCost": { + "a": 9, + "b": 6 + }, + "maxCost": { + "a": 9, + "b": 56 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "silk_touch" + ], + "category": "mining_loot", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 14, + "name": "frost_walker", + "displayName": "Frost Walker", + "maxLevel": 2, + "minCost": { + "a": 10, + "b": 0 + }, + "maxCost": { + "a": 10, + "b": 15 + }, + "treasureOnly": true, + "curse": false, + "exclude": [ + "depth_strider" + ], + "category": "foot_armor", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 15, + "name": "impaling", + "displayName": "Impaling", + "maxLevel": 5, + "minCost": { + "a": 8, + "b": -7 + }, + "maxCost": { + "a": 8, + "b": 13 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "bane_of_arthropods", + "breach", + "density", + "sharpness", + "smite" + ], + "category": "trident", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 16, + "name": "infinity", + "displayName": "Infinity", + "maxLevel": 1, + "minCost": { + "a": 0, + "b": 20 + }, + "maxCost": { + "a": 0, + "b": 50 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "mending" + ], + "category": "bow", + "weight": 1, + "tradeable": true, + "discoverable": true + }, + { + "id": 17, + "name": "knockback", + "displayName": "Knockback", + "maxLevel": 2, + "minCost": { + "a": 20, + "b": -15 + }, + "maxCost": { + "a": 20, + "b": 35 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "sword", + "weight": 5, + "tradeable": true, + "discoverable": true + }, + { + "id": 18, + "name": "looting", + "displayName": "Looting", + "maxLevel": 3, + "minCost": { + "a": 9, + "b": 6 + }, + "maxCost": { + "a": 9, + "b": 56 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "sword", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 19, + "name": "loyalty", + "displayName": "Loyalty", + "maxLevel": 3, + "minCost": { + "a": 7, + "b": 5 + }, + "maxCost": { + "a": 0, + "b": 50 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "riptide" + ], + "category": "trident", + "weight": 5, + "tradeable": true, + "discoverable": true + }, + { + "id": 20, + "name": "luck_of_the_sea", + "displayName": "Luck of the Sea", + "maxLevel": 3, + "minCost": { + "a": 9, + "b": 6 + }, + "maxCost": { + "a": 9, + "b": 56 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "fishing", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 21, + "name": "lure", + "displayName": "Lure", + "maxLevel": 3, + "minCost": { + "a": 9, + "b": 6 + }, + "maxCost": { + "a": 9, + "b": 56 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "fishing", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 22, + "name": "mending", + "displayName": "Mending", + "maxLevel": 1, + "minCost": { + "a": 25, + "b": 0 + }, + "maxCost": { + "a": 25, + "b": 50 + }, + "treasureOnly": true, + "curse": false, + "exclude": [ + "infinity" + ], + "category": "durability", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 23, + "name": "multishot", + "displayName": "Multishot", + "maxLevel": 1, + "minCost": { + "a": 0, + "b": 20 + }, + "maxCost": { + "a": 0, + "b": 50 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "piercing" + ], + "category": "crossbow", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 24, + "name": "piercing", + "displayName": "Piercing", + "maxLevel": 4, + "minCost": { + "a": 10, + "b": -9 + }, + "maxCost": { + "a": 0, + "b": 50 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "multishot" + ], + "category": "crossbow", + "weight": 10, + "tradeable": true, + "discoverable": true + }, + { + "id": 25, + "name": "power", + "displayName": "Power", + "maxLevel": 5, + "minCost": { + "a": 10, + "b": -9 + }, + "maxCost": { + "a": 10, + "b": 6 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "bow", + "weight": 10, + "tradeable": true, + "discoverable": true + }, + { + "id": 26, + "name": "projectile_protection", + "displayName": "Projectile Protection", + "maxLevel": 4, + "minCost": { + "a": 6, + "b": -3 + }, + "maxCost": { + "a": 6, + "b": 3 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "blast_protection", + "fire_protection", + "protection" + ], + "category": "armor", + "weight": 5, + "tradeable": true, + "discoverable": true + }, + { + "id": 27, + "name": "protection", + "displayName": "Protection", + "maxLevel": 4, + "minCost": { + "a": 11, + "b": -10 + }, + "maxCost": { + "a": 11, + "b": 1 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "blast_protection", + "fire_protection", + "projectile_protection" + ], + "category": "armor", + "weight": 10, + "tradeable": true, + "discoverable": true + }, + { + "id": 28, + "name": "punch", + "displayName": "Punch", + "maxLevel": 2, + "minCost": { + "a": 20, + "b": -8 + }, + "maxCost": { + "a": 20, + "b": 17 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "bow", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 29, + "name": "quick_charge", + "displayName": "Quick Charge", + "maxLevel": 3, + "minCost": { + "a": 20, + "b": -8 + }, + "maxCost": { + "a": 0, + "b": 50 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "crossbow", + "weight": 5, + "tradeable": true, + "discoverable": true + }, + { + "id": 30, + "name": "respiration", + "displayName": "Respiration", + "maxLevel": 3, + "minCost": { + "a": 10, + "b": 0 + }, + "maxCost": { + "a": 10, + "b": 30 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "head_armor", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 31, + "name": "riptide", + "displayName": "Riptide", + "maxLevel": 3, + "minCost": { + "a": 7, + "b": 10 + }, + "maxCost": { + "a": 0, + "b": 50 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "channeling", + "loyalty" + ], + "category": "trident", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 32, + "name": "sharpness", + "displayName": "Sharpness", + "maxLevel": 5, + "minCost": { + "a": 11, + "b": -10 + }, + "maxCost": { + "a": 11, + "b": 10 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "bane_of_arthropods", + "breach", + "density", + "impaling", + "smite" + ], + "category": "sharp_weapon", + "weight": 10, + "tradeable": true, + "discoverable": true + }, + { + "id": 33, + "name": "silk_touch", + "displayName": "Silk Touch", + "maxLevel": 1, + "minCost": { + "a": 0, + "b": 15 + }, + "maxCost": { + "a": 0, + "b": 65 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "fortune" + ], + "category": "mining_loot", + "weight": 1, + "tradeable": true, + "discoverable": true + }, + { + "id": 34, + "name": "smite", + "displayName": "Smite", + "maxLevel": 5, + "minCost": { + "a": 8, + "b": -3 + }, + "maxCost": { + "a": 8, + "b": 17 + }, + "treasureOnly": false, + "curse": false, + "exclude": [ + "bane_of_arthropods", + "breach", + "density", + "impaling", + "sharpness" + ], + "category": "weapon", + "weight": 5, + "tradeable": true, + "discoverable": true + }, + { + "id": 35, + "name": "soul_speed", + "displayName": "Soul Speed", + "maxLevel": 3, + "minCost": { + "a": 10, + "b": 0 + }, + "maxCost": { + "a": 10, + "b": 15 + }, + "treasureOnly": true, + "curse": false, + "exclude": [], + "category": "foot_armor", + "weight": 1, + "tradeable": false, + "discoverable": false + }, + { + "id": 36, + "name": "sweeping_edge", + "displayName": "Sweeping Edge", + "maxLevel": 3, + "minCost": { + "a": 9, + "b": -4 + }, + "maxCost": { + "a": 9, + "b": 11 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "sword", + "weight": 2, + "tradeable": true, + "discoverable": true + }, + { + "id": 37, + "name": "swift_sneak", + "displayName": "Swift Sneak", + "maxLevel": 3, + "minCost": { + "a": 25, + "b": 0 + }, + "maxCost": { + "a": 25, + "b": 50 + }, + "treasureOnly": true, + "curse": false, + "exclude": [], + "category": "leg_armor", + "weight": 1, + "tradeable": false, + "discoverable": false + }, + { + "id": 38, + "name": "thorns", + "displayName": "Thorns", + "maxLevel": 3, + "minCost": { + "a": 20, + "b": -10 + }, + "maxCost": { + "a": 20, + "b": 40 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "armor", + "weight": 1, + "tradeable": true, + "discoverable": true + }, + { + "id": 39, + "name": "unbreaking", + "displayName": "Unbreaking", + "maxLevel": 3, + "minCost": { + "a": 8, + "b": -3 + }, + "maxCost": { + "a": 8, + "b": 47 + }, + "treasureOnly": false, + "curse": false, + "exclude": [], + "category": "durability", + "weight": 5, + "tradeable": true, + "discoverable": true + }, + { + "id": 40, + "name": "vanishing_curse", + "displayName": "Curse of Vanishing", + "maxLevel": 1, + "minCost": { + "a": 0, + "b": 25 + }, + "maxCost": { + "a": 0, + "b": 50 + }, + "treasureOnly": true, + "curse": true, + "exclude": [], + "category": "vanishing", + "weight": 1, + "tradeable": true, + "discoverable": true + }, + { + "id": 41, + "name": "wind_burst", + "displayName": "Wind Burst", + "maxLevel": 3, + "minCost": { + "a": 9, + "b": 6 + }, + "maxCost": { + "a": 9, + "b": 56 + }, + "treasureOnly": true, + "curse": false, + "exclude": [], + "category": "mace", + "weight": 2, + "tradeable": false, + "discoverable": false + } +] \ No newline at end of file diff --git a/data/pc/1.21.4/entities.json b/data/pc/1.21.4/entities.json new file mode 100644 index 000000000..5eb6f1649 --- /dev/null +++ b/data/pc/1.21.4/entities.json @@ -0,0 +1,1492 @@ +[ + { + "id": 0, + "internalId": 0, + "name": "acacia_boat", + "displayName": "Acacia Boat", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 1, + "internalId": 1, + "name": "acacia_chest_boat", + "displayName": "Acacia Boat with Chest", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 2, + "internalId": 2, + "name": "allay", + "displayName": "Allay", + "width": 0.35, + "height": 0.6, + "type": "mob", + "category": "Passive mobs" + }, + { + "id": 3, + "internalId": 3, + "name": "area_effect_cloud", + "displayName": "Area Effect Cloud", + "width": 6.0, + "height": 0.5, + "type": "other", + "category": "UNKNOWN" + }, + { + "id": 4, + "internalId": 4, + "name": "armadillo", + "displayName": "Armadillo", + "width": 0.7, + "height": 0.65, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 5, + "internalId": 5, + "name": "armor_stand", + "displayName": "Armor Stand", + "width": 0.5, + "height": 1.975, + "type": "living", + "category": "Immobile" + }, + { + "id": 6, + "internalId": 6, + "name": "arrow", + "displayName": "Arrow", + "width": 0.5, + "height": 0.5, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 7, + "internalId": 7, + "name": "axolotl", + "displayName": "Axolotl", + "width": 0.75, + "height": 0.42, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 8, + "internalId": 8, + "name": "bamboo_chest_raft", + "displayName": "Bamboo Raft with Chest", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 9, + "internalId": 9, + "name": "bamboo_raft", + "displayName": "Bamboo Raft", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 10, + "internalId": 10, + "name": "bat", + "displayName": "Bat", + "width": 0.5, + "height": 0.9, + "type": "ambient", + "category": "Passive mobs" + }, + { + "id": 11, + "internalId": 11, + "name": "bee", + "displayName": "Bee", + "width": 0.7, + "height": 0.6, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 12, + "internalId": 12, + "name": "birch_boat", + "displayName": "Birch Boat", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 13, + "internalId": 13, + "name": "birch_chest_boat", + "displayName": "Birch Boat with Chest", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 14, + "internalId": 14, + "name": "blaze", + "displayName": "Blaze", + "width": 0.6, + "height": 1.8, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 15, + "internalId": 15, + "name": "block_display", + "displayName": "Block Display", + "width": 0.0, + "height": 0.0, + "type": "other", + "category": "Immobile" + }, + { + "id": 16, + "internalId": 16, + "name": "bogged", + "displayName": "Bogged", + "width": 0.6, + "height": 1.99, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 17, + "internalId": 17, + "name": "breeze", + "displayName": "Breeze", + "width": 0.6, + "height": 1.77, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 18, + "internalId": 18, + "name": "breeze_wind_charge", + "displayName": "Wind Charge", + "width": 0.3125, + "height": 0.3125, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 19, + "internalId": 19, + "name": "camel", + "displayName": "Camel", + "width": 1.7, + "height": 2.375, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 20, + "internalId": 20, + "name": "cat", + "displayName": "Cat", + "width": 0.6, + "height": 0.7, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 21, + "internalId": 21, + "name": "cave_spider", + "displayName": "Cave Spider", + "width": 0.7, + "height": 0.5, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 22, + "internalId": 22, + "name": "cherry_boat", + "displayName": "Cherry Boat", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 23, + "internalId": 23, + "name": "cherry_chest_boat", + "displayName": "Cherry Boat with Chest", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 24, + "internalId": 24, + "name": "chest_minecart", + "displayName": "Minecart with Chest", + "width": 0.98, + "height": 0.7, + "type": "other", + "category": "Vehicles" + }, + { + "id": 25, + "internalId": 25, + "name": "chicken", + "displayName": "Chicken", + "width": 0.4, + "height": 0.7, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 26, + "internalId": 26, + "name": "cod", + "displayName": "Cod", + "width": 0.5, + "height": 0.3, + "type": "water_creature", + "category": "Passive mobs" + }, + { + "id": 27, + "internalId": 27, + "name": "command_block_minecart", + "displayName": "Minecart with Command Block", + "width": 0.98, + "height": 0.7, + "type": "other", + "category": "Vehicles" + }, + { + "id": 28, + "internalId": 28, + "name": "cow", + "displayName": "Cow", + "width": 0.9, + "height": 1.4, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 29, + "internalId": 29, + "name": "creaking", + "displayName": "Creaking", + "width": 0.9, + "height": 2.7, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 30, + "internalId": 30, + "name": "creeper", + "displayName": "Creeper", + "width": 0.6, + "height": 1.7, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 31, + "internalId": 31, + "name": "dark_oak_boat", + "displayName": "Dark Oak Boat", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 32, + "internalId": 32, + "name": "dark_oak_chest_boat", + "displayName": "Dark Oak Boat with Chest", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 33, + "internalId": 33, + "name": "dolphin", + "displayName": "Dolphin", + "width": 0.9, + "height": 0.6, + "type": "passive", + "category": "Passive mobs" + }, + { + "id": 34, + "internalId": 34, + "name": "donkey", + "displayName": "Donkey", + "width": 1.3964844, + "height": 1.5, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 35, + "internalId": 35, + "name": "dragon_fireball", + "displayName": "Dragon Fireball", + "width": 1.0, + "height": 1.0, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 36, + "internalId": 36, + "name": "drowned", + "displayName": "Drowned", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 37, + "internalId": 37, + "name": "egg", + "displayName": "Thrown Egg", + "width": 0.25, + "height": 0.25, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 38, + "internalId": 38, + "name": "elder_guardian", + "displayName": "Elder Guardian", + "width": 1.9975, + "height": 1.9975, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 39, + "internalId": 39, + "name": "enderman", + "displayName": "Enderman", + "width": 0.6, + "height": 2.9, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 40, + "internalId": 40, + "name": "endermite", + "displayName": "Endermite", + "width": 0.4, + "height": 0.3, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 41, + "internalId": 41, + "name": "ender_dragon", + "displayName": "Ender Dragon", + "width": 16.0, + "height": 8.0, + "type": "mob", + "category": "Hostile mobs" + }, + { + "id": 42, + "internalId": 42, + "name": "ender_pearl", + "displayName": "Thrown Ender Pearl", + "width": 0.25, + "height": 0.25, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 43, + "internalId": 43, + "name": "end_crystal", + "displayName": "End Crystal", + "width": 2.0, + "height": 2.0, + "type": "other", + "category": "Immobile" + }, + { + "id": 44, + "internalId": 44, + "name": "evoker", + "displayName": "Evoker", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 45, + "internalId": 45, + "name": "evoker_fangs", + "displayName": "Evoker Fangs", + "width": 0.5, + "height": 0.8, + "type": "other", + "category": "Hostile mobs" + }, + { + "id": 46, + "internalId": 46, + "name": "experience_bottle", + "displayName": "Thrown Bottle o' Enchanting", + "width": 0.25, + "height": 0.25, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 47, + "internalId": 47, + "name": "experience_orb", + "displayName": "Experience Orb", + "width": 0.5, + "height": 0.5, + "type": "other", + "category": "UNKNOWN" + }, + { + "id": 48, + "internalId": 48, + "name": "eye_of_ender", + "displayName": "Eye of Ender", + "width": 0.25, + "height": 0.25, + "type": "other", + "category": "UNKNOWN" + }, + { + "id": 49, + "internalId": 49, + "name": "falling_block", + "displayName": "Falling Block", + "width": 0.98, + "height": 0.98, + "type": "other", + "category": "UNKNOWN" + }, + { + "id": 50, + "internalId": 50, + "name": "fireball", + "displayName": "Fireball", + "width": 1.0, + "height": 1.0, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 51, + "internalId": 51, + "name": "firework_rocket", + "displayName": "Firework Rocket", + "width": 0.25, + "height": 0.25, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 52, + "internalId": 52, + "name": "fox", + "displayName": "Fox", + "width": 0.6, + "height": 0.7, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 53, + "internalId": 53, + "name": "frog", + "displayName": "Frog", + "width": 0.5, + "height": 0.5, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 54, + "internalId": 54, + "name": "furnace_minecart", + "displayName": "Minecart with Furnace", + "width": 0.98, + "height": 0.7, + "type": "other", + "category": "Vehicles" + }, + { + "id": 55, + "internalId": 55, + "name": "ghast", + "displayName": "Ghast", + "width": 4.0, + "height": 4.0, + "type": "mob", + "category": "Hostile mobs" + }, + { + "id": 56, + "internalId": 56, + "name": "giant", + "displayName": "Giant", + "width": 3.6, + "height": 12.0, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 57, + "internalId": 57, + "name": "glow_item_frame", + "displayName": "Glow Item Frame", + "width": 0.5, + "height": 0.5, + "type": "other", + "category": "Immobile" + }, + { + "id": 58, + "internalId": 58, + "name": "glow_squid", + "displayName": "Glow Squid", + "width": 0.8, + "height": 0.8, + "type": "passive", + "category": "Passive mobs" + }, + { + "id": 59, + "internalId": 59, + "name": "goat", + "displayName": "Goat", + "width": 0.9, + "height": 1.3, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 60, + "internalId": 60, + "name": "guardian", + "displayName": "Guardian", + "width": 0.85, + "height": 0.85, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 61, + "internalId": 61, + "name": "hoglin", + "displayName": "Hoglin", + "width": 1.3964844, + "height": 1.4, + "type": "animal", + "category": "Hostile mobs" + }, + { + "id": 62, + "internalId": 62, + "name": "hopper_minecart", + "displayName": "Minecart with Hopper", + "width": 0.98, + "height": 0.7, + "type": "other", + "category": "Vehicles" + }, + { + "id": 63, + "internalId": 63, + "name": "horse", + "displayName": "Horse", + "width": 1.3964844, + "height": 1.6, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 64, + "internalId": 64, + "name": "husk", + "displayName": "Husk", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 65, + "internalId": 65, + "name": "illusioner", + "displayName": "Illusioner", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 66, + "internalId": 66, + "name": "interaction", + "displayName": "Interaction", + "width": 0.0, + "height": 0.0, + "type": "other", + "category": "Immobile" + }, + { + "id": 67, + "internalId": 67, + "name": "iron_golem", + "displayName": "Iron Golem", + "width": 1.4, + "height": 2.7, + "type": "mob", + "category": "Passive mobs" + }, + { + "id": 68, + "internalId": 68, + "name": "item", + "displayName": "Item", + "width": 0.25, + "height": 0.25, + "type": "other", + "category": "UNKNOWN" + }, + { + "id": 69, + "internalId": 69, + "name": "item_display", + "displayName": "Item Display", + "width": 0.0, + "height": 0.0, + "type": "other", + "category": "Immobile" + }, + { + "id": 70, + "internalId": 70, + "name": "item_frame", + "displayName": "Item Frame", + "width": 0.5, + "height": 0.5, + "type": "other", + "category": "Immobile" + }, + { + "id": 71, + "internalId": 71, + "name": "jungle_boat", + "displayName": "Jungle Boat", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 72, + "internalId": 72, + "name": "jungle_chest_boat", + "displayName": "Jungle Boat with Chest", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 73, + "internalId": 73, + "name": "leash_knot", + "displayName": "Leash Knot", + "width": 0.375, + "height": 0.5, + "type": "other", + "category": "Immobile" + }, + { + "id": 74, + "internalId": 74, + "name": "lightning_bolt", + "displayName": "Lightning Bolt", + "width": 0.0, + "height": 0.0, + "type": "other", + "category": "UNKNOWN" + }, + { + "id": 75, + "internalId": 75, + "name": "llama", + "displayName": "Llama", + "width": 0.9, + "height": 1.87, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 76, + "internalId": 76, + "name": "llama_spit", + "displayName": "Llama Spit", + "width": 0.25, + "height": 0.25, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 77, + "internalId": 77, + "name": "magma_cube", + "displayName": "Magma Cube", + "width": 0.52, + "height": 0.52, + "type": "mob", + "category": "Hostile mobs" + }, + { + "id": 78, + "internalId": 78, + "name": "mangrove_boat", + "displayName": "Mangrove Boat", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 79, + "internalId": 79, + "name": "mangrove_chest_boat", + "displayName": "Mangrove Boat with Chest", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 80, + "internalId": 80, + "name": "marker", + "displayName": "Marker", + "width": 0.0, + "height": 0.0, + "type": "other", + "category": "UNKNOWN" + }, + { + "id": 81, + "internalId": 81, + "name": "minecart", + "displayName": "Minecart", + "width": 0.98, + "height": 0.7, + "type": "other", + "category": "Vehicles" + }, + { + "id": 82, + "internalId": 82, + "name": "mooshroom", + "displayName": "Mooshroom", + "width": 0.9, + "height": 1.4, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 83, + "internalId": 83, + "name": "mule", + "displayName": "Mule", + "width": 1.3964844, + "height": 1.6, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 84, + "internalId": 84, + "name": "oak_boat", + "displayName": "Oak Boat", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 85, + "internalId": 85, + "name": "oak_chest_boat", + "displayName": "Oak Boat with Chest", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 86, + "internalId": 86, + "name": "ocelot", + "displayName": "Ocelot", + "width": 0.6, + "height": 0.7, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 87, + "internalId": 87, + "name": "ominous_item_spawner", + "displayName": "Ominous Item Spawner", + "width": 0.25, + "height": 0.25, + "type": "other", + "category": "UNKNOWN" + }, + { + "id": 88, + "internalId": 88, + "name": "painting", + "displayName": "Painting", + "width": 0.5, + "height": 0.5, + "type": "other", + "category": "Immobile" + }, + { + "id": 89, + "internalId": 89, + "name": "pale_oak_boat", + "displayName": "Pale Oak Boat", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 90, + "internalId": 90, + "name": "pale_oak_chest_boat", + "displayName": "Pale Oak Boat with Chest", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 91, + "internalId": 91, + "name": "panda", + "displayName": "Panda", + "width": 1.3, + "height": 1.25, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 92, + "internalId": 92, + "name": "parrot", + "displayName": "Parrot", + "width": 0.5, + "height": 0.9, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 93, + "internalId": 93, + "name": "phantom", + "displayName": "Phantom", + "width": 0.9, + "height": 0.5, + "type": "mob", + "category": "Hostile mobs" + }, + { + "id": 94, + "internalId": 94, + "name": "pig", + "displayName": "Pig", + "width": 0.9, + "height": 0.9, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 95, + "internalId": 95, + "name": "piglin", + "displayName": "Piglin", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 96, + "internalId": 96, + "name": "piglin_brute", + "displayName": "Piglin Brute", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 97, + "internalId": 97, + "name": "pillager", + "displayName": "Pillager", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 98, + "internalId": 98, + "name": "polar_bear", + "displayName": "Polar Bear", + "width": 1.4, + "height": 1.4, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 99, + "internalId": 99, + "name": "potion", + "displayName": "Potion", + "width": 0.25, + "height": 0.25, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 100, + "internalId": 100, + "name": "pufferfish", + "displayName": "Pufferfish", + "width": 0.7, + "height": 0.7, + "type": "water_creature", + "category": "Passive mobs" + }, + { + "id": 101, + "internalId": 101, + "name": "rabbit", + "displayName": "Rabbit", + "width": 0.4, + "height": 0.5, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 102, + "internalId": 102, + "name": "ravager", + "displayName": "Ravager", + "width": 1.95, + "height": 2.2, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 103, + "internalId": 103, + "name": "salmon", + "displayName": "Salmon", + "width": 0.7, + "height": 0.4, + "type": "water_creature", + "category": "Passive mobs" + }, + { + "id": 104, + "internalId": 104, + "name": "sheep", + "displayName": "Sheep", + "width": 0.9, + "height": 1.3, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 105, + "internalId": 105, + "name": "shulker", + "displayName": "Shulker", + "width": 1.0, + "height": 1.0, + "type": "mob", + "category": "Hostile mobs" + }, + { + "id": 106, + "internalId": 106, + "name": "shulker_bullet", + "displayName": "Shulker Bullet", + "width": 0.3125, + "height": 0.3125, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 107, + "internalId": 107, + "name": "silverfish", + "displayName": "Silverfish", + "width": 0.4, + "height": 0.3, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 108, + "internalId": 108, + "name": "skeleton", + "displayName": "Skeleton", + "width": 0.6, + "height": 1.99, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 109, + "internalId": 109, + "name": "skeleton_horse", + "displayName": "Skeleton Horse", + "width": 1.3964844, + "height": 1.6, + "type": "animal", + "category": "Hostile mobs" + }, + { + "id": 110, + "internalId": 110, + "name": "slime", + "displayName": "Slime", + "width": 0.52, + "height": 0.52, + "type": "mob", + "category": "Hostile mobs" + }, + { + "id": 111, + "internalId": 111, + "name": "small_fireball", + "displayName": "Small Fireball", + "width": 0.3125, + "height": 0.3125, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 112, + "internalId": 112, + "name": "sniffer", + "displayName": "Sniffer", + "width": 1.9, + "height": 1.75, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 113, + "internalId": 113, + "name": "snowball", + "displayName": "Snowball", + "width": 0.25, + "height": 0.25, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 114, + "internalId": 114, + "name": "snow_golem", + "displayName": "Snow Golem", + "width": 0.7, + "height": 1.9, + "type": "mob", + "category": "Passive mobs" + }, + { + "id": 115, + "internalId": 115, + "name": "spawner_minecart", + "displayName": "Minecart with Monster Spawner", + "width": 0.98, + "height": 0.7, + "type": "other", + "category": "Vehicles" + }, + { + "id": 116, + "internalId": 116, + "name": "spectral_arrow", + "displayName": "Spectral Arrow", + "width": 0.5, + "height": 0.5, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 117, + "internalId": 117, + "name": "spider", + "displayName": "Spider", + "width": 1.4, + "height": 0.9, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 118, + "internalId": 118, + "name": "spruce_boat", + "displayName": "Spruce Boat", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 119, + "internalId": 119, + "name": "spruce_chest_boat", + "displayName": "Spruce Boat with Chest", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" + }, + { + "id": 120, + "internalId": 120, + "name": "squid", + "displayName": "Squid", + "width": 0.8, + "height": 0.8, + "type": "passive", + "category": "Passive mobs" + }, + { + "id": 121, + "internalId": 121, + "name": "stray", + "displayName": "Stray", + "width": 0.6, + "height": 1.99, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 122, + "internalId": 122, + "name": "strider", + "displayName": "Strider", + "width": 0.9, + "height": 1.7, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 123, + "internalId": 123, + "name": "tadpole", + "displayName": "Tadpole", + "width": 0.4, + "height": 0.3, + "type": "water_creature", + "category": "Passive mobs" + }, + { + "id": 124, + "internalId": 124, + "name": "text_display", + "displayName": "Text Display", + "width": 0.0, + "height": 0.0, + "type": "other", + "category": "Immobile" + }, + { + "id": 125, + "internalId": 125, + "name": "tnt", + "displayName": "Primed TNT", + "width": 0.98, + "height": 0.98, + "type": "other", + "category": "UNKNOWN" + }, + { + "id": 126, + "internalId": 126, + "name": "tnt_minecart", + "displayName": "Minecart with TNT", + "width": 0.98, + "height": 0.7, + "type": "other", + "category": "Vehicles" + }, + { + "id": 127, + "internalId": 127, + "name": "trader_llama", + "displayName": "Trader Llama", + "width": 0.9, + "height": 1.87, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 128, + "internalId": 128, + "name": "trident", + "displayName": "Trident", + "width": 0.5, + "height": 0.5, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 129, + "internalId": 129, + "name": "tropical_fish", + "displayName": "Tropical Fish", + "width": 0.5, + "height": 0.4, + "type": "water_creature", + "category": "Passive mobs" + }, + { + "id": 130, + "internalId": 130, + "name": "turtle", + "displayName": "Turtle", + "width": 1.2, + "height": 0.4, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 131, + "internalId": 131, + "name": "vex", + "displayName": "Vex", + "width": 0.4, + "height": 0.8, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 132, + "internalId": 132, + "name": "villager", + "displayName": "Villager", + "width": 0.6, + "height": 1.95, + "type": "passive", + "category": "Passive mobs" + }, + { + "id": 133, + "internalId": 133, + "name": "vindicator", + "displayName": "Vindicator", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 134, + "internalId": 134, + "name": "wandering_trader", + "displayName": "Wandering Trader", + "width": 0.6, + "height": 1.95, + "type": "passive", + "category": "Passive mobs" + }, + { + "id": 135, + "internalId": 135, + "name": "warden", + "displayName": "Warden", + "width": 0.9, + "height": 2.9, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 136, + "internalId": 136, + "name": "wind_charge", + "displayName": "Wind Charge", + "width": 0.3125, + "height": 0.3125, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 137, + "internalId": 137, + "name": "witch", + "displayName": "Witch", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 138, + "internalId": 138, + "name": "wither", + "displayName": "Wither", + "width": 0.9, + "height": 3.5, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 139, + "internalId": 139, + "name": "wither_skeleton", + "displayName": "Wither Skeleton", + "width": 0.7, + "height": 2.4, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 140, + "internalId": 140, + "name": "wither_skull", + "displayName": "Wither Skull", + "width": 0.3125, + "height": 0.3125, + "type": "projectile", + "category": "Projectiles" + }, + { + "id": 141, + "internalId": 141, + "name": "wolf", + "displayName": "Wolf", + "width": 0.6, + "height": 0.85, + "type": "animal", + "category": "Passive mobs" + }, + { + "id": 142, + "internalId": 142, + "name": "zoglin", + "displayName": "Zoglin", + "width": 1.3964844, + "height": 1.4, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 143, + "internalId": 143, + "name": "zombie", + "displayName": "Zombie", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 144, + "internalId": 144, + "name": "zombie_horse", + "displayName": "Zombie Horse", + "width": 1.3964844, + "height": 1.6, + "type": "animal", + "category": "Hostile mobs" + }, + { + "id": 145, + "internalId": 145, + "name": "zombie_villager", + "displayName": "Zombie Villager", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 146, + "internalId": 146, + "name": "zombified_piglin", + "displayName": "Zombified Piglin", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 147, + "internalId": 147, + "name": "player", + "displayName": "Player", + "width": 0.6, + "height": 1.8, + "type": "player", + "category": "UNKNOWN" + }, + { + "id": 148, + "internalId": 148, + "name": "fishing_bobber", + "displayName": "Fishing Bobber", + "width": 0.25, + "height": 0.25, + "type": "projectile", + "category": "Projectiles" + } +] \ No newline at end of file diff --git a/data/pc/1.21.4/foods.json b/data/pc/1.21.4/foods.json new file mode 100644 index 000000000..84c74b779 --- /dev/null +++ b/data/pc/1.21.4/foods.json @@ -0,0 +1,402 @@ +[ + { + "id": 831, + "name": "apple", + "stackSize": 64, + "displayName": "Apple", + "foodPoints": 4.0, + "saturation": 19.2, + "effectiveQuality": 23.2, + "saturationRatio": 4.8 + }, + { + "id": 880, + "name": "mushroom_stew", + "stackSize": 1, + "displayName": "Mushroom Stew", + "foodPoints": 6.0, + "saturation": 86.4, + "effectiveQuality": 92.4, + "saturationRatio": 14.400001 + }, + { + "id": 886, + "name": "bread", + "stackSize": 64, + "displayName": "Bread", + "foodPoints": 5.0, + "saturation": 60.0, + "effectiveQuality": 65.0, + "saturationRatio": 12.0 + }, + { + "id": 912, + "name": "porkchop", + "stackSize": 64, + "displayName": "Raw Porkchop", + "foodPoints": 3.0, + "saturation": 10.8, + "effectiveQuality": 13.8, + "saturationRatio": 3.6000001 + }, + { + "id": 913, + "name": "cooked_porkchop", + "stackSize": 64, + "displayName": "Cooked Porkchop", + "foodPoints": 8.0, + "saturation": 204.8, + "effectiveQuality": 212.8, + "saturationRatio": 25.6 + }, + { + "id": 915, + "name": "golden_apple", + "stackSize": 64, + "displayName": "Golden Apple", + "foodPoints": 4.0, + "saturation": 76.8, + "effectiveQuality": 80.8, + "saturationRatio": 19.2 + }, + { + "id": 916, + "name": "enchanted_golden_apple", + "stackSize": 64, + "displayName": "Enchanted Golden Apple", + "foodPoints": 4.0, + "saturation": 76.8, + "effectiveQuality": 80.8, + "saturationRatio": 19.2 + }, + { + "id": 984, + "name": "cod", + "stackSize": 64, + "displayName": "Raw Cod", + "foodPoints": 2.0, + "saturation": 1.6, + "effectiveQuality": 3.6, + "saturationRatio": 0.8 + }, + { + "id": 985, + "name": "salmon", + "stackSize": 64, + "displayName": "Raw Salmon", + "foodPoints": 2.0, + "saturation": 1.6, + "effectiveQuality": 3.6, + "saturationRatio": 0.8 + }, + { + "id": 986, + "name": "tropical_fish", + "stackSize": 64, + "displayName": "Tropical Fish", + "foodPoints": 1.0, + "saturation": 0.4, + "effectiveQuality": 1.4, + "saturationRatio": 0.4 + }, + { + "id": 987, + "name": "pufferfish", + "stackSize": 64, + "displayName": "Pufferfish", + "foodPoints": 1.0, + "saturation": 0.4, + "effectiveQuality": 1.4, + "saturationRatio": 0.4 + }, + { + "id": 988, + "name": "cooked_cod", + "stackSize": 64, + "displayName": "Cooked Cod", + "foodPoints": 5.0, + "saturation": 60.0, + "effectiveQuality": 65.0, + "saturationRatio": 12.0 + }, + { + "id": 989, + "name": "cooked_salmon", + "stackSize": 64, + "displayName": "Cooked Salmon", + "foodPoints": 6.0, + "saturation": 115.200005, + "effectiveQuality": 121.200005, + "saturationRatio": 19.2 + }, + { + "id": 1029, + "name": "cookie", + "stackSize": 64, + "displayName": "Cookie", + "foodPoints": 2.0, + "saturation": 1.6, + "effectiveQuality": 3.6, + "saturationRatio": 0.8 + }, + { + "id": 1033, + "name": "melon_slice", + "stackSize": 64, + "displayName": "Melon Slice", + "foodPoints": 2.0, + "saturation": 4.8, + "effectiveQuality": 6.8, + "saturationRatio": 2.4 + }, + { + "id": 1034, + "name": "dried_kelp", + "stackSize": 64, + "displayName": "Dried Kelp", + "foodPoints": 1.0, + "saturation": 1.2, + "effectiveQuality": 2.2, + "saturationRatio": 1.2 + }, + { + "id": 1037, + "name": "beef", + "stackSize": 64, + "displayName": "Raw Beef", + "foodPoints": 3.0, + "saturation": 10.8, + "effectiveQuality": 13.8, + "saturationRatio": 3.6000001 + }, + { + "id": 1038, + "name": "cooked_beef", + "stackSize": 64, + "displayName": "Steak", + "foodPoints": 8.0, + "saturation": 204.8, + "effectiveQuality": 212.8, + "saturationRatio": 25.6 + }, + { + "id": 1039, + "name": "chicken", + "stackSize": 64, + "displayName": "Raw Chicken", + "foodPoints": 2.0, + "saturation": 4.8, + "effectiveQuality": 6.8, + "saturationRatio": 2.4 + }, + { + "id": 1040, + "name": "cooked_chicken", + "stackSize": 64, + "displayName": "Cooked Chicken", + "foodPoints": 6.0, + "saturation": 86.4, + "effectiveQuality": 92.4, + "saturationRatio": 14.400001 + }, + { + "id": 1041, + "name": "rotten_flesh", + "stackSize": 64, + "displayName": "Rotten Flesh", + "foodPoints": 4.0, + "saturation": 6.4, + "effectiveQuality": 10.4, + "saturationRatio": 1.6 + }, + { + "id": 1049, + "name": "spider_eye", + "stackSize": 64, + "displayName": "Spider Eye", + "foodPoints": 2.0, + "saturation": 12.8, + "effectiveQuality": 14.8, + "saturationRatio": 6.4 + }, + { + "id": 1148, + "name": "carrot", + "stackSize": 64, + "displayName": "Carrot", + "foodPoints": 3.0, + "saturation": 21.6, + "effectiveQuality": 24.6, + "saturationRatio": 7.2000003 + }, + { + "id": 1149, + "name": "potato", + "stackSize": 64, + "displayName": "Potato", + "foodPoints": 1.0, + "saturation": 1.2, + "effectiveQuality": 2.2, + "saturationRatio": 1.2 + }, + { + "id": 1150, + "name": "baked_potato", + "stackSize": 64, + "displayName": "Baked Potato", + "foodPoints": 5.0, + "saturation": 60.0, + "effectiveQuality": 65.0, + "saturationRatio": 12.0 + }, + { + "id": 1151, + "name": "poisonous_potato", + "stackSize": 64, + "displayName": "Poisonous Potato", + "foodPoints": 2.0, + "saturation": 4.8, + "effectiveQuality": 6.8, + "saturationRatio": 2.4 + }, + { + "id": 1153, + "name": "golden_carrot", + "stackSize": 64, + "displayName": "Golden Carrot", + "foodPoints": 6.0, + "saturation": 172.8, + "effectiveQuality": 178.8, + "saturationRatio": 28.800001 + }, + { + "id": 1162, + "name": "pumpkin_pie", + "stackSize": 64, + "displayName": "Pumpkin Pie", + "foodPoints": 8.0, + "saturation": 76.8, + "effectiveQuality": 84.8, + "saturationRatio": 9.6 + }, + { + "id": 1170, + "name": "rabbit", + "stackSize": 64, + "displayName": "Raw Rabbit", + "foodPoints": 3.0, + "saturation": 10.8, + "effectiveQuality": 13.8, + "saturationRatio": 3.6000001 + }, + { + "id": 1171, + "name": "cooked_rabbit", + "stackSize": 64, + "displayName": "Cooked Rabbit", + "foodPoints": 5.0, + "saturation": 60.0, + "effectiveQuality": 65.0, + "saturationRatio": 12.0 + }, + { + "id": 1172, + "name": "rabbit_stew", + "stackSize": 1, + "displayName": "Rabbit Stew", + "foodPoints": 10.0, + "saturation": 240.0, + "effectiveQuality": 250.0, + "saturationRatio": 24.0 + }, + { + "id": 1183, + "name": "mutton", + "stackSize": 64, + "displayName": "Raw Mutton", + "foodPoints": 2.0, + "saturation": 4.8, + "effectiveQuality": 6.8, + "saturationRatio": 2.4 + }, + { + "id": 1184, + "name": "cooked_mutton", + "stackSize": 64, + "displayName": "Cooked Mutton", + "foodPoints": 6.0, + "saturation": 115.200005, + "effectiveQuality": 121.200005, + "saturationRatio": 19.2 + }, + { + "id": 1202, + "name": "chorus_fruit", + "stackSize": 64, + "displayName": "Chorus Fruit", + "foodPoints": 4.0, + "saturation": 19.2, + "effectiveQuality": 23.2, + "saturationRatio": 4.8 + }, + { + "id": 1206, + "name": "beetroot", + "stackSize": 64, + "displayName": "Beetroot", + "foodPoints": 1.0, + "saturation": 2.4, + "effectiveQuality": 3.4, + "saturationRatio": 2.4 + }, + { + "id": 1208, + "name": "beetroot_soup", + "stackSize": 1, + "displayName": "Beetroot Soup", + "foodPoints": 6.0, + "saturation": 86.4, + "effectiveQuality": 92.4, + "saturationRatio": 14.400001 + }, + { + "id": 1244, + "name": "suspicious_stew", + "stackSize": 1, + "displayName": "Suspicious Stew", + "foodPoints": 6.0, + "saturation": 86.4, + "effectiveQuality": 92.4, + "saturationRatio": 14.400001 + }, + { + "id": 1269, + "name": "sweet_berries", + "stackSize": 64, + "displayName": "Sweet Berries", + "foodPoints": 2.0, + "saturation": 1.6, + "effectiveQuality": 3.6, + "saturationRatio": 0.8 + }, + { + "id": 1270, + "name": "glow_berries", + "stackSize": 64, + "displayName": "Glow Berries", + "foodPoints": 2.0, + "saturation": 1.6, + "effectiveQuality": 3.6, + "saturationRatio": 0.8 + }, + { + "id": 1277, + "name": "honey_bottle", + "stackSize": 16, + "displayName": "Honey Bottle", + "foodPoints": 6.0, + "saturation": 14.400001, + "effectiveQuality": 20.400002, + "saturationRatio": 2.4 + } +] \ No newline at end of file diff --git a/data/pc/1.21.4/instruments.json b/data/pc/1.21.4/instruments.json new file mode 100644 index 000000000..eddc57433 --- /dev/null +++ b/data/pc/1.21.4/instruments.json @@ -0,0 +1,94 @@ +[ + { + "id": 0, + "name": "harp" + }, + { + "id": 1, + "name": "basedrum" + }, + { + "id": 2, + "name": "snare" + }, + { + "id": 3, + "name": "hat" + }, + { + "id": 4, + "name": "bass" + }, + { + "id": 5, + "name": "flute" + }, + { + "id": 6, + "name": "bell" + }, + { + "id": 7, + "name": "guitar" + }, + { + "id": 8, + "name": "chime" + }, + { + "id": 9, + "name": "xylophone" + }, + { + "id": 10, + "name": "iron_xylophone" + }, + { + "id": 11, + "name": "cow_bell" + }, + { + "id": 12, + "name": "didgeridoo" + }, + { + "id": 13, + "name": "bit" + }, + { + "id": 14, + "name": "banjo" + }, + { + "id": 15, + "name": "pling" + }, + { + "id": 16, + "name": "zombie" + }, + { + "id": 17, + "name": "skeleton" + }, + { + "id": 18, + "name": "creeper" + }, + { + "id": 19, + "name": "dragon" + }, + { + "id": 20, + "name": "wither_skeleton" + }, + { + "id": 21, + "name": "piglin" + }, + { + "id": 22, + "name": "custom_head" + } +] \ No newline at end of file diff --git a/data/pc/1.21.4/items.json b/data/pc/1.21.4/items.json new file mode 100644 index 000000000..6f7829692 --- /dev/null +++ b/data/pc/1.21.4/items.json @@ -0,0 +1,9098 @@ +[ + { + "id": 0, + "name": "air", + "displayName": "Air", + "stackSize": 64 + }, + { + "id": 1, + "name": "stone", + "displayName": "Stone", + "stackSize": 64 + }, + { + "id": 2, + "name": "granite", + "displayName": "Granite", + "stackSize": 64 + }, + { + "id": 3, + "name": "polished_granite", + "displayName": "Polished Granite", + "stackSize": 64 + }, + { + "id": 4, + "name": "diorite", + "displayName": "Diorite", + "stackSize": 64 + }, + { + "id": 5, + "name": "polished_diorite", + "displayName": "Polished Diorite", + "stackSize": 64 + }, + { + "id": 6, + "name": "andesite", + "displayName": "Andesite", + "stackSize": 64 + }, + { + "id": 7, + "name": "polished_andesite", + "displayName": "Polished Andesite", + "stackSize": 64 + }, + { + "id": 8, + "name": "deepslate", + "displayName": "Deepslate", + "stackSize": 64 + }, + { + "id": 9, + "name": "cobbled_deepslate", + "displayName": "Cobbled Deepslate", + "stackSize": 64 + }, + { + "id": 10, + "name": "polished_deepslate", + "displayName": "Polished Deepslate", + "stackSize": 64 + }, + { + "id": 11, + "name": "calcite", + "displayName": "Calcite", + "stackSize": 64 + }, + { + "id": 12, + "name": "tuff", + "displayName": "Tuff", + "stackSize": 64 + }, + { + "id": 13, + "name": "tuff_slab", + "displayName": "Tuff Slab", + "stackSize": 64 + }, + { + "id": 14, + "name": "tuff_stairs", + "displayName": "Tuff Stairs", + "stackSize": 64 + }, + { + "id": 15, + "name": "tuff_wall", + "displayName": "Tuff Wall", + "stackSize": 64 + }, + { + "id": 16, + "name": "chiseled_tuff", + "displayName": "Chiseled Tuff", + "stackSize": 64 + }, + { + "id": 17, + "name": "polished_tuff", + "displayName": "Polished Tuff", + "stackSize": 64 + }, + { + "id": 18, + "name": "polished_tuff_slab", + "displayName": "Polished Tuff Slab", + "stackSize": 64 + }, + { + "id": 19, + "name": "polished_tuff_stairs", + "displayName": "Polished Tuff Stairs", + "stackSize": 64 + }, + { + "id": 20, + "name": "polished_tuff_wall", + "displayName": "Polished Tuff Wall", + "stackSize": 64 + }, + { + "id": 21, + "name": "tuff_bricks", + "displayName": "Tuff Bricks", + "stackSize": 64 + }, + { + "id": 22, + "name": "tuff_brick_slab", + "displayName": "Tuff Brick Slab", + "stackSize": 64 + }, + { + "id": 23, + "name": "tuff_brick_stairs", + "displayName": "Tuff Brick Stairs", + "stackSize": 64 + }, + { + "id": 24, + "name": "tuff_brick_wall", + "displayName": "Tuff Brick Wall", + "stackSize": 64 + }, + { + "id": 25, + "name": "chiseled_tuff_bricks", + "displayName": "Chiseled Tuff Bricks", + "stackSize": 64 + }, + { + "id": 26, + "name": "dripstone_block", + "displayName": "Dripstone Block", + "stackSize": 64 + }, + { + "id": 27, + "name": "grass_block", + "displayName": "Grass Block", + "stackSize": 64 + }, + { + "id": 28, + "name": "dirt", + "displayName": "Dirt", + "stackSize": 64 + }, + { + "id": 29, + "name": "coarse_dirt", + "displayName": "Coarse Dirt", + "stackSize": 64 + }, + { + "id": 30, + "name": "podzol", + "displayName": "Podzol", + "stackSize": 64 + }, + { + "id": 31, + "name": "rooted_dirt", + "displayName": "Rooted Dirt", + "stackSize": 64 + }, + { + "id": 32, + "name": "mud", + "displayName": "Mud", + "stackSize": 64 + }, + { + "id": 33, + "name": "crimson_nylium", + "displayName": "Crimson Nylium", + "stackSize": 64 + }, + { + "id": 34, + "name": "warped_nylium", + "displayName": "Warped Nylium", + "stackSize": 64 + }, + { + "id": 35, + "name": "cobblestone", + "displayName": "Cobblestone", + "stackSize": 64 + }, + { + "id": 36, + "name": "oak_planks", + "displayName": "Oak Planks", + "stackSize": 64 + }, + { + "id": 37, + "name": "spruce_planks", + "displayName": "Spruce Planks", + "stackSize": 64 + }, + { + "id": 38, + "name": "birch_planks", + "displayName": "Birch Planks", + "stackSize": 64 + }, + { + "id": 39, + "name": "jungle_planks", + "displayName": "Jungle Planks", + "stackSize": 64 + }, + { + "id": 40, + "name": "acacia_planks", + "displayName": "Acacia Planks", + "stackSize": 64 + }, + { + "id": 41, + "name": "cherry_planks", + "displayName": "Cherry Planks", + "stackSize": 64 + }, + { + "id": 42, + "name": "dark_oak_planks", + "displayName": "Dark Oak Planks", + "stackSize": 64 + }, + { + "id": 43, + "name": "pale_oak_planks", + "displayName": "Pale Oak Planks", + "stackSize": 64 + }, + { + "id": 44, + "name": "mangrove_planks", + "displayName": "Mangrove Planks", + "stackSize": 64 + }, + { + "id": 45, + "name": "bamboo_planks", + "displayName": "Bamboo Planks", + "stackSize": 64 + }, + { + "id": 46, + "name": "crimson_planks", + "displayName": "Crimson Planks", + "stackSize": 64 + }, + { + "id": 47, + "name": "warped_planks", + "displayName": "Warped Planks", + "stackSize": 64 + }, + { + "id": 48, + "name": "bamboo_mosaic", + "displayName": "Bamboo Mosaic", + "stackSize": 64 + }, + { + "id": 49, + "name": "oak_sapling", + "displayName": "Oak Sapling", + "stackSize": 64 + }, + { + "id": 50, + "name": "spruce_sapling", + "displayName": "Spruce Sapling", + "stackSize": 64 + }, + { + "id": 51, + "name": "birch_sapling", + "displayName": "Birch Sapling", + "stackSize": 64 + }, + { + "id": 52, + "name": "jungle_sapling", + "displayName": "Jungle Sapling", + "stackSize": 64 + }, + { + "id": 53, + "name": "acacia_sapling", + "displayName": "Acacia Sapling", + "stackSize": 64 + }, + { + "id": 54, + "name": "cherry_sapling", + "displayName": "Cherry Sapling", + "stackSize": 64 + }, + { + "id": 55, + "name": "dark_oak_sapling", + "displayName": "Dark Oak Sapling", + "stackSize": 64 + }, + { + "id": 56, + "name": "pale_oak_sapling", + "displayName": "Pale Oak Sapling", + "stackSize": 64 + }, + { + "id": 57, + "name": "mangrove_propagule", + "displayName": "Mangrove Propagule", + "stackSize": 64 + }, + { + "id": 58, + "name": "bedrock", + "displayName": "Bedrock", + "stackSize": 64 + }, + { + "id": 59, + "name": "sand", + "displayName": "Sand", + "stackSize": 64 + }, + { + "id": 60, + "name": "suspicious_sand", + "displayName": "Suspicious Sand", + "stackSize": 64 + }, + { + "id": 61, + "name": "suspicious_gravel", + "displayName": "Suspicious Gravel", + "stackSize": 64 + }, + { + "id": 62, + "name": "red_sand", + "displayName": "Red Sand", + "stackSize": 64 + }, + { + "id": 63, + "name": "gravel", + "displayName": "Gravel", + "stackSize": 64 + }, + { + "id": 64, + "name": "coal_ore", + "displayName": "Coal Ore", + "stackSize": 64 + }, + { + "id": 65, + "name": "deepslate_coal_ore", + "displayName": "Deepslate Coal Ore", + "stackSize": 64 + }, + { + "id": 66, + "name": "iron_ore", + "displayName": "Iron Ore", + "stackSize": 64 + }, + { + "id": 67, + "name": "deepslate_iron_ore", + "displayName": "Deepslate Iron Ore", + "stackSize": 64 + }, + { + "id": 68, + "name": "copper_ore", + "displayName": "Copper Ore", + "stackSize": 64 + }, + { + "id": 69, + "name": "deepslate_copper_ore", + "displayName": "Deepslate Copper Ore", + "stackSize": 64 + }, + { + "id": 70, + "name": "gold_ore", + "displayName": "Gold Ore", + "stackSize": 64 + }, + { + "id": 71, + "name": "deepslate_gold_ore", + "displayName": "Deepslate Gold Ore", + "stackSize": 64 + }, + { + "id": 72, + "name": "redstone_ore", + "displayName": "Redstone Ore", + "stackSize": 64 + }, + { + "id": 73, + "name": "deepslate_redstone_ore", + "displayName": "Deepslate Redstone Ore", + "stackSize": 64 + }, + { + "id": 74, + "name": "emerald_ore", + "displayName": "Emerald Ore", + "stackSize": 64 + }, + { + "id": 75, + "name": "deepslate_emerald_ore", + "displayName": "Deepslate Emerald Ore", + "stackSize": 64 + }, + { + "id": 76, + "name": "lapis_ore", + "displayName": "Lapis Lazuli Ore", + "stackSize": 64 + }, + { + "id": 77, + "name": "deepslate_lapis_ore", + "displayName": "Deepslate Lapis Lazuli Ore", + "stackSize": 64 + }, + { + "id": 78, + "name": "diamond_ore", + "displayName": "Diamond Ore", + "stackSize": 64 + }, + { + "id": 79, + "name": "deepslate_diamond_ore", + "displayName": "Deepslate Diamond Ore", + "stackSize": 64 + }, + { + "id": 80, + "name": "nether_gold_ore", + "displayName": "Nether Gold Ore", + "stackSize": 64 + }, + { + "id": 81, + "name": "nether_quartz_ore", + "displayName": "Nether Quartz Ore", + "stackSize": 64 + }, + { + "id": 82, + "name": "ancient_debris", + "displayName": "Ancient Debris", + "stackSize": 64 + }, + { + "id": 83, + "name": "coal_block", + "displayName": "Block of Coal", + "stackSize": 64 + }, + { + "id": 84, + "name": "raw_iron_block", + "displayName": "Block of Raw Iron", + "stackSize": 64 + }, + { + "id": 85, + "name": "raw_copper_block", + "displayName": "Block of Raw Copper", + "stackSize": 64 + }, + { + "id": 86, + "name": "raw_gold_block", + "displayName": "Block of Raw Gold", + "stackSize": 64 + }, + { + "id": 87, + "name": "heavy_core", + "displayName": "Heavy Core", + "stackSize": 64 + }, + { + "id": 88, + "name": "amethyst_block", + "displayName": "Block of Amethyst", + "stackSize": 64 + }, + { + "id": 89, + "name": "budding_amethyst", + "displayName": "Budding Amethyst", + "stackSize": 64 + }, + { + "id": 90, + "name": "iron_block", + "displayName": "Block of Iron", + "stackSize": 64 + }, + { + "id": 91, + "name": "copper_block", + "displayName": "Block of Copper", + "stackSize": 64 + }, + { + "id": 92, + "name": "gold_block", + "displayName": "Block of Gold", + "stackSize": 64 + }, + { + "id": 93, + "name": "diamond_block", + "displayName": "Block of Diamond", + "stackSize": 64 + }, + { + "id": 94, + "name": "netherite_block", + "displayName": "Block of Netherite", + "stackSize": 64 + }, + { + "id": 95, + "name": "exposed_copper", + "displayName": "Exposed Copper", + "stackSize": 64 + }, + { + "id": 96, + "name": "weathered_copper", + "displayName": "Weathered Copper", + "stackSize": 64 + }, + { + "id": 97, + "name": "oxidized_copper", + "displayName": "Oxidized Copper", + "stackSize": 64 + }, + { + "id": 98, + "name": "chiseled_copper", + "displayName": "Chiseled Copper", + "stackSize": 64 + }, + { + "id": 99, + "name": "exposed_chiseled_copper", + "displayName": "Exposed Chiseled Copper", + "stackSize": 64 + }, + { + "id": 100, + "name": "weathered_chiseled_copper", + "displayName": "Weathered Chiseled Copper", + "stackSize": 64 + }, + { + "id": 101, + "name": "oxidized_chiseled_copper", + "displayName": "Oxidized Chiseled Copper", + "stackSize": 64 + }, + { + "id": 102, + "name": "cut_copper", + "displayName": "Cut Copper", + "stackSize": 64 + }, + { + "id": 103, + "name": "exposed_cut_copper", + "displayName": "Exposed Cut Copper", + "stackSize": 64 + }, + { + "id": 104, + "name": "weathered_cut_copper", + "displayName": "Weathered Cut Copper", + "stackSize": 64 + }, + { + "id": 105, + "name": "oxidized_cut_copper", + "displayName": "Oxidized Cut Copper", + "stackSize": 64 + }, + { + "id": 106, + "name": "cut_copper_stairs", + "displayName": "Cut Copper Stairs", + "stackSize": 64 + }, + { + "id": 107, + "name": "exposed_cut_copper_stairs", + "displayName": "Exposed Cut Copper Stairs", + "stackSize": 64 + }, + { + "id": 108, + "name": "weathered_cut_copper_stairs", + "displayName": "Weathered Cut Copper Stairs", + "stackSize": 64 + }, + { + "id": 109, + "name": "oxidized_cut_copper_stairs", + "displayName": "Oxidized Cut Copper Stairs", + "stackSize": 64 + }, + { + "id": 110, + "name": "cut_copper_slab", + "displayName": "Cut Copper Slab", + "stackSize": 64 + }, + { + "id": 111, + "name": "exposed_cut_copper_slab", + "displayName": "Exposed Cut Copper Slab", + "stackSize": 64 + }, + { + "id": 112, + "name": "weathered_cut_copper_slab", + "displayName": "Weathered Cut Copper Slab", + "stackSize": 64 + }, + { + "id": 113, + "name": "oxidized_cut_copper_slab", + "displayName": "Oxidized Cut Copper Slab", + "stackSize": 64 + }, + { + "id": 114, + "name": "waxed_copper_block", + "displayName": "Waxed Block of Copper", + "stackSize": 64 + }, + { + "id": 115, + "name": "waxed_exposed_copper", + "displayName": "Waxed Exposed Copper", + "stackSize": 64 + }, + { + "id": 116, + "name": "waxed_weathered_copper", + "displayName": "Waxed Weathered Copper", + "stackSize": 64 + }, + { + "id": 117, + "name": "waxed_oxidized_copper", + "displayName": "Waxed Oxidized Copper", + "stackSize": 64 + }, + { + "id": 118, + "name": "waxed_chiseled_copper", + "displayName": "Waxed Chiseled Copper", + "stackSize": 64 + }, + { + "id": 119, + "name": "waxed_exposed_chiseled_copper", + "displayName": "Waxed Exposed Chiseled Copper", + "stackSize": 64 + }, + { + "id": 120, + "name": "waxed_weathered_chiseled_copper", + "displayName": "Waxed Weathered Chiseled Copper", + "stackSize": 64 + }, + { + "id": 121, + "name": "waxed_oxidized_chiseled_copper", + "displayName": "Waxed Oxidized Chiseled Copper", + "stackSize": 64 + }, + { + "id": 122, + "name": "waxed_cut_copper", + "displayName": "Waxed Cut Copper", + "stackSize": 64 + }, + { + "id": 123, + "name": "waxed_exposed_cut_copper", + "displayName": "Waxed Exposed Cut Copper", + "stackSize": 64 + }, + { + "id": 124, + "name": "waxed_weathered_cut_copper", + "displayName": "Waxed Weathered Cut Copper", + "stackSize": 64 + }, + { + "id": 125, + "name": "waxed_oxidized_cut_copper", + "displayName": "Waxed Oxidized Cut Copper", + "stackSize": 64 + }, + { + "id": 126, + "name": "waxed_cut_copper_stairs", + "displayName": "Waxed Cut Copper Stairs", + "stackSize": 64 + }, + { + "id": 127, + "name": "waxed_exposed_cut_copper_stairs", + "displayName": "Waxed Exposed Cut Copper Stairs", + "stackSize": 64 + }, + { + "id": 128, + "name": "waxed_weathered_cut_copper_stairs", + "displayName": "Waxed Weathered Cut Copper Stairs", + "stackSize": 64 + }, + { + "id": 129, + "name": "waxed_oxidized_cut_copper_stairs", + "displayName": "Waxed Oxidized Cut Copper Stairs", + "stackSize": 64 + }, + { + "id": 130, + "name": "waxed_cut_copper_slab", + "displayName": "Waxed Cut Copper Slab", + "stackSize": 64 + }, + { + "id": 131, + "name": "waxed_exposed_cut_copper_slab", + "displayName": "Waxed Exposed Cut Copper Slab", + "stackSize": 64 + }, + { + "id": 132, + "name": "waxed_weathered_cut_copper_slab", + "displayName": "Waxed Weathered Cut Copper Slab", + "stackSize": 64 + }, + { + "id": 133, + "name": "waxed_oxidized_cut_copper_slab", + "displayName": "Waxed Oxidized Cut Copper Slab", + "stackSize": 64 + }, + { + "id": 134, + "name": "oak_log", + "displayName": "Oak Log", + "stackSize": 64 + }, + { + "id": 135, + "name": "spruce_log", + "displayName": "Spruce Log", + "stackSize": 64 + }, + { + "id": 136, + "name": "birch_log", + "displayName": "Birch Log", + "stackSize": 64 + }, + { + "id": 137, + "name": "jungle_log", + "displayName": "Jungle Log", + "stackSize": 64 + }, + { + "id": 138, + "name": "acacia_log", + "displayName": "Acacia Log", + "stackSize": 64 + }, + { + "id": 139, + "name": "cherry_log", + "displayName": "Cherry Log", + "stackSize": 64 + }, + { + "id": 140, + "name": "pale_oak_log", + "displayName": "Pale Oak Log", + "stackSize": 64 + }, + { + "id": 141, + "name": "dark_oak_log", + "displayName": "Dark Oak Log", + "stackSize": 64 + }, + { + "id": 142, + "name": "mangrove_log", + "displayName": "Mangrove Log", + "stackSize": 64 + }, + { + "id": 143, + "name": "mangrove_roots", + "displayName": "Mangrove Roots", + "stackSize": 64 + }, + { + "id": 144, + "name": "muddy_mangrove_roots", + "displayName": "Muddy Mangrove Roots", + "stackSize": 64 + }, + { + "id": 145, + "name": "crimson_stem", + "displayName": "Crimson Stem", + "stackSize": 64 + }, + { + "id": 146, + "name": "warped_stem", + "displayName": "Warped Stem", + "stackSize": 64 + }, + { + "id": 147, + "name": "bamboo_block", + "displayName": "Block of Bamboo", + "stackSize": 64 + }, + { + "id": 148, + "name": "stripped_oak_log", + "displayName": "Stripped Oak Log", + "stackSize": 64 + }, + { + "id": 149, + "name": "stripped_spruce_log", + "displayName": "Stripped Spruce Log", + "stackSize": 64 + }, + { + "id": 150, + "name": "stripped_birch_log", + "displayName": "Stripped Birch Log", + "stackSize": 64 + }, + { + "id": 151, + "name": "stripped_jungle_log", + "displayName": "Stripped Jungle Log", + "stackSize": 64 + }, + { + "id": 152, + "name": "stripped_acacia_log", + "displayName": "Stripped Acacia Log", + "stackSize": 64 + }, + { + "id": 153, + "name": "stripped_cherry_log", + "displayName": "Stripped Cherry Log", + "stackSize": 64 + }, + { + "id": 154, + "name": "stripped_dark_oak_log", + "displayName": "Stripped Dark Oak Log", + "stackSize": 64 + }, + { + "id": 155, + "name": "stripped_pale_oak_log", + "displayName": "Stripped Pale Oak Log", + "stackSize": 64 + }, + { + "id": 156, + "name": "stripped_mangrove_log", + "displayName": "Stripped Mangrove Log", + "stackSize": 64 + }, + { + "id": 157, + "name": "stripped_crimson_stem", + "displayName": "Stripped Crimson Stem", + "stackSize": 64 + }, + { + "id": 158, + "name": "stripped_warped_stem", + "displayName": "Stripped Warped Stem", + "stackSize": 64 + }, + { + "id": 159, + "name": "stripped_oak_wood", + "displayName": "Stripped Oak Wood", + "stackSize": 64 + }, + { + "id": 160, + "name": "stripped_spruce_wood", + "displayName": "Stripped Spruce Wood", + "stackSize": 64 + }, + { + "id": 161, + "name": "stripped_birch_wood", + "displayName": "Stripped Birch Wood", + "stackSize": 64 + }, + { + "id": 162, + "name": "stripped_jungle_wood", + "displayName": "Stripped Jungle Wood", + "stackSize": 64 + }, + { + "id": 163, + "name": "stripped_acacia_wood", + "displayName": "Stripped Acacia Wood", + "stackSize": 64 + }, + { + "id": 164, + "name": "stripped_cherry_wood", + "displayName": "Stripped Cherry Wood", + "stackSize": 64 + }, + { + "id": 165, + "name": "stripped_dark_oak_wood", + "displayName": "Stripped Dark Oak Wood", + "stackSize": 64 + }, + { + "id": 166, + "name": "stripped_pale_oak_wood", + "displayName": "Stripped Pale Oak Wood", + "stackSize": 64 + }, + { + "id": 167, + "name": "stripped_mangrove_wood", + "displayName": "Stripped Mangrove Wood", + "stackSize": 64 + }, + { + "id": 168, + "name": "stripped_crimson_hyphae", + "displayName": "Stripped Crimson Hyphae", + "stackSize": 64 + }, + { + "id": 169, + "name": "stripped_warped_hyphae", + "displayName": "Stripped Warped Hyphae", + "stackSize": 64 + }, + { + "id": 170, + "name": "stripped_bamboo_block", + "displayName": "Block of Stripped Bamboo", + "stackSize": 64 + }, + { + "id": 171, + "name": "oak_wood", + "displayName": "Oak Wood", + "stackSize": 64 + }, + { + "id": 172, + "name": "spruce_wood", + "displayName": "Spruce Wood", + "stackSize": 64 + }, + { + "id": 173, + "name": "birch_wood", + "displayName": "Birch Wood", + "stackSize": 64 + }, + { + "id": 174, + "name": "jungle_wood", + "displayName": "Jungle Wood", + "stackSize": 64 + }, + { + "id": 175, + "name": "acacia_wood", + "displayName": "Acacia Wood", + "stackSize": 64 + }, + { + "id": 176, + "name": "cherry_wood", + "displayName": "Cherry Wood", + "stackSize": 64 + }, + { + "id": 177, + "name": "pale_oak_wood", + "displayName": "Pale Oak Wood", + "stackSize": 64 + }, + { + "id": 178, + "name": "dark_oak_wood", + "displayName": "Dark Oak Wood", + "stackSize": 64 + }, + { + "id": 179, + "name": "mangrove_wood", + "displayName": "Mangrove Wood", + "stackSize": 64 + }, + { + "id": 180, + "name": "crimson_hyphae", + "displayName": "Crimson Hyphae", + "stackSize": 64 + }, + { + "id": 181, + "name": "warped_hyphae", + "displayName": "Warped Hyphae", + "stackSize": 64 + }, + { + "id": 182, + "name": "oak_leaves", + "displayName": "Oak Leaves", + "stackSize": 64 + }, + { + "id": 183, + "name": "spruce_leaves", + "displayName": "Spruce Leaves", + "stackSize": 64 + }, + { + "id": 184, + "name": "birch_leaves", + "displayName": "Birch Leaves", + "stackSize": 64 + }, + { + "id": 185, + "name": "jungle_leaves", + "displayName": "Jungle Leaves", + "stackSize": 64 + }, + { + "id": 186, + "name": "acacia_leaves", + "displayName": "Acacia Leaves", + "stackSize": 64 + }, + { + "id": 187, + "name": "cherry_leaves", + "displayName": "Cherry Leaves", + "stackSize": 64 + }, + { + "id": 188, + "name": "dark_oak_leaves", + "displayName": "Dark Oak Leaves", + "stackSize": 64 + }, + { + "id": 189, + "name": "pale_oak_leaves", + "displayName": "Pale Oak Leaves", + "stackSize": 64 + }, + { + "id": 190, + "name": "mangrove_leaves", + "displayName": "Mangrove Leaves", + "stackSize": 64 + }, + { + "id": 191, + "name": "azalea_leaves", + "displayName": "Azalea Leaves", + "stackSize": 64 + }, + { + "id": 192, + "name": "flowering_azalea_leaves", + "displayName": "Flowering Azalea Leaves", + "stackSize": 64 + }, + { + "id": 193, + "name": "sponge", + "displayName": "Sponge", + "stackSize": 64 + }, + { + "id": 194, + "name": "wet_sponge", + "displayName": "Wet Sponge", + "stackSize": 64 + }, + { + "id": 195, + "name": "glass", + "displayName": "Glass", + "stackSize": 64 + }, + { + "id": 196, + "name": "tinted_glass", + "displayName": "Tinted Glass", + "stackSize": 64 + }, + { + "id": 197, + "name": "lapis_block", + "displayName": "Block of Lapis Lazuli", + "stackSize": 64 + }, + { + "id": 198, + "name": "sandstone", + "displayName": "Sandstone", + "stackSize": 64 + }, + { + "id": 199, + "name": "chiseled_sandstone", + "displayName": "Chiseled Sandstone", + "stackSize": 64 + }, + { + "id": 200, + "name": "cut_sandstone", + "displayName": "Cut Sandstone", + "stackSize": 64 + }, + { + "id": 201, + "name": "cobweb", + "displayName": "Cobweb", + "stackSize": 64 + }, + { + "id": 202, + "name": "short_grass", + "displayName": "Short Grass", + "stackSize": 64 + }, + { + "id": 203, + "name": "fern", + "displayName": "Fern", + "stackSize": 64 + }, + { + "id": 204, + "name": "azalea", + "displayName": "Azalea", + "stackSize": 64 + }, + { + "id": 205, + "name": "flowering_azalea", + "displayName": "Flowering Azalea", + "stackSize": 64 + }, + { + "id": 206, + "name": "dead_bush", + "displayName": "Dead Bush", + "stackSize": 64 + }, + { + "id": 207, + "name": "seagrass", + "displayName": "Seagrass", + "stackSize": 64 + }, + { + "id": 208, + "name": "sea_pickle", + "displayName": "Sea Pickle", + "stackSize": 64 + }, + { + "id": 209, + "name": "white_wool", + "displayName": "White Wool", + "stackSize": 64 + }, + { + "id": 210, + "name": "orange_wool", + "displayName": "Orange Wool", + "stackSize": 64 + }, + { + "id": 211, + "name": "magenta_wool", + "displayName": "Magenta Wool", + "stackSize": 64 + }, + { + "id": 212, + "name": "light_blue_wool", + "displayName": "Light Blue Wool", + "stackSize": 64 + }, + { + "id": 213, + "name": "yellow_wool", + "displayName": "Yellow Wool", + "stackSize": 64 + }, + { + "id": 214, + "name": "lime_wool", + "displayName": "Lime Wool", + "stackSize": 64 + }, + { + "id": 215, + "name": "pink_wool", + "displayName": "Pink Wool", + "stackSize": 64 + }, + { + "id": 216, + "name": "gray_wool", + "displayName": "Gray Wool", + "stackSize": 64 + }, + { + "id": 217, + "name": "light_gray_wool", + "displayName": "Light Gray Wool", + "stackSize": 64 + }, + { + "id": 218, + "name": "cyan_wool", + "displayName": "Cyan Wool", + "stackSize": 64 + }, + { + "id": 219, + "name": "purple_wool", + "displayName": "Purple Wool", + "stackSize": 64 + }, + { + "id": 220, + "name": "blue_wool", + "displayName": "Blue Wool", + "stackSize": 64 + }, + { + "id": 221, + "name": "brown_wool", + "displayName": "Brown Wool", + "stackSize": 64 + }, + { + "id": 222, + "name": "green_wool", + "displayName": "Green Wool", + "stackSize": 64 + }, + { + "id": 223, + "name": "red_wool", + "displayName": "Red Wool", + "stackSize": 64 + }, + { + "id": 224, + "name": "black_wool", + "displayName": "Black Wool", + "stackSize": 64 + }, + { + "id": 225, + "name": "dandelion", + "displayName": "Dandelion", + "stackSize": 64 + }, + { + "id": 226, + "name": "open_eyeblossom", + "displayName": "Open Eyeblossom", + "stackSize": 64 + }, + { + "id": 227, + "name": "closed_eyeblossom", + "displayName": "Closed Eyeblossom", + "stackSize": 64 + }, + { + "id": 228, + "name": "poppy", + "displayName": "Poppy", + "stackSize": 64 + }, + { + "id": 229, + "name": "blue_orchid", + "displayName": "Blue Orchid", + "stackSize": 64 + }, + { + "id": 230, + "name": "allium", + "displayName": "Allium", + "stackSize": 64 + }, + { + "id": 231, + "name": "azure_bluet", + "displayName": "Azure Bluet", + "stackSize": 64 + }, + { + "id": 232, + "name": "red_tulip", + "displayName": "Red Tulip", + "stackSize": 64 + }, + { + "id": 233, + "name": "orange_tulip", + "displayName": "Orange Tulip", + "stackSize": 64 + }, + { + "id": 234, + "name": "white_tulip", + "displayName": "White Tulip", + "stackSize": 64 + }, + { + "id": 235, + "name": "pink_tulip", + "displayName": "Pink Tulip", + "stackSize": 64 + }, + { + "id": 236, + "name": "oxeye_daisy", + "displayName": "Oxeye Daisy", + "stackSize": 64 + }, + { + "id": 237, + "name": "cornflower", + "displayName": "Cornflower", + "stackSize": 64 + }, + { + "id": 238, + "name": "lily_of_the_valley", + "displayName": "Lily of the Valley", + "stackSize": 64 + }, + { + "id": 239, + "name": "wither_rose", + "displayName": "Wither Rose", + "stackSize": 64 + }, + { + "id": 240, + "name": "torchflower", + "displayName": "Torchflower", + "stackSize": 64 + }, + { + "id": 241, + "name": "pitcher_plant", + "displayName": "Pitcher Plant", + "stackSize": 64 + }, + { + "id": 242, + "name": "spore_blossom", + "displayName": "Spore Blossom", + "stackSize": 64 + }, + { + "id": 243, + "name": "brown_mushroom", + "displayName": "Brown Mushroom", + "stackSize": 64 + }, + { + "id": 244, + "name": "red_mushroom", + "displayName": "Red Mushroom", + "stackSize": 64 + }, + { + "id": 245, + "name": "crimson_fungus", + "displayName": "Crimson Fungus", + "stackSize": 64 + }, + { + "id": 246, + "name": "warped_fungus", + "displayName": "Warped Fungus", + "stackSize": 64 + }, + { + "id": 247, + "name": "crimson_roots", + "displayName": "Crimson Roots", + "stackSize": 64 + }, + { + "id": 248, + "name": "warped_roots", + "displayName": "Warped Roots", + "stackSize": 64 + }, + { + "id": 249, + "name": "nether_sprouts", + "displayName": "Nether Sprouts", + "stackSize": 64 + }, + { + "id": 250, + "name": "weeping_vines", + "displayName": "Weeping Vines", + "stackSize": 64 + }, + { + "id": 251, + "name": "twisting_vines", + "displayName": "Twisting Vines", + "stackSize": 64 + }, + { + "id": 252, + "name": "sugar_cane", + "displayName": "Sugar Cane", + "stackSize": 64 + }, + { + "id": 253, + "name": "kelp", + "displayName": "Kelp", + "stackSize": 64 + }, + { + "id": 254, + "name": "pink_petals", + "displayName": "Pink Petals", + "stackSize": 64 + }, + { + "id": 255, + "name": "moss_carpet", + "displayName": "Moss Carpet", + "stackSize": 64 + }, + { + "id": 256, + "name": "moss_block", + "displayName": "Moss Block", + "stackSize": 64 + }, + { + "id": 257, + "name": "pale_moss_carpet", + "displayName": "Pale Moss Carpet", + "stackSize": 64 + }, + { + "id": 258, + "name": "pale_hanging_moss", + "displayName": "Pale Hanging Moss", + "stackSize": 64 + }, + { + "id": 259, + "name": "pale_moss_block", + "displayName": "Pale Moss Block", + "stackSize": 64 + }, + { + "id": 260, + "name": "hanging_roots", + "displayName": "Hanging Roots", + "stackSize": 64 + }, + { + "id": 261, + "name": "big_dripleaf", + "displayName": "Big Dripleaf", + "stackSize": 64 + }, + { + "id": 262, + "name": "small_dripleaf", + "displayName": "Small Dripleaf", + "stackSize": 64 + }, + { + "id": 263, + "name": "bamboo", + "displayName": "Bamboo", + "stackSize": 64 + }, + { + "id": 264, + "name": "oak_slab", + "displayName": "Oak Slab", + "stackSize": 64 + }, + { + "id": 265, + "name": "spruce_slab", + "displayName": "Spruce Slab", + "stackSize": 64 + }, + { + "id": 266, + "name": "birch_slab", + "displayName": "Birch Slab", + "stackSize": 64 + }, + { + "id": 267, + "name": "jungle_slab", + "displayName": "Jungle Slab", + "stackSize": 64 + }, + { + "id": 268, + "name": "acacia_slab", + "displayName": "Acacia Slab", + "stackSize": 64 + }, + { + "id": 269, + "name": "cherry_slab", + "displayName": "Cherry Slab", + "stackSize": 64 + }, + { + "id": 270, + "name": "dark_oak_slab", + "displayName": "Dark Oak Slab", + "stackSize": 64 + }, + { + "id": 271, + "name": "pale_oak_slab", + "displayName": "Pale Oak Slab", + "stackSize": 64 + }, + { + "id": 272, + "name": "mangrove_slab", + "displayName": "Mangrove Slab", + "stackSize": 64 + }, + { + "id": 273, + "name": "bamboo_slab", + "displayName": "Bamboo Slab", + "stackSize": 64 + }, + { + "id": 274, + "name": "bamboo_mosaic_slab", + "displayName": "Bamboo Mosaic Slab", + "stackSize": 64 + }, + { + "id": 275, + "name": "crimson_slab", + "displayName": "Crimson Slab", + "stackSize": 64 + }, + { + "id": 276, + "name": "warped_slab", + "displayName": "Warped Slab", + "stackSize": 64 + }, + { + "id": 277, + "name": "stone_slab", + "displayName": "Stone Slab", + "stackSize": 64 + }, + { + "id": 278, + "name": "smooth_stone_slab", + "displayName": "Smooth Stone Slab", + "stackSize": 64 + }, + { + "id": 279, + "name": "sandstone_slab", + "displayName": "Sandstone Slab", + "stackSize": 64 + }, + { + "id": 280, + "name": "cut_sandstone_slab", + "displayName": "Cut Sandstone Slab", + "stackSize": 64 + }, + { + "id": 281, + "name": "petrified_oak_slab", + "displayName": "Petrified Oak Slab", + "stackSize": 64 + }, + { + "id": 282, + "name": "cobblestone_slab", + "displayName": "Cobblestone Slab", + "stackSize": 64 + }, + { + "id": 283, + "name": "brick_slab", + "displayName": "Brick Slab", + "stackSize": 64 + }, + { + "id": 284, + "name": "stone_brick_slab", + "displayName": "Stone Brick Slab", + "stackSize": 64 + }, + { + "id": 285, + "name": "mud_brick_slab", + "displayName": "Mud Brick Slab", + "stackSize": 64 + }, + { + "id": 286, + "name": "nether_brick_slab", + "displayName": "Nether Brick Slab", + "stackSize": 64 + }, + { + "id": 287, + "name": "quartz_slab", + "displayName": "Quartz Slab", + "stackSize": 64 + }, + { + "id": 288, + "name": "red_sandstone_slab", + "displayName": "Red Sandstone Slab", + "stackSize": 64 + }, + { + "id": 289, + "name": "cut_red_sandstone_slab", + "displayName": "Cut Red Sandstone Slab", + "stackSize": 64 + }, + { + "id": 290, + "name": "purpur_slab", + "displayName": "Purpur Slab", + "stackSize": 64 + }, + { + "id": 291, + "name": "prismarine_slab", + "displayName": "Prismarine Slab", + "stackSize": 64 + }, + { + "id": 292, + "name": "prismarine_brick_slab", + "displayName": "Prismarine Brick Slab", + "stackSize": 64 + }, + { + "id": 293, + "name": "dark_prismarine_slab", + "displayName": "Dark Prismarine Slab", + "stackSize": 64 + }, + { + "id": 294, + "name": "smooth_quartz", + "displayName": "Smooth Quartz Block", + "stackSize": 64 + }, + { + "id": 295, + "name": "smooth_red_sandstone", + "displayName": "Smooth Red Sandstone", + "stackSize": 64 + }, + { + "id": 296, + "name": "smooth_sandstone", + "displayName": "Smooth Sandstone", + "stackSize": 64 + }, + { + "id": 297, + "name": "smooth_stone", + "displayName": "Smooth Stone", + "stackSize": 64 + }, + { + "id": 298, + "name": "bricks", + "displayName": "Bricks", + "stackSize": 64 + }, + { + "id": 299, + "name": "bookshelf", + "displayName": "Bookshelf", + "stackSize": 64 + }, + { + "id": 300, + "name": "chiseled_bookshelf", + "displayName": "Chiseled Bookshelf", + "stackSize": 64 + }, + { + "id": 301, + "name": "decorated_pot", + "displayName": "Decorated Pot", + "stackSize": 64 + }, + { + "id": 302, + "name": "mossy_cobblestone", + "displayName": "Mossy Cobblestone", + "stackSize": 64 + }, + { + "id": 303, + "name": "obsidian", + "displayName": "Obsidian", + "stackSize": 64 + }, + { + "id": 304, + "name": "torch", + "displayName": "Torch", + "stackSize": 64 + }, + { + "id": 305, + "name": "end_rod", + "displayName": "End Rod", + "stackSize": 64 + }, + { + "id": 306, + "name": "chorus_plant", + "displayName": "Chorus Plant", + "stackSize": 64 + }, + { + "id": 307, + "name": "chorus_flower", + "displayName": "Chorus Flower", + "stackSize": 64 + }, + { + "id": 308, + "name": "purpur_block", + "displayName": "Purpur Block", + "stackSize": 64 + }, + { + "id": 309, + "name": "purpur_pillar", + "displayName": "Purpur Pillar", + "stackSize": 64 + }, + { + "id": 310, + "name": "purpur_stairs", + "displayName": "Purpur Stairs", + "stackSize": 64 + }, + { + "id": 311, + "name": "spawner", + "displayName": "Monster Spawner", + "stackSize": 64 + }, + { + "id": 312, + "name": "creaking_heart", + "displayName": "Creaking Heart", + "stackSize": 64 + }, + { + "id": 313, + "name": "chest", + "displayName": "Chest", + "stackSize": 64 + }, + { + "id": 314, + "name": "crafting_table", + "displayName": "Crafting Table", + "stackSize": 64 + }, + { + "id": 315, + "name": "farmland", + "displayName": "Farmland", + "stackSize": 64 + }, + { + "id": 316, + "name": "furnace", + "displayName": "Furnace", + "stackSize": 64 + }, + { + "id": 317, + "name": "ladder", + "displayName": "Ladder", + "stackSize": 64 + }, + { + "id": 318, + "name": "cobblestone_stairs", + "displayName": "Cobblestone Stairs", + "stackSize": 64 + }, + { + "id": 319, + "name": "snow", + "displayName": "Snow", + "stackSize": 64 + }, + { + "id": 320, + "name": "ice", + "displayName": "Ice", + "stackSize": 64 + }, + { + "id": 321, + "name": "snow_block", + "displayName": "Snow Block", + "stackSize": 64 + }, + { + "id": 322, + "name": "cactus", + "displayName": "Cactus", + "stackSize": 64 + }, + { + "id": 323, + "name": "clay", + "displayName": "Clay", + "stackSize": 64 + }, + { + "id": 324, + "name": "jukebox", + "displayName": "Jukebox", + "stackSize": 64 + }, + { + "id": 325, + "name": "oak_fence", + "displayName": "Oak Fence", + "stackSize": 64 + }, + { + "id": 326, + "name": "spruce_fence", + "displayName": "Spruce Fence", + "stackSize": 64 + }, + { + "id": 327, + "name": "birch_fence", + "displayName": "Birch Fence", + "stackSize": 64 + }, + { + "id": 328, + "name": "jungle_fence", + "displayName": "Jungle Fence", + "stackSize": 64 + }, + { + "id": 329, + "name": "acacia_fence", + "displayName": "Acacia Fence", + "stackSize": 64 + }, + { + "id": 330, + "name": "cherry_fence", + "displayName": "Cherry Fence", + "stackSize": 64 + }, + { + "id": 331, + "name": "dark_oak_fence", + "displayName": "Dark Oak Fence", + "stackSize": 64 + }, + { + "id": 332, + "name": "pale_oak_fence", + "displayName": "Pale Oak Fence", + "stackSize": 64 + }, + { + "id": 333, + "name": "mangrove_fence", + "displayName": "Mangrove Fence", + "stackSize": 64 + }, + { + "id": 334, + "name": "bamboo_fence", + "displayName": "Bamboo Fence", + "stackSize": 64 + }, + { + "id": 335, + "name": "crimson_fence", + "displayName": "Crimson Fence", + "stackSize": 64 + }, + { + "id": 336, + "name": "warped_fence", + "displayName": "Warped Fence", + "stackSize": 64 + }, + { + "id": 337, + "name": "pumpkin", + "displayName": "Pumpkin", + "stackSize": 64 + }, + { + "id": 338, + "name": "carved_pumpkin", + "displayName": "Carved Pumpkin", + "stackSize": 64, + "enchantCategories": [ + "equippable", + "vanishing" + ] + }, + { + "id": 339, + "name": "jack_o_lantern", + "displayName": "Jack o'Lantern", + "stackSize": 64 + }, + { + "id": 340, + "name": "netherrack", + "displayName": "Netherrack", + "stackSize": 64 + }, + { + "id": 341, + "name": "soul_sand", + "displayName": "Soul Sand", + "stackSize": 64 + }, + { + "id": 342, + "name": "soul_soil", + "displayName": "Soul Soil", + "stackSize": 64 + }, + { + "id": 343, + "name": "basalt", + "displayName": "Basalt", + "stackSize": 64 + }, + { + "id": 344, + "name": "polished_basalt", + "displayName": "Polished Basalt", + "stackSize": 64 + }, + { + "id": 345, + "name": "smooth_basalt", + "displayName": "Smooth Basalt", + "stackSize": 64 + }, + { + "id": 346, + "name": "soul_torch", + "displayName": "Soul Torch", + "stackSize": 64 + }, + { + "id": 347, + "name": "glowstone", + "displayName": "Glowstone", + "stackSize": 64 + }, + { + "id": 348, + "name": "infested_stone", + "displayName": "Infested Stone", + "stackSize": 64 + }, + { + "id": 349, + "name": "infested_cobblestone", + "displayName": "Infested Cobblestone", + "stackSize": 64 + }, + { + "id": 350, + "name": "infested_stone_bricks", + "displayName": "Infested Stone Bricks", + "stackSize": 64 + }, + { + "id": 351, + "name": "infested_mossy_stone_bricks", + "displayName": "Infested Mossy Stone Bricks", + "stackSize": 64 + }, + { + "id": 352, + "name": "infested_cracked_stone_bricks", + "displayName": "Infested Cracked Stone Bricks", + "stackSize": 64 + }, + { + "id": 353, + "name": "infested_chiseled_stone_bricks", + "displayName": "Infested Chiseled Stone Bricks", + "stackSize": 64 + }, + { + "id": 354, + "name": "infested_deepslate", + "displayName": "Infested Deepslate", + "stackSize": 64 + }, + { + "id": 355, + "name": "stone_bricks", + "displayName": "Stone Bricks", + "stackSize": 64 + }, + { + "id": 356, + "name": "mossy_stone_bricks", + "displayName": "Mossy Stone Bricks", + "stackSize": 64 + }, + { + "id": 357, + "name": "cracked_stone_bricks", + "displayName": "Cracked Stone Bricks", + "stackSize": 64 + }, + { + "id": 358, + "name": "chiseled_stone_bricks", + "displayName": "Chiseled Stone Bricks", + "stackSize": 64 + }, + { + "id": 359, + "name": "packed_mud", + "displayName": "Packed Mud", + "stackSize": 64 + }, + { + "id": 360, + "name": "mud_bricks", + "displayName": "Mud Bricks", + "stackSize": 64 + }, + { + "id": 361, + "name": "deepslate_bricks", + "displayName": "Deepslate Bricks", + "stackSize": 64 + }, + { + "id": 362, + "name": "cracked_deepslate_bricks", + "displayName": "Cracked Deepslate Bricks", + "stackSize": 64 + }, + { + "id": 363, + "name": "deepslate_tiles", + "displayName": "Deepslate Tiles", + "stackSize": 64 + }, + { + "id": 364, + "name": "cracked_deepslate_tiles", + "displayName": "Cracked Deepslate Tiles", + "stackSize": 64 + }, + { + "id": 365, + "name": "chiseled_deepslate", + "displayName": "Chiseled Deepslate", + "stackSize": 64 + }, + { + "id": 366, + "name": "reinforced_deepslate", + "displayName": "Reinforced Deepslate", + "stackSize": 64 + }, + { + "id": 367, + "name": "brown_mushroom_block", + "displayName": "Brown Mushroom Block", + "stackSize": 64 + }, + { + "id": 368, + "name": "red_mushroom_block", + "displayName": "Red Mushroom Block", + "stackSize": 64 + }, + { + "id": 369, + "name": "mushroom_stem", + "displayName": "Mushroom Stem", + "stackSize": 64 + }, + { + "id": 370, + "name": "iron_bars", + "displayName": "Iron Bars", + "stackSize": 64 + }, + { + "id": 371, + "name": "chain", + "displayName": "Chain", + "stackSize": 64 + }, + { + "id": 372, + "name": "glass_pane", + "displayName": "Glass Pane", + "stackSize": 64 + }, + { + "id": 373, + "name": "melon", + "displayName": "Melon", + "stackSize": 64 + }, + { + "id": 374, + "name": "vine", + "displayName": "Vines", + "stackSize": 64 + }, + { + "id": 375, + "name": "glow_lichen", + "displayName": "Glow Lichen", + "stackSize": 64 + }, + { + "id": 376, + "name": "resin_clump", + "displayName": "Resin Clump", + "stackSize": 64 + }, + { + "id": 377, + "name": "resin_block", + "displayName": "Block of Resin", + "stackSize": 64 + }, + { + "id": 378, + "name": "resin_bricks", + "displayName": "Resin Bricks", + "stackSize": 64 + }, + { + "id": 379, + "name": "resin_brick_stairs", + "displayName": "Resin Brick Stairs", + "stackSize": 64 + }, + { + "id": 380, + "name": "resin_brick_slab", + "displayName": "Resin Brick Slab", + "stackSize": 64 + }, + { + "id": 381, + "name": "resin_brick_wall", + "displayName": "Resin Brick Wall", + "stackSize": 64 + }, + { + "id": 382, + "name": "chiseled_resin_bricks", + "displayName": "Chiseled Resin Bricks", + "stackSize": 64 + }, + { + "id": 383, + "name": "brick_stairs", + "displayName": "Brick Stairs", + "stackSize": 64 + }, + { + "id": 384, + "name": "stone_brick_stairs", + "displayName": "Stone Brick Stairs", + "stackSize": 64 + }, + { + "id": 385, + "name": "mud_brick_stairs", + "displayName": "Mud Brick Stairs", + "stackSize": 64 + }, + { + "id": 386, + "name": "mycelium", + "displayName": "Mycelium", + "stackSize": 64 + }, + { + "id": 387, + "name": "lily_pad", + "displayName": "Lily Pad", + "stackSize": 64 + }, + { + "id": 388, + "name": "nether_bricks", + "displayName": "Nether Bricks", + "stackSize": 64 + }, + { + "id": 389, + "name": "cracked_nether_bricks", + "displayName": "Cracked Nether Bricks", + "stackSize": 64 + }, + { + "id": 390, + "name": "chiseled_nether_bricks", + "displayName": "Chiseled Nether Bricks", + "stackSize": 64 + }, + { + "id": 391, + "name": "nether_brick_fence", + "displayName": "Nether Brick Fence", + "stackSize": 64 + }, + { + "id": 392, + "name": "nether_brick_stairs", + "displayName": "Nether Brick Stairs", + "stackSize": 64 + }, + { + "id": 393, + "name": "sculk", + "displayName": "Sculk", + "stackSize": 64 + }, + { + "id": 394, + "name": "sculk_vein", + "displayName": "Sculk Vein", + "stackSize": 64 + }, + { + "id": 395, + "name": "sculk_catalyst", + "displayName": "Sculk Catalyst", + "stackSize": 64 + }, + { + "id": 396, + "name": "sculk_shrieker", + "displayName": "Sculk Shrieker", + "stackSize": 64 + }, + { + "id": 397, + "name": "enchanting_table", + "displayName": "Enchanting Table", + "stackSize": 64 + }, + { + "id": 398, + "name": "end_portal_frame", + "displayName": "End Portal Frame", + "stackSize": 64 + }, + { + "id": 399, + "name": "end_stone", + "displayName": "End Stone", + "stackSize": 64 + }, + { + "id": 400, + "name": "end_stone_bricks", + "displayName": "End Stone Bricks", + "stackSize": 64 + }, + { + "id": 401, + "name": "dragon_egg", + "displayName": "Dragon Egg", + "stackSize": 64 + }, + { + "id": 402, + "name": "sandstone_stairs", + "displayName": "Sandstone Stairs", + "stackSize": 64 + }, + { + "id": 403, + "name": "ender_chest", + "displayName": "Ender Chest", + "stackSize": 64 + }, + { + "id": 404, + "name": "emerald_block", + "displayName": "Block of Emerald", + "stackSize": 64 + }, + { + "id": 405, + "name": "oak_stairs", + "displayName": "Oak Stairs", + "stackSize": 64 + }, + { + "id": 406, + "name": "spruce_stairs", + "displayName": "Spruce Stairs", + "stackSize": 64 + }, + { + "id": 407, + "name": "birch_stairs", + "displayName": "Birch Stairs", + "stackSize": 64 + }, + { + "id": 408, + "name": "jungle_stairs", + "displayName": "Jungle Stairs", + "stackSize": 64 + }, + { + "id": 409, + "name": "acacia_stairs", + "displayName": "Acacia Stairs", + "stackSize": 64 + }, + { + "id": 410, + "name": "cherry_stairs", + "displayName": "Cherry Stairs", + "stackSize": 64 + }, + { + "id": 411, + "name": "dark_oak_stairs", + "displayName": "Dark Oak Stairs", + "stackSize": 64 + }, + { + "id": 412, + "name": "pale_oak_stairs", + "displayName": "Pale Oak Stairs", + "stackSize": 64 + }, + { + "id": 413, + "name": "mangrove_stairs", + "displayName": "Mangrove Stairs", + "stackSize": 64 + }, + { + "id": 414, + "name": "bamboo_stairs", + "displayName": "Bamboo Stairs", + "stackSize": 64 + }, + { + "id": 415, + "name": "bamboo_mosaic_stairs", + "displayName": "Bamboo Mosaic Stairs", + "stackSize": 64 + }, + { + "id": 416, + "name": "crimson_stairs", + "displayName": "Crimson Stairs", + "stackSize": 64 + }, + { + "id": 417, + "name": "warped_stairs", + "displayName": "Warped Stairs", + "stackSize": 64 + }, + { + "id": 418, + "name": "command_block", + "displayName": "Command Block", + "stackSize": 64 + }, + { + "id": 419, + "name": "beacon", + "displayName": "Beacon", + "stackSize": 64 + }, + { + "id": 420, + "name": "cobblestone_wall", + "displayName": "Cobblestone Wall", + "stackSize": 64 + }, + { + "id": 421, + "name": "mossy_cobblestone_wall", + "displayName": "Mossy Cobblestone Wall", + "stackSize": 64 + }, + { + "id": 422, + "name": "brick_wall", + "displayName": "Brick Wall", + "stackSize": 64 + }, + { + "id": 423, + "name": "prismarine_wall", + "displayName": "Prismarine Wall", + "stackSize": 64 + }, + { + "id": 424, + "name": "red_sandstone_wall", + "displayName": "Red Sandstone Wall", + "stackSize": 64 + }, + { + "id": 425, + "name": "mossy_stone_brick_wall", + "displayName": "Mossy Stone Brick Wall", + "stackSize": 64 + }, + { + "id": 426, + "name": "granite_wall", + "displayName": "Granite Wall", + "stackSize": 64 + }, + { + "id": 427, + "name": "stone_brick_wall", + "displayName": "Stone Brick Wall", + "stackSize": 64 + }, + { + "id": 428, + "name": "mud_brick_wall", + "displayName": "Mud Brick Wall", + "stackSize": 64 + }, + { + "id": 429, + "name": "nether_brick_wall", + "displayName": "Nether Brick Wall", + "stackSize": 64 + }, + { + "id": 430, + "name": "andesite_wall", + "displayName": "Andesite Wall", + "stackSize": 64 + }, + { + "id": 431, + "name": "red_nether_brick_wall", + "displayName": "Red Nether Brick Wall", + "stackSize": 64 + }, + { + "id": 432, + "name": "sandstone_wall", + "displayName": "Sandstone Wall", + "stackSize": 64 + }, + { + "id": 433, + "name": "end_stone_brick_wall", + "displayName": "End Stone Brick Wall", + "stackSize": 64 + }, + { + "id": 434, + "name": "diorite_wall", + "displayName": "Diorite Wall", + "stackSize": 64 + }, + { + "id": 435, + "name": "blackstone_wall", + "displayName": "Blackstone Wall", + "stackSize": 64 + }, + { + "id": 436, + "name": "polished_blackstone_wall", + "displayName": "Polished Blackstone Wall", + "stackSize": 64 + }, + { + "id": 437, + "name": "polished_blackstone_brick_wall", + "displayName": "Polished Blackstone Brick Wall", + "stackSize": 64 + }, + { + "id": 438, + "name": "cobbled_deepslate_wall", + "displayName": "Cobbled Deepslate Wall", + "stackSize": 64 + }, + { + "id": 439, + "name": "polished_deepslate_wall", + "displayName": "Polished Deepslate Wall", + "stackSize": 64 + }, + { + "id": 440, + "name": "deepslate_brick_wall", + "displayName": "Deepslate Brick Wall", + "stackSize": 64 + }, + { + "id": 441, + "name": "deepslate_tile_wall", + "displayName": "Deepslate Tile Wall", + "stackSize": 64 + }, + { + "id": 442, + "name": "anvil", + "displayName": "Anvil", + "stackSize": 64 + }, + { + "id": 443, + "name": "chipped_anvil", + "displayName": "Chipped Anvil", + "stackSize": 64 + }, + { + "id": 444, + "name": "damaged_anvil", + "displayName": "Damaged Anvil", + "stackSize": 64 + }, + { + "id": 445, + "name": "chiseled_quartz_block", + "displayName": "Chiseled Quartz Block", + "stackSize": 64 + }, + { + "id": 446, + "name": "quartz_block", + "displayName": "Block of Quartz", + "stackSize": 64 + }, + { + "id": 447, + "name": "quartz_bricks", + "displayName": "Quartz Bricks", + "stackSize": 64 + }, + { + "id": 448, + "name": "quartz_pillar", + "displayName": "Quartz Pillar", + "stackSize": 64 + }, + { + "id": 449, + "name": "quartz_stairs", + "displayName": "Quartz Stairs", + "stackSize": 64 + }, + { + "id": 450, + "name": "white_terracotta", + "displayName": "White Terracotta", + "stackSize": 64 + }, + { + "id": 451, + "name": "orange_terracotta", + "displayName": "Orange Terracotta", + "stackSize": 64 + }, + { + "id": 452, + "name": "magenta_terracotta", + "displayName": "Magenta Terracotta", + "stackSize": 64 + }, + { + "id": 453, + "name": "light_blue_terracotta", + "displayName": "Light Blue Terracotta", + "stackSize": 64 + }, + { + "id": 454, + "name": "yellow_terracotta", + "displayName": "Yellow Terracotta", + "stackSize": 64 + }, + { + "id": 455, + "name": "lime_terracotta", + "displayName": "Lime Terracotta", + "stackSize": 64 + }, + { + "id": 456, + "name": "pink_terracotta", + "displayName": "Pink Terracotta", + "stackSize": 64 + }, + { + "id": 457, + "name": "gray_terracotta", + "displayName": "Gray Terracotta", + "stackSize": 64 + }, + { + "id": 458, + "name": "light_gray_terracotta", + "displayName": "Light Gray Terracotta", + "stackSize": 64 + }, + { + "id": 459, + "name": "cyan_terracotta", + "displayName": "Cyan Terracotta", + "stackSize": 64 + }, + { + "id": 460, + "name": "purple_terracotta", + "displayName": "Purple Terracotta", + "stackSize": 64 + }, + { + "id": 461, + "name": "blue_terracotta", + "displayName": "Blue Terracotta", + "stackSize": 64 + }, + { + "id": 462, + "name": "brown_terracotta", + "displayName": "Brown Terracotta", + "stackSize": 64 + }, + { + "id": 463, + "name": "green_terracotta", + "displayName": "Green Terracotta", + "stackSize": 64 + }, + { + "id": 464, + "name": "red_terracotta", + "displayName": "Red Terracotta", + "stackSize": 64 + }, + { + "id": 465, + "name": "black_terracotta", + "displayName": "Black Terracotta", + "stackSize": 64 + }, + { + "id": 466, + "name": "barrier", + "displayName": "Barrier", + "stackSize": 64 + }, + { + "id": 467, + "name": "light", + "displayName": "Light", + "stackSize": 64 + }, + { + "id": 468, + "name": "hay_block", + "displayName": "Hay Bale", + "stackSize": 64 + }, + { + "id": 469, + "name": "white_carpet", + "displayName": "White Carpet", + "stackSize": 64 + }, + { + "id": 470, + "name": "orange_carpet", + "displayName": "Orange Carpet", + "stackSize": 64 + }, + { + "id": 471, + "name": "magenta_carpet", + "displayName": "Magenta Carpet", + "stackSize": 64 + }, + { + "id": 472, + "name": "light_blue_carpet", + "displayName": "Light Blue Carpet", + "stackSize": 64 + }, + { + "id": 473, + "name": "yellow_carpet", + "displayName": "Yellow Carpet", + "stackSize": 64 + }, + { + "id": 474, + "name": "lime_carpet", + "displayName": "Lime Carpet", + "stackSize": 64 + }, + { + "id": 475, + "name": "pink_carpet", + "displayName": "Pink Carpet", + "stackSize": 64 + }, + { + "id": 476, + "name": "gray_carpet", + "displayName": "Gray Carpet", + "stackSize": 64 + }, + { + "id": 477, + "name": "light_gray_carpet", + "displayName": "Light Gray Carpet", + "stackSize": 64 + }, + { + "id": 478, + "name": "cyan_carpet", + "displayName": "Cyan Carpet", + "stackSize": 64 + }, + { + "id": 479, + "name": "purple_carpet", + "displayName": "Purple Carpet", + "stackSize": 64 + }, + { + "id": 480, + "name": "blue_carpet", + "displayName": "Blue Carpet", + "stackSize": 64 + }, + { + "id": 481, + "name": "brown_carpet", + "displayName": "Brown Carpet", + "stackSize": 64 + }, + { + "id": 482, + "name": "green_carpet", + "displayName": "Green Carpet", + "stackSize": 64 + }, + { + "id": 483, + "name": "red_carpet", + "displayName": "Red Carpet", + "stackSize": 64 + }, + { + "id": 484, + "name": "black_carpet", + "displayName": "Black Carpet", + "stackSize": 64 + }, + { + "id": 485, + "name": "terracotta", + "displayName": "Terracotta", + "stackSize": 64 + }, + { + "id": 486, + "name": "packed_ice", + "displayName": "Packed Ice", + "stackSize": 64 + }, + { + "id": 487, + "name": "dirt_path", + "displayName": "Dirt Path", + "stackSize": 64 + }, + { + "id": 488, + "name": "sunflower", + "displayName": "Sunflower", + "stackSize": 64 + }, + { + "id": 489, + "name": "lilac", + "displayName": "Lilac", + "stackSize": 64 + }, + { + "id": 490, + "name": "rose_bush", + "displayName": "Rose Bush", + "stackSize": 64 + }, + { + "id": 491, + "name": "peony", + "displayName": "Peony", + "stackSize": 64 + }, + { + "id": 492, + "name": "tall_grass", + "displayName": "Tall Grass", + "stackSize": 64 + }, + { + "id": 493, + "name": "large_fern", + "displayName": "Large Fern", + "stackSize": 64 + }, + { + "id": 494, + "name": "white_stained_glass", + "displayName": "White Stained Glass", + "stackSize": 64 + }, + { + "id": 495, + "name": "orange_stained_glass", + "displayName": "Orange Stained Glass", + "stackSize": 64 + }, + { + "id": 496, + "name": "magenta_stained_glass", + "displayName": "Magenta Stained Glass", + "stackSize": 64 + }, + { + "id": 497, + "name": "light_blue_stained_glass", + "displayName": "Light Blue Stained Glass", + "stackSize": 64 + }, + { + "id": 498, + "name": "yellow_stained_glass", + "displayName": "Yellow Stained Glass", + "stackSize": 64 + }, + { + "id": 499, + "name": "lime_stained_glass", + "displayName": "Lime Stained Glass", + "stackSize": 64 + }, + { + "id": 500, + "name": "pink_stained_glass", + "displayName": "Pink Stained Glass", + "stackSize": 64 + }, + { + "id": 501, + "name": "gray_stained_glass", + "displayName": "Gray Stained Glass", + "stackSize": 64 + }, + { + "id": 502, + "name": "light_gray_stained_glass", + "displayName": "Light Gray Stained Glass", + "stackSize": 64 + }, + { + "id": 503, + "name": "cyan_stained_glass", + "displayName": "Cyan Stained Glass", + "stackSize": 64 + }, + { + "id": 504, + "name": "purple_stained_glass", + "displayName": "Purple Stained Glass", + "stackSize": 64 + }, + { + "id": 505, + "name": "blue_stained_glass", + "displayName": "Blue Stained Glass", + "stackSize": 64 + }, + { + "id": 506, + "name": "brown_stained_glass", + "displayName": "Brown Stained Glass", + "stackSize": 64 + }, + { + "id": 507, + "name": "green_stained_glass", + "displayName": "Green Stained Glass", + "stackSize": 64 + }, + { + "id": 508, + "name": "red_stained_glass", + "displayName": "Red Stained Glass", + "stackSize": 64 + }, + { + "id": 509, + "name": "black_stained_glass", + "displayName": "Black Stained Glass", + "stackSize": 64 + }, + { + "id": 510, + "name": "white_stained_glass_pane", + "displayName": "White Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 511, + "name": "orange_stained_glass_pane", + "displayName": "Orange Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 512, + "name": "magenta_stained_glass_pane", + "displayName": "Magenta Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 513, + "name": "light_blue_stained_glass_pane", + "displayName": "Light Blue Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 514, + "name": "yellow_stained_glass_pane", + "displayName": "Yellow Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 515, + "name": "lime_stained_glass_pane", + "displayName": "Lime Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 516, + "name": "pink_stained_glass_pane", + "displayName": "Pink Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 517, + "name": "gray_stained_glass_pane", + "displayName": "Gray Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 518, + "name": "light_gray_stained_glass_pane", + "displayName": "Light Gray Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 519, + "name": "cyan_stained_glass_pane", + "displayName": "Cyan Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 520, + "name": "purple_stained_glass_pane", + "displayName": "Purple Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 521, + "name": "blue_stained_glass_pane", + "displayName": "Blue Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 522, + "name": "brown_stained_glass_pane", + "displayName": "Brown Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 523, + "name": "green_stained_glass_pane", + "displayName": "Green Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 524, + "name": "red_stained_glass_pane", + "displayName": "Red Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 525, + "name": "black_stained_glass_pane", + "displayName": "Black Stained Glass Pane", + "stackSize": 64 + }, + { + "id": 526, + "name": "prismarine", + "displayName": "Prismarine", + "stackSize": 64 + }, + { + "id": 527, + "name": "prismarine_bricks", + "displayName": "Prismarine Bricks", + "stackSize": 64 + }, + { + "id": 528, + "name": "dark_prismarine", + "displayName": "Dark Prismarine", + "stackSize": 64 + }, + { + "id": 529, + "name": "prismarine_stairs", + "displayName": "Prismarine Stairs", + "stackSize": 64 + }, + { + "id": 530, + "name": "prismarine_brick_stairs", + "displayName": "Prismarine Brick Stairs", + "stackSize": 64 + }, + { + "id": 531, + "name": "dark_prismarine_stairs", + "displayName": "Dark Prismarine Stairs", + "stackSize": 64 + }, + { + "id": 532, + "name": "sea_lantern", + "displayName": "Sea Lantern", + "stackSize": 64 + }, + { + "id": 533, + "name": "red_sandstone", + "displayName": "Red Sandstone", + "stackSize": 64 + }, + { + "id": 534, + "name": "chiseled_red_sandstone", + "displayName": "Chiseled Red Sandstone", + "stackSize": 64 + }, + { + "id": 535, + "name": "cut_red_sandstone", + "displayName": "Cut Red Sandstone", + "stackSize": 64 + }, + { + "id": 536, + "name": "red_sandstone_stairs", + "displayName": "Red Sandstone Stairs", + "stackSize": 64 + }, + { + "id": 537, + "name": "repeating_command_block", + "displayName": "Repeating Command Block", + "stackSize": 64 + }, + { + "id": 538, + "name": "chain_command_block", + "displayName": "Chain Command Block", + "stackSize": 64 + }, + { + "id": 539, + "name": "magma_block", + "displayName": "Magma Block", + "stackSize": 64 + }, + { + "id": 540, + "name": "nether_wart_block", + "displayName": "Nether Wart Block", + "stackSize": 64 + }, + { + "id": 541, + "name": "warped_wart_block", + "displayName": "Warped Wart Block", + "stackSize": 64 + }, + { + "id": 542, + "name": "red_nether_bricks", + "displayName": "Red Nether Bricks", + "stackSize": 64 + }, + { + "id": 543, + "name": "bone_block", + "displayName": "Bone Block", + "stackSize": 64 + }, + { + "id": 544, + "name": "structure_void", + "displayName": "Structure Void", + "stackSize": 64 + }, + { + "id": 545, + "name": "shulker_box", + "displayName": "Shulker Box", + "stackSize": 1 + }, + { + "id": 546, + "name": "white_shulker_box", + "displayName": "White Shulker Box", + "stackSize": 1 + }, + { + "id": 547, + "name": "orange_shulker_box", + "displayName": "Orange Shulker Box", + "stackSize": 1 + }, + { + "id": 548, + "name": "magenta_shulker_box", + "displayName": "Magenta Shulker Box", + "stackSize": 1 + }, + { + "id": 549, + "name": "light_blue_shulker_box", + "displayName": "Light Blue Shulker Box", + "stackSize": 1 + }, + { + "id": 550, + "name": "yellow_shulker_box", + "displayName": "Yellow Shulker Box", + "stackSize": 1 + }, + { + "id": 551, + "name": "lime_shulker_box", + "displayName": "Lime Shulker Box", + "stackSize": 1 + }, + { + "id": 552, + "name": "pink_shulker_box", + "displayName": "Pink Shulker Box", + "stackSize": 1 + }, + { + "id": 553, + "name": "gray_shulker_box", + "displayName": "Gray Shulker Box", + "stackSize": 1 + }, + { + "id": 554, + "name": "light_gray_shulker_box", + "displayName": "Light Gray Shulker Box", + "stackSize": 1 + }, + { + "id": 555, + "name": "cyan_shulker_box", + "displayName": "Cyan Shulker Box", + "stackSize": 1 + }, + { + "id": 556, + "name": "purple_shulker_box", + "displayName": "Purple Shulker Box", + "stackSize": 1 + }, + { + "id": 557, + "name": "blue_shulker_box", + "displayName": "Blue Shulker Box", + "stackSize": 1 + }, + { + "id": 558, + "name": "brown_shulker_box", + "displayName": "Brown Shulker Box", + "stackSize": 1 + }, + { + "id": 559, + "name": "green_shulker_box", + "displayName": "Green Shulker Box", + "stackSize": 1 + }, + { + "id": 560, + "name": "red_shulker_box", + "displayName": "Red Shulker Box", + "stackSize": 1 + }, + { + "id": 561, + "name": "black_shulker_box", + "displayName": "Black Shulker Box", + "stackSize": 1 + }, + { + "id": 562, + "name": "white_glazed_terracotta", + "displayName": "White Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 563, + "name": "orange_glazed_terracotta", + "displayName": "Orange Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 564, + "name": "magenta_glazed_terracotta", + "displayName": "Magenta Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 565, + "name": "light_blue_glazed_terracotta", + "displayName": "Light Blue Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 566, + "name": "yellow_glazed_terracotta", + "displayName": "Yellow Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 567, + "name": "lime_glazed_terracotta", + "displayName": "Lime Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 568, + "name": "pink_glazed_terracotta", + "displayName": "Pink Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 569, + "name": "gray_glazed_terracotta", + "displayName": "Gray Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 570, + "name": "light_gray_glazed_terracotta", + "displayName": "Light Gray Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 571, + "name": "cyan_glazed_terracotta", + "displayName": "Cyan Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 572, + "name": "purple_glazed_terracotta", + "displayName": "Purple Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 573, + "name": "blue_glazed_terracotta", + "displayName": "Blue Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 574, + "name": "brown_glazed_terracotta", + "displayName": "Brown Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 575, + "name": "green_glazed_terracotta", + "displayName": "Green Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 576, + "name": "red_glazed_terracotta", + "displayName": "Red Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 577, + "name": "black_glazed_terracotta", + "displayName": "Black Glazed Terracotta", + "stackSize": 64 + }, + { + "id": 578, + "name": "white_concrete", + "displayName": "White Concrete", + "stackSize": 64 + }, + { + "id": 579, + "name": "orange_concrete", + "displayName": "Orange Concrete", + "stackSize": 64 + }, + { + "id": 580, + "name": "magenta_concrete", + "displayName": "Magenta Concrete", + "stackSize": 64 + }, + { + "id": 581, + "name": "light_blue_concrete", + "displayName": "Light Blue Concrete", + "stackSize": 64 + }, + { + "id": 582, + "name": "yellow_concrete", + "displayName": "Yellow Concrete", + "stackSize": 64 + }, + { + "id": 583, + "name": "lime_concrete", + "displayName": "Lime Concrete", + "stackSize": 64 + }, + { + "id": 584, + "name": "pink_concrete", + "displayName": "Pink Concrete", + "stackSize": 64 + }, + { + "id": 585, + "name": "gray_concrete", + "displayName": "Gray Concrete", + "stackSize": 64 + }, + { + "id": 586, + "name": "light_gray_concrete", + "displayName": "Light Gray Concrete", + "stackSize": 64 + }, + { + "id": 587, + "name": "cyan_concrete", + "displayName": "Cyan Concrete", + "stackSize": 64 + }, + { + "id": 588, + "name": "purple_concrete", + "displayName": "Purple Concrete", + "stackSize": 64 + }, + { + "id": 589, + "name": "blue_concrete", + "displayName": "Blue Concrete", + "stackSize": 64 + }, + { + "id": 590, + "name": "brown_concrete", + "displayName": "Brown Concrete", + "stackSize": 64 + }, + { + "id": 591, + "name": "green_concrete", + "displayName": "Green Concrete", + "stackSize": 64 + }, + { + "id": 592, + "name": "red_concrete", + "displayName": "Red Concrete", + "stackSize": 64 + }, + { + "id": 593, + "name": "black_concrete", + "displayName": "Black Concrete", + "stackSize": 64 + }, + { + "id": 594, + "name": "white_concrete_powder", + "displayName": "White Concrete Powder", + "stackSize": 64 + }, + { + "id": 595, + "name": "orange_concrete_powder", + "displayName": "Orange Concrete Powder", + "stackSize": 64 + }, + { + "id": 596, + "name": "magenta_concrete_powder", + "displayName": "Magenta Concrete Powder", + "stackSize": 64 + }, + { + "id": 597, + "name": "light_blue_concrete_powder", + "displayName": "Light Blue Concrete Powder", + "stackSize": 64 + }, + { + "id": 598, + "name": "yellow_concrete_powder", + "displayName": "Yellow Concrete Powder", + "stackSize": 64 + }, + { + "id": 599, + "name": "lime_concrete_powder", + "displayName": "Lime Concrete Powder", + "stackSize": 64 + }, + { + "id": 600, + "name": "pink_concrete_powder", + "displayName": "Pink Concrete Powder", + "stackSize": 64 + }, + { + "id": 601, + "name": "gray_concrete_powder", + "displayName": "Gray Concrete Powder", + "stackSize": 64 + }, + { + "id": 602, + "name": "light_gray_concrete_powder", + "displayName": "Light Gray Concrete Powder", + "stackSize": 64 + }, + { + "id": 603, + "name": "cyan_concrete_powder", + "displayName": "Cyan Concrete Powder", + "stackSize": 64 + }, + { + "id": 604, + "name": "purple_concrete_powder", + "displayName": "Purple Concrete Powder", + "stackSize": 64 + }, + { + "id": 605, + "name": "blue_concrete_powder", + "displayName": "Blue Concrete Powder", + "stackSize": 64 + }, + { + "id": 606, + "name": "brown_concrete_powder", + "displayName": "Brown Concrete Powder", + "stackSize": 64 + }, + { + "id": 607, + "name": "green_concrete_powder", + "displayName": "Green Concrete Powder", + "stackSize": 64 + }, + { + "id": 608, + "name": "red_concrete_powder", + "displayName": "Red Concrete Powder", + "stackSize": 64 + }, + { + "id": 609, + "name": "black_concrete_powder", + "displayName": "Black Concrete Powder", + "stackSize": 64 + }, + { + "id": 610, + "name": "turtle_egg", + "displayName": "Turtle Egg", + "stackSize": 64 + }, + { + "id": 611, + "name": "sniffer_egg", + "displayName": "Sniffer Egg", + "stackSize": 64 + }, + { + "id": 612, + "name": "dead_tube_coral_block", + "displayName": "Dead Tube Coral Block", + "stackSize": 64 + }, + { + "id": 613, + "name": "dead_brain_coral_block", + "displayName": "Dead Brain Coral Block", + "stackSize": 64 + }, + { + "id": 614, + "name": "dead_bubble_coral_block", + "displayName": "Dead Bubble Coral Block", + "stackSize": 64 + }, + { + "id": 615, + "name": "dead_fire_coral_block", + "displayName": "Dead Fire Coral Block", + "stackSize": 64 + }, + { + "id": 616, + "name": "dead_horn_coral_block", + "displayName": "Dead Horn Coral Block", + "stackSize": 64 + }, + { + "id": 617, + "name": "tube_coral_block", + "displayName": "Tube Coral Block", + "stackSize": 64 + }, + { + "id": 618, + "name": "brain_coral_block", + "displayName": "Brain Coral Block", + "stackSize": 64 + }, + { + "id": 619, + "name": "bubble_coral_block", + "displayName": "Bubble Coral Block", + "stackSize": 64 + }, + { + "id": 620, + "name": "fire_coral_block", + "displayName": "Fire Coral Block", + "stackSize": 64 + }, + { + "id": 621, + "name": "horn_coral_block", + "displayName": "Horn Coral Block", + "stackSize": 64 + }, + { + "id": 622, + "name": "tube_coral", + "displayName": "Tube Coral", + "stackSize": 64 + }, + { + "id": 623, + "name": "brain_coral", + "displayName": "Brain Coral", + "stackSize": 64 + }, + { + "id": 624, + "name": "bubble_coral", + "displayName": "Bubble Coral", + "stackSize": 64 + }, + { + "id": 625, + "name": "fire_coral", + "displayName": "Fire Coral", + "stackSize": 64 + }, + { + "id": 626, + "name": "horn_coral", + "displayName": "Horn Coral", + "stackSize": 64 + }, + { + "id": 627, + "name": "dead_brain_coral", + "displayName": "Dead Brain Coral", + "stackSize": 64 + }, + { + "id": 628, + "name": "dead_bubble_coral", + "displayName": "Dead Bubble Coral", + "stackSize": 64 + }, + { + "id": 629, + "name": "dead_fire_coral", + "displayName": "Dead Fire Coral", + "stackSize": 64 + }, + { + "id": 630, + "name": "dead_horn_coral", + "displayName": "Dead Horn Coral", + "stackSize": 64 + }, + { + "id": 631, + "name": "dead_tube_coral", + "displayName": "Dead Tube Coral", + "stackSize": 64 + }, + { + "id": 632, + "name": "tube_coral_fan", + "displayName": "Tube Coral Fan", + "stackSize": 64 + }, + { + "id": 633, + "name": "brain_coral_fan", + "displayName": "Brain Coral Fan", + "stackSize": 64 + }, + { + "id": 634, + "name": "bubble_coral_fan", + "displayName": "Bubble Coral Fan", + "stackSize": 64 + }, + { + "id": 635, + "name": "fire_coral_fan", + "displayName": "Fire Coral Fan", + "stackSize": 64 + }, + { + "id": 636, + "name": "horn_coral_fan", + "displayName": "Horn Coral Fan", + "stackSize": 64 + }, + { + "id": 637, + "name": "dead_tube_coral_fan", + "displayName": "Dead Tube Coral Fan", + "stackSize": 64 + }, + { + "id": 638, + "name": "dead_brain_coral_fan", + "displayName": "Dead Brain Coral Fan", + "stackSize": 64 + }, + { + "id": 639, + "name": "dead_bubble_coral_fan", + "displayName": "Dead Bubble Coral Fan", + "stackSize": 64 + }, + { + "id": 640, + "name": "dead_fire_coral_fan", + "displayName": "Dead Fire Coral Fan", + "stackSize": 64 + }, + { + "id": 641, + "name": "dead_horn_coral_fan", + "displayName": "Dead Horn Coral Fan", + "stackSize": 64 + }, + { + "id": 642, + "name": "blue_ice", + "displayName": "Blue Ice", + "stackSize": 64 + }, + { + "id": 643, + "name": "conduit", + "displayName": "Conduit", + "stackSize": 64 + }, + { + "id": 644, + "name": "polished_granite_stairs", + "displayName": "Polished Granite Stairs", + "stackSize": 64 + }, + { + "id": 645, + "name": "smooth_red_sandstone_stairs", + "displayName": "Smooth Red Sandstone Stairs", + "stackSize": 64 + }, + { + "id": 646, + "name": "mossy_stone_brick_stairs", + "displayName": "Mossy Stone Brick Stairs", + "stackSize": 64 + }, + { + "id": 647, + "name": "polished_diorite_stairs", + "displayName": "Polished Diorite Stairs", + "stackSize": 64 + }, + { + "id": 648, + "name": "mossy_cobblestone_stairs", + "displayName": "Mossy Cobblestone Stairs", + "stackSize": 64 + }, + { + "id": 649, + "name": "end_stone_brick_stairs", + "displayName": "End Stone Brick Stairs", + "stackSize": 64 + }, + { + "id": 650, + "name": "stone_stairs", + "displayName": "Stone Stairs", + "stackSize": 64 + }, + { + "id": 651, + "name": "smooth_sandstone_stairs", + "displayName": "Smooth Sandstone Stairs", + "stackSize": 64 + }, + { + "id": 652, + "name": "smooth_quartz_stairs", + "displayName": "Smooth Quartz Stairs", + "stackSize": 64 + }, + { + "id": 653, + "name": "granite_stairs", + "displayName": "Granite Stairs", + "stackSize": 64 + }, + { + "id": 654, + "name": "andesite_stairs", + "displayName": "Andesite Stairs", + "stackSize": 64 + }, + { + "id": 655, + "name": "red_nether_brick_stairs", + "displayName": "Red Nether Brick Stairs", + "stackSize": 64 + }, + { + "id": 656, + "name": "polished_andesite_stairs", + "displayName": "Polished Andesite Stairs", + "stackSize": 64 + }, + { + "id": 657, + "name": "diorite_stairs", + "displayName": "Diorite Stairs", + "stackSize": 64 + }, + { + "id": 658, + "name": "cobbled_deepslate_stairs", + "displayName": "Cobbled Deepslate Stairs", + "stackSize": 64 + }, + { + "id": 659, + "name": "polished_deepslate_stairs", + "displayName": "Polished Deepslate Stairs", + "stackSize": 64 + }, + { + "id": 660, + "name": "deepslate_brick_stairs", + "displayName": "Deepslate Brick Stairs", + "stackSize": 64 + }, + { + "id": 661, + "name": "deepslate_tile_stairs", + "displayName": "Deepslate Tile Stairs", + "stackSize": 64 + }, + { + "id": 662, + "name": "polished_granite_slab", + "displayName": "Polished Granite Slab", + "stackSize": 64 + }, + { + "id": 663, + "name": "smooth_red_sandstone_slab", + "displayName": "Smooth Red Sandstone Slab", + "stackSize": 64 + }, + { + "id": 664, + "name": "mossy_stone_brick_slab", + "displayName": "Mossy Stone Brick Slab", + "stackSize": 64 + }, + { + "id": 665, + "name": "polished_diorite_slab", + "displayName": "Polished Diorite Slab", + "stackSize": 64 + }, + { + "id": 666, + "name": "mossy_cobblestone_slab", + "displayName": "Mossy Cobblestone Slab", + "stackSize": 64 + }, + { + "id": 667, + "name": "end_stone_brick_slab", + "displayName": "End Stone Brick Slab", + "stackSize": 64 + }, + { + "id": 668, + "name": "smooth_sandstone_slab", + "displayName": "Smooth Sandstone Slab", + "stackSize": 64 + }, + { + "id": 669, + "name": "smooth_quartz_slab", + "displayName": "Smooth Quartz Slab", + "stackSize": 64 + }, + { + "id": 670, + "name": "granite_slab", + "displayName": "Granite Slab", + "stackSize": 64 + }, + { + "id": 671, + "name": "andesite_slab", + "displayName": "Andesite Slab", + "stackSize": 64 + }, + { + "id": 672, + "name": "red_nether_brick_slab", + "displayName": "Red Nether Brick Slab", + "stackSize": 64 + }, + { + "id": 673, + "name": "polished_andesite_slab", + "displayName": "Polished Andesite Slab", + "stackSize": 64 + }, + { + "id": 674, + "name": "diorite_slab", + "displayName": "Diorite Slab", + "stackSize": 64 + }, + { + "id": 675, + "name": "cobbled_deepslate_slab", + "displayName": "Cobbled Deepslate Slab", + "stackSize": 64 + }, + { + "id": 676, + "name": "polished_deepslate_slab", + "displayName": "Polished Deepslate Slab", + "stackSize": 64 + }, + { + "id": 677, + "name": "deepslate_brick_slab", + "displayName": "Deepslate Brick Slab", + "stackSize": 64 + }, + { + "id": 678, + "name": "deepslate_tile_slab", + "displayName": "Deepslate Tile Slab", + "stackSize": 64 + }, + { + "id": 679, + "name": "scaffolding", + "displayName": "Scaffolding", + "stackSize": 64 + }, + { + "id": 680, + "name": "redstone", + "displayName": "Redstone Dust", + "stackSize": 64 + }, + { + "id": 681, + "name": "redstone_torch", + "displayName": "Redstone Torch", + "stackSize": 64 + }, + { + "id": 682, + "name": "redstone_block", + "displayName": "Block of Redstone", + "stackSize": 64 + }, + { + "id": 683, + "name": "repeater", + "displayName": "Redstone Repeater", + "stackSize": 64 + }, + { + "id": 684, + "name": "comparator", + "displayName": "Redstone Comparator", + "stackSize": 64 + }, + { + "id": 685, + "name": "piston", + "displayName": "Piston", + "stackSize": 64 + }, + { + "id": 686, + "name": "sticky_piston", + "displayName": "Sticky Piston", + "stackSize": 64 + }, + { + "id": 687, + "name": "slime_block", + "displayName": "Slime Block", + "stackSize": 64 + }, + { + "id": 688, + "name": "honey_block", + "displayName": "Honey Block", + "stackSize": 64 + }, + { + "id": 689, + "name": "observer", + "displayName": "Observer", + "stackSize": 64 + }, + { + "id": 690, + "name": "hopper", + "displayName": "Hopper", + "stackSize": 64 + }, + { + "id": 691, + "name": "dispenser", + "displayName": "Dispenser", + "stackSize": 64 + }, + { + "id": 692, + "name": "dropper", + "displayName": "Dropper", + "stackSize": 64 + }, + { + "id": 693, + "name": "lectern", + "displayName": "Lectern", + "stackSize": 64 + }, + { + "id": 694, + "name": "target", + "displayName": "Target", + "stackSize": 64 + }, + { + "id": 695, + "name": "lever", + "displayName": "Lever", + "stackSize": 64 + }, + { + "id": 696, + "name": "lightning_rod", + "displayName": "Lightning Rod", + "stackSize": 64 + }, + { + "id": 697, + "name": "daylight_detector", + "displayName": "Daylight Detector", + "stackSize": 64 + }, + { + "id": 698, + "name": "sculk_sensor", + "displayName": "Sculk Sensor", + "stackSize": 64 + }, + { + "id": 699, + "name": "calibrated_sculk_sensor", + "displayName": "Calibrated Sculk Sensor", + "stackSize": 64 + }, + { + "id": 700, + "name": "tripwire_hook", + "displayName": "Tripwire Hook", + "stackSize": 64 + }, + { + "id": 701, + "name": "trapped_chest", + "displayName": "Trapped Chest", + "stackSize": 64 + }, + { + "id": 702, + "name": "tnt", + "displayName": "TNT", + "stackSize": 64 + }, + { + "id": 703, + "name": "redstone_lamp", + "displayName": "Redstone Lamp", + "stackSize": 64 + }, + { + "id": 704, + "name": "note_block", + "displayName": "Note Block", + "stackSize": 64 + }, + { + "id": 705, + "name": "stone_button", + "displayName": "Stone Button", + "stackSize": 64 + }, + { + "id": 706, + "name": "polished_blackstone_button", + "displayName": "Polished Blackstone Button", + "stackSize": 64 + }, + { + "id": 707, + "name": "oak_button", + "displayName": "Oak Button", + "stackSize": 64 + }, + { + "id": 708, + "name": "spruce_button", + "displayName": "Spruce Button", + "stackSize": 64 + }, + { + "id": 709, + "name": "birch_button", + "displayName": "Birch Button", + "stackSize": 64 + }, + { + "id": 710, + "name": "jungle_button", + "displayName": "Jungle Button", + "stackSize": 64 + }, + { + "id": 711, + "name": "acacia_button", + "displayName": "Acacia Button", + "stackSize": 64 + }, + { + "id": 712, + "name": "cherry_button", + "displayName": "Cherry Button", + "stackSize": 64 + }, + { + "id": 713, + "name": "dark_oak_button", + "displayName": "Dark Oak Button", + "stackSize": 64 + }, + { + "id": 714, + "name": "pale_oak_button", + "displayName": "Pale Oak Button", + "stackSize": 64 + }, + { + "id": 715, + "name": "mangrove_button", + "displayName": "Mangrove Button", + "stackSize": 64 + }, + { + "id": 716, + "name": "bamboo_button", + "displayName": "Bamboo Button", + "stackSize": 64 + }, + { + "id": 717, + "name": "crimson_button", + "displayName": "Crimson Button", + "stackSize": 64 + }, + { + "id": 718, + "name": "warped_button", + "displayName": "Warped Button", + "stackSize": 64 + }, + { + "id": 719, + "name": "stone_pressure_plate", + "displayName": "Stone Pressure Plate", + "stackSize": 64 + }, + { + "id": 720, + "name": "polished_blackstone_pressure_plate", + "displayName": "Polished Blackstone Pressure Plate", + "stackSize": 64 + }, + { + "id": 721, + "name": "light_weighted_pressure_plate", + "displayName": "Light Weighted Pressure Plate", + "stackSize": 64 + }, + { + "id": 722, + "name": "heavy_weighted_pressure_plate", + "displayName": "Heavy Weighted Pressure Plate", + "stackSize": 64 + }, + { + "id": 723, + "name": "oak_pressure_plate", + "displayName": "Oak Pressure Plate", + "stackSize": 64 + }, + { + "id": 724, + "name": "spruce_pressure_plate", + "displayName": "Spruce Pressure Plate", + "stackSize": 64 + }, + { + "id": 725, + "name": "birch_pressure_plate", + "displayName": "Birch Pressure Plate", + "stackSize": 64 + }, + { + "id": 726, + "name": "jungle_pressure_plate", + "displayName": "Jungle Pressure Plate", + "stackSize": 64 + }, + { + "id": 727, + "name": "acacia_pressure_plate", + "displayName": "Acacia Pressure Plate", + "stackSize": 64 + }, + { + "id": 728, + "name": "cherry_pressure_plate", + "displayName": "Cherry Pressure Plate", + "stackSize": 64 + }, + { + "id": 729, + "name": "dark_oak_pressure_plate", + "displayName": "Dark Oak Pressure Plate", + "stackSize": 64 + }, + { + "id": 730, + "name": "pale_oak_pressure_plate", + "displayName": "Pale Oak Pressure Plate", + "stackSize": 64 + }, + { + "id": 731, + "name": "mangrove_pressure_plate", + "displayName": "Mangrove Pressure Plate", + "stackSize": 64 + }, + { + "id": 732, + "name": "bamboo_pressure_plate", + "displayName": "Bamboo Pressure Plate", + "stackSize": 64 + }, + { + "id": 733, + "name": "crimson_pressure_plate", + "displayName": "Crimson Pressure Plate", + "stackSize": 64 + }, + { + "id": 734, + "name": "warped_pressure_plate", + "displayName": "Warped Pressure Plate", + "stackSize": 64 + }, + { + "id": 735, + "name": "iron_door", + "displayName": "Iron Door", + "stackSize": 64 + }, + { + "id": 736, + "name": "oak_door", + "displayName": "Oak Door", + "stackSize": 64 + }, + { + "id": 737, + "name": "spruce_door", + "displayName": "Spruce Door", + "stackSize": 64 + }, + { + "id": 738, + "name": "birch_door", + "displayName": "Birch Door", + "stackSize": 64 + }, + { + "id": 739, + "name": "jungle_door", + "displayName": "Jungle Door", + "stackSize": 64 + }, + { + "id": 740, + "name": "acacia_door", + "displayName": "Acacia Door", + "stackSize": 64 + }, + { + "id": 741, + "name": "cherry_door", + "displayName": "Cherry Door", + "stackSize": 64 + }, + { + "id": 742, + "name": "dark_oak_door", + "displayName": "Dark Oak Door", + "stackSize": 64 + }, + { + "id": 743, + "name": "pale_oak_door", + "displayName": "Pale Oak Door", + "stackSize": 64 + }, + { + "id": 744, + "name": "mangrove_door", + "displayName": "Mangrove Door", + "stackSize": 64 + }, + { + "id": 745, + "name": "bamboo_door", + "displayName": "Bamboo Door", + "stackSize": 64 + }, + { + "id": 746, + "name": "crimson_door", + "displayName": "Crimson Door", + "stackSize": 64 + }, + { + "id": 747, + "name": "warped_door", + "displayName": "Warped Door", + "stackSize": 64 + }, + { + "id": 748, + "name": "copper_door", + "displayName": "Copper Door", + "stackSize": 64 + }, + { + "id": 749, + "name": "exposed_copper_door", + "displayName": "Exposed Copper Door", + "stackSize": 64 + }, + { + "id": 750, + "name": "weathered_copper_door", + "displayName": "Weathered Copper Door", + "stackSize": 64 + }, + { + "id": 751, + "name": "oxidized_copper_door", + "displayName": "Oxidized Copper Door", + "stackSize": 64 + }, + { + "id": 752, + "name": "waxed_copper_door", + "displayName": "Waxed Copper Door", + "stackSize": 64 + }, + { + "id": 753, + "name": "waxed_exposed_copper_door", + "displayName": "Waxed Exposed Copper Door", + "stackSize": 64 + }, + { + "id": 754, + "name": "waxed_weathered_copper_door", + "displayName": "Waxed Weathered Copper Door", + "stackSize": 64 + }, + { + "id": 755, + "name": "waxed_oxidized_copper_door", + "displayName": "Waxed Oxidized Copper Door", + "stackSize": 64 + }, + { + "id": 756, + "name": "iron_trapdoor", + "displayName": "Iron Trapdoor", + "stackSize": 64 + }, + { + "id": 757, + "name": "oak_trapdoor", + "displayName": "Oak Trapdoor", + "stackSize": 64 + }, + { + "id": 758, + "name": "spruce_trapdoor", + "displayName": "Spruce Trapdoor", + "stackSize": 64 + }, + { + "id": 759, + "name": "birch_trapdoor", + "displayName": "Birch Trapdoor", + "stackSize": 64 + }, + { + "id": 760, + "name": "jungle_trapdoor", + "displayName": "Jungle Trapdoor", + "stackSize": 64 + }, + { + "id": 761, + "name": "acacia_trapdoor", + "displayName": "Acacia Trapdoor", + "stackSize": 64 + }, + { + "id": 762, + "name": "cherry_trapdoor", + "displayName": "Cherry Trapdoor", + "stackSize": 64 + }, + { + "id": 763, + "name": "dark_oak_trapdoor", + "displayName": "Dark Oak Trapdoor", + "stackSize": 64 + }, + { + "id": 764, + "name": "pale_oak_trapdoor", + "displayName": "Pale Oak Trapdoor", + "stackSize": 64 + }, + { + "id": 765, + "name": "mangrove_trapdoor", + "displayName": "Mangrove Trapdoor", + "stackSize": 64 + }, + { + "id": 766, + "name": "bamboo_trapdoor", + "displayName": "Bamboo Trapdoor", + "stackSize": 64 + }, + { + "id": 767, + "name": "crimson_trapdoor", + "displayName": "Crimson Trapdoor", + "stackSize": 64 + }, + { + "id": 768, + "name": "warped_trapdoor", + "displayName": "Warped Trapdoor", + "stackSize": 64 + }, + { + "id": 769, + "name": "copper_trapdoor", + "displayName": "Copper Trapdoor", + "stackSize": 64 + }, + { + "id": 770, + "name": "exposed_copper_trapdoor", + "displayName": "Exposed Copper Trapdoor", + "stackSize": 64 + }, + { + "id": 771, + "name": "weathered_copper_trapdoor", + "displayName": "Weathered Copper Trapdoor", + "stackSize": 64 + }, + { + "id": 772, + "name": "oxidized_copper_trapdoor", + "displayName": "Oxidized Copper Trapdoor", + "stackSize": 64 + }, + { + "id": 773, + "name": "waxed_copper_trapdoor", + "displayName": "Waxed Copper Trapdoor", + "stackSize": 64 + }, + { + "id": 774, + "name": "waxed_exposed_copper_trapdoor", + "displayName": "Waxed Exposed Copper Trapdoor", + "stackSize": 64 + }, + { + "id": 775, + "name": "waxed_weathered_copper_trapdoor", + "displayName": "Waxed Weathered Copper Trapdoor", + "stackSize": 64 + }, + { + "id": 776, + "name": "waxed_oxidized_copper_trapdoor", + "displayName": "Waxed Oxidized Copper Trapdoor", + "stackSize": 64 + }, + { + "id": 777, + "name": "oak_fence_gate", + "displayName": "Oak Fence Gate", + "stackSize": 64 + }, + { + "id": 778, + "name": "spruce_fence_gate", + "displayName": "Spruce Fence Gate", + "stackSize": 64 + }, + { + "id": 779, + "name": "birch_fence_gate", + "displayName": "Birch Fence Gate", + "stackSize": 64 + }, + { + "id": 780, + "name": "jungle_fence_gate", + "displayName": "Jungle Fence Gate", + "stackSize": 64 + }, + { + "id": 781, + "name": "acacia_fence_gate", + "displayName": "Acacia Fence Gate", + "stackSize": 64 + }, + { + "id": 782, + "name": "cherry_fence_gate", + "displayName": "Cherry Fence Gate", + "stackSize": 64 + }, + { + "id": 783, + "name": "dark_oak_fence_gate", + "displayName": "Dark Oak Fence Gate", + "stackSize": 64 + }, + { + "id": 784, + "name": "pale_oak_fence_gate", + "displayName": "Pale Oak Fence Gate", + "stackSize": 64 + }, + { + "id": 785, + "name": "mangrove_fence_gate", + "displayName": "Mangrove Fence Gate", + "stackSize": 64 + }, + { + "id": 786, + "name": "bamboo_fence_gate", + "displayName": "Bamboo Fence Gate", + "stackSize": 64 + }, + { + "id": 787, + "name": "crimson_fence_gate", + "displayName": "Crimson Fence Gate", + "stackSize": 64 + }, + { + "id": 788, + "name": "warped_fence_gate", + "displayName": "Warped Fence Gate", + "stackSize": 64 + }, + { + "id": 789, + "name": "powered_rail", + "displayName": "Powered Rail", + "stackSize": 64 + }, + { + "id": 790, + "name": "detector_rail", + "displayName": "Detector Rail", + "stackSize": 64 + }, + { + "id": 791, + "name": "rail", + "displayName": "Rail", + "stackSize": 64 + }, + { + "id": 792, + "name": "activator_rail", + "displayName": "Activator Rail", + "stackSize": 64 + }, + { + "id": 793, + "name": "saddle", + "displayName": "Saddle", + "stackSize": 1 + }, + { + "id": 794, + "name": "minecart", + "displayName": "Minecart", + "stackSize": 1 + }, + { + "id": 795, + "name": "chest_minecart", + "displayName": "Minecart with Chest", + "stackSize": 1 + }, + { + "id": 796, + "name": "furnace_minecart", + "displayName": "Minecart with Furnace", + "stackSize": 1 + }, + { + "id": 797, + "name": "tnt_minecart", + "displayName": "Minecart with TNT", + "stackSize": 1 + }, + { + "id": 798, + "name": "hopper_minecart", + "displayName": "Minecart with Hopper", + "stackSize": 1 + }, + { + "id": 799, + "name": "carrot_on_a_stick", + "displayName": "Carrot on a Stick", + "stackSize": 1, + "enchantCategories": [ + "durability", + "vanishing" + ], + "maxDurability": 25 + }, + { + "id": 800, + "name": "warped_fungus_on_a_stick", + "displayName": "Warped Fungus on a Stick", + "stackSize": 1, + "enchantCategories": [ + "durability", + "vanishing" + ], + "maxDurability": 100 + }, + { + "id": 801, + "name": "phantom_membrane", + "displayName": "Phantom Membrane", + "stackSize": 64 + }, + { + "id": 802, + "name": "elytra", + "displayName": "Elytra", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "durability", + "vanishing" + ], + "repairWith": [ + "phantom_membrane" + ], + "maxDurability": 432 + }, + { + "id": 803, + "name": "oak_boat", + "displayName": "Oak Boat", + "stackSize": 1 + }, + { + "id": 804, + "name": "oak_chest_boat", + "displayName": "Oak Boat with Chest", + "stackSize": 1 + }, + { + "id": 805, + "name": "spruce_boat", + "displayName": "Spruce Boat", + "stackSize": 1 + }, + { + "id": 806, + "name": "spruce_chest_boat", + "displayName": "Spruce Boat with Chest", + "stackSize": 1 + }, + { + "id": 807, + "name": "birch_boat", + "displayName": "Birch Boat", + "stackSize": 1 + }, + { + "id": 808, + "name": "birch_chest_boat", + "displayName": "Birch Boat with Chest", + "stackSize": 1 + }, + { + "id": 809, + "name": "jungle_boat", + "displayName": "Jungle Boat", + "stackSize": 1 + }, + { + "id": 810, + "name": "jungle_chest_boat", + "displayName": "Jungle Boat with Chest", + "stackSize": 1 + }, + { + "id": 811, + "name": "acacia_boat", + "displayName": "Acacia Boat", + "stackSize": 1 + }, + { + "id": 812, + "name": "acacia_chest_boat", + "displayName": "Acacia Boat with Chest", + "stackSize": 1 + }, + { + "id": 813, + "name": "cherry_boat", + "displayName": "Cherry Boat", + "stackSize": 1 + }, + { + "id": 814, + "name": "cherry_chest_boat", + "displayName": "Cherry Boat with Chest", + "stackSize": 1 + }, + { + "id": 815, + "name": "dark_oak_boat", + "displayName": "Dark Oak Boat", + "stackSize": 1 + }, + { + "id": 816, + "name": "dark_oak_chest_boat", + "displayName": "Dark Oak Boat with Chest", + "stackSize": 1 + }, + { + "id": 817, + "name": "pale_oak_boat", + "displayName": "Pale Oak Boat", + "stackSize": 1 + }, + { + "id": 818, + "name": "pale_oak_chest_boat", + "displayName": "Pale Oak Boat with Chest", + "stackSize": 1 + }, + { + "id": 819, + "name": "mangrove_boat", + "displayName": "Mangrove Boat", + "stackSize": 1 + }, + { + "id": 820, + "name": "mangrove_chest_boat", + "displayName": "Mangrove Boat with Chest", + "stackSize": 1 + }, + { + "id": 821, + "name": "bamboo_raft", + "displayName": "Bamboo Raft", + "stackSize": 1 + }, + { + "id": 822, + "name": "bamboo_chest_raft", + "displayName": "Bamboo Raft with Chest", + "stackSize": 1 + }, + { + "id": 823, + "name": "structure_block", + "displayName": "Structure Block", + "stackSize": 64 + }, + { + "id": 824, + "name": "jigsaw", + "displayName": "Jigsaw Block", + "stackSize": 64 + }, + { + "id": 825, + "name": "turtle_helmet", + "displayName": "Turtle Shell", + "stackSize": 1, + "enchantCategories": [ + "head_armor", + "equippable", + "armor", + "durability", + "vanishing" + ], + "repairWith": [ + "turtle_scute" + ], + "maxDurability": 275 + }, + { + "id": 826, + "name": "turtle_scute", + "displayName": "Turtle Scute", + "stackSize": 64 + }, + { + "id": 827, + "name": "armadillo_scute", + "displayName": "Armadillo Scute", + "stackSize": 64 + }, + { + "id": 828, + "name": "wolf_armor", + "displayName": "Wolf Armor", + "stackSize": 1, + "repairWith": [ + "armadillo_scute" + ], + "maxDurability": 64 + }, + { + "id": 829, + "name": "flint_and_steel", + "displayName": "Flint and Steel", + "stackSize": 1, + "enchantCategories": [ + "durability", + "vanishing" + ], + "maxDurability": 64 + }, + { + "id": 830, + "name": "bowl", + "displayName": "Bowl", + "stackSize": 64 + }, + { + "id": 831, + "name": "apple", + "displayName": "Apple", + "stackSize": 64 + }, + { + "id": 832, + "name": "bow", + "displayName": "Bow", + "stackSize": 1, + "enchantCategories": [ + "bow", + "durability", + "vanishing" + ], + "maxDurability": 384 + }, + { + "id": 833, + "name": "arrow", + "displayName": "Arrow", + "stackSize": 64 + }, + { + "id": 834, + "name": "coal", + "displayName": "Coal", + "stackSize": 64 + }, + { + "id": 835, + "name": "charcoal", + "displayName": "Charcoal", + "stackSize": 64 + }, + { + "id": 836, + "name": "diamond", + "displayName": "Diamond", + "stackSize": 64 + }, + { + "id": 837, + "name": "emerald", + "displayName": "Emerald", + "stackSize": 64 + }, + { + "id": 838, + "name": "lapis_lazuli", + "displayName": "Lapis Lazuli", + "stackSize": 64 + }, + { + "id": 839, + "name": "quartz", + "displayName": "Nether Quartz", + "stackSize": 64 + }, + { + "id": 840, + "name": "amethyst_shard", + "displayName": "Amethyst Shard", + "stackSize": 64 + }, + { + "id": 841, + "name": "raw_iron", + "displayName": "Raw Iron", + "stackSize": 64 + }, + { + "id": 842, + "name": "iron_ingot", + "displayName": "Iron Ingot", + "stackSize": 64 + }, + { + "id": 843, + "name": "raw_copper", + "displayName": "Raw Copper", + "stackSize": 64 + }, + { + "id": 844, + "name": "copper_ingot", + "displayName": "Copper Ingot", + "stackSize": 64 + }, + { + "id": 845, + "name": "raw_gold", + "displayName": "Raw Gold", + "stackSize": 64 + }, + { + "id": 846, + "name": "gold_ingot", + "displayName": "Gold Ingot", + "stackSize": 64 + }, + { + "id": 847, + "name": "netherite_ingot", + "displayName": "Netherite Ingot", + "stackSize": 64 + }, + { + "id": 848, + "name": "netherite_scrap", + "displayName": "Netherite Scrap", + "stackSize": 64 + }, + { + "id": 849, + "name": "wooden_sword", + "displayName": "Wooden Sword", + "stackSize": 1, + "enchantCategories": [ + "weapon", + "fire_aspect", + "sword", + "durability", + "sharp_weapon", + "vanishing" + ], + "repairWith": [ + "oak_planks", + "spruce_planks", + "birch_planks", + "jungle_planks", + "acacia_planks", + "cherry_planks", + "dark_oak_planks", + "pale_oak_planks", + "mangrove_planks", + "bamboo_planks", + "crimson_planks", + "warped_planks" + ], + "maxDurability": 59 + }, + { + "id": 850, + "name": "wooden_shovel", + "displayName": "Wooden Shovel", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "oak_planks", + "spruce_planks", + "birch_planks", + "jungle_planks", + "acacia_planks", + "cherry_planks", + "dark_oak_planks", + "pale_oak_planks", + "mangrove_planks", + "bamboo_planks", + "crimson_planks", + "warped_planks" + ], + "maxDurability": 59 + }, + { + "id": 851, + "name": "wooden_pickaxe", + "displayName": "Wooden Pickaxe", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "oak_planks", + "spruce_planks", + "birch_planks", + "jungle_planks", + "acacia_planks", + "cherry_planks", + "dark_oak_planks", + "pale_oak_planks", + "mangrove_planks", + "bamboo_planks", + "crimson_planks", + "warped_planks" + ], + "maxDurability": 59 + }, + { + "id": 852, + "name": "wooden_axe", + "displayName": "Wooden Axe", + "stackSize": 1, + "enchantCategories": [ + "weapon", + "mining", + "mining_loot", + "durability", + "sharp_weapon", + "vanishing" + ], + "repairWith": [ + "oak_planks", + "spruce_planks", + "birch_planks", + "jungle_planks", + "acacia_planks", + "cherry_planks", + "dark_oak_planks", + "pale_oak_planks", + "mangrove_planks", + "bamboo_planks", + "crimson_planks", + "warped_planks" + ], + "maxDurability": 59 + }, + { + "id": 853, + "name": "wooden_hoe", + "displayName": "Wooden Hoe", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "oak_planks", + "spruce_planks", + "birch_planks", + "jungle_planks", + "acacia_planks", + "cherry_planks", + "dark_oak_planks", + "pale_oak_planks", + "mangrove_planks", + "bamboo_planks", + "crimson_planks", + "warped_planks" + ], + "maxDurability": 59 + }, + { + "id": 854, + "name": "stone_sword", + "displayName": "Stone Sword", + "stackSize": 1, + "enchantCategories": [ + "weapon", + "fire_aspect", + "sword", + "durability", + "sharp_weapon", + "vanishing" + ], + "repairWith": [ + "cobbled_deepslate", + "cobblestone", + "blackstone" + ], + "maxDurability": 131 + }, + { + "id": 855, + "name": "stone_shovel", + "displayName": "Stone Shovel", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "cobbled_deepslate", + "cobblestone", + "blackstone" + ], + "maxDurability": 131 + }, + { + "id": 856, + "name": "stone_pickaxe", + "displayName": "Stone Pickaxe", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "cobbled_deepslate", + "cobblestone", + "blackstone" + ], + "maxDurability": 131 + }, + { + "id": 857, + "name": "stone_axe", + "displayName": "Stone Axe", + "stackSize": 1, + "enchantCategories": [ + "weapon", + "mining", + "mining_loot", + "durability", + "sharp_weapon", + "vanishing" + ], + "repairWith": [ + "cobbled_deepslate", + "cobblestone", + "blackstone" + ], + "maxDurability": 131 + }, + { + "id": 858, + "name": "stone_hoe", + "displayName": "Stone Hoe", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "cobbled_deepslate", + "cobblestone", + "blackstone" + ], + "maxDurability": 131 + }, + { + "id": 859, + "name": "golden_sword", + "displayName": "Golden Sword", + "stackSize": 1, + "enchantCategories": [ + "weapon", + "fire_aspect", + "sword", + "durability", + "sharp_weapon", + "vanishing" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 32 + }, + { + "id": 860, + "name": "golden_shovel", + "displayName": "Golden Shovel", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 32 + }, + { + "id": 861, + "name": "golden_pickaxe", + "displayName": "Golden Pickaxe", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 32 + }, + { + "id": 862, + "name": "golden_axe", + "displayName": "Golden Axe", + "stackSize": 1, + "enchantCategories": [ + "weapon", + "mining", + "mining_loot", + "durability", + "sharp_weapon", + "vanishing" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 32 + }, + { + "id": 863, + "name": "golden_hoe", + "displayName": "Golden Hoe", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 32 + }, + { + "id": 864, + "name": "iron_sword", + "displayName": "Iron Sword", + "stackSize": 1, + "enchantCategories": [ + "weapon", + "fire_aspect", + "sword", + "durability", + "sharp_weapon", + "vanishing" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 250 + }, + { + "id": 865, + "name": "iron_shovel", + "displayName": "Iron Shovel", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 250 + }, + { + "id": 866, + "name": "iron_pickaxe", + "displayName": "Iron Pickaxe", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 250 + }, + { + "id": 867, + "name": "iron_axe", + "displayName": "Iron Axe", + "stackSize": 1, + "enchantCategories": [ + "weapon", + "mining", + "mining_loot", + "durability", + "sharp_weapon", + "vanishing" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 250 + }, + { + "id": 868, + "name": "iron_hoe", + "displayName": "Iron Hoe", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 250 + }, + { + "id": 869, + "name": "diamond_sword", + "displayName": "Diamond Sword", + "stackSize": 1, + "enchantCategories": [ + "weapon", + "fire_aspect", + "sword", + "durability", + "sharp_weapon", + "vanishing" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 1561 + }, + { + "id": 870, + "name": "diamond_shovel", + "displayName": "Diamond Shovel", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 1561 + }, + { + "id": 871, + "name": "diamond_pickaxe", + "displayName": "Diamond Pickaxe", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 1561 + }, + { + "id": 872, + "name": "diamond_axe", + "displayName": "Diamond Axe", + "stackSize": 1, + "enchantCategories": [ + "weapon", + "mining", + "mining_loot", + "durability", + "sharp_weapon", + "vanishing" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 1561 + }, + { + "id": 873, + "name": "diamond_hoe", + "displayName": "Diamond Hoe", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 1561 + }, + { + "id": 874, + "name": "netherite_sword", + "displayName": "Netherite Sword", + "stackSize": 1, + "enchantCategories": [ + "weapon", + "fire_aspect", + "sword", + "durability", + "sharp_weapon", + "vanishing" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 2031 + }, + { + "id": 875, + "name": "netherite_shovel", + "displayName": "Netherite Shovel", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 2031 + }, + { + "id": 876, + "name": "netherite_pickaxe", + "displayName": "Netherite Pickaxe", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 2031 + }, + { + "id": 877, + "name": "netherite_axe", + "displayName": "Netherite Axe", + "stackSize": 1, + "enchantCategories": [ + "weapon", + "mining", + "mining_loot", + "durability", + "sharp_weapon", + "vanishing" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 2031 + }, + { + "id": 878, + "name": "netherite_hoe", + "displayName": "Netherite Hoe", + "stackSize": 1, + "enchantCategories": [ + "mining", + "mining_loot", + "durability", + "vanishing" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 2031 + }, + { + "id": 879, + "name": "stick", + "displayName": "Stick", + "stackSize": 64 + }, + { + "id": 880, + "name": "mushroom_stew", + "displayName": "Mushroom Stew", + "stackSize": 1 + }, + { + "id": 881, + "name": "string", + "displayName": "String", + "stackSize": 64 + }, + { + "id": 882, + "name": "feather", + "displayName": "Feather", + "stackSize": 64 + }, + { + "id": 883, + "name": "gunpowder", + "displayName": "Gunpowder", + "stackSize": 64 + }, + { + "id": 884, + "name": "wheat_seeds", + "displayName": "Wheat Seeds", + "stackSize": 64 + }, + { + "id": 885, + "name": "wheat", + "displayName": "Wheat", + "stackSize": 64 + }, + { + "id": 886, + "name": "bread", + "displayName": "Bread", + "stackSize": 64 + }, + { + "id": 887, + "name": "leather_helmet", + "displayName": "Leather Cap", + "stackSize": 1, + "enchantCategories": [ + "head_armor", + "equippable", + "armor", + "durability", + "vanishing" + ], + "repairWith": [ + "leather" + ], + "maxDurability": 55 + }, + { + "id": 888, + "name": "leather_chestplate", + "displayName": "Leather Tunic", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "durability", + "vanishing" + ], + "repairWith": [ + "leather" + ], + "maxDurability": 80 + }, + { + "id": 889, + "name": "leather_leggings", + "displayName": "Leather Pants", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "durability", + "leg_armor", + "vanishing" + ], + "repairWith": [ + "leather" + ], + "maxDurability": 75 + }, + { + "id": 890, + "name": "leather_boots", + "displayName": "Leather Boots", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "foot_armor", + "durability", + "vanishing" + ], + "repairWith": [ + "leather" + ], + "maxDurability": 65 + }, + { + "id": 891, + "name": "chainmail_helmet", + "displayName": "Chainmail Helmet", + "stackSize": 1, + "enchantCategories": [ + "head_armor", + "equippable", + "armor", + "durability", + "vanishing" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 165 + }, + { + "id": 892, + "name": "chainmail_chestplate", + "displayName": "Chainmail Chestplate", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "durability", + "vanishing" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 240 + }, + { + "id": 893, + "name": "chainmail_leggings", + "displayName": "Chainmail Leggings", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "durability", + "leg_armor", + "vanishing" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 225 + }, + { + "id": 894, + "name": "chainmail_boots", + "displayName": "Chainmail Boots", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "foot_armor", + "durability", + "vanishing" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 195 + }, + { + "id": 895, + "name": "iron_helmet", + "displayName": "Iron Helmet", + "stackSize": 1, + "enchantCategories": [ + "head_armor", + "equippable", + "armor", + "durability", + "vanishing" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 165 + }, + { + "id": 896, + "name": "iron_chestplate", + "displayName": "Iron Chestplate", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "durability", + "vanishing" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 240 + }, + { + "id": 897, + "name": "iron_leggings", + "displayName": "Iron Leggings", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "durability", + "leg_armor", + "vanishing" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 225 + }, + { + "id": 898, + "name": "iron_boots", + "displayName": "Iron Boots", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "foot_armor", + "durability", + "vanishing" + ], + "repairWith": [ + "iron_ingot" + ], + "maxDurability": 195 + }, + { + "id": 899, + "name": "diamond_helmet", + "displayName": "Diamond Helmet", + "stackSize": 1, + "enchantCategories": [ + "head_armor", + "equippable", + "armor", + "durability", + "vanishing" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 363 + }, + { + "id": 900, + "name": "diamond_chestplate", + "displayName": "Diamond Chestplate", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "durability", + "vanishing" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 528 + }, + { + "id": 901, + "name": "diamond_leggings", + "displayName": "Diamond Leggings", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "durability", + "leg_armor", + "vanishing" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 495 + }, + { + "id": 902, + "name": "diamond_boots", + "displayName": "Diamond Boots", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "foot_armor", + "durability", + "vanishing" + ], + "repairWith": [ + "diamond" + ], + "maxDurability": 429 + }, + { + "id": 903, + "name": "golden_helmet", + "displayName": "Golden Helmet", + "stackSize": 1, + "enchantCategories": [ + "head_armor", + "equippable", + "armor", + "durability", + "vanishing" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 77 + }, + { + "id": 904, + "name": "golden_chestplate", + "displayName": "Golden Chestplate", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "durability", + "vanishing" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 112 + }, + { + "id": 905, + "name": "golden_leggings", + "displayName": "Golden Leggings", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "durability", + "leg_armor", + "vanishing" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 105 + }, + { + "id": 906, + "name": "golden_boots", + "displayName": "Golden Boots", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "foot_armor", + "durability", + "vanishing" + ], + "repairWith": [ + "gold_ingot" + ], + "maxDurability": 91 + }, + { + "id": 907, + "name": "netherite_helmet", + "displayName": "Netherite Helmet", + "stackSize": 1, + "enchantCategories": [ + "head_armor", + "equippable", + "armor", + "durability", + "vanishing" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 407 + }, + { + "id": 908, + "name": "netherite_chestplate", + "displayName": "Netherite Chestplate", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "durability", + "vanishing" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 592 + }, + { + "id": 909, + "name": "netherite_leggings", + "displayName": "Netherite Leggings", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "durability", + "leg_armor", + "vanishing" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 555 + }, + { + "id": 910, + "name": "netherite_boots", + "displayName": "Netherite Boots", + "stackSize": 1, + "enchantCategories": [ + "equippable", + "armor", + "foot_armor", + "durability", + "vanishing" + ], + "repairWith": [ + "netherite_ingot" + ], + "maxDurability": 481 + }, + { + "id": 911, + "name": "flint", + "displayName": "Flint", + "stackSize": 64 + }, + { + "id": 912, + "name": "porkchop", + "displayName": "Raw Porkchop", + "stackSize": 64 + }, + { + "id": 913, + "name": "cooked_porkchop", + "displayName": "Cooked Porkchop", + "stackSize": 64 + }, + { + "id": 914, + "name": "painting", + "displayName": "Painting", + "stackSize": 64 + }, + { + "id": 915, + "name": "golden_apple", + "displayName": "Golden Apple", + "stackSize": 64 + }, + { + "id": 916, + "name": "enchanted_golden_apple", + "displayName": "Enchanted Golden Apple", + "stackSize": 64 + }, + { + "id": 917, + "name": "oak_sign", + "displayName": "Oak Sign", + "stackSize": 16 + }, + { + "id": 918, + "name": "spruce_sign", + "displayName": "Spruce Sign", + "stackSize": 16 + }, + { + "id": 919, + "name": "birch_sign", + "displayName": "Birch Sign", + "stackSize": 16 + }, + { + "id": 920, + "name": "jungle_sign", + "displayName": "Jungle Sign", + "stackSize": 16 + }, + { + "id": 921, + "name": "acacia_sign", + "displayName": "Acacia Sign", + "stackSize": 16 + }, + { + "id": 922, + "name": "cherry_sign", + "displayName": "Cherry Sign", + "stackSize": 16 + }, + { + "id": 923, + "name": "dark_oak_sign", + "displayName": "Dark Oak Sign", + "stackSize": 16 + }, + { + "id": 924, + "name": "pale_oak_sign", + "displayName": "Pale Oak Sign", + "stackSize": 16 + }, + { + "id": 925, + "name": "mangrove_sign", + "displayName": "Mangrove Sign", + "stackSize": 16 + }, + { + "id": 926, + "name": "bamboo_sign", + "displayName": "Bamboo Sign", + "stackSize": 16 + }, + { + "id": 927, + "name": "crimson_sign", + "displayName": "Crimson Sign", + "stackSize": 16 + }, + { + "id": 928, + "name": "warped_sign", + "displayName": "Warped Sign", + "stackSize": 16 + }, + { + "id": 929, + "name": "oak_hanging_sign", + "displayName": "Oak Hanging Sign", + "stackSize": 16 + }, + { + "id": 930, + "name": "spruce_hanging_sign", + "displayName": "Spruce Hanging Sign", + "stackSize": 16 + }, + { + "id": 931, + "name": "birch_hanging_sign", + "displayName": "Birch Hanging Sign", + "stackSize": 16 + }, + { + "id": 932, + "name": "jungle_hanging_sign", + "displayName": "Jungle Hanging Sign", + "stackSize": 16 + }, + { + "id": 933, + "name": "acacia_hanging_sign", + "displayName": "Acacia Hanging Sign", + "stackSize": 16 + }, + { + "id": 934, + "name": "cherry_hanging_sign", + "displayName": "Cherry Hanging Sign", + "stackSize": 16 + }, + { + "id": 935, + "name": "dark_oak_hanging_sign", + "displayName": "Dark Oak Hanging Sign", + "stackSize": 16 + }, + { + "id": 936, + "name": "pale_oak_hanging_sign", + "displayName": "Pale Oak Hanging Sign", + "stackSize": 16 + }, + { + "id": 937, + "name": "mangrove_hanging_sign", + "displayName": "Mangrove Hanging Sign", + "stackSize": 16 + }, + { + "id": 938, + "name": "bamboo_hanging_sign", + "displayName": "Bamboo Hanging Sign", + "stackSize": 16 + }, + { + "id": 939, + "name": "crimson_hanging_sign", + "displayName": "Crimson Hanging Sign", + "stackSize": 16 + }, + { + "id": 940, + "name": "warped_hanging_sign", + "displayName": "Warped Hanging Sign", + "stackSize": 16 + }, + { + "id": 941, + "name": "bucket", + "displayName": "Bucket", + "stackSize": 16 + }, + { + "id": 942, + "name": "water_bucket", + "displayName": "Water Bucket", + "stackSize": 1 + }, + { + "id": 943, + "name": "lava_bucket", + "displayName": "Lava Bucket", + "stackSize": 1 + }, + { + "id": 944, + "name": "powder_snow_bucket", + "displayName": "Powder Snow Bucket", + "stackSize": 1 + }, + { + "id": 945, + "name": "snowball", + "displayName": "Snowball", + "stackSize": 16 + }, + { + "id": 946, + "name": "leather", + "displayName": "Leather", + "stackSize": 64 + }, + { + "id": 947, + "name": "milk_bucket", + "displayName": "Milk Bucket", + "stackSize": 1 + }, + { + "id": 948, + "name": "pufferfish_bucket", + "displayName": "Bucket of Pufferfish", + "stackSize": 1 + }, + { + "id": 949, + "name": "salmon_bucket", + "displayName": "Bucket of Salmon", + "stackSize": 1 + }, + { + "id": 950, + "name": "cod_bucket", + "displayName": "Bucket of Cod", + "stackSize": 1 + }, + { + "id": 951, + "name": "tropical_fish_bucket", + "displayName": "Bucket of Tropical Fish", + "stackSize": 1 + }, + { + "id": 952, + "name": "axolotl_bucket", + "displayName": "Bucket of Axolotl", + "stackSize": 1 + }, + { + "id": 953, + "name": "tadpole_bucket", + "displayName": "Bucket of Tadpole", + "stackSize": 1 + }, + { + "id": 954, + "name": "brick", + "displayName": "Brick", + "stackSize": 64 + }, + { + "id": 955, + "name": "clay_ball", + "displayName": "Clay Ball", + "stackSize": 64 + }, + { + "id": 956, + "name": "dried_kelp_block", + "displayName": "Dried Kelp Block", + "stackSize": 64 + }, + { + "id": 957, + "name": "paper", + "displayName": "Paper", + "stackSize": 64 + }, + { + "id": 958, + "name": "book", + "displayName": "Book", + "stackSize": 64 + }, + { + "id": 959, + "name": "slime_ball", + "displayName": "Slimeball", + "stackSize": 64 + }, + { + "id": 960, + "name": "egg", + "displayName": "Egg", + "stackSize": 16 + }, + { + "id": 961, + "name": "compass", + "displayName": "Compass", + "stackSize": 64, + "enchantCategories": [ + "vanishing" + ] + }, + { + "id": 962, + "name": "recovery_compass", + "displayName": "Recovery Compass", + "stackSize": 64 + }, + { + "id": 963, + "name": "bundle", + "displayName": "Bundle", + "stackSize": 1 + }, + { + "id": 964, + "name": "white_bundle", + "displayName": "White Bundle", + "stackSize": 1 + }, + { + "id": 965, + "name": "orange_bundle", + "displayName": "Orange Bundle", + "stackSize": 1 + }, + { + "id": 966, + "name": "magenta_bundle", + "displayName": "Magenta Bundle", + "stackSize": 1 + }, + { + "id": 967, + "name": "light_blue_bundle", + "displayName": "Light Blue Bundle", + "stackSize": 1 + }, + { + "id": 968, + "name": "yellow_bundle", + "displayName": "Yellow Bundle", + "stackSize": 1 + }, + { + "id": 969, + "name": "lime_bundle", + "displayName": "Lime Bundle", + "stackSize": 1 + }, + { + "id": 970, + "name": "pink_bundle", + "displayName": "Pink Bundle", + "stackSize": 1 + }, + { + "id": 971, + "name": "gray_bundle", + "displayName": "Gray Bundle", + "stackSize": 1 + }, + { + "id": 972, + "name": "light_gray_bundle", + "displayName": "Light Gray Bundle", + "stackSize": 1 + }, + { + "id": 973, + "name": "cyan_bundle", + "displayName": "Cyan Bundle", + "stackSize": 1 + }, + { + "id": 974, + "name": "purple_bundle", + "displayName": "Purple Bundle", + "stackSize": 1 + }, + { + "id": 975, + "name": "blue_bundle", + "displayName": "Blue Bundle", + "stackSize": 1 + }, + { + "id": 976, + "name": "brown_bundle", + "displayName": "Brown Bundle", + "stackSize": 1 + }, + { + "id": 977, + "name": "green_bundle", + "displayName": "Green Bundle", + "stackSize": 1 + }, + { + "id": 978, + "name": "red_bundle", + "displayName": "Red Bundle", + "stackSize": 1 + }, + { + "id": 979, + "name": "black_bundle", + "displayName": "Black Bundle", + "stackSize": 1 + }, + { + "id": 980, + "name": "fishing_rod", + "displayName": "Fishing Rod", + "stackSize": 1, + "enchantCategories": [ + "fishing", + "durability", + "vanishing" + ], + "maxDurability": 64 + }, + { + "id": 981, + "name": "clock", + "displayName": "Clock", + "stackSize": 64 + }, + { + "id": 982, + "name": "spyglass", + "displayName": "Spyglass", + "stackSize": 1 + }, + { + "id": 983, + "name": "glowstone_dust", + "displayName": "Glowstone Dust", + "stackSize": 64 + }, + { + "id": 984, + "name": "cod", + "displayName": "Raw Cod", + "stackSize": 64 + }, + { + "id": 985, + "name": "salmon", + "displayName": "Raw Salmon", + "stackSize": 64 + }, + { + "id": 986, + "name": "tropical_fish", + "displayName": "Tropical Fish", + "stackSize": 64 + }, + { + "id": 987, + "name": "pufferfish", + "displayName": "Pufferfish", + "stackSize": 64 + }, + { + "id": 988, + "name": "cooked_cod", + "displayName": "Cooked Cod", + "stackSize": 64 + }, + { + "id": 989, + "name": "cooked_salmon", + "displayName": "Cooked Salmon", + "stackSize": 64 + }, + { + "id": 990, + "name": "ink_sac", + "displayName": "Ink Sac", + "stackSize": 64 + }, + { + "id": 991, + "name": "glow_ink_sac", + "displayName": "Glow Ink Sac", + "stackSize": 64 + }, + { + "id": 992, + "name": "cocoa_beans", + "displayName": "Cocoa Beans", + "stackSize": 64 + }, + { + "id": 993, + "name": "white_dye", + "displayName": "White Dye", + "stackSize": 64 + }, + { + "id": 994, + "name": "orange_dye", + "displayName": "Orange Dye", + "stackSize": 64 + }, + { + "id": 995, + "name": "magenta_dye", + "displayName": "Magenta Dye", + "stackSize": 64 + }, + { + "id": 996, + "name": "light_blue_dye", + "displayName": "Light Blue Dye", + "stackSize": 64 + }, + { + "id": 997, + "name": "yellow_dye", + "displayName": "Yellow Dye", + "stackSize": 64 + }, + { + "id": 998, + "name": "lime_dye", + "displayName": "Lime Dye", + "stackSize": 64 + }, + { + "id": 999, + "name": "pink_dye", + "displayName": "Pink Dye", + "stackSize": 64 + }, + { + "id": 1000, + "name": "gray_dye", + "displayName": "Gray Dye", + "stackSize": 64 + }, + { + "id": 1001, + "name": "light_gray_dye", + "displayName": "Light Gray Dye", + "stackSize": 64 + }, + { + "id": 1002, + "name": "cyan_dye", + "displayName": "Cyan Dye", + "stackSize": 64 + }, + { + "id": 1003, + "name": "purple_dye", + "displayName": "Purple Dye", + "stackSize": 64 + }, + { + "id": 1004, + "name": "blue_dye", + "displayName": "Blue Dye", + "stackSize": 64 + }, + { + "id": 1005, + "name": "brown_dye", + "displayName": "Brown Dye", + "stackSize": 64 + }, + { + "id": 1006, + "name": "green_dye", + "displayName": "Green Dye", + "stackSize": 64 + }, + { + "id": 1007, + "name": "red_dye", + "displayName": "Red Dye", + "stackSize": 64 + }, + { + "id": 1008, + "name": "black_dye", + "displayName": "Black Dye", + "stackSize": 64 + }, + { + "id": 1009, + "name": "bone_meal", + "displayName": "Bone Meal", + "stackSize": 64 + }, + { + "id": 1010, + "name": "bone", + "displayName": "Bone", + "stackSize": 64 + }, + { + "id": 1011, + "name": "sugar", + "displayName": "Sugar", + "stackSize": 64 + }, + { + "id": 1012, + "name": "cake", + "displayName": "Cake", + "stackSize": 1 + }, + { + "id": 1013, + "name": "white_bed", + "displayName": "White Bed", + "stackSize": 1 + }, + { + "id": 1014, + "name": "orange_bed", + "displayName": "Orange Bed", + "stackSize": 1 + }, + { + "id": 1015, + "name": "magenta_bed", + "displayName": "Magenta Bed", + "stackSize": 1 + }, + { + "id": 1016, + "name": "light_blue_bed", + "displayName": "Light Blue Bed", + "stackSize": 1 + }, + { + "id": 1017, + "name": "yellow_bed", + "displayName": "Yellow Bed", + "stackSize": 1 + }, + { + "id": 1018, + "name": "lime_bed", + "displayName": "Lime Bed", + "stackSize": 1 + }, + { + "id": 1019, + "name": "pink_bed", + "displayName": "Pink Bed", + "stackSize": 1 + }, + { + "id": 1020, + "name": "gray_bed", + "displayName": "Gray Bed", + "stackSize": 1 + }, + { + "id": 1021, + "name": "light_gray_bed", + "displayName": "Light Gray Bed", + "stackSize": 1 + }, + { + "id": 1022, + "name": "cyan_bed", + "displayName": "Cyan Bed", + "stackSize": 1 + }, + { + "id": 1023, + "name": "purple_bed", + "displayName": "Purple Bed", + "stackSize": 1 + }, + { + "id": 1024, + "name": "blue_bed", + "displayName": "Blue Bed", + "stackSize": 1 + }, + { + "id": 1025, + "name": "brown_bed", + "displayName": "Brown Bed", + "stackSize": 1 + }, + { + "id": 1026, + "name": "green_bed", + "displayName": "Green Bed", + "stackSize": 1 + }, + { + "id": 1027, + "name": "red_bed", + "displayName": "Red Bed", + "stackSize": 1 + }, + { + "id": 1028, + "name": "black_bed", + "displayName": "Black Bed", + "stackSize": 1 + }, + { + "id": 1029, + "name": "cookie", + "displayName": "Cookie", + "stackSize": 64 + }, + { + "id": 1030, + "name": "crafter", + "displayName": "Crafter", + "stackSize": 64 + }, + { + "id": 1031, + "name": "filled_map", + "displayName": "Map", + "stackSize": 64 + }, + { + "id": 1032, + "name": "shears", + "displayName": "Shears", + "stackSize": 1, + "enchantCategories": [ + "mining", + "durability", + "vanishing" + ], + "maxDurability": 238 + }, + { + "id": 1033, + "name": "melon_slice", + "displayName": "Melon Slice", + "stackSize": 64 + }, + { + "id": 1034, + "name": "dried_kelp", + "displayName": "Dried Kelp", + "stackSize": 64 + }, + { + "id": 1035, + "name": "pumpkin_seeds", + "displayName": "Pumpkin Seeds", + "stackSize": 64 + }, + { + "id": 1036, + "name": "melon_seeds", + "displayName": "Melon Seeds", + "stackSize": 64 + }, + { + "id": 1037, + "name": "beef", + "displayName": "Raw Beef", + "stackSize": 64 + }, + { + "id": 1038, + "name": "cooked_beef", + "displayName": "Steak", + "stackSize": 64 + }, + { + "id": 1039, + "name": "chicken", + "displayName": "Raw Chicken", + "stackSize": 64 + }, + { + "id": 1040, + "name": "cooked_chicken", + "displayName": "Cooked Chicken", + "stackSize": 64 + }, + { + "id": 1041, + "name": "rotten_flesh", + "displayName": "Rotten Flesh", + "stackSize": 64 + }, + { + "id": 1042, + "name": "ender_pearl", + "displayName": "Ender Pearl", + "stackSize": 16 + }, + { + "id": 1043, + "name": "blaze_rod", + "displayName": "Blaze Rod", + "stackSize": 64 + }, + { + "id": 1044, + "name": "ghast_tear", + "displayName": "Ghast Tear", + "stackSize": 64 + }, + { + "id": 1045, + "name": "gold_nugget", + "displayName": "Gold Nugget", + "stackSize": 64 + }, + { + "id": 1046, + "name": "nether_wart", + "displayName": "Nether Wart", + "stackSize": 64 + }, + { + "id": 1047, + "name": "glass_bottle", + "displayName": "Glass Bottle", + "stackSize": 64 + }, + { + "id": 1048, + "name": "potion", + "displayName": "Potion", + "stackSize": 1 + }, + { + "id": 1049, + "name": "spider_eye", + "displayName": "Spider Eye", + "stackSize": 64 + }, + { + "id": 1050, + "name": "fermented_spider_eye", + "displayName": "Fermented Spider Eye", + "stackSize": 64 + }, + { + "id": 1051, + "name": "blaze_powder", + "displayName": "Blaze Powder", + "stackSize": 64 + }, + { + "id": 1052, + "name": "magma_cream", + "displayName": "Magma Cream", + "stackSize": 64 + }, + { + "id": 1053, + "name": "brewing_stand", + "displayName": "Brewing Stand", + "stackSize": 64 + }, + { + "id": 1054, + "name": "cauldron", + "displayName": "Cauldron", + "stackSize": 64 + }, + { + "id": 1055, + "name": "ender_eye", + "displayName": "Eye of Ender", + "stackSize": 64 + }, + { + "id": 1056, + "name": "glistering_melon_slice", + "displayName": "Glistering Melon Slice", + "stackSize": 64 + }, + { + "id": 1057, + "name": "armadillo_spawn_egg", + "displayName": "Armadillo Spawn Egg", + "stackSize": 64 + }, + { + "id": 1058, + "name": "allay_spawn_egg", + "displayName": "Allay Spawn Egg", + "stackSize": 64 + }, + { + "id": 1059, + "name": "axolotl_spawn_egg", + "displayName": "Axolotl Spawn Egg", + "stackSize": 64 + }, + { + "id": 1060, + "name": "bat_spawn_egg", + "displayName": "Bat Spawn Egg", + "stackSize": 64 + }, + { + "id": 1061, + "name": "bee_spawn_egg", + "displayName": "Bee Spawn Egg", + "stackSize": 64 + }, + { + "id": 1062, + "name": "blaze_spawn_egg", + "displayName": "Blaze Spawn Egg", + "stackSize": 64 + }, + { + "id": 1063, + "name": "bogged_spawn_egg", + "displayName": "Bogged Spawn Egg", + "stackSize": 64 + }, + { + "id": 1064, + "name": "breeze_spawn_egg", + "displayName": "Breeze Spawn Egg", + "stackSize": 64 + }, + { + "id": 1065, + "name": "cat_spawn_egg", + "displayName": "Cat Spawn Egg", + "stackSize": 64 + }, + { + "id": 1066, + "name": "camel_spawn_egg", + "displayName": "Camel Spawn Egg", + "stackSize": 64 + }, + { + "id": 1067, + "name": "cave_spider_spawn_egg", + "displayName": "Cave Spider Spawn Egg", + "stackSize": 64 + }, + { + "id": 1068, + "name": "chicken_spawn_egg", + "displayName": "Chicken Spawn Egg", + "stackSize": 64 + }, + { + "id": 1069, + "name": "cod_spawn_egg", + "displayName": "Cod Spawn Egg", + "stackSize": 64 + }, + { + "id": 1070, + "name": "cow_spawn_egg", + "displayName": "Cow Spawn Egg", + "stackSize": 64 + }, + { + "id": 1071, + "name": "creeper_spawn_egg", + "displayName": "Creeper Spawn Egg", + "stackSize": 64 + }, + { + "id": 1072, + "name": "dolphin_spawn_egg", + "displayName": "Dolphin Spawn Egg", + "stackSize": 64 + }, + { + "id": 1073, + "name": "donkey_spawn_egg", + "displayName": "Donkey Spawn Egg", + "stackSize": 64 + }, + { + "id": 1074, + "name": "drowned_spawn_egg", + "displayName": "Drowned Spawn Egg", + "stackSize": 64 + }, + { + "id": 1075, + "name": "elder_guardian_spawn_egg", + "displayName": "Elder Guardian Spawn Egg", + "stackSize": 64 + }, + { + "id": 1076, + "name": "ender_dragon_spawn_egg", + "displayName": "Ender Dragon Spawn Egg", + "stackSize": 64 + }, + { + "id": 1077, + "name": "enderman_spawn_egg", + "displayName": "Enderman Spawn Egg", + "stackSize": 64 + }, + { + "id": 1078, + "name": "endermite_spawn_egg", + "displayName": "Endermite Spawn Egg", + "stackSize": 64 + }, + { + "id": 1079, + "name": "evoker_spawn_egg", + "displayName": "Evoker Spawn Egg", + "stackSize": 64 + }, + { + "id": 1080, + "name": "fox_spawn_egg", + "displayName": "Fox Spawn Egg", + "stackSize": 64 + }, + { + "id": 1081, + "name": "frog_spawn_egg", + "displayName": "Frog Spawn Egg", + "stackSize": 64 + }, + { + "id": 1082, + "name": "ghast_spawn_egg", + "displayName": "Ghast Spawn Egg", + "stackSize": 64 + }, + { + "id": 1083, + "name": "glow_squid_spawn_egg", + "displayName": "Glow Squid Spawn Egg", + "stackSize": 64 + }, + { + "id": 1084, + "name": "goat_spawn_egg", + "displayName": "Goat Spawn Egg", + "stackSize": 64 + }, + { + "id": 1085, + "name": "guardian_spawn_egg", + "displayName": "Guardian Spawn Egg", + "stackSize": 64 + }, + { + "id": 1086, + "name": "hoglin_spawn_egg", + "displayName": "Hoglin Spawn Egg", + "stackSize": 64 + }, + { + "id": 1087, + "name": "horse_spawn_egg", + "displayName": "Horse Spawn Egg", + "stackSize": 64 + }, + { + "id": 1088, + "name": "husk_spawn_egg", + "displayName": "Husk Spawn Egg", + "stackSize": 64 + }, + { + "id": 1089, + "name": "iron_golem_spawn_egg", + "displayName": "Iron Golem Spawn Egg", + "stackSize": 64 + }, + { + "id": 1090, + "name": "llama_spawn_egg", + "displayName": "Llama Spawn Egg", + "stackSize": 64 + }, + { + "id": 1091, + "name": "magma_cube_spawn_egg", + "displayName": "Magma Cube Spawn Egg", + "stackSize": 64 + }, + { + "id": 1092, + "name": "mooshroom_spawn_egg", + "displayName": "Mooshroom Spawn Egg", + "stackSize": 64 + }, + { + "id": 1093, + "name": "mule_spawn_egg", + "displayName": "Mule Spawn Egg", + "stackSize": 64 + }, + { + "id": 1094, + "name": "ocelot_spawn_egg", + "displayName": "Ocelot Spawn Egg", + "stackSize": 64 + }, + { + "id": 1095, + "name": "panda_spawn_egg", + "displayName": "Panda Spawn Egg", + "stackSize": 64 + }, + { + "id": 1096, + "name": "parrot_spawn_egg", + "displayName": "Parrot Spawn Egg", + "stackSize": 64 + }, + { + "id": 1097, + "name": "phantom_spawn_egg", + "displayName": "Phantom Spawn Egg", + "stackSize": 64 + }, + { + "id": 1098, + "name": "pig_spawn_egg", + "displayName": "Pig Spawn Egg", + "stackSize": 64 + }, + { + "id": 1099, + "name": "piglin_spawn_egg", + "displayName": "Piglin Spawn Egg", + "stackSize": 64 + }, + { + "id": 1100, + "name": "piglin_brute_spawn_egg", + "displayName": "Piglin Brute Spawn Egg", + "stackSize": 64 + }, + { + "id": 1101, + "name": "pillager_spawn_egg", + "displayName": "Pillager Spawn Egg", + "stackSize": 64 + }, + { + "id": 1102, + "name": "polar_bear_spawn_egg", + "displayName": "Polar Bear Spawn Egg", + "stackSize": 64 + }, + { + "id": 1103, + "name": "pufferfish_spawn_egg", + "displayName": "Pufferfish Spawn Egg", + "stackSize": 64 + }, + { + "id": 1104, + "name": "rabbit_spawn_egg", + "displayName": "Rabbit Spawn Egg", + "stackSize": 64 + }, + { + "id": 1105, + "name": "ravager_spawn_egg", + "displayName": "Ravager Spawn Egg", + "stackSize": 64 + }, + { + "id": 1106, + "name": "salmon_spawn_egg", + "displayName": "Salmon Spawn Egg", + "stackSize": 64 + }, + { + "id": 1107, + "name": "sheep_spawn_egg", + "displayName": "Sheep Spawn Egg", + "stackSize": 64 + }, + { + "id": 1108, + "name": "shulker_spawn_egg", + "displayName": "Shulker Spawn Egg", + "stackSize": 64 + }, + { + "id": 1109, + "name": "silverfish_spawn_egg", + "displayName": "Silverfish Spawn Egg", + "stackSize": 64 + }, + { + "id": 1110, + "name": "skeleton_spawn_egg", + "displayName": "Skeleton Spawn Egg", + "stackSize": 64 + }, + { + "id": 1111, + "name": "skeleton_horse_spawn_egg", + "displayName": "Skeleton Horse Spawn Egg", + "stackSize": 64 + }, + { + "id": 1112, + "name": "slime_spawn_egg", + "displayName": "Slime Spawn Egg", + "stackSize": 64 + }, + { + "id": 1113, + "name": "sniffer_spawn_egg", + "displayName": "Sniffer Spawn Egg", + "stackSize": 64 + }, + { + "id": 1114, + "name": "snow_golem_spawn_egg", + "displayName": "Snow Golem Spawn Egg", + "stackSize": 64 + }, + { + "id": 1115, + "name": "spider_spawn_egg", + "displayName": "Spider Spawn Egg", + "stackSize": 64 + }, + { + "id": 1116, + "name": "squid_spawn_egg", + "displayName": "Squid Spawn Egg", + "stackSize": 64 + }, + { + "id": 1117, + "name": "stray_spawn_egg", + "displayName": "Stray Spawn Egg", + "stackSize": 64 + }, + { + "id": 1118, + "name": "strider_spawn_egg", + "displayName": "Strider Spawn Egg", + "stackSize": 64 + }, + { + "id": 1119, + "name": "tadpole_spawn_egg", + "displayName": "Tadpole Spawn Egg", + "stackSize": 64 + }, + { + "id": 1120, + "name": "trader_llama_spawn_egg", + "displayName": "Trader Llama Spawn Egg", + "stackSize": 64 + }, + { + "id": 1121, + "name": "tropical_fish_spawn_egg", + "displayName": "Tropical Fish Spawn Egg", + "stackSize": 64 + }, + { + "id": 1122, + "name": "turtle_spawn_egg", + "displayName": "Turtle Spawn Egg", + "stackSize": 64 + }, + { + "id": 1123, + "name": "vex_spawn_egg", + "displayName": "Vex Spawn Egg", + "stackSize": 64 + }, + { + "id": 1124, + "name": "villager_spawn_egg", + "displayName": "Villager Spawn Egg", + "stackSize": 64 + }, + { + "id": 1125, + "name": "vindicator_spawn_egg", + "displayName": "Vindicator Spawn Egg", + "stackSize": 64 + }, + { + "id": 1126, + "name": "wandering_trader_spawn_egg", + "displayName": "Wandering Trader Spawn Egg", + "stackSize": 64 + }, + { + "id": 1127, + "name": "warden_spawn_egg", + "displayName": "Warden Spawn Egg", + "stackSize": 64 + }, + { + "id": 1128, + "name": "witch_spawn_egg", + "displayName": "Witch Spawn Egg", + "stackSize": 64 + }, + { + "id": 1129, + "name": "wither_spawn_egg", + "displayName": "Wither Spawn Egg", + "stackSize": 64 + }, + { + "id": 1130, + "name": "wither_skeleton_spawn_egg", + "displayName": "Wither Skeleton Spawn Egg", + "stackSize": 64 + }, + { + "id": 1131, + "name": "wolf_spawn_egg", + "displayName": "Wolf Spawn Egg", + "stackSize": 64 + }, + { + "id": 1132, + "name": "zoglin_spawn_egg", + "displayName": "Zoglin Spawn Egg", + "stackSize": 64 + }, + { + "id": 1133, + "name": "creaking_spawn_egg", + "displayName": "Creaking Spawn Egg", + "stackSize": 64 + }, + { + "id": 1134, + "name": "zombie_spawn_egg", + "displayName": "Zombie Spawn Egg", + "stackSize": 64 + }, + { + "id": 1135, + "name": "zombie_horse_spawn_egg", + "displayName": "Zombie Horse Spawn Egg", + "stackSize": 64 + }, + { + "id": 1136, + "name": "zombie_villager_spawn_egg", + "displayName": "Zombie Villager Spawn Egg", + "stackSize": 64 + }, + { + "id": 1137, + "name": "zombified_piglin_spawn_egg", + "displayName": "Zombified Piglin Spawn Egg", + "stackSize": 64 + }, + { + "id": 1138, + "name": "experience_bottle", + "displayName": "Bottle o' Enchanting", + "stackSize": 64 + }, + { + "id": 1139, + "name": "fire_charge", + "displayName": "Fire Charge", + "stackSize": 64 + }, + { + "id": 1140, + "name": "wind_charge", + "displayName": "Wind Charge", + "stackSize": 64 + }, + { + "id": 1141, + "name": "writable_book", + "displayName": "Book and Quill", + "stackSize": 1 + }, + { + "id": 1142, + "name": "written_book", + "displayName": "Written Book", + "stackSize": 16 + }, + { + "id": 1143, + "name": "breeze_rod", + "displayName": "Breeze Rod", + "stackSize": 64 + }, + { + "id": 1144, + "name": "mace", + "displayName": "Mace", + "stackSize": 1, + "enchantCategories": [ + "weapon", + "mace", + "fire_aspect", + "durability", + "vanishing" + ], + "repairWith": [ + "breeze_rod" + ], + "maxDurability": 500 + }, + { + "id": 1145, + "name": "item_frame", + "displayName": "Item Frame", + "stackSize": 64 + }, + { + "id": 1146, + "name": "glow_item_frame", + "displayName": "Glow Item Frame", + "stackSize": 64 + }, + { + "id": 1147, + "name": "flower_pot", + "displayName": "Flower Pot", + "stackSize": 64 + }, + { + "id": 1148, + "name": "carrot", + "displayName": "Carrot", + "stackSize": 64 + }, + { + "id": 1149, + "name": "potato", + "displayName": "Potato", + "stackSize": 64 + }, + { + "id": 1150, + "name": "baked_potato", + "displayName": "Baked Potato", + "stackSize": 64 + }, + { + "id": 1151, + "name": "poisonous_potato", + "displayName": "Poisonous Potato", + "stackSize": 64 + }, + { + "id": 1152, + "name": "map", + "displayName": "Empty Map", + "stackSize": 64 + }, + { + "id": 1153, + "name": "golden_carrot", + "displayName": "Golden Carrot", + "stackSize": 64 + }, + { + "id": 1154, + "name": "skeleton_skull", + "displayName": "Skeleton Skull", + "stackSize": 64, + "enchantCategories": [ + "equippable", + "vanishing" + ] + }, + { + "id": 1155, + "name": "wither_skeleton_skull", + "displayName": "Wither Skeleton Skull", + "stackSize": 64, + "enchantCategories": [ + "equippable", + "vanishing" + ] + }, + { + "id": 1156, + "name": "player_head", + "displayName": "Player Head", + "stackSize": 64, + "enchantCategories": [ + "equippable", + "vanishing" + ] + }, + { + "id": 1157, + "name": "zombie_head", + "displayName": "Zombie Head", + "stackSize": 64, + "enchantCategories": [ + "equippable", + "vanishing" + ] + }, + { + "id": 1158, + "name": "creeper_head", + "displayName": "Creeper Head", + "stackSize": 64, + "enchantCategories": [ + "equippable", + "vanishing" + ] + }, + { + "id": 1159, + "name": "dragon_head", + "displayName": "Dragon Head", + "stackSize": 64, + "enchantCategories": [ + "equippable", + "vanishing" + ] + }, + { + "id": 1160, + "name": "piglin_head", + "displayName": "Piglin Head", + "stackSize": 64, + "enchantCategories": [ + "equippable", + "vanishing" + ] + }, + { + "id": 1161, + "name": "nether_star", + "displayName": "Nether Star", + "stackSize": 64 + }, + { + "id": 1162, + "name": "pumpkin_pie", + "displayName": "Pumpkin Pie", + "stackSize": 64 + }, + { + "id": 1163, + "name": "firework_rocket", + "displayName": "Firework Rocket", + "stackSize": 64 + }, + { + "id": 1164, + "name": "firework_star", + "displayName": "Firework Star", + "stackSize": 64 + }, + { + "id": 1165, + "name": "enchanted_book", + "displayName": "Enchanted Book", + "stackSize": 1 + }, + { + "id": 1166, + "name": "nether_brick", + "displayName": "Nether Brick", + "stackSize": 64 + }, + { + "id": 1167, + "name": "resin_brick", + "displayName": "Resin Brick", + "stackSize": 64 + }, + { + "id": 1168, + "name": "prismarine_shard", + "displayName": "Prismarine Shard", + "stackSize": 64 + }, + { + "id": 1169, + "name": "prismarine_crystals", + "displayName": "Prismarine Crystals", + "stackSize": 64 + }, + { + "id": 1170, + "name": "rabbit", + "displayName": "Raw Rabbit", + "stackSize": 64 + }, + { + "id": 1171, + "name": "cooked_rabbit", + "displayName": "Cooked Rabbit", + "stackSize": 64 + }, + { + "id": 1172, + "name": "rabbit_stew", + "displayName": "Rabbit Stew", + "stackSize": 1 + }, + { + "id": 1173, + "name": "rabbit_foot", + "displayName": "Rabbit's Foot", + "stackSize": 64 + }, + { + "id": 1174, + "name": "rabbit_hide", + "displayName": "Rabbit Hide", + "stackSize": 64 + }, + { + "id": 1175, + "name": "armor_stand", + "displayName": "Armor Stand", + "stackSize": 16 + }, + { + "id": 1176, + "name": "iron_horse_armor", + "displayName": "Iron Horse Armor", + "stackSize": 1 + }, + { + "id": 1177, + "name": "golden_horse_armor", + "displayName": "Golden Horse Armor", + "stackSize": 1 + }, + { + "id": 1178, + "name": "diamond_horse_armor", + "displayName": "Diamond Horse Armor", + "stackSize": 1 + }, + { + "id": 1179, + "name": "leather_horse_armor", + "displayName": "Leather Horse Armor", + "stackSize": 1 + }, + { + "id": 1180, + "name": "lead", + "displayName": "Lead", + "stackSize": 64 + }, + { + "id": 1181, + "name": "name_tag", + "displayName": "Name Tag", + "stackSize": 64 + }, + { + "id": 1182, + "name": "command_block_minecart", + "displayName": "Minecart with Command Block", + "stackSize": 1 + }, + { + "id": 1183, + "name": "mutton", + "displayName": "Raw Mutton", + "stackSize": 64 + }, + { + "id": 1184, + "name": "cooked_mutton", + "displayName": "Cooked Mutton", + "stackSize": 64 + }, + { + "id": 1185, + "name": "white_banner", + "displayName": "White Banner", + "stackSize": 16 + }, + { + "id": 1186, + "name": "orange_banner", + "displayName": "Orange Banner", + "stackSize": 16 + }, + { + "id": 1187, + "name": "magenta_banner", + "displayName": "Magenta Banner", + "stackSize": 16 + }, + { + "id": 1188, + "name": "light_blue_banner", + "displayName": "Light Blue Banner", + "stackSize": 16 + }, + { + "id": 1189, + "name": "yellow_banner", + "displayName": "Yellow Banner", + "stackSize": 16 + }, + { + "id": 1190, + "name": "lime_banner", + "displayName": "Lime Banner", + "stackSize": 16 + }, + { + "id": 1191, + "name": "pink_banner", + "displayName": "Pink Banner", + "stackSize": 16 + }, + { + "id": 1192, + "name": "gray_banner", + "displayName": "Gray Banner", + "stackSize": 16 + }, + { + "id": 1193, + "name": "light_gray_banner", + "displayName": "Light Gray Banner", + "stackSize": 16 + }, + { + "id": 1194, + "name": "cyan_banner", + "displayName": "Cyan Banner", + "stackSize": 16 + }, + { + "id": 1195, + "name": "purple_banner", + "displayName": "Purple Banner", + "stackSize": 16 + }, + { + "id": 1196, + "name": "blue_banner", + "displayName": "Blue Banner", + "stackSize": 16 + }, + { + "id": 1197, + "name": "brown_banner", + "displayName": "Brown Banner", + "stackSize": 16 + }, + { + "id": 1198, + "name": "green_banner", + "displayName": "Green Banner", + "stackSize": 16 + }, + { + "id": 1199, + "name": "red_banner", + "displayName": "Red Banner", + "stackSize": 16 + }, + { + "id": 1200, + "name": "black_banner", + "displayName": "Black Banner", + "stackSize": 16 + }, + { + "id": 1201, + "name": "end_crystal", + "displayName": "End Crystal", + "stackSize": 64 + }, + { + "id": 1202, + "name": "chorus_fruit", + "displayName": "Chorus Fruit", + "stackSize": 64 + }, + { + "id": 1203, + "name": "popped_chorus_fruit", + "displayName": "Popped Chorus Fruit", + "stackSize": 64 + }, + { + "id": 1204, + "name": "torchflower_seeds", + "displayName": "Torchflower Seeds", + "stackSize": 64 + }, + { + "id": 1205, + "name": "pitcher_pod", + "displayName": "Pitcher Pod", + "stackSize": 64 + }, + { + "id": 1206, + "name": "beetroot", + "displayName": "Beetroot", + "stackSize": 64 + }, + { + "id": 1207, + "name": "beetroot_seeds", + "displayName": "Beetroot Seeds", + "stackSize": 64 + }, + { + "id": 1208, + "name": "beetroot_soup", + "displayName": "Beetroot Soup", + "stackSize": 1 + }, + { + "id": 1209, + "name": "dragon_breath", + "displayName": "Dragon's Breath", + "stackSize": 64 + }, + { + "id": 1210, + "name": "splash_potion", + "displayName": "Splash Potion", + "stackSize": 1 + }, + { + "id": 1211, + "name": "spectral_arrow", + "displayName": "Spectral Arrow", + "stackSize": 64 + }, + { + "id": 1212, + "name": "tipped_arrow", + "displayName": "Tipped Arrow", + "stackSize": 64 + }, + { + "id": 1213, + "name": "lingering_potion", + "displayName": "Lingering Potion", + "stackSize": 1 + }, + { + "id": 1214, + "name": "shield", + "displayName": "Shield", + "stackSize": 1, + "enchantCategories": [ + "durability", + "vanishing" + ], + "repairWith": [ + "oak_planks", + "spruce_planks", + "birch_planks", + "jungle_planks", + "acacia_planks", + "cherry_planks", + "dark_oak_planks", + "pale_oak_planks", + "mangrove_planks", + "bamboo_planks", + "crimson_planks", + "warped_planks" + ], + "maxDurability": 336 + }, + { + "id": 1215, + "name": "totem_of_undying", + "displayName": "Totem of Undying", + "stackSize": 1 + }, + { + "id": 1216, + "name": "shulker_shell", + "displayName": "Shulker Shell", + "stackSize": 64 + }, + { + "id": 1217, + "name": "iron_nugget", + "displayName": "Iron Nugget", + "stackSize": 64 + }, + { + "id": 1218, + "name": "knowledge_book", + "displayName": "Knowledge Book", + "stackSize": 1 + }, + { + "id": 1219, + "name": "debug_stick", + "displayName": "Debug Stick", + "stackSize": 1 + }, + { + "id": 1220, + "name": "music_disc_13", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1221, + "name": "music_disc_cat", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1222, + "name": "music_disc_blocks", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1223, + "name": "music_disc_chirp", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1224, + "name": "music_disc_creator", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1225, + "name": "music_disc_creator_music_box", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1226, + "name": "music_disc_far", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1227, + "name": "music_disc_mall", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1228, + "name": "music_disc_mellohi", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1229, + "name": "music_disc_stal", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1230, + "name": "music_disc_strad", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1231, + "name": "music_disc_ward", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1232, + "name": "music_disc_11", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1233, + "name": "music_disc_wait", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1234, + "name": "music_disc_otherside", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1235, + "name": "music_disc_relic", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1236, + "name": "music_disc_5", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1237, + "name": "music_disc_pigstep", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1238, + "name": "music_disc_precipice", + "displayName": "Music Disc", + "stackSize": 1 + }, + { + "id": 1239, + "name": "disc_fragment_5", + "displayName": "Disc Fragment", + "stackSize": 64 + }, + { + "id": 1240, + "name": "trident", + "displayName": "Trident", + "stackSize": 1, + "enchantCategories": [ + "trident", + "durability", + "vanishing" + ], + "maxDurability": 250 + }, + { + "id": 1241, + "name": "nautilus_shell", + "displayName": "Nautilus Shell", + "stackSize": 64 + }, + { + "id": 1242, + "name": "heart_of_the_sea", + "displayName": "Heart of the Sea", + "stackSize": 64 + }, + { + "id": 1243, + "name": "crossbow", + "displayName": "Crossbow", + "stackSize": 1, + "enchantCategories": [ + "durability", + "crossbow", + "vanishing" + ], + "maxDurability": 465 + }, + { + "id": 1244, + "name": "suspicious_stew", + "displayName": "Suspicious Stew", + "stackSize": 1 + }, + { + "id": 1245, + "name": "loom", + "displayName": "Loom", + "stackSize": 64 + }, + { + "id": 1246, + "name": "flower_banner_pattern", + "displayName": "Flower Charge Banner Pattern", + "stackSize": 1 + }, + { + "id": 1247, + "name": "creeper_banner_pattern", + "displayName": "Creeper Charge Banner Pattern", + "stackSize": 1 + }, + { + "id": 1248, + "name": "skull_banner_pattern", + "displayName": "Skull Charge Banner Pattern", + "stackSize": 1 + }, + { + "id": 1249, + "name": "mojang_banner_pattern", + "displayName": "Thing Banner Pattern", + "stackSize": 1 + }, + { + "id": 1250, + "name": "globe_banner_pattern", + "displayName": "Globe Banner Pattern", + "stackSize": 1 + }, + { + "id": 1251, + "name": "piglin_banner_pattern", + "displayName": "Snout Banner Pattern", + "stackSize": 1 + }, + { + "id": 1252, + "name": "flow_banner_pattern", + "displayName": "Flow Banner Pattern", + "stackSize": 1 + }, + { + "id": 1253, + "name": "guster_banner_pattern", + "displayName": "Guster Banner Pattern", + "stackSize": 1 + }, + { + "id": 1254, + "name": "field_masoned_banner_pattern", + "displayName": "Field Masoned Banner Pattern", + "stackSize": 1 + }, + { + "id": 1255, + "name": "bordure_indented_banner_pattern", + "displayName": "Bordure Indented Banner Pattern", + "stackSize": 1 + }, + { + "id": 1256, + "name": "goat_horn", + "displayName": "Goat Horn", + "stackSize": 1 + }, + { + "id": 1257, + "name": "composter", + "displayName": "Composter", + "stackSize": 64 + }, + { + "id": 1258, + "name": "barrel", + "displayName": "Barrel", + "stackSize": 64 + }, + { + "id": 1259, + "name": "smoker", + "displayName": "Smoker", + "stackSize": 64 + }, + { + "id": 1260, + "name": "blast_furnace", + "displayName": "Blast Furnace", + "stackSize": 64 + }, + { + "id": 1261, + "name": "cartography_table", + "displayName": "Cartography Table", + "stackSize": 64 + }, + { + "id": 1262, + "name": "fletching_table", + "displayName": "Fletching Table", + "stackSize": 64 + }, + { + "id": 1263, + "name": "grindstone", + "displayName": "Grindstone", + "stackSize": 64 + }, + { + "id": 1264, + "name": "smithing_table", + "displayName": "Smithing Table", + "stackSize": 64 + }, + { + "id": 1265, + "name": "stonecutter", + "displayName": "Stonecutter", + "stackSize": 64 + }, + { + "id": 1266, + "name": "bell", + "displayName": "Bell", + "stackSize": 64 + }, + { + "id": 1267, + "name": "lantern", + "displayName": "Lantern", + "stackSize": 64 + }, + { + "id": 1268, + "name": "soul_lantern", + "displayName": "Soul Lantern", + "stackSize": 64 + }, + { + "id": 1269, + "name": "sweet_berries", + "displayName": "Sweet Berries", + "stackSize": 64 + }, + { + "id": 1270, + "name": "glow_berries", + "displayName": "Glow Berries", + "stackSize": 64 + }, + { + "id": 1271, + "name": "campfire", + "displayName": "Campfire", + "stackSize": 64 + }, + { + "id": 1272, + "name": "soul_campfire", + "displayName": "Soul Campfire", + "stackSize": 64 + }, + { + "id": 1273, + "name": "shroomlight", + "displayName": "Shroomlight", + "stackSize": 64 + }, + { + "id": 1274, + "name": "honeycomb", + "displayName": "Honeycomb", + "stackSize": 64 + }, + { + "id": 1275, + "name": "bee_nest", + "displayName": "Bee Nest", + "stackSize": 64 + }, + { + "id": 1276, + "name": "beehive", + "displayName": "Beehive", + "stackSize": 64 + }, + { + "id": 1277, + "name": "honey_bottle", + "displayName": "Honey Bottle", + "stackSize": 16 + }, + { + "id": 1278, + "name": "honeycomb_block", + "displayName": "Honeycomb Block", + "stackSize": 64 + }, + { + "id": 1279, + "name": "lodestone", + "displayName": "Lodestone", + "stackSize": 64 + }, + { + "id": 1280, + "name": "crying_obsidian", + "displayName": "Crying Obsidian", + "stackSize": 64 + }, + { + "id": 1281, + "name": "blackstone", + "displayName": "Blackstone", + "stackSize": 64 + }, + { + "id": 1282, + "name": "blackstone_slab", + "displayName": "Blackstone Slab", + "stackSize": 64 + }, + { + "id": 1283, + "name": "blackstone_stairs", + "displayName": "Blackstone Stairs", + "stackSize": 64 + }, + { + "id": 1284, + "name": "gilded_blackstone", + "displayName": "Gilded Blackstone", + "stackSize": 64 + }, + { + "id": 1285, + "name": "polished_blackstone", + "displayName": "Polished Blackstone", + "stackSize": 64 + }, + { + "id": 1286, + "name": "polished_blackstone_slab", + "displayName": "Polished Blackstone Slab", + "stackSize": 64 + }, + { + "id": 1287, + "name": "polished_blackstone_stairs", + "displayName": "Polished Blackstone Stairs", + "stackSize": 64 + }, + { + "id": 1288, + "name": "chiseled_polished_blackstone", + "displayName": "Chiseled Polished Blackstone", + "stackSize": 64 + }, + { + "id": 1289, + "name": "polished_blackstone_bricks", + "displayName": "Polished Blackstone Bricks", + "stackSize": 64 + }, + { + "id": 1290, + "name": "polished_blackstone_brick_slab", + "displayName": "Polished Blackstone Brick Slab", + "stackSize": 64 + }, + { + "id": 1291, + "name": "polished_blackstone_brick_stairs", + "displayName": "Polished Blackstone Brick Stairs", + "stackSize": 64 + }, + { + "id": 1292, + "name": "cracked_polished_blackstone_bricks", + "displayName": "Cracked Polished Blackstone Bricks", + "stackSize": 64 + }, + { + "id": 1293, + "name": "respawn_anchor", + "displayName": "Respawn Anchor", + "stackSize": 64 + }, + { + "id": 1294, + "name": "candle", + "displayName": "Candle", + "stackSize": 64 + }, + { + "id": 1295, + "name": "white_candle", + "displayName": "White Candle", + "stackSize": 64 + }, + { + "id": 1296, + "name": "orange_candle", + "displayName": "Orange Candle", + "stackSize": 64 + }, + { + "id": 1297, + "name": "magenta_candle", + "displayName": "Magenta Candle", + "stackSize": 64 + }, + { + "id": 1298, + "name": "light_blue_candle", + "displayName": "Light Blue Candle", + "stackSize": 64 + }, + { + "id": 1299, + "name": "yellow_candle", + "displayName": "Yellow Candle", + "stackSize": 64 + }, + { + "id": 1300, + "name": "lime_candle", + "displayName": "Lime Candle", + "stackSize": 64 + }, + { + "id": 1301, + "name": "pink_candle", + "displayName": "Pink Candle", + "stackSize": 64 + }, + { + "id": 1302, + "name": "gray_candle", + "displayName": "Gray Candle", + "stackSize": 64 + }, + { + "id": 1303, + "name": "light_gray_candle", + "displayName": "Light Gray Candle", + "stackSize": 64 + }, + { + "id": 1304, + "name": "cyan_candle", + "displayName": "Cyan Candle", + "stackSize": 64 + }, + { + "id": 1305, + "name": "purple_candle", + "displayName": "Purple Candle", + "stackSize": 64 + }, + { + "id": 1306, + "name": "blue_candle", + "displayName": "Blue Candle", + "stackSize": 64 + }, + { + "id": 1307, + "name": "brown_candle", + "displayName": "Brown Candle", + "stackSize": 64 + }, + { + "id": 1308, + "name": "green_candle", + "displayName": "Green Candle", + "stackSize": 64 + }, + { + "id": 1309, + "name": "red_candle", + "displayName": "Red Candle", + "stackSize": 64 + }, + { + "id": 1310, + "name": "black_candle", + "displayName": "Black Candle", + "stackSize": 64 + }, + { + "id": 1311, + "name": "small_amethyst_bud", + "displayName": "Small Amethyst Bud", + "stackSize": 64 + }, + { + "id": 1312, + "name": "medium_amethyst_bud", + "displayName": "Medium Amethyst Bud", + "stackSize": 64 + }, + { + "id": 1313, + "name": "large_amethyst_bud", + "displayName": "Large Amethyst Bud", + "stackSize": 64 + }, + { + "id": 1314, + "name": "amethyst_cluster", + "displayName": "Amethyst Cluster", + "stackSize": 64 + }, + { + "id": 1315, + "name": "pointed_dripstone", + "displayName": "Pointed Dripstone", + "stackSize": 64 + }, + { + "id": 1316, + "name": "ochre_froglight", + "displayName": "Ochre Froglight", + "stackSize": 64 + }, + { + "id": 1317, + "name": "verdant_froglight", + "displayName": "Verdant Froglight", + "stackSize": 64 + }, + { + "id": 1318, + "name": "pearlescent_froglight", + "displayName": "Pearlescent Froglight", + "stackSize": 64 + }, + { + "id": 1319, + "name": "frogspawn", + "displayName": "Frogspawn", + "stackSize": 64 + }, + { + "id": 1320, + "name": "echo_shard", + "displayName": "Echo Shard", + "stackSize": 64 + }, + { + "id": 1321, + "name": "brush", + "displayName": "Brush", + "stackSize": 1, + "enchantCategories": [ + "durability", + "vanishing" + ], + "maxDurability": 64 + }, + { + "id": 1322, + "name": "netherite_upgrade_smithing_template", + "displayName": "Netherite Upgrade", + "stackSize": 64 + }, + { + "id": 1323, + "name": "sentry_armor_trim_smithing_template", + "displayName": "Sentry Armor Trim", + "stackSize": 64 + }, + { + "id": 1324, + "name": "dune_armor_trim_smithing_template", + "displayName": "Dune Armor Trim", + "stackSize": 64 + }, + { + "id": 1325, + "name": "coast_armor_trim_smithing_template", + "displayName": "Coast Armor Trim", + "stackSize": 64 + }, + { + "id": 1326, + "name": "wild_armor_trim_smithing_template", + "displayName": "Wild Armor Trim", + "stackSize": 64 + }, + { + "id": 1327, + "name": "ward_armor_trim_smithing_template", + "displayName": "Ward Armor Trim", + "stackSize": 64 + }, + { + "id": 1328, + "name": "eye_armor_trim_smithing_template", + "displayName": "Eye Armor Trim", + "stackSize": 64 + }, + { + "id": 1329, + "name": "vex_armor_trim_smithing_template", + "displayName": "Vex Armor Trim", + "stackSize": 64 + }, + { + "id": 1330, + "name": "tide_armor_trim_smithing_template", + "displayName": "Tide Armor Trim", + "stackSize": 64 + }, + { + "id": 1331, + "name": "snout_armor_trim_smithing_template", + "displayName": "Snout Armor Trim", + "stackSize": 64 + }, + { + "id": 1332, + "name": "rib_armor_trim_smithing_template", + "displayName": "Rib Armor Trim", + "stackSize": 64 + }, + { + "id": 1333, + "name": "spire_armor_trim_smithing_template", + "displayName": "Spire Armor Trim", + "stackSize": 64 + }, + { + "id": 1334, + "name": "wayfinder_armor_trim_smithing_template", + "displayName": "Wayfinder Armor Trim", + "stackSize": 64 + }, + { + "id": 1335, + "name": "shaper_armor_trim_smithing_template", + "displayName": "Shaper Armor Trim", + "stackSize": 64 + }, + { + "id": 1336, + "name": "silence_armor_trim_smithing_template", + "displayName": "Silence Armor Trim", + "stackSize": 64 + }, + { + "id": 1337, + "name": "raiser_armor_trim_smithing_template", + "displayName": "Raiser Armor Trim", + "stackSize": 64 + }, + { + "id": 1338, + "name": "host_armor_trim_smithing_template", + "displayName": "Host Armor Trim", + "stackSize": 64 + }, + { + "id": 1339, + "name": "flow_armor_trim_smithing_template", + "displayName": "Flow Armor Trim", + "stackSize": 64 + }, + { + "id": 1340, + "name": "bolt_armor_trim_smithing_template", + "displayName": "Bolt Armor Trim", + "stackSize": 64 + }, + { + "id": 1341, + "name": "angler_pottery_sherd", + "displayName": "Angler Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1342, + "name": "archer_pottery_sherd", + "displayName": "Archer Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1343, + "name": "arms_up_pottery_sherd", + "displayName": "Arms Up Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1344, + "name": "blade_pottery_sherd", + "displayName": "Blade Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1345, + "name": "brewer_pottery_sherd", + "displayName": "Brewer Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1346, + "name": "burn_pottery_sherd", + "displayName": "Burn Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1347, + "name": "danger_pottery_sherd", + "displayName": "Danger Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1348, + "name": "explorer_pottery_sherd", + "displayName": "Explorer Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1349, + "name": "flow_pottery_sherd", + "displayName": "Flow Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1350, + "name": "friend_pottery_sherd", + "displayName": "Friend Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1351, + "name": "guster_pottery_sherd", + "displayName": "Guster Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1352, + "name": "heart_pottery_sherd", + "displayName": "Heart Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1353, + "name": "heartbreak_pottery_sherd", + "displayName": "Heartbreak Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1354, + "name": "howl_pottery_sherd", + "displayName": "Howl Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1355, + "name": "miner_pottery_sherd", + "displayName": "Miner Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1356, + "name": "mourner_pottery_sherd", + "displayName": "Mourner Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1357, + "name": "plenty_pottery_sherd", + "displayName": "Plenty Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1358, + "name": "prize_pottery_sherd", + "displayName": "Prize Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1359, + "name": "scrape_pottery_sherd", + "displayName": "Scrape Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1360, + "name": "sheaf_pottery_sherd", + "displayName": "Sheaf Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1361, + "name": "shelter_pottery_sherd", + "displayName": "Shelter Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1362, + "name": "skull_pottery_sherd", + "displayName": "Skull Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1363, + "name": "snort_pottery_sherd", + "displayName": "Snort Pottery Sherd", + "stackSize": 64 + }, + { + "id": 1364, + "name": "copper_grate", + "displayName": "Copper Grate", + "stackSize": 64 + }, + { + "id": 1365, + "name": "exposed_copper_grate", + "displayName": "Exposed Copper Grate", + "stackSize": 64 + }, + { + "id": 1366, + "name": "weathered_copper_grate", + "displayName": "Weathered Copper Grate", + "stackSize": 64 + }, + { + "id": 1367, + "name": "oxidized_copper_grate", + "displayName": "Oxidized Copper Grate", + "stackSize": 64 + }, + { + "id": 1368, + "name": "waxed_copper_grate", + "displayName": "Waxed Copper Grate", + "stackSize": 64 + }, + { + "id": 1369, + "name": "waxed_exposed_copper_grate", + "displayName": "Waxed Exposed Copper Grate", + "stackSize": 64 + }, + { + "id": 1370, + "name": "waxed_weathered_copper_grate", + "displayName": "Waxed Weathered Copper Grate", + "stackSize": 64 + }, + { + "id": 1371, + "name": "waxed_oxidized_copper_grate", + "displayName": "Waxed Oxidized Copper Grate", + "stackSize": 64 + }, + { + "id": 1372, + "name": "copper_bulb", + "displayName": "Copper Bulb", + "stackSize": 64 + }, + { + "id": 1373, + "name": "exposed_copper_bulb", + "displayName": "Exposed Copper Bulb", + "stackSize": 64 + }, + { + "id": 1374, + "name": "weathered_copper_bulb", + "displayName": "Weathered Copper Bulb", + "stackSize": 64 + }, + { + "id": 1375, + "name": "oxidized_copper_bulb", + "displayName": "Oxidized Copper Bulb", + "stackSize": 64 + }, + { + "id": 1376, + "name": "waxed_copper_bulb", + "displayName": "Waxed Copper Bulb", + "stackSize": 64 + }, + { + "id": 1377, + "name": "waxed_exposed_copper_bulb", + "displayName": "Waxed Exposed Copper Bulb", + "stackSize": 64 + }, + { + "id": 1378, + "name": "waxed_weathered_copper_bulb", + "displayName": "Waxed Weathered Copper Bulb", + "stackSize": 64 + }, + { + "id": 1379, + "name": "waxed_oxidized_copper_bulb", + "displayName": "Waxed Oxidized Copper Bulb", + "stackSize": 64 + }, + { + "id": 1380, + "name": "trial_spawner", + "displayName": "Trial Spawner", + "stackSize": 64 + }, + { + "id": 1381, + "name": "trial_key", + "displayName": "Trial Key", + "stackSize": 64 + }, + { + "id": 1382, + "name": "ominous_trial_key", + "displayName": "Ominous Trial Key", + "stackSize": 64 + }, + { + "id": 1383, + "name": "vault", + "displayName": "Vault", + "stackSize": 64 + }, + { + "id": 1384, + "name": "ominous_bottle", + "displayName": "Ominous Bottle", + "stackSize": 64 + } +] \ No newline at end of file diff --git a/data/pc/1.21.4/language.json b/data/pc/1.21.4/language.json new file mode 100644 index 000000000..fd13b81dd --- /dev/null +++ b/data/pc/1.21.4/language.json @@ -0,0 +1,7002 @@ +{ + "accessibility.onboarding.accessibility.button": "Accessibility Settings...", + "accessibility.onboarding.screen.narrator": "Press enter to enable the narrator", + "accessibility.onboarding.screen.title": "Welcome to Minecraft!\n\nWould you like to enable the Narrator or visit the Accessibility Settings?", + "addServer.add": "Done", + "addServer.enterIp": "Server Address", + "addServer.enterName": "Server Name", + "addServer.resourcePack": "Server Resource Packs", + "addServer.resourcePack.disabled": "Disabled", + "addServer.resourcePack.enabled": "Enabled", + "addServer.resourcePack.prompt": "Prompt", + "addServer.title": "Edit Server Info", + "advancement.advancementNotFound": "Unknown advancement: %s", + "advancements.adventure.adventuring_time.description": "Discover every biome", + "advancements.adventure.adventuring_time.title": "Adventuring Time", + "advancements.adventure.arbalistic.description": "Kill five unique mobs with one crossbow shot", + "advancements.adventure.arbalistic.title": "Arbalistic", + "advancements.adventure.avoid_vibration.description": "Sneak near a Sculk Sensor or Warden to prevent it from detecting you", + "advancements.adventure.avoid_vibration.title": "Sneak 100", + "advancements.adventure.blowback.description": "Kill a Breeze with a deflected Breeze-shot Wind Charge", + "advancements.adventure.blowback.title": "Blowback", + "advancements.adventure.brush_armadillo.description": "Get Armadillo Scutes from an Armadillo using a Brush", + "advancements.adventure.brush_armadillo.title": "Isn't It Scute?", + "advancements.adventure.bullseye.description": "Hit the bullseye of a Target block from at least 30 meters away", + "advancements.adventure.bullseye.title": "Bullseye", + "advancements.adventure.craft_decorated_pot_using_only_sherds.description": "Make a Decorated Pot out of 4 Pottery Sherds", + "advancements.adventure.craft_decorated_pot_using_only_sherds.title": "Careful Restoration", + "advancements.adventure.crafters_crafting_crafters.description": "Be near a Crafter when it crafts a Crafter", + "advancements.adventure.crafters_crafting_crafters.title": "Crafters Crafting Crafters", + "advancements.adventure.fall_from_world_height.description": "Free fall from the top of the world (build limit) to the bottom of the world and survive", + "advancements.adventure.fall_from_world_height.title": "Caves & Cliffs", + "advancements.adventure.hero_of_the_village.description": "Successfully defend a village from a raid", + "advancements.adventure.hero_of_the_village.title": "Hero of the Village", + "advancements.adventure.honey_block_slide.description": "Jump into a Honey Block to break your fall", + "advancements.adventure.honey_block_slide.title": "Sticky Situation", + "advancements.adventure.kill_a_mob.description": "Kill any hostile monster", + "advancements.adventure.kill_a_mob.title": "Monster Hunter", + "advancements.adventure.kill_all_mobs.description": "Kill one of every hostile monster", + "advancements.adventure.kill_all_mobs.title": "Monsters Hunted", + "advancements.adventure.kill_mob_near_sculk_catalyst.description": "Kill a mob near a Sculk Catalyst", + "advancements.adventure.kill_mob_near_sculk_catalyst.title": "It Spreads", + "advancements.adventure.lighten_up.description": "Scrape a Copper Bulb with an Axe to make it brighter", + "advancements.adventure.lighten_up.title": "Lighten Up", + "advancements.adventure.lightning_rod_with_villager_no_fire.description": "Protect a Villager from an undesired shock without starting a fire", + "advancements.adventure.lightning_rod_with_villager_no_fire.title": "Surge Protector", + "advancements.adventure.minecraft_trials_edition.description": "Step foot in a Trial Chamber", + "advancements.adventure.minecraft_trials_edition.title": "Minecraft: Trial(s) Edition", + "advancements.adventure.ol_betsy.description": "Shoot a Crossbow", + "advancements.adventure.ol_betsy.title": "Ol' Betsy", + "advancements.adventure.overoverkill.description": "Deal 50 hearts of damage in a single hit using the Mace", + "advancements.adventure.overoverkill.title": "Over-Overkill", + "advancements.adventure.play_jukebox_in_meadows.description": "Make the Meadows come alive with the sound of music from a Jukebox", + "advancements.adventure.play_jukebox_in_meadows.title": "Sound of Music", + "advancements.adventure.read_power_from_chiseled_bookshelf.description": "Read the power signal of a Chiseled Bookshelf using a Comparator", + "advancements.adventure.read_power_from_chiseled_bookshelf.title": "The Power of Books", + "advancements.adventure.revaulting.description": "Unlock an Ominous Vault with an Ominous Trial Key", + "advancements.adventure.revaulting.title": "Revaulting", + "advancements.adventure.root.description": "Adventure, exploration and combat", + "advancements.adventure.root.title": "Adventure", + "advancements.adventure.salvage_sherd.description": "Brush a Suspicious block to obtain a Pottery Sherd", + "advancements.adventure.salvage_sherd.title": "Respecting the Remnants", + "advancements.adventure.shoot_arrow.description": "Shoot something with an Arrow", + "advancements.adventure.shoot_arrow.title": "Take Aim", + "advancements.adventure.sleep_in_bed.description": "Sleep in a Bed to change your respawn point", + "advancements.adventure.sleep_in_bed.title": "Sweet Dreams", + "advancements.adventure.sniper_duel.description": "Kill a Skeleton from at least 50 meters away", + "advancements.adventure.sniper_duel.title": "Sniper Duel", + "advancements.adventure.spyglass_at_dragon.description": "Look at the Ender Dragon through a Spyglass", + "advancements.adventure.spyglass_at_dragon.title": "Is It a Plane?", + "advancements.adventure.spyglass_at_ghast.description": "Look at a Ghast through a Spyglass", + "advancements.adventure.spyglass_at_ghast.title": "Is It a Balloon?", + "advancements.adventure.spyglass_at_parrot.description": "Look at a Parrot through a Spyglass", + "advancements.adventure.spyglass_at_parrot.title": "Is It a Bird?", + "advancements.adventure.summon_iron_golem.description": "Summon an Iron Golem to help defend a village", + "advancements.adventure.summon_iron_golem.title": "Hired Help", + "advancements.adventure.throw_trident.description": "Throw a Trident at something.\nNote: Throwing away your only weapon is not a good idea.", + "advancements.adventure.throw_trident.title": "A Throwaway Joke", + "advancements.adventure.totem_of_undying.description": "Use a Totem of Undying to cheat death", + "advancements.adventure.totem_of_undying.title": "Postmortal", + "advancements.adventure.trade_at_world_height.description": "Trade with a Villager at the build height limit", + "advancements.adventure.trade_at_world_height.title": "Star Trader", + "advancements.adventure.trade.description": "Successfully trade with a Villager", + "advancements.adventure.trade.title": "What a Deal!", + "advancements.adventure.trim_with_all_exclusive_armor_patterns.description": "Apply these smithing templates at least once: Spire, Snout, Rib, Ward, Silence, Vex, Tide, Wayfinder", + "advancements.adventure.trim_with_all_exclusive_armor_patterns.title": "Smithing with Style", + "advancements.adventure.trim_with_any_armor_pattern.description": "Craft trimmed armor at a Smithing Table", + "advancements.adventure.trim_with_any_armor_pattern.title": "Crafting a New Look", + "advancements.adventure.two_birds_one_arrow.description": "Kill two Phantoms with a piercing Arrow", + "advancements.adventure.two_birds_one_arrow.title": "Two Birds, One Arrow", + "advancements.adventure.under_lock_and_key.description": "Unlock a Vault with a Trial Key", + "advancements.adventure.under_lock_and_key.title": "Under Lock and Key", + "advancements.adventure.very_very_frightening.description": "Strike a Villager with lightning", + "advancements.adventure.very_very_frightening.title": "Very Very Frightening", + "advancements.adventure.voluntary_exile.description": "Kill a raid captain.\nMaybe consider staying away from villages for the time being...", + "advancements.adventure.voluntary_exile.title": "Voluntary Exile", + "advancements.adventure.walk_on_powder_snow_with_leather_boots.description": "Walk on Powder Snow... without sinking in it", + "advancements.adventure.walk_on_powder_snow_with_leather_boots.title": "Light as a Rabbit", + "advancements.adventure.who_needs_rockets.description": "Use a Wind Charge to launch yourself upward 8 blocks", + "advancements.adventure.who_needs_rockets.title": "Who Needs Rockets?", + "advancements.adventure.whos_the_pillager_now.description": "Give a Pillager a taste of their own medicine", + "advancements.adventure.whos_the_pillager_now.title": "Who's the Pillager Now?", + "advancements.empty": "There doesn't seem to be anything here...", + "advancements.end.dragon_breath.description": "Collect Dragon's Breath in a Glass Bottle", + "advancements.end.dragon_breath.title": "You Need a Mint", + "advancements.end.dragon_egg.description": "Hold the Dragon Egg", + "advancements.end.dragon_egg.title": "The Next Generation", + "advancements.end.elytra.description": "Find Elytra", + "advancements.end.elytra.title": "Sky's the Limit", + "advancements.end.enter_end_gateway.description": "Escape the island", + "advancements.end.enter_end_gateway.title": "Remote Getaway", + "advancements.end.find_end_city.description": "Go on in, what could happen?", + "advancements.end.find_end_city.title": "The City at the End of the Game", + "advancements.end.kill_dragon.description": "Good luck", + "advancements.end.kill_dragon.title": "Free the End", + "advancements.end.levitate.description": "Levitate up 50 blocks from the attacks of a Shulker", + "advancements.end.levitate.title": "Great View From Up Here", + "advancements.end.respawn_dragon.description": "Respawn the Ender Dragon", + "advancements.end.respawn_dragon.title": "The End... Again...", + "advancements.end.root.description": "Or the beginning?", + "advancements.end.root.title": "The End", + "advancements.husbandry.allay_deliver_cake_to_note_block.description": "Have an Allay drop a Cake at a Note Block", + "advancements.husbandry.allay_deliver_cake_to_note_block.title": "Birthday Song", + "advancements.husbandry.allay_deliver_item_to_player.description": "Have an Allay deliver items to you", + "advancements.husbandry.allay_deliver_item_to_player.title": "You've Got a Friend in Me", + "advancements.husbandry.axolotl_in_a_bucket.description": "Catch an Axolotl in a Bucket", + "advancements.husbandry.axolotl_in_a_bucket.title": "The Cutest Predator", + "advancements.husbandry.balanced_diet.description": "Eat everything that is edible, even if it's not good for you", + "advancements.husbandry.balanced_diet.title": "A Balanced Diet", + "advancements.husbandry.breed_all_animals.description": "Breed all the animals!", + "advancements.husbandry.breed_all_animals.title": "Two by Two", + "advancements.husbandry.breed_an_animal.description": "Breed two animals together", + "advancements.husbandry.breed_an_animal.title": "The Parrots and the Bats", + "advancements.husbandry.complete_catalogue.description": "Tame all Cat variants!", + "advancements.husbandry.complete_catalogue.title": "A Complete Catalogue", + "advancements.husbandry.feed_snifflet.description": "Feed a Snifflet", + "advancements.husbandry.feed_snifflet.title": "Little Sniffs", + "advancements.husbandry.fishy_business.description": "Catch a fish", + "advancements.husbandry.fishy_business.title": "Fishy Business", + "advancements.husbandry.froglights.description": "Have all Froglights in your inventory", + "advancements.husbandry.froglights.title": "With Our Powers Combined!", + "advancements.husbandry.kill_axolotl_target.description": "Team up with an Axolotl and win a fight", + "advancements.husbandry.kill_axolotl_target.title": "The Healing Power of Friendship!", + "advancements.husbandry.leash_all_frog_variants.description": "Get each Frog variant on a Lead", + "advancements.husbandry.leash_all_frog_variants.title": "When the Squad Hops into Town", + "advancements.husbandry.make_a_sign_glow.description": "Make the text of any kind of sign glow", + "advancements.husbandry.make_a_sign_glow.title": "Glow and Behold!", + "advancements.husbandry.netherite_hoe.description": "Use a Netherite Ingot to upgrade a Hoe, and then reevaluate your life choices", + "advancements.husbandry.netherite_hoe.title": "Serious Dedication", + "advancements.husbandry.obtain_sniffer_egg.description": "Obtain a Sniffer Egg", + "advancements.husbandry.obtain_sniffer_egg.title": "Smells Interesting", + "advancements.husbandry.plant_any_sniffer_seed.description": "Plant any Sniffer seed", + "advancements.husbandry.plant_any_sniffer_seed.title": "Planting the Past", + "advancements.husbandry.plant_seed.description": "Plant a seed and watch it grow", + "advancements.husbandry.plant_seed.title": "A Seedy Place", + "advancements.husbandry.remove_wolf_armor.description": "Remove Wolf Armor from a Wolf using Shears", + "advancements.husbandry.remove_wolf_armor.title": "Shear Brilliance", + "advancements.husbandry.repair_wolf_armor.description": "Fully repair damaged Wolf Armor using Armadillo Scutes", + "advancements.husbandry.repair_wolf_armor.title": "Good as New", + "advancements.husbandry.ride_a_boat_with_a_goat.description": "Get in a Boat and float with a Goat", + "advancements.husbandry.ride_a_boat_with_a_goat.title": "Whatever Floats Your Goat!", + "advancements.husbandry.root.description": "The world is full of friends and food", + "advancements.husbandry.root.title": "Husbandry", + "advancements.husbandry.safely_harvest_honey.description": "Use a Campfire to collect Honey from a Beehive using a Glass Bottle without aggravating the Bees", + "advancements.husbandry.safely_harvest_honey.title": "Bee Our Guest", + "advancements.husbandry.silk_touch_nest.description": "Move a Bee Nest or Beehive, with 3 Bees inside, using Silk Touch", + "advancements.husbandry.silk_touch_nest.title": "Total Beelocation", + "advancements.husbandry.tactical_fishing.description": "Catch a Fish... without a Fishing Rod!", + "advancements.husbandry.tactical_fishing.title": "Tactical Fishing", + "advancements.husbandry.tadpole_in_a_bucket.description": "Catch a Tadpole in a Bucket", + "advancements.husbandry.tadpole_in_a_bucket.title": "Bukkit Bukkit", + "advancements.husbandry.tame_an_animal.description": "Tame an animal", + "advancements.husbandry.tame_an_animal.title": "Best Friends Forever", + "advancements.husbandry.wax_off.description": "Scrape Wax off of a Copper block!", + "advancements.husbandry.wax_off.title": "Wax Off", + "advancements.husbandry.wax_on.description": "Apply Honeycomb to a Copper block!", + "advancements.husbandry.wax_on.title": "Wax On", + "advancements.husbandry.whole_pack.description": "Tame one of each Wolf variant", + "advancements.husbandry.whole_pack.title": "The Whole Pack", + "advancements.nether.all_effects.description": "Have every effect applied at the same time", + "advancements.nether.all_effects.title": "How Did We Get Here?", + "advancements.nether.all_potions.description": "Have every potion effect applied at the same time", + "advancements.nether.all_potions.title": "A Furious Cocktail", + "advancements.nether.brew_potion.description": "Brew a Potion", + "advancements.nether.brew_potion.title": "Local Brewery", + "advancements.nether.charge_respawn_anchor.description": "Charge a Respawn Anchor to the maximum", + "advancements.nether.charge_respawn_anchor.title": "Not Quite \"Nine\" Lives", + "advancements.nether.create_beacon.description": "Construct and place a Beacon", + "advancements.nether.create_beacon.title": "Bring Home the Beacon", + "advancements.nether.create_full_beacon.description": "Bring a Beacon to full power", + "advancements.nether.create_full_beacon.title": "Beaconator", + "advancements.nether.distract_piglin.description": "Distract Piglins with gold", + "advancements.nether.distract_piglin.title": "Oh Shiny", + "advancements.nether.explore_nether.description": "Explore all Nether biomes", + "advancements.nether.explore_nether.title": "Hot Tourist Destinations", + "advancements.nether.fast_travel.description": "Use the Nether to travel 7 km in the Overworld", + "advancements.nether.fast_travel.title": "Subspace Bubble", + "advancements.nether.find_bastion.description": "Enter a Bastion Remnant", + "advancements.nether.find_bastion.title": "Those Were the Days", + "advancements.nether.find_fortress.description": "Break your way into a Nether Fortress", + "advancements.nether.find_fortress.title": "A Terrible Fortress", + "advancements.nether.get_wither_skull.description": "Obtain a Wither Skeleton's skull", + "advancements.nether.get_wither_skull.title": "Spooky Scary Skeleton", + "advancements.nether.loot_bastion.description": "Loot a Chest in a Bastion Remnant", + "advancements.nether.loot_bastion.title": "War Pigs", + "advancements.nether.netherite_armor.description": "Get a full suit of Netherite armor", + "advancements.nether.netherite_armor.title": "Cover Me in Debris", + "advancements.nether.obtain_ancient_debris.description": "Obtain Ancient Debris", + "advancements.nether.obtain_ancient_debris.title": "Hidden in the Depths", + "advancements.nether.obtain_blaze_rod.description": "Relieve a Blaze of its rod", + "advancements.nether.obtain_blaze_rod.title": "Into Fire", + "advancements.nether.obtain_crying_obsidian.description": "Obtain Crying Obsidian", + "advancements.nether.obtain_crying_obsidian.title": "Who is Cutting Onions?", + "advancements.nether.return_to_sender.description": "Destroy a Ghast with a fireball", + "advancements.nether.return_to_sender.title": "Return to Sender", + "advancements.nether.ride_strider_in_overworld_lava.description": "Take a Strider for a loooong ride on a lava lake in the Overworld", + "advancements.nether.ride_strider_in_overworld_lava.title": "Feels Like Home", + "advancements.nether.ride_strider.description": "Ride a Strider with a Warped Fungus on a Stick", + "advancements.nether.ride_strider.title": "This Boat Has Legs", + "advancements.nether.root.description": "Bring summer clothes", + "advancements.nether.root.title": "Nether", + "advancements.nether.summon_wither.description": "Summon the Wither", + "advancements.nether.summon_wither.title": "Withering Heights", + "advancements.nether.uneasy_alliance.description": "Rescue a Ghast from the Nether, bring it safely home to the Overworld... and then kill it", + "advancements.nether.uneasy_alliance.title": "Uneasy Alliance", + "advancements.nether.use_lodestone.description": "Use a Compass on a Lodestone", + "advancements.nether.use_lodestone.title": "Country Lode, Take Me Home", + "advancements.progress": "%s/%s", + "advancements.sad_label": ":(", + "advancements.story.cure_zombie_villager.description": "Weaken and then cure a Zombie Villager", + "advancements.story.cure_zombie_villager.title": "Zombie Doctor", + "advancements.story.deflect_arrow.description": "Deflect a projectile with a Shield", + "advancements.story.deflect_arrow.title": "Not Today, Thank You", + "advancements.story.enchant_item.description": "Enchant an item at an Enchanting Table", + "advancements.story.enchant_item.title": "Enchanter", + "advancements.story.enter_the_end.description": "Enter the End Portal", + "advancements.story.enter_the_end.title": "The End?", + "advancements.story.enter_the_nether.description": "Build, light and enter a Nether Portal", + "advancements.story.enter_the_nether.title": "We Need to Go Deeper", + "advancements.story.follow_ender_eye.description": "Follow an Eye of Ender", + "advancements.story.follow_ender_eye.title": "Eye Spy", + "advancements.story.form_obsidian.description": "Obtain a block of Obsidian", + "advancements.story.form_obsidian.title": "Ice Bucket Challenge", + "advancements.story.iron_tools.description": "Upgrade your Pickaxe", + "advancements.story.iron_tools.title": "Isn't It Iron Pick", + "advancements.story.lava_bucket.description": "Fill a Bucket with lava", + "advancements.story.lava_bucket.title": "Hot Stuff", + "advancements.story.mine_diamond.description": "Acquire diamonds", + "advancements.story.mine_diamond.title": "Diamonds!", + "advancements.story.mine_stone.description": "Mine Stone with your new Pickaxe", + "advancements.story.mine_stone.title": "Stone Age", + "advancements.story.obtain_armor.description": "Protect yourself with a piece of iron armor", + "advancements.story.obtain_armor.title": "Suit Up", + "advancements.story.root.description": "The heart and story of the game", + "advancements.story.root.title": "Minecraft", + "advancements.story.shiny_gear.description": "Diamond armor saves lives", + "advancements.story.shiny_gear.title": "Cover Me with Diamonds", + "advancements.story.smelt_iron.description": "Smelt an Iron Ingot", + "advancements.story.smelt_iron.title": "Acquire Hardware", + "advancements.story.upgrade_tools.description": "Construct a better Pickaxe", + "advancements.story.upgrade_tools.title": "Getting an Upgrade", + "advancements.toast.challenge": "Challenge Complete!", + "advancements.toast.goal": "Goal Reached!", + "advancements.toast.task": "Advancement Made!", + "advMode.command": "Console Command", + "advMode.mode": "Mode", + "advMode.mode.auto": "Repeat", + "advMode.mode.autoexec.bat": "Always Active", + "advMode.mode.conditional": "Conditional", + "advMode.mode.redstone": "Impulse", + "advMode.mode.redstoneTriggered": "Needs Redstone", + "advMode.mode.sequence": "Chain", + "advMode.mode.unconditional": "Unconditional", + "advMode.notAllowed": "Must be an opped player in creative mode", + "advMode.notEnabled": "Command blocks are not enabled on this server", + "advMode.previousOutput": "Previous Output", + "advMode.setCommand": "Set Console Command for Block", + "advMode.setCommand.success": "Command set: %s", + "advMode.trackOutput": "Track output", + "advMode.triggering": "Triggering", + "advMode.type": "Type", + "argument.anchor.invalid": "Invalid entity anchor position %s", + "argument.angle.incomplete": "Incomplete (expected 1 angle)", + "argument.angle.invalid": "Invalid angle", + "argument.block.id.invalid": "Unknown block type '%s'", + "argument.block.property.duplicate": "Property '%s' can only be set once for block %s", + "argument.block.property.invalid": "Block %s does not accept '%s' for %s property", + "argument.block.property.novalue": "Expected value for property '%s' on block %s", + "argument.block.property.unclosed": "Expected closing ] for block state properties", + "argument.block.property.unknown": "Block %s does not have property '%s'", + "argument.block.tag.disallowed": "Tags aren't allowed here, only actual blocks", + "argument.color.invalid": "Unknown color '%s'", + "argument.component.invalid": "Invalid chat component: %s", + "argument.criteria.invalid": "Unknown criterion '%s'", + "argument.dimension.invalid": "Unknown dimension '%s'", + "argument.double.big": "Double must not be more than %s, found %s", + "argument.double.low": "Double must not be less than %s, found %s", + "argument.entity.invalid": "Invalid name or UUID", + "argument.entity.notfound.entity": "No entity was found", + "argument.entity.notfound.player": "No player was found", + "argument.entity.options.advancements.description": "Players with advancements", + "argument.entity.options.distance.description": "Distance to entity", + "argument.entity.options.distance.negative": "Distance cannot be negative", + "argument.entity.options.dx.description": "Entities between x and x + dx", + "argument.entity.options.dy.description": "Entities between y and y + dy", + "argument.entity.options.dz.description": "Entities between z and z + dz", + "argument.entity.options.gamemode.description": "Players with game mode", + "argument.entity.options.inapplicable": "Option '%s' isn't applicable here", + "argument.entity.options.level.description": "Experience level", + "argument.entity.options.level.negative": "Level shouldn't be negative", + "argument.entity.options.limit.description": "Maximum number of entities to return", + "argument.entity.options.limit.toosmall": "Limit must be at least 1", + "argument.entity.options.mode.invalid": "Invalid or unknown game mode '%s'", + "argument.entity.options.name.description": "Entity name", + "argument.entity.options.nbt.description": "Entities with NBT", + "argument.entity.options.predicate.description": "Custom predicate", + "argument.entity.options.scores.description": "Entities with scores", + "argument.entity.options.sort.description": "Sort the entities", + "argument.entity.options.sort.irreversible": "Invalid or unknown sort type '%s'", + "argument.entity.options.tag.description": "Entities with tag", + "argument.entity.options.team.description": "Entities on team", + "argument.entity.options.type.description": "Entities of type", + "argument.entity.options.type.invalid": "Invalid or unknown entity type '%s'", + "argument.entity.options.unknown": "Unknown option '%s'", + "argument.entity.options.unterminated": "Expected end of options", + "argument.entity.options.valueless": "Expected value for option '%s'", + "argument.entity.options.x_rotation.description": "Entity's x rotation", + "argument.entity.options.x.description": "x position", + "argument.entity.options.y_rotation.description": "Entity's y rotation", + "argument.entity.options.y.description": "y position", + "argument.entity.options.z.description": "z position", + "argument.entity.selector.allEntities": "All entities", + "argument.entity.selector.allPlayers": "All players", + "argument.entity.selector.missing": "Missing selector type", + "argument.entity.selector.nearestEntity": "Nearest entity", + "argument.entity.selector.nearestPlayer": "Nearest player", + "argument.entity.selector.not_allowed": "Selector not allowed", + "argument.entity.selector.randomPlayer": "Random player", + "argument.entity.selector.self": "Current entity", + "argument.entity.selector.unknown": "Unknown selector type '%s'", + "argument.entity.toomany": "Only one entity is allowed, but the provided selector allows more than one", + "argument.enum.invalid": "Invalid value \"%s\"", + "argument.float.big": "Float must not be more than %s, found %s", + "argument.float.low": "Float must not be less than %s, found %s", + "argument.gamemode.invalid": "Unknown game mode: %s", + "argument.id.invalid": "Invalid ID", + "argument.id.unknown": "Unknown ID: %s", + "argument.integer.big": "Integer must not be more than %s, found %s", + "argument.integer.low": "Integer must not be less than %s, found %s", + "argument.item.id.invalid": "Unknown item '%s'", + "argument.item.tag.disallowed": "Tags aren't allowed here, only actual items", + "argument.literal.incorrect": "Expected literal %s", + "argument.long.big": "Long must not be more than %s, found %s", + "argument.long.low": "Long must not be less than %s, found %s", + "argument.message.too_long": "Chat message was too long (%s > maximum %s characters)", + "argument.nbt.array.invalid": "Invalid array type '%s'", + "argument.nbt.array.mixed": "Can't insert %s into %s", + "argument.nbt.expected.key": "Expected key", + "argument.nbt.expected.value": "Expected value", + "argument.nbt.list.mixed": "Can't insert %s into list of %s", + "argument.nbt.trailing": "Unexpected trailing data", + "argument.player.entities": "Only players may be affected by this command, but the provided selector includes entities", + "argument.player.toomany": "Only one player is allowed, but the provided selector allows more than one", + "argument.player.unknown": "That player does not exist", + "argument.pos.missing.double": "Expected a coordinate", + "argument.pos.missing.int": "Expected a block position", + "argument.pos.mixed": "Cannot mix world & local coordinates (everything must either use ^ or not)", + "argument.pos.outofbounds": "That position is outside the allowed boundaries.", + "argument.pos.outofworld": "That position is out of this world!", + "argument.pos.unloaded": "That position is not loaded", + "argument.pos2d.incomplete": "Incomplete (expected 2 coordinates)", + "argument.pos3d.incomplete": "Incomplete (expected 3 coordinates)", + "argument.range.empty": "Expected value or range of values", + "argument.range.ints": "Only whole numbers allowed, not decimals", + "argument.range.swapped": "Min cannot be bigger than max", + "argument.resource_or_id.failed_to_parse": "Failed to parse structure: %s", + "argument.resource_or_id.invalid": "Invalid id or tag", + "argument.resource_tag.invalid_type": "Tag '%s' has wrong type '%s' (expected '%s')", + "argument.resource_tag.not_found": "Can't find tag '%s' of type '%s'", + "argument.resource.invalid_type": "Element '%s' has wrong type '%s' (expected '%s')", + "argument.resource.not_found": "Can't find element '%s' of type '%s'", + "argument.rotation.incomplete": "Incomplete (expected 2 coordinates)", + "argument.scoreboardDisplaySlot.invalid": "Unknown display slot '%s'", + "argument.scoreHolder.empty": "No relevant score holders could be found", + "argument.style.invalid": "Invalid style: %s", + "argument.time.invalid_tick_count": "The tick count must be non-negative", + "argument.time.invalid_unit": "Invalid unit", + "argument.time.tick_count_too_low": "The tick count must not be less than %s, found %s", + "argument.uuid.invalid": "Invalid UUID", + "arguments.block.tag.unknown": "Unknown block tag '%s'", + "arguments.function.tag.unknown": "Unknown function tag '%s'", + "arguments.function.unknown": "Unknown function %s", + "arguments.item.component.expected": "Expected item component", + "arguments.item.component.malformed": "Malformed '%s' component: '%s'", + "arguments.item.component.repeated": "Item component '%s' was repeated, but only one value can be specified", + "arguments.item.component.unknown": "Unknown item component '%s'", + "arguments.item.malformed": "Malformed item: '%s'", + "arguments.item.overstacked": "%s can only stack up to %s", + "arguments.item.predicate.malformed": "Malformed '%s' predicate: '%s'", + "arguments.item.predicate.unknown": "Unknown item predicate '%s'", + "arguments.item.tag.unknown": "Unknown item tag '%s'", + "arguments.nbtpath.node.invalid": "Invalid NBT path element", + "arguments.nbtpath.nothing_found": "Found no elements matching %s", + "arguments.nbtpath.too_deep": "Resulting NBT too deeply nested", + "arguments.nbtpath.too_large": "Resulting NBT too large", + "arguments.objective.notFound": "Unknown scoreboard objective '%s'", + "arguments.objective.readonly": "Scoreboard objective '%s' is read-only", + "arguments.operation.div0": "Cannot divide by zero", + "arguments.operation.invalid": "Invalid operation", + "arguments.swizzle.invalid": "Invalid swizzle, expected combination of 'x', 'y' and 'z'", + "attribute.modifier.equals.0": "%s %s", + "attribute.modifier.equals.1": "%s%% %s", + "attribute.modifier.equals.2": "%s%% %s", + "attribute.modifier.plus.0": "+%s %s", + "attribute.modifier.plus.1": "+%s%% %s", + "attribute.modifier.plus.2": "+%s%% %s", + "attribute.modifier.take.0": "-%s %s", + "attribute.modifier.take.1": "-%s%% %s", + "attribute.modifier.take.2": "-%s%% %s", + "attribute.name.armor": "Armor", + "attribute.name.armor_toughness": "Armor Toughness", + "attribute.name.attack_damage": "Attack Damage", + "attribute.name.attack_knockback": "Attack Knockback", + "attribute.name.attack_speed": "Attack Speed", + "attribute.name.block_break_speed": "Block Break Speed", + "attribute.name.block_interaction_range": "Block Interaction Range", + "attribute.name.burning_time": "Burning Time", + "attribute.name.entity_interaction_range": "Entity Interaction Range", + "attribute.name.explosion_knockback_resistance": "Explosion Knockback Resistance", + "attribute.name.fall_damage_multiplier": "Fall Damage Multiplier", + "attribute.name.flying_speed": "Flying Speed", + "attribute.name.follow_range": "Mob Follow Range", + "attribute.name.generic.armor": "Armor", + "attribute.name.generic.armor_toughness": "Armor Toughness", + "attribute.name.generic.attack_damage": "Attack Damage", + "attribute.name.generic.attack_knockback": "Attack Knockback", + "attribute.name.generic.attack_speed": "Attack Speed", + "attribute.name.generic.block_interaction_range": "Block Interaction Range", + "attribute.name.generic.burning_time": "Burning Time", + "attribute.name.generic.entity_interaction_range": "Entity Interaction Range", + "attribute.name.generic.explosion_knockback_resistance": "Explosion Knockback Resistance", + "attribute.name.generic.fall_damage_multiplier": "Fall Damage Multiplier", + "attribute.name.generic.flying_speed": "Flying Speed", + "attribute.name.generic.follow_range": "Mob Follow Range", + "attribute.name.generic.gravity": "Gravity", + "attribute.name.generic.jump_strength": "Jump Strength", + "attribute.name.generic.knockback_resistance": "Knockback Resistance", + "attribute.name.generic.luck": "Luck", + "attribute.name.generic.max_absorption": "Max Absorption", + "attribute.name.generic.max_health": "Max Health", + "attribute.name.generic.movement_efficiency": "Movement Efficiency", + "attribute.name.generic.movement_speed": "Speed", + "attribute.name.generic.oxygen_bonus": "Oxygen Bonus", + "attribute.name.generic.safe_fall_distance": "Safe Fall Distance", + "attribute.name.generic.scale": "Scale", + "attribute.name.generic.step_height": "Step Height", + "attribute.name.generic.water_movement_efficiency": "Water Movement Efficiency", + "attribute.name.gravity": "Gravity", + "attribute.name.horse.jump_strength": "Horse Jump Strength", + "attribute.name.jump_strength": "Jump Strength", + "attribute.name.knockback_resistance": "Knockback Resistance", + "attribute.name.luck": "Luck", + "attribute.name.max_absorption": "Max Absorption", + "attribute.name.max_health": "Max Health", + "attribute.name.mining_efficiency": "Mining Efficiency", + "attribute.name.movement_efficiency": "Movement Efficiency", + "attribute.name.movement_speed": "Speed", + "attribute.name.oxygen_bonus": "Oxygen Bonus", + "attribute.name.player.block_break_speed": "Block Break Speed", + "attribute.name.player.block_interaction_range": "Block Interaction Range", + "attribute.name.player.entity_interaction_range": "Entity Interaction Range", + "attribute.name.player.mining_efficiency": "Mining Efficiency", + "attribute.name.player.sneaking_speed": "Sneaking Speed", + "attribute.name.player.submerged_mining_speed": "Submerged Mining Speed", + "attribute.name.player.sweeping_damage_ratio": "Sweeping Damage Ratio", + "attribute.name.safe_fall_distance": "Safe Fall Distance", + "attribute.name.scale": "Scale", + "attribute.name.sneaking_speed": "Sneaking Speed", + "attribute.name.spawn_reinforcements": "Zombie Reinforcements", + "attribute.name.step_height": "Step Height", + "attribute.name.submerged_mining_speed": "Submerged Mining Speed", + "attribute.name.sweeping_damage_ratio": "Sweeping Damage Ratio", + "attribute.name.tempt_range": "Mob Tempt Range", + "attribute.name.water_movement_efficiency": "Water Movement Efficiency", + "attribute.name.zombie.spawn_reinforcements": "Zombie Reinforcements", + "biome.minecraft.badlands": "Badlands", + "biome.minecraft.bamboo_jungle": "Bamboo Jungle", + "biome.minecraft.basalt_deltas": "Basalt Deltas", + "biome.minecraft.beach": "Beach", + "biome.minecraft.birch_forest": "Birch Forest", + "biome.minecraft.cherry_grove": "Cherry Grove", + "biome.minecraft.cold_ocean": "Cold Ocean", + "biome.minecraft.crimson_forest": "Crimson Forest", + "biome.minecraft.dark_forest": "Dark Forest", + "biome.minecraft.deep_cold_ocean": "Deep Cold Ocean", + "biome.minecraft.deep_dark": "Deep Dark", + "biome.minecraft.deep_frozen_ocean": "Deep Frozen Ocean", + "biome.minecraft.deep_lukewarm_ocean": "Deep Lukewarm Ocean", + "biome.minecraft.deep_ocean": "Deep Ocean", + "biome.minecraft.desert": "Desert", + "biome.minecraft.dripstone_caves": "Dripstone Caves", + "biome.minecraft.end_barrens": "End Barrens", + "biome.minecraft.end_highlands": "End Highlands", + "biome.minecraft.end_midlands": "End Midlands", + "biome.minecraft.eroded_badlands": "Eroded Badlands", + "biome.minecraft.flower_forest": "Flower Forest", + "biome.minecraft.forest": "Forest", + "biome.minecraft.frozen_ocean": "Frozen Ocean", + "biome.minecraft.frozen_peaks": "Frozen Peaks", + "biome.minecraft.frozen_river": "Frozen River", + "biome.minecraft.grove": "Grove", + "biome.minecraft.ice_spikes": "Ice Spikes", + "biome.minecraft.jagged_peaks": "Jagged Peaks", + "biome.minecraft.jungle": "Jungle", + "biome.minecraft.lukewarm_ocean": "Lukewarm Ocean", + "biome.minecraft.lush_caves": "Lush Caves", + "biome.minecraft.mangrove_swamp": "Mangrove Swamp", + "biome.minecraft.meadow": "Meadow", + "biome.minecraft.mushroom_fields": "Mushroom Fields", + "biome.minecraft.nether_wastes": "Nether Wastes", + "biome.minecraft.ocean": "Ocean", + "biome.minecraft.old_growth_birch_forest": "Old Growth Birch Forest", + "biome.minecraft.old_growth_pine_taiga": "Old Growth Pine Taiga", + "biome.minecraft.old_growth_spruce_taiga": "Old Growth Spruce Taiga", + "biome.minecraft.pale_garden": "Pale Garden", + "biome.minecraft.plains": "Plains", + "biome.minecraft.river": "River", + "biome.minecraft.savanna": "Savanna", + "biome.minecraft.savanna_plateau": "Savanna Plateau", + "biome.minecraft.small_end_islands": "Small End Islands", + "biome.minecraft.snowy_beach": "Snowy Beach", + "biome.minecraft.snowy_plains": "Snowy Plains", + "biome.minecraft.snowy_slopes": "Snowy Slopes", + "biome.minecraft.snowy_taiga": "Snowy Taiga", + "biome.minecraft.soul_sand_valley": "Soul Sand Valley", + "biome.minecraft.sparse_jungle": "Sparse Jungle", + "biome.minecraft.stony_peaks": "Stony Peaks", + "biome.minecraft.stony_shore": "Stony Shore", + "biome.minecraft.sunflower_plains": "Sunflower Plains", + "biome.minecraft.swamp": "Swamp", + "biome.minecraft.taiga": "Taiga", + "biome.minecraft.the_end": "The End", + "biome.minecraft.the_void": "The Void", + "biome.minecraft.warm_ocean": "Warm Ocean", + "biome.minecraft.warped_forest": "Warped Forest", + "biome.minecraft.windswept_forest": "Windswept Forest", + "biome.minecraft.windswept_gravelly_hills": "Windswept Gravelly Hills", + "biome.minecraft.windswept_hills": "Windswept Hills", + "biome.minecraft.windswept_savanna": "Windswept Savanna", + "biome.minecraft.wooded_badlands": "Wooded Badlands", + "block.minecraft.acacia_button": "Acacia Button", + "block.minecraft.acacia_door": "Acacia Door", + "block.minecraft.acacia_fence": "Acacia Fence", + "block.minecraft.acacia_fence_gate": "Acacia Fence Gate", + "block.minecraft.acacia_hanging_sign": "Acacia Hanging Sign", + "block.minecraft.acacia_leaves": "Acacia Leaves", + "block.minecraft.acacia_log": "Acacia Log", + "block.minecraft.acacia_planks": "Acacia Planks", + "block.minecraft.acacia_pressure_plate": "Acacia Pressure Plate", + "block.minecraft.acacia_sapling": "Acacia Sapling", + "block.minecraft.acacia_sign": "Acacia Sign", + "block.minecraft.acacia_slab": "Acacia Slab", + "block.minecraft.acacia_stairs": "Acacia Stairs", + "block.minecraft.acacia_trapdoor": "Acacia Trapdoor", + "block.minecraft.acacia_wall_hanging_sign": "Acacia Wall Hanging Sign", + "block.minecraft.acacia_wall_sign": "Acacia Wall Sign", + "block.minecraft.acacia_wood": "Acacia Wood", + "block.minecraft.activator_rail": "Activator Rail", + "block.minecraft.air": "Air", + "block.minecraft.allium": "Allium", + "block.minecraft.amethyst_block": "Block of Amethyst", + "block.minecraft.amethyst_cluster": "Amethyst Cluster", + "block.minecraft.ancient_debris": "Ancient Debris", + "block.minecraft.andesite": "Andesite", + "block.minecraft.andesite_slab": "Andesite Slab", + "block.minecraft.andesite_stairs": "Andesite Stairs", + "block.minecraft.andesite_wall": "Andesite Wall", + "block.minecraft.anvil": "Anvil", + "block.minecraft.attached_melon_stem": "Attached Melon Stem", + "block.minecraft.attached_pumpkin_stem": "Attached Pumpkin Stem", + "block.minecraft.azalea": "Azalea", + "block.minecraft.azalea_leaves": "Azalea Leaves", + "block.minecraft.azure_bluet": "Azure Bluet", + "block.minecraft.bamboo": "Bamboo", + "block.minecraft.bamboo_block": "Block of Bamboo", + "block.minecraft.bamboo_button": "Bamboo Button", + "block.minecraft.bamboo_door": "Bamboo Door", + "block.minecraft.bamboo_fence": "Bamboo Fence", + "block.minecraft.bamboo_fence_gate": "Bamboo Fence Gate", + "block.minecraft.bamboo_hanging_sign": "Bamboo Hanging Sign", + "block.minecraft.bamboo_mosaic": "Bamboo Mosaic", + "block.minecraft.bamboo_mosaic_slab": "Bamboo Mosaic Slab", + "block.minecraft.bamboo_mosaic_stairs": "Bamboo Mosaic Stairs", + "block.minecraft.bamboo_planks": "Bamboo Planks", + "block.minecraft.bamboo_pressure_plate": "Bamboo Pressure Plate", + "block.minecraft.bamboo_sapling": "Bamboo Shoot", + "block.minecraft.bamboo_sign": "Bamboo Sign", + "block.minecraft.bamboo_slab": "Bamboo Slab", + "block.minecraft.bamboo_stairs": "Bamboo Stairs", + "block.minecraft.bamboo_trapdoor": "Bamboo Trapdoor", + "block.minecraft.bamboo_wall_hanging_sign": "Bamboo Wall Hanging Sign", + "block.minecraft.bamboo_wall_sign": "Bamboo Wall Sign", + "block.minecraft.banner.base.black": "Fully Black Field", + "block.minecraft.banner.base.blue": "Fully Blue Field", + "block.minecraft.banner.base.brown": "Fully Brown Field", + "block.minecraft.banner.base.cyan": "Fully Cyan Field", + "block.minecraft.banner.base.gray": "Fully Gray Field", + "block.minecraft.banner.base.green": "Fully Green Field", + "block.minecraft.banner.base.light_blue": "Fully Light Blue Field", + "block.minecraft.banner.base.light_gray": "Fully Light Gray Field", + "block.minecraft.banner.base.lime": "Fully Lime Field", + "block.minecraft.banner.base.magenta": "Fully Magenta Field", + "block.minecraft.banner.base.orange": "Fully Orange Field", + "block.minecraft.banner.base.pink": "Fully Pink Field", + "block.minecraft.banner.base.purple": "Fully Purple Field", + "block.minecraft.banner.base.red": "Fully Red Field", + "block.minecraft.banner.base.white": "Fully White Field", + "block.minecraft.banner.base.yellow": "Fully Yellow Field", + "block.minecraft.banner.border.black": "Black Bordure", + "block.minecraft.banner.border.blue": "Blue Bordure", + "block.minecraft.banner.border.brown": "Brown Bordure", + "block.minecraft.banner.border.cyan": "Cyan Bordure", + "block.minecraft.banner.border.gray": "Gray Bordure", + "block.minecraft.banner.border.green": "Green Bordure", + "block.minecraft.banner.border.light_blue": "Light Blue Bordure", + "block.minecraft.banner.border.light_gray": "Light Gray Bordure", + "block.minecraft.banner.border.lime": "Lime Bordure", + "block.minecraft.banner.border.magenta": "Magenta Bordure", + "block.minecraft.banner.border.orange": "Orange Bordure", + "block.minecraft.banner.border.pink": "Pink Bordure", + "block.minecraft.banner.border.purple": "Purple Bordure", + "block.minecraft.banner.border.red": "Red Bordure", + "block.minecraft.banner.border.white": "White Bordure", + "block.minecraft.banner.border.yellow": "Yellow Bordure", + "block.minecraft.banner.bricks.black": "Black Field Masoned", + "block.minecraft.banner.bricks.blue": "Blue Field Masoned", + "block.minecraft.banner.bricks.brown": "Brown Field Masoned", + "block.minecraft.banner.bricks.cyan": "Cyan Field Masoned", + "block.minecraft.banner.bricks.gray": "Gray Field Masoned", + "block.minecraft.banner.bricks.green": "Green Field Masoned", + "block.minecraft.banner.bricks.light_blue": "Light Blue Field Masoned", + "block.minecraft.banner.bricks.light_gray": "Light Gray Field Masoned", + "block.minecraft.banner.bricks.lime": "Lime Field Masoned", + "block.minecraft.banner.bricks.magenta": "Magenta Field Masoned", + "block.minecraft.banner.bricks.orange": "Orange Field Masoned", + "block.minecraft.banner.bricks.pink": "Pink Field Masoned", + "block.minecraft.banner.bricks.purple": "Purple Field Masoned", + "block.minecraft.banner.bricks.red": "Red Field Masoned", + "block.minecraft.banner.bricks.white": "White Field Masoned", + "block.minecraft.banner.bricks.yellow": "Yellow Field Masoned", + "block.minecraft.banner.circle.black": "Black Roundel", + "block.minecraft.banner.circle.blue": "Blue Roundel", + "block.minecraft.banner.circle.brown": "Brown Roundel", + "block.minecraft.banner.circle.cyan": "Cyan Roundel", + "block.minecraft.banner.circle.gray": "Gray Roundel", + "block.minecraft.banner.circle.green": "Green Roundel", + "block.minecraft.banner.circle.light_blue": "Light Blue Roundel", + "block.minecraft.banner.circle.light_gray": "Light Gray Roundel", + "block.minecraft.banner.circle.lime": "Lime Roundel", + "block.minecraft.banner.circle.magenta": "Magenta Roundel", + "block.minecraft.banner.circle.orange": "Orange Roundel", + "block.minecraft.banner.circle.pink": "Pink Roundel", + "block.minecraft.banner.circle.purple": "Purple Roundel", + "block.minecraft.banner.circle.red": "Red Roundel", + "block.minecraft.banner.circle.white": "White Roundel", + "block.minecraft.banner.circle.yellow": "Yellow Roundel", + "block.minecraft.banner.creeper.black": "Black Creeper Charge", + "block.minecraft.banner.creeper.blue": "Blue Creeper Charge", + "block.minecraft.banner.creeper.brown": "Brown Creeper Charge", + "block.minecraft.banner.creeper.cyan": "Cyan Creeper Charge", + "block.minecraft.banner.creeper.gray": "Gray Creeper Charge", + "block.minecraft.banner.creeper.green": "Green Creeper Charge", + "block.minecraft.banner.creeper.light_blue": "Light Blue Creeper Charge", + "block.minecraft.banner.creeper.light_gray": "Light Gray Creeper Charge", + "block.minecraft.banner.creeper.lime": "Lime Creeper Charge", + "block.minecraft.banner.creeper.magenta": "Magenta Creeper Charge", + "block.minecraft.banner.creeper.orange": "Orange Creeper Charge", + "block.minecraft.banner.creeper.pink": "Pink Creeper Charge", + "block.minecraft.banner.creeper.purple": "Purple Creeper Charge", + "block.minecraft.banner.creeper.red": "Red Creeper Charge", + "block.minecraft.banner.creeper.white": "White Creeper Charge", + "block.minecraft.banner.creeper.yellow": "Yellow Creeper Charge", + "block.minecraft.banner.cross.black": "Black Saltire", + "block.minecraft.banner.cross.blue": "Blue Saltire", + "block.minecraft.banner.cross.brown": "Brown Saltire", + "block.minecraft.banner.cross.cyan": "Cyan Saltire", + "block.minecraft.banner.cross.gray": "Gray Saltire", + "block.minecraft.banner.cross.green": "Green Saltire", + "block.minecraft.banner.cross.light_blue": "Light Blue Saltire", + "block.minecraft.banner.cross.light_gray": "Light Gray Saltire", + "block.minecraft.banner.cross.lime": "Lime Saltire", + "block.minecraft.banner.cross.magenta": "Magenta Saltire", + "block.minecraft.banner.cross.orange": "Orange Saltire", + "block.minecraft.banner.cross.pink": "Pink Saltire", + "block.minecraft.banner.cross.purple": "Purple Saltire", + "block.minecraft.banner.cross.red": "Red Saltire", + "block.minecraft.banner.cross.white": "White Saltire", + "block.minecraft.banner.cross.yellow": "Yellow Saltire", + "block.minecraft.banner.curly_border.black": "Black Bordure Indented", + "block.minecraft.banner.curly_border.blue": "Blue Bordure Indented", + "block.minecraft.banner.curly_border.brown": "Brown Bordure Indented", + "block.minecraft.banner.curly_border.cyan": "Cyan Bordure Indented", + "block.minecraft.banner.curly_border.gray": "Gray Bordure Indented", + "block.minecraft.banner.curly_border.green": "Green Bordure Indented", + "block.minecraft.banner.curly_border.light_blue": "Light Blue Bordure Indented", + "block.minecraft.banner.curly_border.light_gray": "Light Gray Bordure Indented", + "block.minecraft.banner.curly_border.lime": "Lime Bordure Indented", + "block.minecraft.banner.curly_border.magenta": "Magenta Bordure Indented", + "block.minecraft.banner.curly_border.orange": "Orange Bordure Indented", + "block.minecraft.banner.curly_border.pink": "Pink Bordure Indented", + "block.minecraft.banner.curly_border.purple": "Purple Bordure Indented", + "block.minecraft.banner.curly_border.red": "Red Bordure Indented", + "block.minecraft.banner.curly_border.white": "White Bordure Indented", + "block.minecraft.banner.curly_border.yellow": "Yellow Bordure Indented", + "block.minecraft.banner.diagonal_left.black": "Black Per Bend Sinister", + "block.minecraft.banner.diagonal_left.blue": "Blue Per Bend Sinister", + "block.minecraft.banner.diagonal_left.brown": "Brown Per Bend Sinister", + "block.minecraft.banner.diagonal_left.cyan": "Cyan Per Bend Sinister", + "block.minecraft.banner.diagonal_left.gray": "Gray Per Bend Sinister", + "block.minecraft.banner.diagonal_left.green": "Green Per Bend Sinister", + "block.minecraft.banner.diagonal_left.light_blue": "Light Blue Per Bend Sinister", + "block.minecraft.banner.diagonal_left.light_gray": "Light Gray Per Bend Sinister", + "block.minecraft.banner.diagonal_left.lime": "Lime Per Bend Sinister", + "block.minecraft.banner.diagonal_left.magenta": "Magenta Per Bend Sinister", + "block.minecraft.banner.diagonal_left.orange": "Orange Per Bend Sinister", + "block.minecraft.banner.diagonal_left.pink": "Pink Per Bend Sinister", + "block.minecraft.banner.diagonal_left.purple": "Purple Per Bend Sinister", + "block.minecraft.banner.diagonal_left.red": "Red Per Bend Sinister", + "block.minecraft.banner.diagonal_left.white": "White Per Bend Sinister", + "block.minecraft.banner.diagonal_left.yellow": "Yellow Per Bend Sinister", + "block.minecraft.banner.diagonal_right.black": "Black Per Bend", + "block.minecraft.banner.diagonal_right.blue": "Blue Per Bend", + "block.minecraft.banner.diagonal_right.brown": "Brown Per Bend", + "block.minecraft.banner.diagonal_right.cyan": "Cyan Per Bend", + "block.minecraft.banner.diagonal_right.gray": "Gray Per Bend", + "block.minecraft.banner.diagonal_right.green": "Green Per Bend", + "block.minecraft.banner.diagonal_right.light_blue": "Light Blue Per Bend", + "block.minecraft.banner.diagonal_right.light_gray": "Light Gray Per Bend", + "block.minecraft.banner.diagonal_right.lime": "Lime Per Bend", + "block.minecraft.banner.diagonal_right.magenta": "Magenta Per Bend", + "block.minecraft.banner.diagonal_right.orange": "Orange Per Bend", + "block.minecraft.banner.diagonal_right.pink": "Pink Per Bend", + "block.minecraft.banner.diagonal_right.purple": "Purple Per Bend", + "block.minecraft.banner.diagonal_right.red": "Red Per Bend", + "block.minecraft.banner.diagonal_right.white": "White Per Bend", + "block.minecraft.banner.diagonal_right.yellow": "Yellow Per Bend", + "block.minecraft.banner.diagonal_up_left.black": "Black Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.blue": "Blue Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.brown": "Brown Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.cyan": "Cyan Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.gray": "Gray Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.green": "Green Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.light_blue": "Light Blue Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.light_gray": "Light Gray Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.lime": "Lime Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.magenta": "Magenta Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.orange": "Orange Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.pink": "Pink Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.purple": "Purple Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.red": "Red Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.white": "White Per Bend Inverted", + "block.minecraft.banner.diagonal_up_left.yellow": "Yellow Per Bend Inverted", + "block.minecraft.banner.diagonal_up_right.black": "Black Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.blue": "Blue Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.brown": "Brown Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.cyan": "Cyan Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.gray": "Gray Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.green": "Green Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.light_blue": "Light Blue Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.light_gray": "Light Gray Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.lime": "Lime Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.magenta": "Magenta Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.orange": "Orange Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.pink": "Pink Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.purple": "Purple Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.red": "Red Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.white": "White Per Bend Sinister Inverted", + "block.minecraft.banner.diagonal_up_right.yellow": "Yellow Per Bend Sinister Inverted", + "block.minecraft.banner.flow.black": "Black Flow", + "block.minecraft.banner.flow.blue": "Blue Flow", + "block.minecraft.banner.flow.brown": "Brown Flow", + "block.minecraft.banner.flow.cyan": "Cyan Flow", + "block.minecraft.banner.flow.gray": "Gray Flow", + "block.minecraft.banner.flow.green": "Green Flow", + "block.minecraft.banner.flow.light_blue": "Light Blue Flow", + "block.minecraft.banner.flow.light_gray": "Light Gray Flow", + "block.minecraft.banner.flow.lime": "Lime Flow", + "block.minecraft.banner.flow.magenta": "Magenta Flow", + "block.minecraft.banner.flow.orange": "Orange Flow", + "block.minecraft.banner.flow.pink": "Pink Flow", + "block.minecraft.banner.flow.purple": "Purple Flow", + "block.minecraft.banner.flow.red": "Red Flow", + "block.minecraft.banner.flow.white": "White Flow", + "block.minecraft.banner.flow.yellow": "Yellow Flow", + "block.minecraft.banner.flower.black": "Black Flower Charge", + "block.minecraft.banner.flower.blue": "Blue Flower Charge", + "block.minecraft.banner.flower.brown": "Brown Flower Charge", + "block.minecraft.banner.flower.cyan": "Cyan Flower Charge", + "block.minecraft.banner.flower.gray": "Gray Flower Charge", + "block.minecraft.banner.flower.green": "Green Flower Charge", + "block.minecraft.banner.flower.light_blue": "Light Blue Flower Charge", + "block.minecraft.banner.flower.light_gray": "Light Gray Flower Charge", + "block.minecraft.banner.flower.lime": "Lime Flower Charge", + "block.minecraft.banner.flower.magenta": "Magenta Flower Charge", + "block.minecraft.banner.flower.orange": "Orange Flower Charge", + "block.minecraft.banner.flower.pink": "Pink Flower Charge", + "block.minecraft.banner.flower.purple": "Purple Flower Charge", + "block.minecraft.banner.flower.red": "Red Flower Charge", + "block.minecraft.banner.flower.white": "White Flower Charge", + "block.minecraft.banner.flower.yellow": "Yellow Flower Charge", + "block.minecraft.banner.globe.black": "Black Globe", + "block.minecraft.banner.globe.blue": "Blue Globe", + "block.minecraft.banner.globe.brown": "Brown Globe", + "block.minecraft.banner.globe.cyan": "Cyan Globe", + "block.minecraft.banner.globe.gray": "Gray Globe", + "block.minecraft.banner.globe.green": "Green Globe", + "block.minecraft.banner.globe.light_blue": "Light Blue Globe", + "block.minecraft.banner.globe.light_gray": "Light Gray Globe", + "block.minecraft.banner.globe.lime": "Lime Globe", + "block.minecraft.banner.globe.magenta": "Magenta Globe", + "block.minecraft.banner.globe.orange": "Orange Globe", + "block.minecraft.banner.globe.pink": "Pink Globe", + "block.minecraft.banner.globe.purple": "Purple Globe", + "block.minecraft.banner.globe.red": "Red Globe", + "block.minecraft.banner.globe.white": "White Globe", + "block.minecraft.banner.globe.yellow": "Yellow Globe", + "block.minecraft.banner.gradient_up.black": "Black Base Gradient", + "block.minecraft.banner.gradient_up.blue": "Blue Base Gradient", + "block.minecraft.banner.gradient_up.brown": "Brown Base Gradient", + "block.minecraft.banner.gradient_up.cyan": "Cyan Base Gradient", + "block.minecraft.banner.gradient_up.gray": "Gray Base Gradient", + "block.minecraft.banner.gradient_up.green": "Green Base Gradient", + "block.minecraft.banner.gradient_up.light_blue": "Light Blue Base Gradient", + "block.minecraft.banner.gradient_up.light_gray": "Light Gray Base Gradient", + "block.minecraft.banner.gradient_up.lime": "Lime Base Gradient", + "block.minecraft.banner.gradient_up.magenta": "Magenta Base Gradient", + "block.minecraft.banner.gradient_up.orange": "Orange Base Gradient", + "block.minecraft.banner.gradient_up.pink": "Pink Base Gradient", + "block.minecraft.banner.gradient_up.purple": "Purple Base Gradient", + "block.minecraft.banner.gradient_up.red": "Red Base Gradient", + "block.minecraft.banner.gradient_up.white": "White Base Gradient", + "block.minecraft.banner.gradient_up.yellow": "Yellow Base Gradient", + "block.minecraft.banner.gradient.black": "Black Gradient", + "block.minecraft.banner.gradient.blue": "Blue Gradient", + "block.minecraft.banner.gradient.brown": "Brown Gradient", + "block.minecraft.banner.gradient.cyan": "Cyan Gradient", + "block.minecraft.banner.gradient.gray": "Gray Gradient", + "block.minecraft.banner.gradient.green": "Green Gradient", + "block.minecraft.banner.gradient.light_blue": "Light Blue Gradient", + "block.minecraft.banner.gradient.light_gray": "Light Gray Gradient", + "block.minecraft.banner.gradient.lime": "Lime Gradient", + "block.minecraft.banner.gradient.magenta": "Magenta Gradient", + "block.minecraft.banner.gradient.orange": "Orange Gradient", + "block.minecraft.banner.gradient.pink": "Pink Gradient", + "block.minecraft.banner.gradient.purple": "Purple Gradient", + "block.minecraft.banner.gradient.red": "Red Gradient", + "block.minecraft.banner.gradient.white": "White Gradient", + "block.minecraft.banner.gradient.yellow": "Yellow Gradient", + "block.minecraft.banner.guster.black": "Black Guster", + "block.minecraft.banner.guster.blue": "Blue Guster", + "block.minecraft.banner.guster.brown": "Brown Guster", + "block.minecraft.banner.guster.cyan": "Cyan Guster", + "block.minecraft.banner.guster.gray": "Gray Guster", + "block.minecraft.banner.guster.green": "Green Guster", + "block.minecraft.banner.guster.light_blue": "Light Blue Guster", + "block.minecraft.banner.guster.light_gray": "Light Gray Guster", + "block.minecraft.banner.guster.lime": "Lime Guster", + "block.minecraft.banner.guster.magenta": "Magenta Guster", + "block.minecraft.banner.guster.orange": "Orange Guster", + "block.minecraft.banner.guster.pink": "Pink Guster", + "block.minecraft.banner.guster.purple": "Purple Guster", + "block.minecraft.banner.guster.red": "Red Guster", + "block.minecraft.banner.guster.white": "White Guster", + "block.minecraft.banner.guster.yellow": "Yellow Guster", + "block.minecraft.banner.half_horizontal_bottom.black": "Black Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.blue": "Blue Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.brown": "Brown Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.cyan": "Cyan Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.gray": "Gray Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.green": "Green Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.light_blue": "Light Blue Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.light_gray": "Light Gray Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.lime": "Lime Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.magenta": "Magenta Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.orange": "Orange Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.pink": "Pink Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.purple": "Purple Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.red": "Red Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.white": "White Per Fess Inverted", + "block.minecraft.banner.half_horizontal_bottom.yellow": "Yellow Per Fess Inverted", + "block.minecraft.banner.half_horizontal.black": "Black Per Fess", + "block.minecraft.banner.half_horizontal.blue": "Blue Per Fess", + "block.minecraft.banner.half_horizontal.brown": "Brown Per Fess", + "block.minecraft.banner.half_horizontal.cyan": "Cyan Per Fess", + "block.minecraft.banner.half_horizontal.gray": "Gray Per Fess", + "block.minecraft.banner.half_horizontal.green": "Green Per Fess", + "block.minecraft.banner.half_horizontal.light_blue": "Light Blue Per Fess", + "block.minecraft.banner.half_horizontal.light_gray": "Light Gray Per Fess", + "block.minecraft.banner.half_horizontal.lime": "Lime Per Fess", + "block.minecraft.banner.half_horizontal.magenta": "Magenta Per Fess", + "block.minecraft.banner.half_horizontal.orange": "Orange Per Fess", + "block.minecraft.banner.half_horizontal.pink": "Pink Per Fess", + "block.minecraft.banner.half_horizontal.purple": "Purple Per Fess", + "block.minecraft.banner.half_horizontal.red": "Red Per Fess", + "block.minecraft.banner.half_horizontal.white": "White Per Fess", + "block.minecraft.banner.half_horizontal.yellow": "Yellow Per Fess", + "block.minecraft.banner.half_vertical_right.black": "Black Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.blue": "Blue Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.brown": "Brown Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.cyan": "Cyan Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.gray": "Gray Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.green": "Green Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.light_blue": "Light Blue Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.light_gray": "Light Gray Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.lime": "Lime Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.magenta": "Magenta Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.orange": "Orange Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.pink": "Pink Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.purple": "Purple Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.red": "Red Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.white": "White Per Pale Inverted", + "block.minecraft.banner.half_vertical_right.yellow": "Yellow Per Pale Inverted", + "block.minecraft.banner.half_vertical.black": "Black Per Pale", + "block.minecraft.banner.half_vertical.blue": "Blue Per Pale", + "block.minecraft.banner.half_vertical.brown": "Brown Per Pale", + "block.minecraft.banner.half_vertical.cyan": "Cyan Per Pale", + "block.minecraft.banner.half_vertical.gray": "Gray Per Pale", + "block.minecraft.banner.half_vertical.green": "Green Per Pale", + "block.minecraft.banner.half_vertical.light_blue": "Light Blue Per Pale", + "block.minecraft.banner.half_vertical.light_gray": "Light Gray Per Pale", + "block.minecraft.banner.half_vertical.lime": "Lime Per Pale", + "block.minecraft.banner.half_vertical.magenta": "Magenta Per Pale", + "block.minecraft.banner.half_vertical.orange": "Orange Per Pale", + "block.minecraft.banner.half_vertical.pink": "Pink Per Pale", + "block.minecraft.banner.half_vertical.purple": "Purple Per Pale", + "block.minecraft.banner.half_vertical.red": "Red Per Pale", + "block.minecraft.banner.half_vertical.white": "White Per Pale", + "block.minecraft.banner.half_vertical.yellow": "Yellow Per Pale", + "block.minecraft.banner.mojang.black": "Black Thing", + "block.minecraft.banner.mojang.blue": "Blue Thing", + "block.minecraft.banner.mojang.brown": "Brown Thing", + "block.minecraft.banner.mojang.cyan": "Cyan Thing", + "block.minecraft.banner.mojang.gray": "Gray Thing", + "block.minecraft.banner.mojang.green": "Green Thing", + "block.minecraft.banner.mojang.light_blue": "Light Blue Thing", + "block.minecraft.banner.mojang.light_gray": "Light Gray Thing", + "block.minecraft.banner.mojang.lime": "Lime Thing", + "block.minecraft.banner.mojang.magenta": "Magenta Thing", + "block.minecraft.banner.mojang.orange": "Orange Thing", + "block.minecraft.banner.mojang.pink": "Pink Thing", + "block.minecraft.banner.mojang.purple": "Purple Thing", + "block.minecraft.banner.mojang.red": "Red Thing", + "block.minecraft.banner.mojang.white": "White Thing", + "block.minecraft.banner.mojang.yellow": "Yellow Thing", + "block.minecraft.banner.piglin.black": "Black Snout", + "block.minecraft.banner.piglin.blue": "Blue Snout", + "block.minecraft.banner.piglin.brown": "Brown Snout", + "block.minecraft.banner.piglin.cyan": "Cyan Snout", + "block.minecraft.banner.piglin.gray": "Gray Snout", + "block.minecraft.banner.piglin.green": "Green Snout", + "block.minecraft.banner.piglin.light_blue": "Light Blue Snout", + "block.minecraft.banner.piglin.light_gray": "Light Gray Snout", + "block.minecraft.banner.piglin.lime": "Lime Snout", + "block.minecraft.banner.piglin.magenta": "Magenta Snout", + "block.minecraft.banner.piglin.orange": "Orange Snout", + "block.minecraft.banner.piglin.pink": "Pink Snout", + "block.minecraft.banner.piglin.purple": "Purple Snout", + "block.minecraft.banner.piglin.red": "Red Snout", + "block.minecraft.banner.piglin.white": "White Snout", + "block.minecraft.banner.piglin.yellow": "Yellow Snout", + "block.minecraft.banner.rhombus.black": "Black Lozenge", + "block.minecraft.banner.rhombus.blue": "Blue Lozenge", + "block.minecraft.banner.rhombus.brown": "Brown Lozenge", + "block.minecraft.banner.rhombus.cyan": "Cyan Lozenge", + "block.minecraft.banner.rhombus.gray": "Gray Lozenge", + "block.minecraft.banner.rhombus.green": "Green Lozenge", + "block.minecraft.banner.rhombus.light_blue": "Light Blue Lozenge", + "block.minecraft.banner.rhombus.light_gray": "Light Gray Lozenge", + "block.minecraft.banner.rhombus.lime": "Lime Lozenge", + "block.minecraft.banner.rhombus.magenta": "Magenta Lozenge", + "block.minecraft.banner.rhombus.orange": "Orange Lozenge", + "block.minecraft.banner.rhombus.pink": "Pink Lozenge", + "block.minecraft.banner.rhombus.purple": "Purple Lozenge", + "block.minecraft.banner.rhombus.red": "Red Lozenge", + "block.minecraft.banner.rhombus.white": "White Lozenge", + "block.minecraft.banner.rhombus.yellow": "Yellow Lozenge", + "block.minecraft.banner.skull.black": "Black Skull Charge", + "block.minecraft.banner.skull.blue": "Blue Skull Charge", + "block.minecraft.banner.skull.brown": "Brown Skull Charge", + "block.minecraft.banner.skull.cyan": "Cyan Skull Charge", + "block.minecraft.banner.skull.gray": "Gray Skull Charge", + "block.minecraft.banner.skull.green": "Green Skull Charge", + "block.minecraft.banner.skull.light_blue": "Light Blue Skull Charge", + "block.minecraft.banner.skull.light_gray": "Light Gray Skull Charge", + "block.minecraft.banner.skull.lime": "Lime Skull Charge", + "block.minecraft.banner.skull.magenta": "Magenta Skull Charge", + "block.minecraft.banner.skull.orange": "Orange Skull Charge", + "block.minecraft.banner.skull.pink": "Pink Skull Charge", + "block.minecraft.banner.skull.purple": "Purple Skull Charge", + "block.minecraft.banner.skull.red": "Red Skull Charge", + "block.minecraft.banner.skull.white": "White Skull Charge", + "block.minecraft.banner.skull.yellow": "Yellow Skull Charge", + "block.minecraft.banner.small_stripes.black": "Black Paly", + "block.minecraft.banner.small_stripes.blue": "Blue Paly", + "block.minecraft.banner.small_stripes.brown": "Brown Paly", + "block.minecraft.banner.small_stripes.cyan": "Cyan Paly", + "block.minecraft.banner.small_stripes.gray": "Gray Paly", + "block.minecraft.banner.small_stripes.green": "Green Paly", + "block.minecraft.banner.small_stripes.light_blue": "Light Blue Paly", + "block.minecraft.banner.small_stripes.light_gray": "Light Gray Paly", + "block.minecraft.banner.small_stripes.lime": "Lime Paly", + "block.minecraft.banner.small_stripes.magenta": "Magenta Paly", + "block.minecraft.banner.small_stripes.orange": "Orange Paly", + "block.minecraft.banner.small_stripes.pink": "Pink Paly", + "block.minecraft.banner.small_stripes.purple": "Purple Paly", + "block.minecraft.banner.small_stripes.red": "Red Paly", + "block.minecraft.banner.small_stripes.white": "White Paly", + "block.minecraft.banner.small_stripes.yellow": "Yellow Paly", + "block.minecraft.banner.square_bottom_left.black": "Black Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.blue": "Blue Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.brown": "Brown Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.cyan": "Cyan Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.gray": "Gray Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.green": "Green Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.light_blue": "Light Blue Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.light_gray": "Light Gray Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.lime": "Lime Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.magenta": "Magenta Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.orange": "Orange Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.pink": "Pink Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.purple": "Purple Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.red": "Red Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.white": "White Base Dexter Canton", + "block.minecraft.banner.square_bottom_left.yellow": "Yellow Base Dexter Canton", + "block.minecraft.banner.square_bottom_right.black": "Black Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.blue": "Blue Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.brown": "Brown Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.cyan": "Cyan Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.gray": "Gray Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.green": "Green Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.light_blue": "Light Blue Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.light_gray": "Light Gray Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.lime": "Lime Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.magenta": "Magenta Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.orange": "Orange Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.pink": "Pink Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.purple": "Purple Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.red": "Red Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.white": "White Base Sinister Canton", + "block.minecraft.banner.square_bottom_right.yellow": "Yellow Base Sinister Canton", + "block.minecraft.banner.square_top_left.black": "Black Chief Dexter Canton", + "block.minecraft.banner.square_top_left.blue": "Blue Chief Dexter Canton", + "block.minecraft.banner.square_top_left.brown": "Brown Chief Dexter Canton", + "block.minecraft.banner.square_top_left.cyan": "Cyan Chief Dexter Canton", + "block.minecraft.banner.square_top_left.gray": "Gray Chief Dexter Canton", + "block.minecraft.banner.square_top_left.green": "Green Chief Dexter Canton", + "block.minecraft.banner.square_top_left.light_blue": "Light Blue Chief Dexter Canton", + "block.minecraft.banner.square_top_left.light_gray": "Light Gray Chief Dexter Canton", + "block.minecraft.banner.square_top_left.lime": "Lime Chief Dexter Canton", + "block.minecraft.banner.square_top_left.magenta": "Magenta Chief Dexter Canton", + "block.minecraft.banner.square_top_left.orange": "Orange Chief Dexter Canton", + "block.minecraft.banner.square_top_left.pink": "Pink Chief Dexter Canton", + "block.minecraft.banner.square_top_left.purple": "Purple Chief Dexter Canton", + "block.minecraft.banner.square_top_left.red": "Red Chief Dexter Canton", + "block.minecraft.banner.square_top_left.white": "White Chief Dexter Canton", + "block.minecraft.banner.square_top_left.yellow": "Yellow Chief Dexter Canton", + "block.minecraft.banner.square_top_right.black": "Black Chief Sinister Canton", + "block.minecraft.banner.square_top_right.blue": "Blue Chief Sinister Canton", + "block.minecraft.banner.square_top_right.brown": "Brown Chief Sinister Canton", + "block.minecraft.banner.square_top_right.cyan": "Cyan Chief Sinister Canton", + "block.minecraft.banner.square_top_right.gray": "Gray Chief Sinister Canton", + "block.minecraft.banner.square_top_right.green": "Green Chief Sinister Canton", + "block.minecraft.banner.square_top_right.light_blue": "Light Blue Chief Sinister Canton", + "block.minecraft.banner.square_top_right.light_gray": "Light Gray Chief Sinister Canton", + "block.minecraft.banner.square_top_right.lime": "Lime Chief Sinister Canton", + "block.minecraft.banner.square_top_right.magenta": "Magenta Chief Sinister Canton", + "block.minecraft.banner.square_top_right.orange": "Orange Chief Sinister Canton", + "block.minecraft.banner.square_top_right.pink": "Pink Chief Sinister Canton", + "block.minecraft.banner.square_top_right.purple": "Purple Chief Sinister Canton", + "block.minecraft.banner.square_top_right.red": "Red Chief Sinister Canton", + "block.minecraft.banner.square_top_right.white": "White Chief Sinister Canton", + "block.minecraft.banner.square_top_right.yellow": "Yellow Chief Sinister Canton", + "block.minecraft.banner.straight_cross.black": "Black Cross", + "block.minecraft.banner.straight_cross.blue": "Blue Cross", + "block.minecraft.banner.straight_cross.brown": "Brown Cross", + "block.minecraft.banner.straight_cross.cyan": "Cyan Cross", + "block.minecraft.banner.straight_cross.gray": "Gray Cross", + "block.minecraft.banner.straight_cross.green": "Green Cross", + "block.minecraft.banner.straight_cross.light_blue": "Light Blue Cross", + "block.minecraft.banner.straight_cross.light_gray": "Light Gray Cross", + "block.minecraft.banner.straight_cross.lime": "Lime Cross", + "block.minecraft.banner.straight_cross.magenta": "Magenta Cross", + "block.minecraft.banner.straight_cross.orange": "Orange Cross", + "block.minecraft.banner.straight_cross.pink": "Pink Cross", + "block.minecraft.banner.straight_cross.purple": "Purple Cross", + "block.minecraft.banner.straight_cross.red": "Red Cross", + "block.minecraft.banner.straight_cross.white": "White Cross", + "block.minecraft.banner.straight_cross.yellow": "Yellow Cross", + "block.minecraft.banner.stripe_bottom.black": "Black Base", + "block.minecraft.banner.stripe_bottom.blue": "Blue Base", + "block.minecraft.banner.stripe_bottom.brown": "Brown Base", + "block.minecraft.banner.stripe_bottom.cyan": "Cyan Base", + "block.minecraft.banner.stripe_bottom.gray": "Gray Base", + "block.minecraft.banner.stripe_bottom.green": "Green Base", + "block.minecraft.banner.stripe_bottom.light_blue": "Light Blue Base", + "block.minecraft.banner.stripe_bottom.light_gray": "Light Gray Base", + "block.minecraft.banner.stripe_bottom.lime": "Lime Base", + "block.minecraft.banner.stripe_bottom.magenta": "Magenta Base", + "block.minecraft.banner.stripe_bottom.orange": "Orange Base", + "block.minecraft.banner.stripe_bottom.pink": "Pink Base", + "block.minecraft.banner.stripe_bottom.purple": "Purple Base", + "block.minecraft.banner.stripe_bottom.red": "Red Base", + "block.minecraft.banner.stripe_bottom.white": "White Base", + "block.minecraft.banner.stripe_bottom.yellow": "Yellow Base", + "block.minecraft.banner.stripe_center.black": "Black Pale", + "block.minecraft.banner.stripe_center.blue": "Blue Pale", + "block.minecraft.banner.stripe_center.brown": "Brown Pale", + "block.minecraft.banner.stripe_center.cyan": "Cyan Pale", + "block.minecraft.banner.stripe_center.gray": "Gray Pale", + "block.minecraft.banner.stripe_center.green": "Green Pale", + "block.minecraft.banner.stripe_center.light_blue": "Light Blue Pale", + "block.minecraft.banner.stripe_center.light_gray": "Light Gray Pale", + "block.minecraft.banner.stripe_center.lime": "Lime Pale", + "block.minecraft.banner.stripe_center.magenta": "Magenta Pale", + "block.minecraft.banner.stripe_center.orange": "Orange Pale", + "block.minecraft.banner.stripe_center.pink": "Pink Pale", + "block.minecraft.banner.stripe_center.purple": "Purple Pale", + "block.minecraft.banner.stripe_center.red": "Red Pale", + "block.minecraft.banner.stripe_center.white": "White Pale", + "block.minecraft.banner.stripe_center.yellow": "Yellow Pale", + "block.minecraft.banner.stripe_downleft.black": "Black Bend Sinister", + "block.minecraft.banner.stripe_downleft.blue": "Blue Bend Sinister", + "block.minecraft.banner.stripe_downleft.brown": "Brown Bend Sinister", + "block.minecraft.banner.stripe_downleft.cyan": "Cyan Bend Sinister", + "block.minecraft.banner.stripe_downleft.gray": "Gray Bend Sinister", + "block.minecraft.banner.stripe_downleft.green": "Green Bend Sinister", + "block.minecraft.banner.stripe_downleft.light_blue": "Light Blue Bend Sinister", + "block.minecraft.banner.stripe_downleft.light_gray": "Light Gray Bend Sinister", + "block.minecraft.banner.stripe_downleft.lime": "Lime Bend Sinister", + "block.minecraft.banner.stripe_downleft.magenta": "Magenta Bend Sinister", + "block.minecraft.banner.stripe_downleft.orange": "Orange Bend Sinister", + "block.minecraft.banner.stripe_downleft.pink": "Pink Bend Sinister", + "block.minecraft.banner.stripe_downleft.purple": "Purple Bend Sinister", + "block.minecraft.banner.stripe_downleft.red": "Red Bend Sinister", + "block.minecraft.banner.stripe_downleft.white": "White Bend Sinister", + "block.minecraft.banner.stripe_downleft.yellow": "Yellow Bend Sinister", + "block.minecraft.banner.stripe_downright.black": "Black Bend", + "block.minecraft.banner.stripe_downright.blue": "Blue Bend", + "block.minecraft.banner.stripe_downright.brown": "Brown Bend", + "block.minecraft.banner.stripe_downright.cyan": "Cyan Bend", + "block.minecraft.banner.stripe_downright.gray": "Gray Bend", + "block.minecraft.banner.stripe_downright.green": "Green Bend", + "block.minecraft.banner.stripe_downright.light_blue": "Light Blue Bend", + "block.minecraft.banner.stripe_downright.light_gray": "Light Gray Bend", + "block.minecraft.banner.stripe_downright.lime": "Lime Bend", + "block.minecraft.banner.stripe_downright.magenta": "Magenta Bend", + "block.minecraft.banner.stripe_downright.orange": "Orange Bend", + "block.minecraft.banner.stripe_downright.pink": "Pink Bend", + "block.minecraft.banner.stripe_downright.purple": "Purple Bend", + "block.minecraft.banner.stripe_downright.red": "Red Bend", + "block.minecraft.banner.stripe_downright.white": "White Bend", + "block.minecraft.banner.stripe_downright.yellow": "Yellow Bend", + "block.minecraft.banner.stripe_left.black": "Black Pale Dexter", + "block.minecraft.banner.stripe_left.blue": "Blue Pale Dexter", + "block.minecraft.banner.stripe_left.brown": "Brown Pale Dexter", + "block.minecraft.banner.stripe_left.cyan": "Cyan Pale Dexter", + "block.minecraft.banner.stripe_left.gray": "Gray Pale Dexter", + "block.minecraft.banner.stripe_left.green": "Green Pale Dexter", + "block.minecraft.banner.stripe_left.light_blue": "Light Blue Pale Dexter", + "block.minecraft.banner.stripe_left.light_gray": "Light Gray Pale Dexter", + "block.minecraft.banner.stripe_left.lime": "Lime Pale Dexter", + "block.minecraft.banner.stripe_left.magenta": "Magenta Pale Dexter", + "block.minecraft.banner.stripe_left.orange": "Orange Pale Dexter", + "block.minecraft.banner.stripe_left.pink": "Pink Pale Dexter", + "block.minecraft.banner.stripe_left.purple": "Purple Pale Dexter", + "block.minecraft.banner.stripe_left.red": "Red Pale Dexter", + "block.minecraft.banner.stripe_left.white": "White Pale Dexter", + "block.minecraft.banner.stripe_left.yellow": "Yellow Pale Dexter", + "block.minecraft.banner.stripe_middle.black": "Black Fess", + "block.minecraft.banner.stripe_middle.blue": "Blue Fess", + "block.minecraft.banner.stripe_middle.brown": "Brown Fess", + "block.minecraft.banner.stripe_middle.cyan": "Cyan Fess", + "block.minecraft.banner.stripe_middle.gray": "Gray Fess", + "block.minecraft.banner.stripe_middle.green": "Green Fess", + "block.minecraft.banner.stripe_middle.light_blue": "Light Blue Fess", + "block.minecraft.banner.stripe_middle.light_gray": "Light Gray Fess", + "block.minecraft.banner.stripe_middle.lime": "Lime Fess", + "block.minecraft.banner.stripe_middle.magenta": "Magenta Fess", + "block.minecraft.banner.stripe_middle.orange": "Orange Fess", + "block.minecraft.banner.stripe_middle.pink": "Pink Fess", + "block.minecraft.banner.stripe_middle.purple": "Purple Fess", + "block.minecraft.banner.stripe_middle.red": "Red Fess", + "block.minecraft.banner.stripe_middle.white": "White Fess", + "block.minecraft.banner.stripe_middle.yellow": "Yellow Fess", + "block.minecraft.banner.stripe_right.black": "Black Pale Sinister", + "block.minecraft.banner.stripe_right.blue": "Blue Pale Sinister", + "block.minecraft.banner.stripe_right.brown": "Brown Pale Sinister", + "block.minecraft.banner.stripe_right.cyan": "Cyan Pale Sinister", + "block.minecraft.banner.stripe_right.gray": "Gray Pale Sinister", + "block.minecraft.banner.stripe_right.green": "Green Pale Sinister", + "block.minecraft.banner.stripe_right.light_blue": "Light Blue Pale Sinister", + "block.minecraft.banner.stripe_right.light_gray": "Light Gray Pale Sinister", + "block.minecraft.banner.stripe_right.lime": "Lime Pale Sinister", + "block.minecraft.banner.stripe_right.magenta": "Magenta Pale Sinister", + "block.minecraft.banner.stripe_right.orange": "Orange Pale Sinister", + "block.minecraft.banner.stripe_right.pink": "Pink Pale Sinister", + "block.minecraft.banner.stripe_right.purple": "Purple Pale Sinister", + "block.minecraft.banner.stripe_right.red": "Red Pale Sinister", + "block.minecraft.banner.stripe_right.white": "White Pale Sinister", + "block.minecraft.banner.stripe_right.yellow": "Yellow Pale Sinister", + "block.minecraft.banner.stripe_top.black": "Black Chief", + "block.minecraft.banner.stripe_top.blue": "Blue Chief", + "block.minecraft.banner.stripe_top.brown": "Brown Chief", + "block.minecraft.banner.stripe_top.cyan": "Cyan Chief", + "block.minecraft.banner.stripe_top.gray": "Gray Chief", + "block.minecraft.banner.stripe_top.green": "Green Chief", + "block.minecraft.banner.stripe_top.light_blue": "Light Blue Chief", + "block.minecraft.banner.stripe_top.light_gray": "Light Gray Chief", + "block.minecraft.banner.stripe_top.lime": "Lime Chief", + "block.minecraft.banner.stripe_top.magenta": "Magenta Chief", + "block.minecraft.banner.stripe_top.orange": "Orange Chief", + "block.minecraft.banner.stripe_top.pink": "Pink Chief", + "block.minecraft.banner.stripe_top.purple": "Purple Chief", + "block.minecraft.banner.stripe_top.red": "Red Chief", + "block.minecraft.banner.stripe_top.white": "White Chief", + "block.minecraft.banner.stripe_top.yellow": "Yellow Chief", + "block.minecraft.banner.triangle_bottom.black": "Black Chevron", + "block.minecraft.banner.triangle_bottom.blue": "Blue Chevron", + "block.minecraft.banner.triangle_bottom.brown": "Brown Chevron", + "block.minecraft.banner.triangle_bottom.cyan": "Cyan Chevron", + "block.minecraft.banner.triangle_bottom.gray": "Gray Chevron", + "block.minecraft.banner.triangle_bottom.green": "Green Chevron", + "block.minecraft.banner.triangle_bottom.light_blue": "Light Blue Chevron", + "block.minecraft.banner.triangle_bottom.light_gray": "Light Gray Chevron", + "block.minecraft.banner.triangle_bottom.lime": "Lime Chevron", + "block.minecraft.banner.triangle_bottom.magenta": "Magenta Chevron", + "block.minecraft.banner.triangle_bottom.orange": "Orange Chevron", + "block.minecraft.banner.triangle_bottom.pink": "Pink Chevron", + "block.minecraft.banner.triangle_bottom.purple": "Purple Chevron", + "block.minecraft.banner.triangle_bottom.red": "Red Chevron", + "block.minecraft.banner.triangle_bottom.white": "White Chevron", + "block.minecraft.banner.triangle_bottom.yellow": "Yellow Chevron", + "block.minecraft.banner.triangle_top.black": "Black Inverted Chevron", + "block.minecraft.banner.triangle_top.blue": "Blue Inverted Chevron", + "block.minecraft.banner.triangle_top.brown": "Brown Inverted Chevron", + "block.minecraft.banner.triangle_top.cyan": "Cyan Inverted Chevron", + "block.minecraft.banner.triangle_top.gray": "Gray Inverted Chevron", + "block.minecraft.banner.triangle_top.green": "Green Inverted Chevron", + "block.minecraft.banner.triangle_top.light_blue": "Light Blue Inverted Chevron", + "block.minecraft.banner.triangle_top.light_gray": "Light Gray Inverted Chevron", + "block.minecraft.banner.triangle_top.lime": "Lime Inverted Chevron", + "block.minecraft.banner.triangle_top.magenta": "Magenta Inverted Chevron", + "block.minecraft.banner.triangle_top.orange": "Orange Inverted Chevron", + "block.minecraft.banner.triangle_top.pink": "Pink Inverted Chevron", + "block.minecraft.banner.triangle_top.purple": "Purple Inverted Chevron", + "block.minecraft.banner.triangle_top.red": "Red Inverted Chevron", + "block.minecraft.banner.triangle_top.white": "White Inverted Chevron", + "block.minecraft.banner.triangle_top.yellow": "Yellow Inverted Chevron", + "block.minecraft.banner.triangles_bottom.black": "Black Base Indented", + "block.minecraft.banner.triangles_bottom.blue": "Blue Base Indented", + "block.minecraft.banner.triangles_bottom.brown": "Brown Base Indented", + "block.minecraft.banner.triangles_bottom.cyan": "Cyan Base Indented", + "block.minecraft.banner.triangles_bottom.gray": "Gray Base Indented", + "block.minecraft.banner.triangles_bottom.green": "Green Base Indented", + "block.minecraft.banner.triangles_bottom.light_blue": "Light Blue Base Indented", + "block.minecraft.banner.triangles_bottom.light_gray": "Light Gray Base Indented", + "block.minecraft.banner.triangles_bottom.lime": "Lime Base Indented", + "block.minecraft.banner.triangles_bottom.magenta": "Magenta Base Indented", + "block.minecraft.banner.triangles_bottom.orange": "Orange Base Indented", + "block.minecraft.banner.triangles_bottom.pink": "Pink Base Indented", + "block.minecraft.banner.triangles_bottom.purple": "Purple Base Indented", + "block.minecraft.banner.triangles_bottom.red": "Red Base Indented", + "block.minecraft.banner.triangles_bottom.white": "White Base Indented", + "block.minecraft.banner.triangles_bottom.yellow": "Yellow Base Indented", + "block.minecraft.banner.triangles_top.black": "Black Chief Indented", + "block.minecraft.banner.triangles_top.blue": "Blue Chief Indented", + "block.minecraft.banner.triangles_top.brown": "Brown Chief Indented", + "block.minecraft.banner.triangles_top.cyan": "Cyan Chief Indented", + "block.minecraft.banner.triangles_top.gray": "Gray Chief Indented", + "block.minecraft.banner.triangles_top.green": "Green Chief Indented", + "block.minecraft.banner.triangles_top.light_blue": "Light Blue Chief Indented", + "block.minecraft.banner.triangles_top.light_gray": "Light Gray Chief Indented", + "block.minecraft.banner.triangles_top.lime": "Lime Chief Indented", + "block.minecraft.banner.triangles_top.magenta": "Magenta Chief Indented", + "block.minecraft.banner.triangles_top.orange": "Orange Chief Indented", + "block.minecraft.banner.triangles_top.pink": "Pink Chief Indented", + "block.minecraft.banner.triangles_top.purple": "Purple Chief Indented", + "block.minecraft.banner.triangles_top.red": "Red Chief Indented", + "block.minecraft.banner.triangles_top.white": "White Chief Indented", + "block.minecraft.banner.triangles_top.yellow": "Yellow Chief Indented", + "block.minecraft.barrel": "Barrel", + "block.minecraft.barrier": "Barrier", + "block.minecraft.basalt": "Basalt", + "block.minecraft.beacon": "Beacon", + "block.minecraft.beacon.primary": "Primary Power", + "block.minecraft.beacon.secondary": "Secondary Power", + "block.minecraft.bed.no_sleep": "You can sleep only at night or during thunderstorms", + "block.minecraft.bed.not_safe": "You may not rest now; there are monsters nearby", + "block.minecraft.bed.obstructed": "This bed is obstructed", + "block.minecraft.bed.occupied": "This bed is occupied", + "block.minecraft.bed.too_far_away": "You may not rest now; the bed is too far away", + "block.minecraft.bedrock": "Bedrock", + "block.minecraft.bee_nest": "Bee Nest", + "block.minecraft.beehive": "Beehive", + "block.minecraft.beetroots": "Beetroots", + "block.minecraft.bell": "Bell", + "block.minecraft.big_dripleaf": "Big Dripleaf", + "block.minecraft.big_dripleaf_stem": "Big Dripleaf Stem", + "block.minecraft.birch_button": "Birch Button", + "block.minecraft.birch_door": "Birch Door", + "block.minecraft.birch_fence": "Birch Fence", + "block.minecraft.birch_fence_gate": "Birch Fence Gate", + "block.minecraft.birch_hanging_sign": "Birch Hanging Sign", + "block.minecraft.birch_leaves": "Birch Leaves", + "block.minecraft.birch_log": "Birch Log", + "block.minecraft.birch_planks": "Birch Planks", + "block.minecraft.birch_pressure_plate": "Birch Pressure Plate", + "block.minecraft.birch_sapling": "Birch Sapling", + "block.minecraft.birch_sign": "Birch Sign", + "block.minecraft.birch_slab": "Birch Slab", + "block.minecraft.birch_stairs": "Birch Stairs", + "block.minecraft.birch_trapdoor": "Birch Trapdoor", + "block.minecraft.birch_wall_hanging_sign": "Birch Wall Hanging Sign", + "block.minecraft.birch_wall_sign": "Birch Wall Sign", + "block.minecraft.birch_wood": "Birch Wood", + "block.minecraft.black_banner": "Black Banner", + "block.minecraft.black_bed": "Black Bed", + "block.minecraft.black_candle": "Black Candle", + "block.minecraft.black_candle_cake": "Cake with Black Candle", + "block.minecraft.black_carpet": "Black Carpet", + "block.minecraft.black_concrete": "Black Concrete", + "block.minecraft.black_concrete_powder": "Black Concrete Powder", + "block.minecraft.black_glazed_terracotta": "Black Glazed Terracotta", + "block.minecraft.black_shulker_box": "Black Shulker Box", + "block.minecraft.black_stained_glass": "Black Stained Glass", + "block.minecraft.black_stained_glass_pane": "Black Stained Glass Pane", + "block.minecraft.black_terracotta": "Black Terracotta", + "block.minecraft.black_wool": "Black Wool", + "block.minecraft.blackstone": "Blackstone", + "block.minecraft.blackstone_slab": "Blackstone Slab", + "block.minecraft.blackstone_stairs": "Blackstone Stairs", + "block.minecraft.blackstone_wall": "Blackstone Wall", + "block.minecraft.blast_furnace": "Blast Furnace", + "block.minecraft.blue_banner": "Blue Banner", + "block.minecraft.blue_bed": "Blue Bed", + "block.minecraft.blue_candle": "Blue Candle", + "block.minecraft.blue_candle_cake": "Cake with Blue Candle", + "block.minecraft.blue_carpet": "Blue Carpet", + "block.minecraft.blue_concrete": "Blue Concrete", + "block.minecraft.blue_concrete_powder": "Blue Concrete Powder", + "block.minecraft.blue_glazed_terracotta": "Blue Glazed Terracotta", + "block.minecraft.blue_ice": "Blue Ice", + "block.minecraft.blue_orchid": "Blue Orchid", + "block.minecraft.blue_shulker_box": "Blue Shulker Box", + "block.minecraft.blue_stained_glass": "Blue Stained Glass", + "block.minecraft.blue_stained_glass_pane": "Blue Stained Glass Pane", + "block.minecraft.blue_terracotta": "Blue Terracotta", + "block.minecraft.blue_wool": "Blue Wool", + "block.minecraft.bone_block": "Bone Block", + "block.minecraft.bookshelf": "Bookshelf", + "block.minecraft.brain_coral": "Brain Coral", + "block.minecraft.brain_coral_block": "Brain Coral Block", + "block.minecraft.brain_coral_fan": "Brain Coral Fan", + "block.minecraft.brain_coral_wall_fan": "Brain Coral Wall Fan", + "block.minecraft.brewing_stand": "Brewing Stand", + "block.minecraft.brick_slab": "Brick Slab", + "block.minecraft.brick_stairs": "Brick Stairs", + "block.minecraft.brick_wall": "Brick Wall", + "block.minecraft.bricks": "Bricks", + "block.minecraft.brown_banner": "Brown Banner", + "block.minecraft.brown_bed": "Brown Bed", + "block.minecraft.brown_candle": "Brown Candle", + "block.minecraft.brown_candle_cake": "Cake with Brown Candle", + "block.minecraft.brown_carpet": "Brown Carpet", + "block.minecraft.brown_concrete": "Brown Concrete", + "block.minecraft.brown_concrete_powder": "Brown Concrete Powder", + "block.minecraft.brown_glazed_terracotta": "Brown Glazed Terracotta", + "block.minecraft.brown_mushroom": "Brown Mushroom", + "block.minecraft.brown_mushroom_block": "Brown Mushroom Block", + "block.minecraft.brown_shulker_box": "Brown Shulker Box", + "block.minecraft.brown_stained_glass": "Brown Stained Glass", + "block.minecraft.brown_stained_glass_pane": "Brown Stained Glass Pane", + "block.minecraft.brown_terracotta": "Brown Terracotta", + "block.minecraft.brown_wool": "Brown Wool", + "block.minecraft.bubble_column": "Bubble Column", + "block.minecraft.bubble_coral": "Bubble Coral", + "block.minecraft.bubble_coral_block": "Bubble Coral Block", + "block.minecraft.bubble_coral_fan": "Bubble Coral Fan", + "block.minecraft.bubble_coral_wall_fan": "Bubble Coral Wall Fan", + "block.minecraft.budding_amethyst": "Budding Amethyst", + "block.minecraft.cactus": "Cactus", + "block.minecraft.cake": "Cake", + "block.minecraft.calcite": "Calcite", + "block.minecraft.calibrated_sculk_sensor": "Calibrated Sculk Sensor", + "block.minecraft.campfire": "Campfire", + "block.minecraft.candle": "Candle", + "block.minecraft.candle_cake": "Cake with Candle", + "block.minecraft.carrots": "Carrots", + "block.minecraft.cartography_table": "Cartography Table", + "block.minecraft.carved_pumpkin": "Carved Pumpkin", + "block.minecraft.cauldron": "Cauldron", + "block.minecraft.cave_air": "Cave Air", + "block.minecraft.cave_vines": "Cave Vines", + "block.minecraft.cave_vines_plant": "Cave Vines Plant", + "block.minecraft.chain": "Chain", + "block.minecraft.chain_command_block": "Chain Command Block", + "block.minecraft.cherry_button": "Cherry Button", + "block.minecraft.cherry_door": "Cherry Door", + "block.minecraft.cherry_fence": "Cherry Fence", + "block.minecraft.cherry_fence_gate": "Cherry Fence Gate", + "block.minecraft.cherry_hanging_sign": "Cherry Hanging Sign", + "block.minecraft.cherry_leaves": "Cherry Leaves", + "block.minecraft.cherry_log": "Cherry Log", + "block.minecraft.cherry_planks": "Cherry Planks", + "block.minecraft.cherry_pressure_plate": "Cherry Pressure Plate", + "block.minecraft.cherry_sapling": "Cherry Sapling", + "block.minecraft.cherry_sign": "Cherry Sign", + "block.minecraft.cherry_slab": "Cherry Slab", + "block.minecraft.cherry_stairs": "Cherry Stairs", + "block.minecraft.cherry_trapdoor": "Cherry Trapdoor", + "block.minecraft.cherry_wall_hanging_sign": "Cherry Wall Hanging Sign", + "block.minecraft.cherry_wall_sign": "Cherry Wall Sign", + "block.minecraft.cherry_wood": "Cherry Wood", + "block.minecraft.chest": "Chest", + "block.minecraft.chipped_anvil": "Chipped Anvil", + "block.minecraft.chiseled_bookshelf": "Chiseled Bookshelf", + "block.minecraft.chiseled_copper": "Chiseled Copper", + "block.minecraft.chiseled_deepslate": "Chiseled Deepslate", + "block.minecraft.chiseled_nether_bricks": "Chiseled Nether Bricks", + "block.minecraft.chiseled_polished_blackstone": "Chiseled Polished Blackstone", + "block.minecraft.chiseled_quartz_block": "Chiseled Quartz Block", + "block.minecraft.chiseled_red_sandstone": "Chiseled Red Sandstone", + "block.minecraft.chiseled_resin_bricks": "Chiseled Resin Bricks", + "block.minecraft.chiseled_sandstone": "Chiseled Sandstone", + "block.minecraft.chiseled_stone_bricks": "Chiseled Stone Bricks", + "block.minecraft.chiseled_tuff": "Chiseled Tuff", + "block.minecraft.chiseled_tuff_bricks": "Chiseled Tuff Bricks", + "block.minecraft.chorus_flower": "Chorus Flower", + "block.minecraft.chorus_plant": "Chorus Plant", + "block.minecraft.clay": "Clay", + "block.minecraft.closed_eyeblossom": "Closed Eyeblossom", + "block.minecraft.coal_block": "Block of Coal", + "block.minecraft.coal_ore": "Coal Ore", + "block.minecraft.coarse_dirt": "Coarse Dirt", + "block.minecraft.cobbled_deepslate": "Cobbled Deepslate", + "block.minecraft.cobbled_deepslate_slab": "Cobbled Deepslate Slab", + "block.minecraft.cobbled_deepslate_stairs": "Cobbled Deepslate Stairs", + "block.minecraft.cobbled_deepslate_wall": "Cobbled Deepslate Wall", + "block.minecraft.cobblestone": "Cobblestone", + "block.minecraft.cobblestone_slab": "Cobblestone Slab", + "block.minecraft.cobblestone_stairs": "Cobblestone Stairs", + "block.minecraft.cobblestone_wall": "Cobblestone Wall", + "block.minecraft.cobweb": "Cobweb", + "block.minecraft.cocoa": "Cocoa", + "block.minecraft.command_block": "Command Block", + "block.minecraft.comparator": "Redstone Comparator", + "block.minecraft.composter": "Composter", + "block.minecraft.conduit": "Conduit", + "block.minecraft.copper_block": "Block of Copper", + "block.minecraft.copper_bulb": "Copper Bulb", + "block.minecraft.copper_door": "Copper Door", + "block.minecraft.copper_grate": "Copper Grate", + "block.minecraft.copper_ore": "Copper Ore", + "block.minecraft.copper_trapdoor": "Copper Trapdoor", + "block.minecraft.cornflower": "Cornflower", + "block.minecraft.cracked_deepslate_bricks": "Cracked Deepslate Bricks", + "block.minecraft.cracked_deepslate_tiles": "Cracked Deepslate Tiles", + "block.minecraft.cracked_nether_bricks": "Cracked Nether Bricks", + "block.minecraft.cracked_polished_blackstone_bricks": "Cracked Polished Blackstone Bricks", + "block.minecraft.cracked_stone_bricks": "Cracked Stone Bricks", + "block.minecraft.crafter": "Crafter", + "block.minecraft.crafting_table": "Crafting Table", + "block.minecraft.creaking_heart": "Creaking Heart", + "block.minecraft.creeper_head": "Creeper Head", + "block.minecraft.creeper_wall_head": "Creeper Wall Head", + "block.minecraft.crimson_button": "Crimson Button", + "block.minecraft.crimson_door": "Crimson Door", + "block.minecraft.crimson_fence": "Crimson Fence", + "block.minecraft.crimson_fence_gate": "Crimson Fence Gate", + "block.minecraft.crimson_fungus": "Crimson Fungus", + "block.minecraft.crimson_hanging_sign": "Crimson Hanging Sign", + "block.minecraft.crimson_hyphae": "Crimson Hyphae", + "block.minecraft.crimson_nylium": "Crimson Nylium", + "block.minecraft.crimson_planks": "Crimson Planks", + "block.minecraft.crimson_pressure_plate": "Crimson Pressure Plate", + "block.minecraft.crimson_roots": "Crimson Roots", + "block.minecraft.crimson_sign": "Crimson Sign", + "block.minecraft.crimson_slab": "Crimson Slab", + "block.minecraft.crimson_stairs": "Crimson Stairs", + "block.minecraft.crimson_stem": "Crimson Stem", + "block.minecraft.crimson_trapdoor": "Crimson Trapdoor", + "block.minecraft.crimson_wall_hanging_sign": "Crimson Wall Hanging Sign", + "block.minecraft.crimson_wall_sign": "Crimson Wall Sign", + "block.minecraft.crying_obsidian": "Crying Obsidian", + "block.minecraft.cut_copper": "Cut Copper", + "block.minecraft.cut_copper_slab": "Cut Copper Slab", + "block.minecraft.cut_copper_stairs": "Cut Copper Stairs", + "block.minecraft.cut_red_sandstone": "Cut Red Sandstone", + "block.minecraft.cut_red_sandstone_slab": "Cut Red Sandstone Slab", + "block.minecraft.cut_sandstone": "Cut Sandstone", + "block.minecraft.cut_sandstone_slab": "Cut Sandstone Slab", + "block.minecraft.cyan_banner": "Cyan Banner", + "block.minecraft.cyan_bed": "Cyan Bed", + "block.minecraft.cyan_candle": "Cyan Candle", + "block.minecraft.cyan_candle_cake": "Cake with Cyan Candle", + "block.minecraft.cyan_carpet": "Cyan Carpet", + "block.minecraft.cyan_concrete": "Cyan Concrete", + "block.minecraft.cyan_concrete_powder": "Cyan Concrete Powder", + "block.minecraft.cyan_glazed_terracotta": "Cyan Glazed Terracotta", + "block.minecraft.cyan_shulker_box": "Cyan Shulker Box", + "block.minecraft.cyan_stained_glass": "Cyan Stained Glass", + "block.minecraft.cyan_stained_glass_pane": "Cyan Stained Glass Pane", + "block.minecraft.cyan_terracotta": "Cyan Terracotta", + "block.minecraft.cyan_wool": "Cyan Wool", + "block.minecraft.damaged_anvil": "Damaged Anvil", + "block.minecraft.dandelion": "Dandelion", + "block.minecraft.dark_oak_button": "Dark Oak Button", + "block.minecraft.dark_oak_door": "Dark Oak Door", + "block.minecraft.dark_oak_fence": "Dark Oak Fence", + "block.minecraft.dark_oak_fence_gate": "Dark Oak Fence Gate", + "block.minecraft.dark_oak_hanging_sign": "Dark Oak Hanging Sign", + "block.minecraft.dark_oak_leaves": "Dark Oak Leaves", + "block.minecraft.dark_oak_log": "Dark Oak Log", + "block.minecraft.dark_oak_planks": "Dark Oak Planks", + "block.minecraft.dark_oak_pressure_plate": "Dark Oak Pressure Plate", + "block.minecraft.dark_oak_sapling": "Dark Oak Sapling", + "block.minecraft.dark_oak_sign": "Dark Oak Sign", + "block.minecraft.dark_oak_slab": "Dark Oak Slab", + "block.minecraft.dark_oak_stairs": "Dark Oak Stairs", + "block.minecraft.dark_oak_trapdoor": "Dark Oak Trapdoor", + "block.minecraft.dark_oak_wall_hanging_sign": "Dark Oak Wall Hanging Sign", + "block.minecraft.dark_oak_wall_sign": "Dark Oak Wall Sign", + "block.minecraft.dark_oak_wood": "Dark Oak Wood", + "block.minecraft.dark_prismarine": "Dark Prismarine", + "block.minecraft.dark_prismarine_slab": "Dark Prismarine Slab", + "block.minecraft.dark_prismarine_stairs": "Dark Prismarine Stairs", + "block.minecraft.daylight_detector": "Daylight Detector", + "block.minecraft.dead_brain_coral": "Dead Brain Coral", + "block.minecraft.dead_brain_coral_block": "Dead Brain Coral Block", + "block.minecraft.dead_brain_coral_fan": "Dead Brain Coral Fan", + "block.minecraft.dead_brain_coral_wall_fan": "Dead Brain Coral Wall Fan", + "block.minecraft.dead_bubble_coral": "Dead Bubble Coral", + "block.minecraft.dead_bubble_coral_block": "Dead Bubble Coral Block", + "block.minecraft.dead_bubble_coral_fan": "Dead Bubble Coral Fan", + "block.minecraft.dead_bubble_coral_wall_fan": "Dead Bubble Coral Wall Fan", + "block.minecraft.dead_bush": "Dead Bush", + "block.minecraft.dead_fire_coral": "Dead Fire Coral", + "block.minecraft.dead_fire_coral_block": "Dead Fire Coral Block", + "block.minecraft.dead_fire_coral_fan": "Dead Fire Coral Fan", + "block.minecraft.dead_fire_coral_wall_fan": "Dead Fire Coral Wall Fan", + "block.minecraft.dead_horn_coral": "Dead Horn Coral", + "block.minecraft.dead_horn_coral_block": "Dead Horn Coral Block", + "block.minecraft.dead_horn_coral_fan": "Dead Horn Coral Fan", + "block.minecraft.dead_horn_coral_wall_fan": "Dead Horn Coral Wall Fan", + "block.minecraft.dead_tube_coral": "Dead Tube Coral", + "block.minecraft.dead_tube_coral_block": "Dead Tube Coral Block", + "block.minecraft.dead_tube_coral_fan": "Dead Tube Coral Fan", + "block.minecraft.dead_tube_coral_wall_fan": "Dead Tube Coral Wall Fan", + "block.minecraft.decorated_pot": "Decorated Pot", + "block.minecraft.deepslate": "Deepslate", + "block.minecraft.deepslate_brick_slab": "Deepslate Brick Slab", + "block.minecraft.deepslate_brick_stairs": "Deepslate Brick Stairs", + "block.minecraft.deepslate_brick_wall": "Deepslate Brick Wall", + "block.minecraft.deepslate_bricks": "Deepslate Bricks", + "block.minecraft.deepslate_coal_ore": "Deepslate Coal Ore", + "block.minecraft.deepslate_copper_ore": "Deepslate Copper Ore", + "block.minecraft.deepslate_diamond_ore": "Deepslate Diamond Ore", + "block.minecraft.deepslate_emerald_ore": "Deepslate Emerald Ore", + "block.minecraft.deepslate_gold_ore": "Deepslate Gold Ore", + "block.minecraft.deepslate_iron_ore": "Deepslate Iron Ore", + "block.minecraft.deepslate_lapis_ore": "Deepslate Lapis Lazuli Ore", + "block.minecraft.deepslate_redstone_ore": "Deepslate Redstone Ore", + "block.minecraft.deepslate_tile_slab": "Deepslate Tile Slab", + "block.minecraft.deepslate_tile_stairs": "Deepslate Tile Stairs", + "block.minecraft.deepslate_tile_wall": "Deepslate Tile Wall", + "block.minecraft.deepslate_tiles": "Deepslate Tiles", + "block.minecraft.detector_rail": "Detector Rail", + "block.minecraft.diamond_block": "Block of Diamond", + "block.minecraft.diamond_ore": "Diamond Ore", + "block.minecraft.diorite": "Diorite", + "block.minecraft.diorite_slab": "Diorite Slab", + "block.minecraft.diorite_stairs": "Diorite Stairs", + "block.minecraft.diorite_wall": "Diorite Wall", + "block.minecraft.dirt": "Dirt", + "block.minecraft.dirt_path": "Dirt Path", + "block.minecraft.dispenser": "Dispenser", + "block.minecraft.dragon_egg": "Dragon Egg", + "block.minecraft.dragon_head": "Dragon Head", + "block.minecraft.dragon_wall_head": "Dragon Wall Head", + "block.minecraft.dried_kelp_block": "Dried Kelp Block", + "block.minecraft.dripstone_block": "Dripstone Block", + "block.minecraft.dropper": "Dropper", + "block.minecraft.emerald_block": "Block of Emerald", + "block.minecraft.emerald_ore": "Emerald Ore", + "block.minecraft.enchanting_table": "Enchanting Table", + "block.minecraft.end_gateway": "End Gateway", + "block.minecraft.end_portal": "End Portal", + "block.minecraft.end_portal_frame": "End Portal Frame", + "block.minecraft.end_rod": "End Rod", + "block.minecraft.end_stone": "End Stone", + "block.minecraft.end_stone_brick_slab": "End Stone Brick Slab", + "block.minecraft.end_stone_brick_stairs": "End Stone Brick Stairs", + "block.minecraft.end_stone_brick_wall": "End Stone Brick Wall", + "block.minecraft.end_stone_bricks": "End Stone Bricks", + "block.minecraft.ender_chest": "Ender Chest", + "block.minecraft.exposed_chiseled_copper": "Exposed Chiseled Copper", + "block.minecraft.exposed_copper": "Exposed Copper", + "block.minecraft.exposed_copper_bulb": "Exposed Copper Bulb", + "block.minecraft.exposed_copper_door": "Exposed Copper Door", + "block.minecraft.exposed_copper_grate": "Exposed Copper Grate", + "block.minecraft.exposed_copper_trapdoor": "Exposed Copper Trapdoor", + "block.minecraft.exposed_cut_copper": "Exposed Cut Copper", + "block.minecraft.exposed_cut_copper_slab": "Exposed Cut Copper Slab", + "block.minecraft.exposed_cut_copper_stairs": "Exposed Cut Copper Stairs", + "block.minecraft.farmland": "Farmland", + "block.minecraft.fern": "Fern", + "block.minecraft.fire": "Fire", + "block.minecraft.fire_coral": "Fire Coral", + "block.minecraft.fire_coral_block": "Fire Coral Block", + "block.minecraft.fire_coral_fan": "Fire Coral Fan", + "block.minecraft.fire_coral_wall_fan": "Fire Coral Wall Fan", + "block.minecraft.fletching_table": "Fletching Table", + "block.minecraft.flower_pot": "Flower Pot", + "block.minecraft.flowering_azalea": "Flowering Azalea", + "block.minecraft.flowering_azalea_leaves": "Flowering Azalea Leaves", + "block.minecraft.frogspawn": "Frogspawn", + "block.minecraft.frosted_ice": "Frosted Ice", + "block.minecraft.furnace": "Furnace", + "block.minecraft.gilded_blackstone": "Gilded Blackstone", + "block.minecraft.glass": "Glass", + "block.minecraft.glass_pane": "Glass Pane", + "block.minecraft.glow_lichen": "Glow Lichen", + "block.minecraft.glowstone": "Glowstone", + "block.minecraft.gold_block": "Block of Gold", + "block.minecraft.gold_ore": "Gold Ore", + "block.minecraft.granite": "Granite", + "block.minecraft.granite_slab": "Granite Slab", + "block.minecraft.granite_stairs": "Granite Stairs", + "block.minecraft.granite_wall": "Granite Wall", + "block.minecraft.grass": "Grass", + "block.minecraft.grass_block": "Grass Block", + "block.minecraft.gravel": "Gravel", + "block.minecraft.gray_banner": "Gray Banner", + "block.minecraft.gray_bed": "Gray Bed", + "block.minecraft.gray_candle": "Gray Candle", + "block.minecraft.gray_candle_cake": "Cake with Gray Candle", + "block.minecraft.gray_carpet": "Gray Carpet", + "block.minecraft.gray_concrete": "Gray Concrete", + "block.minecraft.gray_concrete_powder": "Gray Concrete Powder", + "block.minecraft.gray_glazed_terracotta": "Gray Glazed Terracotta", + "block.minecraft.gray_shulker_box": "Gray Shulker Box", + "block.minecraft.gray_stained_glass": "Gray Stained Glass", + "block.minecraft.gray_stained_glass_pane": "Gray Stained Glass Pane", + "block.minecraft.gray_terracotta": "Gray Terracotta", + "block.minecraft.gray_wool": "Gray Wool", + "block.minecraft.green_banner": "Green Banner", + "block.minecraft.green_bed": "Green Bed", + "block.minecraft.green_candle": "Green Candle", + "block.minecraft.green_candle_cake": "Cake with Green Candle", + "block.minecraft.green_carpet": "Green Carpet", + "block.minecraft.green_concrete": "Green Concrete", + "block.minecraft.green_concrete_powder": "Green Concrete Powder", + "block.minecraft.green_glazed_terracotta": "Green Glazed Terracotta", + "block.minecraft.green_shulker_box": "Green Shulker Box", + "block.minecraft.green_stained_glass": "Green Stained Glass", + "block.minecraft.green_stained_glass_pane": "Green Stained Glass Pane", + "block.minecraft.green_terracotta": "Green Terracotta", + "block.minecraft.green_wool": "Green Wool", + "block.minecraft.grindstone": "Grindstone", + "block.minecraft.hanging_roots": "Hanging Roots", + "block.minecraft.hay_block": "Hay Bale", + "block.minecraft.heavy_core": "Heavy Core", + "block.minecraft.heavy_weighted_pressure_plate": "Heavy Weighted Pressure Plate", + "block.minecraft.honey_block": "Honey Block", + "block.minecraft.honeycomb_block": "Honeycomb Block", + "block.minecraft.hopper": "Hopper", + "block.minecraft.horn_coral": "Horn Coral", + "block.minecraft.horn_coral_block": "Horn Coral Block", + "block.minecraft.horn_coral_fan": "Horn Coral Fan", + "block.minecraft.horn_coral_wall_fan": "Horn Coral Wall Fan", + "block.minecraft.ice": "Ice", + "block.minecraft.infested_chiseled_stone_bricks": "Infested Chiseled Stone Bricks", + "block.minecraft.infested_cobblestone": "Infested Cobblestone", + "block.minecraft.infested_cracked_stone_bricks": "Infested Cracked Stone Bricks", + "block.minecraft.infested_deepslate": "Infested Deepslate", + "block.minecraft.infested_mossy_stone_bricks": "Infested Mossy Stone Bricks", + "block.minecraft.infested_stone": "Infested Stone", + "block.minecraft.infested_stone_bricks": "Infested Stone Bricks", + "block.minecraft.iron_bars": "Iron Bars", + "block.minecraft.iron_block": "Block of Iron", + "block.minecraft.iron_door": "Iron Door", + "block.minecraft.iron_ore": "Iron Ore", + "block.minecraft.iron_trapdoor": "Iron Trapdoor", + "block.minecraft.jack_o_lantern": "Jack o'Lantern", + "block.minecraft.jigsaw": "Jigsaw Block", + "block.minecraft.jukebox": "Jukebox", + "block.minecraft.jungle_button": "Jungle Button", + "block.minecraft.jungle_door": "Jungle Door", + "block.minecraft.jungle_fence": "Jungle Fence", + "block.minecraft.jungle_fence_gate": "Jungle Fence Gate", + "block.minecraft.jungle_hanging_sign": "Jungle Hanging Sign", + "block.minecraft.jungle_leaves": "Jungle Leaves", + "block.minecraft.jungle_log": "Jungle Log", + "block.minecraft.jungle_planks": "Jungle Planks", + "block.minecraft.jungle_pressure_plate": "Jungle Pressure Plate", + "block.minecraft.jungle_sapling": "Jungle Sapling", + "block.minecraft.jungle_sign": "Jungle Sign", + "block.minecraft.jungle_slab": "Jungle Slab", + "block.minecraft.jungle_stairs": "Jungle Stairs", + "block.minecraft.jungle_trapdoor": "Jungle Trapdoor", + "block.minecraft.jungle_wall_hanging_sign": "Jungle Wall Hanging Sign", + "block.minecraft.jungle_wall_sign": "Jungle Wall Sign", + "block.minecraft.jungle_wood": "Jungle Wood", + "block.minecraft.kelp": "Kelp", + "block.minecraft.kelp_plant": "Kelp Plant", + "block.minecraft.ladder": "Ladder", + "block.minecraft.lantern": "Lantern", + "block.minecraft.lapis_block": "Block of Lapis Lazuli", + "block.minecraft.lapis_ore": "Lapis Lazuli Ore", + "block.minecraft.large_amethyst_bud": "Large Amethyst Bud", + "block.minecraft.large_fern": "Large Fern", + "block.minecraft.lava": "Lava", + "block.minecraft.lava_cauldron": "Lava Cauldron", + "block.minecraft.lectern": "Lectern", + "block.minecraft.lever": "Lever", + "block.minecraft.light": "Light", + "block.minecraft.light_blue_banner": "Light Blue Banner", + "block.minecraft.light_blue_bed": "Light Blue Bed", + "block.minecraft.light_blue_candle": "Light Blue Candle", + "block.minecraft.light_blue_candle_cake": "Cake with Light Blue Candle", + "block.minecraft.light_blue_carpet": "Light Blue Carpet", + "block.minecraft.light_blue_concrete": "Light Blue Concrete", + "block.minecraft.light_blue_concrete_powder": "Light Blue Concrete Powder", + "block.minecraft.light_blue_glazed_terracotta": "Light Blue Glazed Terracotta", + "block.minecraft.light_blue_shulker_box": "Light Blue Shulker Box", + "block.minecraft.light_blue_stained_glass": "Light Blue Stained Glass", + "block.minecraft.light_blue_stained_glass_pane": "Light Blue Stained Glass Pane", + "block.minecraft.light_blue_terracotta": "Light Blue Terracotta", + "block.minecraft.light_blue_wool": "Light Blue Wool", + "block.minecraft.light_gray_banner": "Light Gray Banner", + "block.minecraft.light_gray_bed": "Light Gray Bed", + "block.minecraft.light_gray_candle": "Light Gray Candle", + "block.minecraft.light_gray_candle_cake": "Cake with Light Gray Candle", + "block.minecraft.light_gray_carpet": "Light Gray Carpet", + "block.minecraft.light_gray_concrete": "Light Gray Concrete", + "block.minecraft.light_gray_concrete_powder": "Light Gray Concrete Powder", + "block.minecraft.light_gray_glazed_terracotta": "Light Gray Glazed Terracotta", + "block.minecraft.light_gray_shulker_box": "Light Gray Shulker Box", + "block.minecraft.light_gray_stained_glass": "Light Gray Stained Glass", + "block.minecraft.light_gray_stained_glass_pane": "Light Gray Stained Glass Pane", + "block.minecraft.light_gray_terracotta": "Light Gray Terracotta", + "block.minecraft.light_gray_wool": "Light Gray Wool", + "block.minecraft.light_weighted_pressure_plate": "Light Weighted Pressure Plate", + "block.minecraft.lightning_rod": "Lightning Rod", + "block.minecraft.lilac": "Lilac", + "block.minecraft.lily_of_the_valley": "Lily of the Valley", + "block.minecraft.lily_pad": "Lily Pad", + "block.minecraft.lime_banner": "Lime Banner", + "block.minecraft.lime_bed": "Lime Bed", + "block.minecraft.lime_candle": "Lime Candle", + "block.minecraft.lime_candle_cake": "Cake with Lime Candle", + "block.minecraft.lime_carpet": "Lime Carpet", + "block.minecraft.lime_concrete": "Lime Concrete", + "block.minecraft.lime_concrete_powder": "Lime Concrete Powder", + "block.minecraft.lime_glazed_terracotta": "Lime Glazed Terracotta", + "block.minecraft.lime_shulker_box": "Lime Shulker Box", + "block.minecraft.lime_stained_glass": "Lime Stained Glass", + "block.minecraft.lime_stained_glass_pane": "Lime Stained Glass Pane", + "block.minecraft.lime_terracotta": "Lime Terracotta", + "block.minecraft.lime_wool": "Lime Wool", + "block.minecraft.lodestone": "Lodestone", + "block.minecraft.loom": "Loom", + "block.minecraft.magenta_banner": "Magenta Banner", + "block.minecraft.magenta_bed": "Magenta Bed", + "block.minecraft.magenta_candle": "Magenta Candle", + "block.minecraft.magenta_candle_cake": "Cake with Magenta Candle", + "block.minecraft.magenta_carpet": "Magenta Carpet", + "block.minecraft.magenta_concrete": "Magenta Concrete", + "block.minecraft.magenta_concrete_powder": "Magenta Concrete Powder", + "block.minecraft.magenta_glazed_terracotta": "Magenta Glazed Terracotta", + "block.minecraft.magenta_shulker_box": "Magenta Shulker Box", + "block.minecraft.magenta_stained_glass": "Magenta Stained Glass", + "block.minecraft.magenta_stained_glass_pane": "Magenta Stained Glass Pane", + "block.minecraft.magenta_terracotta": "Magenta Terracotta", + "block.minecraft.magenta_wool": "Magenta Wool", + "block.minecraft.magma_block": "Magma Block", + "block.minecraft.mangrove_button": "Mangrove Button", + "block.minecraft.mangrove_door": "Mangrove Door", + "block.minecraft.mangrove_fence": "Mangrove Fence", + "block.minecraft.mangrove_fence_gate": "Mangrove Fence Gate", + "block.minecraft.mangrove_hanging_sign": "Mangrove Hanging Sign", + "block.minecraft.mangrove_leaves": "Mangrove Leaves", + "block.minecraft.mangrove_log": "Mangrove Log", + "block.minecraft.mangrove_planks": "Mangrove Planks", + "block.minecraft.mangrove_pressure_plate": "Mangrove Pressure Plate", + "block.minecraft.mangrove_propagule": "Mangrove Propagule", + "block.minecraft.mangrove_roots": "Mangrove Roots", + "block.minecraft.mangrove_sign": "Mangrove Sign", + "block.minecraft.mangrove_slab": "Mangrove Slab", + "block.minecraft.mangrove_stairs": "Mangrove Stairs", + "block.minecraft.mangrove_trapdoor": "Mangrove Trapdoor", + "block.minecraft.mangrove_wall_hanging_sign": "Mangrove Wall Hanging Sign", + "block.minecraft.mangrove_wall_sign": "Mangrove Wall Sign", + "block.minecraft.mangrove_wood": "Mangrove Wood", + "block.minecraft.medium_amethyst_bud": "Medium Amethyst Bud", + "block.minecraft.melon": "Melon", + "block.minecraft.melon_stem": "Melon Stem", + "block.minecraft.moss_block": "Moss Block", + "block.minecraft.moss_carpet": "Moss Carpet", + "block.minecraft.mossy_cobblestone": "Mossy Cobblestone", + "block.minecraft.mossy_cobblestone_slab": "Mossy Cobblestone Slab", + "block.minecraft.mossy_cobblestone_stairs": "Mossy Cobblestone Stairs", + "block.minecraft.mossy_cobblestone_wall": "Mossy Cobblestone Wall", + "block.minecraft.mossy_stone_brick_slab": "Mossy Stone Brick Slab", + "block.minecraft.mossy_stone_brick_stairs": "Mossy Stone Brick Stairs", + "block.minecraft.mossy_stone_brick_wall": "Mossy Stone Brick Wall", + "block.minecraft.mossy_stone_bricks": "Mossy Stone Bricks", + "block.minecraft.moving_piston": "Moving Piston", + "block.minecraft.mud": "Mud", + "block.minecraft.mud_brick_slab": "Mud Brick Slab", + "block.minecraft.mud_brick_stairs": "Mud Brick Stairs", + "block.minecraft.mud_brick_wall": "Mud Brick Wall", + "block.minecraft.mud_bricks": "Mud Bricks", + "block.minecraft.muddy_mangrove_roots": "Muddy Mangrove Roots", + "block.minecraft.mushroom_stem": "Mushroom Stem", + "block.minecraft.mycelium": "Mycelium", + "block.minecraft.nether_brick_fence": "Nether Brick Fence", + "block.minecraft.nether_brick_slab": "Nether Brick Slab", + "block.minecraft.nether_brick_stairs": "Nether Brick Stairs", + "block.minecraft.nether_brick_wall": "Nether Brick Wall", + "block.minecraft.nether_bricks": "Nether Bricks", + "block.minecraft.nether_gold_ore": "Nether Gold Ore", + "block.minecraft.nether_portal": "Nether Portal", + "block.minecraft.nether_quartz_ore": "Nether Quartz Ore", + "block.minecraft.nether_sprouts": "Nether Sprouts", + "block.minecraft.nether_wart": "Nether Wart", + "block.minecraft.nether_wart_block": "Nether Wart Block", + "block.minecraft.netherite_block": "Block of Netherite", + "block.minecraft.netherrack": "Netherrack", + "block.minecraft.note_block": "Note Block", + "block.minecraft.oak_button": "Oak Button", + "block.minecraft.oak_door": "Oak Door", + "block.minecraft.oak_fence": "Oak Fence", + "block.minecraft.oak_fence_gate": "Oak Fence Gate", + "block.minecraft.oak_hanging_sign": "Oak Hanging Sign", + "block.minecraft.oak_leaves": "Oak Leaves", + "block.minecraft.oak_log": "Oak Log", + "block.minecraft.oak_planks": "Oak Planks", + "block.minecraft.oak_pressure_plate": "Oak Pressure Plate", + "block.minecraft.oak_sapling": "Oak Sapling", + "block.minecraft.oak_sign": "Oak Sign", + "block.minecraft.oak_slab": "Oak Slab", + "block.minecraft.oak_stairs": "Oak Stairs", + "block.minecraft.oak_trapdoor": "Oak Trapdoor", + "block.minecraft.oak_wall_hanging_sign": "Oak Wall Hanging Sign", + "block.minecraft.oak_wall_sign": "Oak Wall Sign", + "block.minecraft.oak_wood": "Oak Wood", + "block.minecraft.observer": "Observer", + "block.minecraft.obsidian": "Obsidian", + "block.minecraft.ochre_froglight": "Ochre Froglight", + "block.minecraft.ominous_banner": "Ominous Banner", + "block.minecraft.open_eyeblossom": "Open Eyeblossom", + "block.minecraft.orange_banner": "Orange Banner", + "block.minecraft.orange_bed": "Orange Bed", + "block.minecraft.orange_candle": "Orange Candle", + "block.minecraft.orange_candle_cake": "Cake with Orange Candle", + "block.minecraft.orange_carpet": "Orange Carpet", + "block.minecraft.orange_concrete": "Orange Concrete", + "block.minecraft.orange_concrete_powder": "Orange Concrete Powder", + "block.minecraft.orange_glazed_terracotta": "Orange Glazed Terracotta", + "block.minecraft.orange_shulker_box": "Orange Shulker Box", + "block.minecraft.orange_stained_glass": "Orange Stained Glass", + "block.minecraft.orange_stained_glass_pane": "Orange Stained Glass Pane", + "block.minecraft.orange_terracotta": "Orange Terracotta", + "block.minecraft.orange_tulip": "Orange Tulip", + "block.minecraft.orange_wool": "Orange Wool", + "block.minecraft.oxeye_daisy": "Oxeye Daisy", + "block.minecraft.oxidized_chiseled_copper": "Oxidized Chiseled Copper", + "block.minecraft.oxidized_copper": "Oxidized Copper", + "block.minecraft.oxidized_copper_bulb": "Oxidized Copper Bulb", + "block.minecraft.oxidized_copper_door": "Oxidized Copper Door", + "block.minecraft.oxidized_copper_grate": "Oxidized Copper Grate", + "block.minecraft.oxidized_copper_trapdoor": "Oxidized Copper Trapdoor", + "block.minecraft.oxidized_cut_copper": "Oxidized Cut Copper", + "block.minecraft.oxidized_cut_copper_slab": "Oxidized Cut Copper Slab", + "block.minecraft.oxidized_cut_copper_stairs": "Oxidized Cut Copper Stairs", + "block.minecraft.packed_ice": "Packed Ice", + "block.minecraft.packed_mud": "Packed Mud", + "block.minecraft.pale_hanging_moss": "Pale Hanging Moss", + "block.minecraft.pale_moss_block": "Pale Moss Block", + "block.minecraft.pale_moss_carpet": "Pale Moss Carpet", + "block.minecraft.pale_oak_button": "Pale Oak Button", + "block.minecraft.pale_oak_door": "Pale Oak Door", + "block.minecraft.pale_oak_fence": "Pale Oak Fence", + "block.minecraft.pale_oak_fence_gate": "Pale Oak Fence Gate", + "block.minecraft.pale_oak_hanging_sign": "Pale Oak Hanging Sign", + "block.minecraft.pale_oak_leaves": "Pale Oak Leaves", + "block.minecraft.pale_oak_log": "Pale Oak Log", + "block.minecraft.pale_oak_planks": "Pale Oak Planks", + "block.minecraft.pale_oak_pressure_plate": "Pale Oak Pressure Plate", + "block.minecraft.pale_oak_sapling": "Pale Oak Sapling", + "block.minecraft.pale_oak_sign": "Pale Oak Sign", + "block.minecraft.pale_oak_slab": "Pale Oak Slab", + "block.minecraft.pale_oak_stairs": "Pale Oak Stairs", + "block.minecraft.pale_oak_trapdoor": "Pale Oak Trapdoor", + "block.minecraft.pale_oak_wall_hanging_sign": "Pale Oak Wall Hanging Sign", + "block.minecraft.pale_oak_wall_sign": "Pale Oak Wall Sign", + "block.minecraft.pale_oak_wood": "Pale Oak Wood", + "block.minecraft.pearlescent_froglight": "Pearlescent Froglight", + "block.minecraft.peony": "Peony", + "block.minecraft.petrified_oak_slab": "Petrified Oak Slab", + "block.minecraft.piglin_head": "Piglin Head", + "block.minecraft.piglin_wall_head": "Piglin Wall Head", + "block.minecraft.pink_banner": "Pink Banner", + "block.minecraft.pink_bed": "Pink Bed", + "block.minecraft.pink_candle": "Pink Candle", + "block.minecraft.pink_candle_cake": "Cake with Pink Candle", + "block.minecraft.pink_carpet": "Pink Carpet", + "block.minecraft.pink_concrete": "Pink Concrete", + "block.minecraft.pink_concrete_powder": "Pink Concrete Powder", + "block.minecraft.pink_glazed_terracotta": "Pink Glazed Terracotta", + "block.minecraft.pink_petals": "Pink Petals", + "block.minecraft.pink_shulker_box": "Pink Shulker Box", + "block.minecraft.pink_stained_glass": "Pink Stained Glass", + "block.minecraft.pink_stained_glass_pane": "Pink Stained Glass Pane", + "block.minecraft.pink_terracotta": "Pink Terracotta", + "block.minecraft.pink_tulip": "Pink Tulip", + "block.minecraft.pink_wool": "Pink Wool", + "block.minecraft.piston": "Piston", + "block.minecraft.piston_head": "Piston Head", + "block.minecraft.pitcher_crop": "Pitcher Crop", + "block.minecraft.pitcher_plant": "Pitcher Plant", + "block.minecraft.player_head": "Player Head", + "block.minecraft.player_head.named": "%s's Head", + "block.minecraft.player_wall_head": "Player Wall Head", + "block.minecraft.podzol": "Podzol", + "block.minecraft.pointed_dripstone": "Pointed Dripstone", + "block.minecraft.polished_andesite": "Polished Andesite", + "block.minecraft.polished_andesite_slab": "Polished Andesite Slab", + "block.minecraft.polished_andesite_stairs": "Polished Andesite Stairs", + "block.minecraft.polished_basalt": "Polished Basalt", + "block.minecraft.polished_blackstone": "Polished Blackstone", + "block.minecraft.polished_blackstone_brick_slab": "Polished Blackstone Brick Slab", + "block.minecraft.polished_blackstone_brick_stairs": "Polished Blackstone Brick Stairs", + "block.minecraft.polished_blackstone_brick_wall": "Polished Blackstone Brick Wall", + "block.minecraft.polished_blackstone_bricks": "Polished Blackstone Bricks", + "block.minecraft.polished_blackstone_button": "Polished Blackstone Button", + "block.minecraft.polished_blackstone_pressure_plate": "Polished Blackstone Pressure Plate", + "block.minecraft.polished_blackstone_slab": "Polished Blackstone Slab", + "block.minecraft.polished_blackstone_stairs": "Polished Blackstone Stairs", + "block.minecraft.polished_blackstone_wall": "Polished Blackstone Wall", + "block.minecraft.polished_deepslate": "Polished Deepslate", + "block.minecraft.polished_deepslate_slab": "Polished Deepslate Slab", + "block.minecraft.polished_deepslate_stairs": "Polished Deepslate Stairs", + "block.minecraft.polished_deepslate_wall": "Polished Deepslate Wall", + "block.minecraft.polished_diorite": "Polished Diorite", + "block.minecraft.polished_diorite_slab": "Polished Diorite Slab", + "block.minecraft.polished_diorite_stairs": "Polished Diorite Stairs", + "block.minecraft.polished_granite": "Polished Granite", + "block.minecraft.polished_granite_slab": "Polished Granite Slab", + "block.minecraft.polished_granite_stairs": "Polished Granite Stairs", + "block.minecraft.polished_tuff": "Polished Tuff", + "block.minecraft.polished_tuff_slab": "Polished Tuff Slab", + "block.minecraft.polished_tuff_stairs": "Polished Tuff Stairs", + "block.minecraft.polished_tuff_wall": "Polished Tuff Wall", + "block.minecraft.poppy": "Poppy", + "block.minecraft.potatoes": "Potatoes", + "block.minecraft.potted_acacia_sapling": "Potted Acacia Sapling", + "block.minecraft.potted_allium": "Potted Allium", + "block.minecraft.potted_azalea_bush": "Potted Azalea", + "block.minecraft.potted_azure_bluet": "Potted Azure Bluet", + "block.minecraft.potted_bamboo": "Potted Bamboo", + "block.minecraft.potted_birch_sapling": "Potted Birch Sapling", + "block.minecraft.potted_blue_orchid": "Potted Blue Orchid", + "block.minecraft.potted_brown_mushroom": "Potted Brown Mushroom", + "block.minecraft.potted_cactus": "Potted Cactus", + "block.minecraft.potted_cherry_sapling": "Potted Cherry Sapling", + "block.minecraft.potted_closed_eyeblossom": "Potted Closed Eyeblossom", + "block.minecraft.potted_cornflower": "Potted Cornflower", + "block.minecraft.potted_crimson_fungus": "Potted Crimson Fungus", + "block.minecraft.potted_crimson_roots": "Potted Crimson Roots", + "block.minecraft.potted_dandelion": "Potted Dandelion", + "block.minecraft.potted_dark_oak_sapling": "Potted Dark Oak Sapling", + "block.minecraft.potted_dead_bush": "Potted Dead Bush", + "block.minecraft.potted_fern": "Potted Fern", + "block.minecraft.potted_flowering_azalea_bush": "Potted Flowering Azalea", + "block.minecraft.potted_jungle_sapling": "Potted Jungle Sapling", + "block.minecraft.potted_lily_of_the_valley": "Potted Lily of the Valley", + "block.minecraft.potted_mangrove_propagule": "Potted Mangrove Propagule", + "block.minecraft.potted_oak_sapling": "Potted Oak Sapling", + "block.minecraft.potted_open_eyeblossom": "Potted Open Eyeblossom", + "block.minecraft.potted_orange_tulip": "Potted Orange Tulip", + "block.minecraft.potted_oxeye_daisy": "Potted Oxeye Daisy", + "block.minecraft.potted_pale_oak_sapling": "Potted Pale Oak Sapling", + "block.minecraft.potted_pink_tulip": "Potted Pink Tulip", + "block.minecraft.potted_poppy": "Potted Poppy", + "block.minecraft.potted_red_mushroom": "Potted Red Mushroom", + "block.minecraft.potted_red_tulip": "Potted Red Tulip", + "block.minecraft.potted_spruce_sapling": "Potted Spruce Sapling", + "block.minecraft.potted_torchflower": "Potted Torchflower", + "block.minecraft.potted_warped_fungus": "Potted Warped Fungus", + "block.minecraft.potted_warped_roots": "Potted Warped Roots", + "block.minecraft.potted_white_tulip": "Potted White Tulip", + "block.minecraft.potted_wither_rose": "Potted Wither Rose", + "block.minecraft.powder_snow": "Powder Snow", + "block.minecraft.powder_snow_cauldron": "Powder Snow Cauldron", + "block.minecraft.powered_rail": "Powered Rail", + "block.minecraft.prismarine": "Prismarine", + "block.minecraft.prismarine_brick_slab": "Prismarine Brick Slab", + "block.minecraft.prismarine_brick_stairs": "Prismarine Brick Stairs", + "block.minecraft.prismarine_bricks": "Prismarine Bricks", + "block.minecraft.prismarine_slab": "Prismarine Slab", + "block.minecraft.prismarine_stairs": "Prismarine Stairs", + "block.minecraft.prismarine_wall": "Prismarine Wall", + "block.minecraft.pumpkin": "Pumpkin", + "block.minecraft.pumpkin_stem": "Pumpkin Stem", + "block.minecraft.purple_banner": "Purple Banner", + "block.minecraft.purple_bed": "Purple Bed", + "block.minecraft.purple_candle": "Purple Candle", + "block.minecraft.purple_candle_cake": "Cake with Purple Candle", + "block.minecraft.purple_carpet": "Purple Carpet", + "block.minecraft.purple_concrete": "Purple Concrete", + "block.minecraft.purple_concrete_powder": "Purple Concrete Powder", + "block.minecraft.purple_glazed_terracotta": "Purple Glazed Terracotta", + "block.minecraft.purple_shulker_box": "Purple Shulker Box", + "block.minecraft.purple_stained_glass": "Purple Stained Glass", + "block.minecraft.purple_stained_glass_pane": "Purple Stained Glass Pane", + "block.minecraft.purple_terracotta": "Purple Terracotta", + "block.minecraft.purple_wool": "Purple Wool", + "block.minecraft.purpur_block": "Purpur Block", + "block.minecraft.purpur_pillar": "Purpur Pillar", + "block.minecraft.purpur_slab": "Purpur Slab", + "block.minecraft.purpur_stairs": "Purpur Stairs", + "block.minecraft.quartz_block": "Block of Quartz", + "block.minecraft.quartz_bricks": "Quartz Bricks", + "block.minecraft.quartz_pillar": "Quartz Pillar", + "block.minecraft.quartz_slab": "Quartz Slab", + "block.minecraft.quartz_stairs": "Quartz Stairs", + "block.minecraft.rail": "Rail", + "block.minecraft.raw_copper_block": "Block of Raw Copper", + "block.minecraft.raw_gold_block": "Block of Raw Gold", + "block.minecraft.raw_iron_block": "Block of Raw Iron", + "block.minecraft.red_banner": "Red Banner", + "block.minecraft.red_bed": "Red Bed", + "block.minecraft.red_candle": "Red Candle", + "block.minecraft.red_candle_cake": "Cake with Red Candle", + "block.minecraft.red_carpet": "Red Carpet", + "block.minecraft.red_concrete": "Red Concrete", + "block.minecraft.red_concrete_powder": "Red Concrete Powder", + "block.minecraft.red_glazed_terracotta": "Red Glazed Terracotta", + "block.minecraft.red_mushroom": "Red Mushroom", + "block.minecraft.red_mushroom_block": "Red Mushroom Block", + "block.minecraft.red_nether_brick_slab": "Red Nether Brick Slab", + "block.minecraft.red_nether_brick_stairs": "Red Nether Brick Stairs", + "block.minecraft.red_nether_brick_wall": "Red Nether Brick Wall", + "block.minecraft.red_nether_bricks": "Red Nether Bricks", + "block.minecraft.red_sand": "Red Sand", + "block.minecraft.red_sandstone": "Red Sandstone", + "block.minecraft.red_sandstone_slab": "Red Sandstone Slab", + "block.minecraft.red_sandstone_stairs": "Red Sandstone Stairs", + "block.minecraft.red_sandstone_wall": "Red Sandstone Wall", + "block.minecraft.red_shulker_box": "Red Shulker Box", + "block.minecraft.red_stained_glass": "Red Stained Glass", + "block.minecraft.red_stained_glass_pane": "Red Stained Glass Pane", + "block.minecraft.red_terracotta": "Red Terracotta", + "block.minecraft.red_tulip": "Red Tulip", + "block.minecraft.red_wool": "Red Wool", + "block.minecraft.redstone_block": "Block of Redstone", + "block.minecraft.redstone_lamp": "Redstone Lamp", + "block.minecraft.redstone_ore": "Redstone Ore", + "block.minecraft.redstone_torch": "Redstone Torch", + "block.minecraft.redstone_wall_torch": "Redstone Wall Torch", + "block.minecraft.redstone_wire": "Redstone Wire", + "block.minecraft.reinforced_deepslate": "Reinforced Deepslate", + "block.minecraft.repeater": "Redstone Repeater", + "block.minecraft.repeating_command_block": "Repeating Command Block", + "block.minecraft.resin_block": "Block of Resin", + "block.minecraft.resin_brick_slab": "Resin Brick Slab", + "block.minecraft.resin_brick_stairs": "Resin Brick Stairs", + "block.minecraft.resin_brick_wall": "Resin Brick Wall", + "block.minecraft.resin_bricks": "Resin Bricks", + "block.minecraft.resin_clump": "Resin Clump", + "block.minecraft.respawn_anchor": "Respawn Anchor", + "block.minecraft.rooted_dirt": "Rooted Dirt", + "block.minecraft.rose_bush": "Rose Bush", + "block.minecraft.sand": "Sand", + "block.minecraft.sandstone": "Sandstone", + "block.minecraft.sandstone_slab": "Sandstone Slab", + "block.minecraft.sandstone_stairs": "Sandstone Stairs", + "block.minecraft.sandstone_wall": "Sandstone Wall", + "block.minecraft.scaffolding": "Scaffolding", + "block.minecraft.sculk": "Sculk", + "block.minecraft.sculk_catalyst": "Sculk Catalyst", + "block.minecraft.sculk_sensor": "Sculk Sensor", + "block.minecraft.sculk_shrieker": "Sculk Shrieker", + "block.minecraft.sculk_vein": "Sculk Vein", + "block.minecraft.sea_lantern": "Sea Lantern", + "block.minecraft.sea_pickle": "Sea Pickle", + "block.minecraft.seagrass": "Seagrass", + "block.minecraft.set_spawn": "Respawn point set", + "block.minecraft.short_grass": "Short Grass", + "block.minecraft.shroomlight": "Shroomlight", + "block.minecraft.shulker_box": "Shulker Box", + "block.minecraft.skeleton_skull": "Skeleton Skull", + "block.minecraft.skeleton_wall_skull": "Skeleton Wall Skull", + "block.minecraft.slime_block": "Slime Block", + "block.minecraft.small_amethyst_bud": "Small Amethyst Bud", + "block.minecraft.small_dripleaf": "Small Dripleaf", + "block.minecraft.smithing_table": "Smithing Table", + "block.minecraft.smoker": "Smoker", + "block.minecraft.smooth_basalt": "Smooth Basalt", + "block.minecraft.smooth_quartz": "Smooth Quartz Block", + "block.minecraft.smooth_quartz_slab": "Smooth Quartz Slab", + "block.minecraft.smooth_quartz_stairs": "Smooth Quartz Stairs", + "block.minecraft.smooth_red_sandstone": "Smooth Red Sandstone", + "block.minecraft.smooth_red_sandstone_slab": "Smooth Red Sandstone Slab", + "block.minecraft.smooth_red_sandstone_stairs": "Smooth Red Sandstone Stairs", + "block.minecraft.smooth_sandstone": "Smooth Sandstone", + "block.minecraft.smooth_sandstone_slab": "Smooth Sandstone Slab", + "block.minecraft.smooth_sandstone_stairs": "Smooth Sandstone Stairs", + "block.minecraft.smooth_stone": "Smooth Stone", + "block.minecraft.smooth_stone_slab": "Smooth Stone Slab", + "block.minecraft.sniffer_egg": "Sniffer Egg", + "block.minecraft.snow": "Snow", + "block.minecraft.snow_block": "Snow Block", + "block.minecraft.soul_campfire": "Soul Campfire", + "block.minecraft.soul_fire": "Soul Fire", + "block.minecraft.soul_lantern": "Soul Lantern", + "block.minecraft.soul_sand": "Soul Sand", + "block.minecraft.soul_soil": "Soul Soil", + "block.minecraft.soul_torch": "Soul Torch", + "block.minecraft.soul_wall_torch": "Soul Wall Torch", + "block.minecraft.spawn.not_valid": "You have no home bed or charged respawn anchor, or it was obstructed", + "block.minecraft.spawner": "Monster Spawner", + "block.minecraft.spawner.desc1": "Interact with Spawn Egg:", + "block.minecraft.spawner.desc2": "Sets Mob Type", + "block.minecraft.sponge": "Sponge", + "block.minecraft.spore_blossom": "Spore Blossom", + "block.minecraft.spruce_button": "Spruce Button", + "block.minecraft.spruce_door": "Spruce Door", + "block.minecraft.spruce_fence": "Spruce Fence", + "block.minecraft.spruce_fence_gate": "Spruce Fence Gate", + "block.minecraft.spruce_hanging_sign": "Spruce Hanging Sign", + "block.minecraft.spruce_leaves": "Spruce Leaves", + "block.minecraft.spruce_log": "Spruce Log", + "block.minecraft.spruce_planks": "Spruce Planks", + "block.minecraft.spruce_pressure_plate": "Spruce Pressure Plate", + "block.minecraft.spruce_sapling": "Spruce Sapling", + "block.minecraft.spruce_sign": "Spruce Sign", + "block.minecraft.spruce_slab": "Spruce Slab", + "block.minecraft.spruce_stairs": "Spruce Stairs", + "block.minecraft.spruce_trapdoor": "Spruce Trapdoor", + "block.minecraft.spruce_wall_hanging_sign": "Spruce Wall Hanging Sign", + "block.minecraft.spruce_wall_sign": "Spruce Wall Sign", + "block.minecraft.spruce_wood": "Spruce Wood", + "block.minecraft.sticky_piston": "Sticky Piston", + "block.minecraft.stone": "Stone", + "block.minecraft.stone_brick_slab": "Stone Brick Slab", + "block.minecraft.stone_brick_stairs": "Stone Brick Stairs", + "block.minecraft.stone_brick_wall": "Stone Brick Wall", + "block.minecraft.stone_bricks": "Stone Bricks", + "block.minecraft.stone_button": "Stone Button", + "block.minecraft.stone_pressure_plate": "Stone Pressure Plate", + "block.minecraft.stone_slab": "Stone Slab", + "block.minecraft.stone_stairs": "Stone Stairs", + "block.minecraft.stonecutter": "Stonecutter", + "block.minecraft.stripped_acacia_log": "Stripped Acacia Log", + "block.minecraft.stripped_acacia_wood": "Stripped Acacia Wood", + "block.minecraft.stripped_bamboo_block": "Block of Stripped Bamboo", + "block.minecraft.stripped_birch_log": "Stripped Birch Log", + "block.minecraft.stripped_birch_wood": "Stripped Birch Wood", + "block.minecraft.stripped_cherry_log": "Stripped Cherry Log", + "block.minecraft.stripped_cherry_wood": "Stripped Cherry Wood", + "block.minecraft.stripped_crimson_hyphae": "Stripped Crimson Hyphae", + "block.minecraft.stripped_crimson_stem": "Stripped Crimson Stem", + "block.minecraft.stripped_dark_oak_log": "Stripped Dark Oak Log", + "block.minecraft.stripped_dark_oak_wood": "Stripped Dark Oak Wood", + "block.minecraft.stripped_jungle_log": "Stripped Jungle Log", + "block.minecraft.stripped_jungle_wood": "Stripped Jungle Wood", + "block.minecraft.stripped_mangrove_log": "Stripped Mangrove Log", + "block.minecraft.stripped_mangrove_wood": "Stripped Mangrove Wood", + "block.minecraft.stripped_oak_log": "Stripped Oak Log", + "block.minecraft.stripped_oak_wood": "Stripped Oak Wood", + "block.minecraft.stripped_pale_oak_log": "Stripped Pale Oak Log", + "block.minecraft.stripped_pale_oak_wood": "Stripped Pale Oak Wood", + "block.minecraft.stripped_spruce_log": "Stripped Spruce Log", + "block.minecraft.stripped_spruce_wood": "Stripped Spruce Wood", + "block.minecraft.stripped_warped_hyphae": "Stripped Warped Hyphae", + "block.minecraft.stripped_warped_stem": "Stripped Warped Stem", + "block.minecraft.structure_block": "Structure Block", + "block.minecraft.structure_void": "Structure Void", + "block.minecraft.sugar_cane": "Sugar Cane", + "block.minecraft.sunflower": "Sunflower", + "block.minecraft.suspicious_gravel": "Suspicious Gravel", + "block.minecraft.suspicious_sand": "Suspicious Sand", + "block.minecraft.sweet_berry_bush": "Sweet Berry Bush", + "block.minecraft.tall_grass": "Tall Grass", + "block.minecraft.tall_seagrass": "Tall Seagrass", + "block.minecraft.target": "Target", + "block.minecraft.terracotta": "Terracotta", + "block.minecraft.tinted_glass": "Tinted Glass", + "block.minecraft.tnt": "TNT", + "block.minecraft.torch": "Torch", + "block.minecraft.torchflower": "Torchflower", + "block.minecraft.torchflower_crop": "Torchflower Crop", + "block.minecraft.trapped_chest": "Trapped Chest", + "block.minecraft.trial_spawner": "Trial Spawner", + "block.minecraft.tripwire": "Tripwire", + "block.minecraft.tripwire_hook": "Tripwire Hook", + "block.minecraft.tube_coral": "Tube Coral", + "block.minecraft.tube_coral_block": "Tube Coral Block", + "block.minecraft.tube_coral_fan": "Tube Coral Fan", + "block.minecraft.tube_coral_wall_fan": "Tube Coral Wall Fan", + "block.minecraft.tuff": "Tuff", + "block.minecraft.tuff_brick_slab": "Tuff Brick Slab", + "block.minecraft.tuff_brick_stairs": "Tuff Brick Stairs", + "block.minecraft.tuff_brick_wall": "Tuff Brick Wall", + "block.minecraft.tuff_bricks": "Tuff Bricks", + "block.minecraft.tuff_slab": "Tuff Slab", + "block.minecraft.tuff_stairs": "Tuff Stairs", + "block.minecraft.tuff_wall": "Tuff Wall", + "block.minecraft.turtle_egg": "Turtle Egg", + "block.minecraft.twisting_vines": "Twisting Vines", + "block.minecraft.twisting_vines_plant": "Twisting Vines Plant", + "block.minecraft.vault": "Vault", + "block.minecraft.verdant_froglight": "Verdant Froglight", + "block.minecraft.vine": "Vines", + "block.minecraft.void_air": "Void Air", + "block.minecraft.wall_torch": "Wall Torch", + "block.minecraft.warped_button": "Warped Button", + "block.minecraft.warped_door": "Warped Door", + "block.minecraft.warped_fence": "Warped Fence", + "block.minecraft.warped_fence_gate": "Warped Fence Gate", + "block.minecraft.warped_fungus": "Warped Fungus", + "block.minecraft.warped_hanging_sign": "Warped Hanging Sign", + "block.minecraft.warped_hyphae": "Warped Hyphae", + "block.minecraft.warped_nylium": "Warped Nylium", + "block.minecraft.warped_planks": "Warped Planks", + "block.minecraft.warped_pressure_plate": "Warped Pressure Plate", + "block.minecraft.warped_roots": "Warped Roots", + "block.minecraft.warped_sign": "Warped Sign", + "block.minecraft.warped_slab": "Warped Slab", + "block.minecraft.warped_stairs": "Warped Stairs", + "block.minecraft.warped_stem": "Warped Stem", + "block.minecraft.warped_trapdoor": "Warped Trapdoor", + "block.minecraft.warped_wall_hanging_sign": "Warped Wall Hanging Sign", + "block.minecraft.warped_wall_sign": "Warped Wall Sign", + "block.minecraft.warped_wart_block": "Warped Wart Block", + "block.minecraft.water": "Water", + "block.minecraft.water_cauldron": "Water Cauldron", + "block.minecraft.waxed_chiseled_copper": "Waxed Chiseled Copper", + "block.minecraft.waxed_copper_block": "Waxed Block of Copper", + "block.minecraft.waxed_copper_bulb": "Waxed Copper Bulb", + "block.minecraft.waxed_copper_door": "Waxed Copper Door", + "block.minecraft.waxed_copper_grate": "Waxed Copper Grate", + "block.minecraft.waxed_copper_trapdoor": "Waxed Copper Trapdoor", + "block.minecraft.waxed_cut_copper": "Waxed Cut Copper", + "block.minecraft.waxed_cut_copper_slab": "Waxed Cut Copper Slab", + "block.minecraft.waxed_cut_copper_stairs": "Waxed Cut Copper Stairs", + "block.minecraft.waxed_exposed_chiseled_copper": "Waxed Exposed Chiseled Copper", + "block.minecraft.waxed_exposed_copper": "Waxed Exposed Copper", + "block.minecraft.waxed_exposed_copper_bulb": "Waxed Exposed Copper Bulb", + "block.minecraft.waxed_exposed_copper_door": "Waxed Exposed Copper Door", + "block.minecraft.waxed_exposed_copper_grate": "Waxed Exposed Copper Grate", + "block.minecraft.waxed_exposed_copper_trapdoor": "Waxed Exposed Copper Trapdoor", + "block.minecraft.waxed_exposed_cut_copper": "Waxed Exposed Cut Copper", + "block.minecraft.waxed_exposed_cut_copper_slab": "Waxed Exposed Cut Copper Slab", + "block.minecraft.waxed_exposed_cut_copper_stairs": "Waxed Exposed Cut Copper Stairs", + "block.minecraft.waxed_oxidized_chiseled_copper": "Waxed Oxidized Chiseled Copper", + "block.minecraft.waxed_oxidized_copper": "Waxed Oxidized Copper", + "block.minecraft.waxed_oxidized_copper_bulb": "Waxed Oxidized Copper Bulb", + "block.minecraft.waxed_oxidized_copper_door": "Waxed Oxidized Copper Door", + "block.minecraft.waxed_oxidized_copper_grate": "Waxed Oxidized Copper Grate", + "block.minecraft.waxed_oxidized_copper_trapdoor": "Waxed Oxidized Copper Trapdoor", + "block.minecraft.waxed_oxidized_cut_copper": "Waxed Oxidized Cut Copper", + "block.minecraft.waxed_oxidized_cut_copper_slab": "Waxed Oxidized Cut Copper Slab", + "block.minecraft.waxed_oxidized_cut_copper_stairs": "Waxed Oxidized Cut Copper Stairs", + "block.minecraft.waxed_weathered_chiseled_copper": "Waxed Weathered Chiseled Copper", + "block.minecraft.waxed_weathered_copper": "Waxed Weathered Copper", + "block.minecraft.waxed_weathered_copper_bulb": "Waxed Weathered Copper Bulb", + "block.minecraft.waxed_weathered_copper_door": "Waxed Weathered Copper Door", + "block.minecraft.waxed_weathered_copper_grate": "Waxed Weathered Copper Grate", + "block.minecraft.waxed_weathered_copper_trapdoor": "Waxed Weathered Copper Trapdoor", + "block.minecraft.waxed_weathered_cut_copper": "Waxed Weathered Cut Copper", + "block.minecraft.waxed_weathered_cut_copper_slab": "Waxed Weathered Cut Copper Slab", + "block.minecraft.waxed_weathered_cut_copper_stairs": "Waxed Weathered Cut Copper Stairs", + "block.minecraft.weathered_chiseled_copper": "Weathered Chiseled Copper", + "block.minecraft.weathered_copper": "Weathered Copper", + "block.minecraft.weathered_copper_bulb": "Weathered Copper Bulb", + "block.minecraft.weathered_copper_door": "Weathered Copper Door", + "block.minecraft.weathered_copper_grate": "Weathered Copper Grate", + "block.minecraft.weathered_copper_trapdoor": "Weathered Copper Trapdoor", + "block.minecraft.weathered_cut_copper": "Weathered Cut Copper", + "block.minecraft.weathered_cut_copper_slab": "Weathered Cut Copper Slab", + "block.minecraft.weathered_cut_copper_stairs": "Weathered Cut Copper Stairs", + "block.minecraft.weeping_vines": "Weeping Vines", + "block.minecraft.weeping_vines_plant": "Weeping Vines Plant", + "block.minecraft.wet_sponge": "Wet Sponge", + "block.minecraft.wheat": "Wheat Crops", + "block.minecraft.white_banner": "White Banner", + "block.minecraft.white_bed": "White Bed", + "block.minecraft.white_candle": "White Candle", + "block.minecraft.white_candle_cake": "Cake with White Candle", + "block.minecraft.white_carpet": "White Carpet", + "block.minecraft.white_concrete": "White Concrete", + "block.minecraft.white_concrete_powder": "White Concrete Powder", + "block.minecraft.white_glazed_terracotta": "White Glazed Terracotta", + "block.minecraft.white_shulker_box": "White Shulker Box", + "block.minecraft.white_stained_glass": "White Stained Glass", + "block.minecraft.white_stained_glass_pane": "White Stained Glass Pane", + "block.minecraft.white_terracotta": "White Terracotta", + "block.minecraft.white_tulip": "White Tulip", + "block.minecraft.white_wool": "White Wool", + "block.minecraft.wither_rose": "Wither Rose", + "block.minecraft.wither_skeleton_skull": "Wither Skeleton Skull", + "block.minecraft.wither_skeleton_wall_skull": "Wither Skeleton Wall Skull", + "block.minecraft.yellow_banner": "Yellow Banner", + "block.minecraft.yellow_bed": "Yellow Bed", + "block.minecraft.yellow_candle": "Yellow Candle", + "block.minecraft.yellow_candle_cake": "Cake with Yellow Candle", + "block.minecraft.yellow_carpet": "Yellow Carpet", + "block.minecraft.yellow_concrete": "Yellow Concrete", + "block.minecraft.yellow_concrete_powder": "Yellow Concrete Powder", + "block.minecraft.yellow_glazed_terracotta": "Yellow Glazed Terracotta", + "block.minecraft.yellow_shulker_box": "Yellow Shulker Box", + "block.minecraft.yellow_stained_glass": "Yellow Stained Glass", + "block.minecraft.yellow_stained_glass_pane": "Yellow Stained Glass Pane", + "block.minecraft.yellow_terracotta": "Yellow Terracotta", + "block.minecraft.yellow_wool": "Yellow Wool", + "block.minecraft.zombie_head": "Zombie Head", + "block.minecraft.zombie_wall_head": "Zombie Wall Head", + "book.byAuthor": "by %1$s", + "book.editTitle": "Enter Book Title:", + "book.finalizeButton": "Sign and Close", + "book.finalizeWarning": "Note! When you sign the book, it will no longer be editable.", + "book.generation.0": "Original", + "book.generation.1": "Copy of original", + "book.generation.2": "Copy of a copy", + "book.generation.3": "Tattered", + "book.invalid.tag": "* Invalid book tag *", + "book.pageIndicator": "Page %1$s of %2$s", + "book.signButton": "Sign", + "build.tooHigh": "Height limit for building is %s", + "chat_screen.message": "Message to send: %s", + "chat_screen.title": "Chat screen", + "chat_screen.usage": "Input message and press Enter to send", + "chat.cannotSend": "Cannot send chat message", + "chat.coordinates": "%s, %s, %s", + "chat.coordinates.tooltip": "Click to teleport", + "chat.copy": "Copy to Clipboard", + "chat.copy.click": "Click to Copy to Clipboard", + "chat.deleted_marker": "This chat message has been deleted by the server.", + "chat.disabled.chain_broken": "Chat disabled due to broken chain. Please try reconnecting.", + "chat.disabled.expiredProfileKey": "Chat disabled due to expired profile public key. Please try reconnecting.", + "chat.disabled.invalid_command_signature": "Command had unexpected or missing command argument signatures.", + "chat.disabled.invalid_signature": "Chat had an invalid signature. Please try reconnecting.", + "chat.disabled.launcher": "Chat disabled by launcher option. Cannot send message.", + "chat.disabled.missingProfileKey": "Chat disabled due to missing profile public key. Please try reconnecting.", + "chat.disabled.options": "Chat disabled in client options.", + "chat.disabled.out_of_order_chat": "Chat received out-of-order. Did your system time change?", + "chat.disabled.profile": "Chat is not allowed by account settings. Press '%s' again for more information.", + "chat.disabled.profile.moreInfo": "Chat is not allowed by account settings. Cannot send or view messages.", + "chat.editBox": "chat", + "chat.filtered": "Filtered by the server.", + "chat.filtered_full": "The server has hidden your message for some players.", + "chat.link.confirm": "Are you sure you want to open the following website?", + "chat.link.confirmTrusted": "Do you want to open this link or copy it to your clipboard?", + "chat.link.open": "Open in Browser", + "chat.link.warning": "Never open links from people that you don't trust!", + "chat.queue": "[+%s pending line(s)]", + "chat.square_brackets": "[%s]", + "chat.tag.error": "Server sent invalid message.", + "chat.tag.modified": "Message modified by the server. Original:", + "chat.tag.not_secure": "Unverified message. Cannot be reported.", + "chat.tag.system": "Server message. Cannot be reported.", + "chat.tag.system_single_player": "Server message.", + "chat.type.admin": "[%s: %s]", + "chat.type.advancement.challenge": "%s has completed the challenge %s", + "chat.type.advancement.goal": "%s has reached the goal %s", + "chat.type.advancement.task": "%s has made the advancement %s", + "chat.type.announcement": "[%s] %s", + "chat.type.emote": "* %s %s", + "chat.type.team.hover": "Message Team", + "chat.type.team.sent": "-> %s <%s> %s", + "chat.type.team.text": "%s <%s> %s", + "chat.type.text": "<%s> %s", + "chat.type.text.narrate": "%s says %s", + "chat.validation_error": "Chat validation error", + "chunk.toast.checkLog": "See log for more details", + "chunk.toast.loadFailure": "Failed to load chunk at %s", + "chunk.toast.lowDiskSpace": "Low disk space!", + "chunk.toast.lowDiskSpace.description": "Might not be able to save the world.", + "chunk.toast.saveFailure": "Failed to save chunk at %s", + "clear.failed.multiple": "No items were found on %s players", + "clear.failed.single": "No items were found on player %s", + "color.minecraft.black": "Black", + "color.minecraft.blue": "Blue", + "color.minecraft.brown": "Brown", + "color.minecraft.cyan": "Cyan", + "color.minecraft.gray": "Gray", + "color.minecraft.green": "Green", + "color.minecraft.light_blue": "Light Blue", + "color.minecraft.light_gray": "Light Gray", + "color.minecraft.lime": "Lime", + "color.minecraft.magenta": "Magenta", + "color.minecraft.orange": "Orange", + "color.minecraft.pink": "Pink", + "color.minecraft.purple": "Purple", + "color.minecraft.red": "Red", + "color.minecraft.white": "White", + "color.minecraft.yellow": "Yellow", + "command.context.here": "<--[HERE]", + "command.context.parse_error": "%s at position %s: %s", + "command.exception": "Could not parse command: %s", + "command.expected.separator": "Expected whitespace to end one argument, but found trailing data", + "command.failed": "An unexpected error occurred trying to execute that command", + "command.forkLimit": "Maximum number of contexts (%s) reached", + "command.unknown.argument": "Incorrect argument for command", + "command.unknown.command": "Unknown or incomplete command, see below for error", + "commands.advancement.criterionNotFound": "The advancement %1$s does not contain the criterion '%2$s'", + "commands.advancement.grant.criterion.to.many.failure": "Couldn't grant criterion '%s' of advancement %s to %s players as they already have it", + "commands.advancement.grant.criterion.to.many.success": "Granted criterion '%s' of advancement %s to %s players", + "commands.advancement.grant.criterion.to.one.failure": "Couldn't grant criterion '%s' of advancement %s to %s as they already have it", + "commands.advancement.grant.criterion.to.one.success": "Granted criterion '%s' of advancement %s to %s", + "commands.advancement.grant.many.to.many.failure": "Couldn't grant %s advancements to %s players as they already have them", + "commands.advancement.grant.many.to.many.success": "Granted %s advancements to %s players", + "commands.advancement.grant.many.to.one.failure": "Couldn't grant %s advancements to %s as they already have them", + "commands.advancement.grant.many.to.one.success": "Granted %s advancements to %s", + "commands.advancement.grant.one.to.many.failure": "Couldn't grant advancement %s to %s players as they already have it", + "commands.advancement.grant.one.to.many.success": "Granted the advancement %s to %s players", + "commands.advancement.grant.one.to.one.failure": "Couldn't grant advancement %s to %s as they already have it", + "commands.advancement.grant.one.to.one.success": "Granted the advancement %s to %s", + "commands.advancement.revoke.criterion.to.many.failure": "Couldn't revoke criterion '%s' of advancement %s from %s players as they don't have it", + "commands.advancement.revoke.criterion.to.many.success": "Revoked criterion '%s' of advancement %s from %s players", + "commands.advancement.revoke.criterion.to.one.failure": "Couldn't revoke criterion '%s' of advancement %s from %s as they don't have it", + "commands.advancement.revoke.criterion.to.one.success": "Revoked criterion '%s' of advancement %s from %s", + "commands.advancement.revoke.many.to.many.failure": "Couldn't revoke %s advancements from %s players as they don't have them", + "commands.advancement.revoke.many.to.many.success": "Revoked %s advancements from %s players", + "commands.advancement.revoke.many.to.one.failure": "Couldn't revoke %s advancements from %s as they don't have them", + "commands.advancement.revoke.many.to.one.success": "Revoked %s advancements from %s", + "commands.advancement.revoke.one.to.many.failure": "Couldn't revoke advancement %s from %s players as they don't have it", + "commands.advancement.revoke.one.to.many.success": "Revoked the advancement %s from %s players", + "commands.advancement.revoke.one.to.one.failure": "Couldn't revoke advancement %s from %s as they don't have it", + "commands.advancement.revoke.one.to.one.success": "Revoked the advancement %s from %s", + "commands.attribute.base_value.get.success": "Base value of attribute %s for entity %s is %s", + "commands.attribute.base_value.reset.success": "Base value for attribute %s for entity %s reset to default %s", + "commands.attribute.base_value.set.success": "Base value for attribute %s for entity %s set to %s", + "commands.attribute.failed.entity": "%s is not a valid entity for this command", + "commands.attribute.failed.modifier_already_present": "Modifier %s is already present on attribute %s for entity %s", + "commands.attribute.failed.no_attribute": "Entity %s has no attribute %s", + "commands.attribute.failed.no_modifier": "Attribute %s for entity %s has no modifier %s", + "commands.attribute.modifier.add.success": "Added modifier %s to attribute %s for entity %s", + "commands.attribute.modifier.remove.success": "Removed modifier %s from attribute %s for entity %s", + "commands.attribute.modifier.value.get.success": "Value of modifier %s on attribute %s for entity %s is %s", + "commands.attribute.value.get.success": "Value of attribute %s for entity %s is %s", + "commands.ban.failed": "Nothing changed. The player is already banned", + "commands.ban.success": "Banned %s: %s", + "commands.banip.failed": "Nothing changed. That IP is already banned", + "commands.banip.info": "This ban affects %s player(s): %s", + "commands.banip.invalid": "Invalid IP address or unknown player", + "commands.banip.success": "Banned IP %s: %s", + "commands.banlist.entry": "%s was banned by %s: %s", + "commands.banlist.entry.unknown": "(Unknown)", + "commands.banlist.list": "There are %s ban(s):", + "commands.banlist.none": "There are no bans", + "commands.bossbar.create.failed": "A bossbar already exists with the ID '%s'", + "commands.bossbar.create.success": "Created custom bossbar %s", + "commands.bossbar.get.max": "Custom bossbar %s has a maximum of %s", + "commands.bossbar.get.players.none": "Custom bossbar %s has no players currently online", + "commands.bossbar.get.players.some": "Custom bossbar %s has %s player(s) currently online: %s", + "commands.bossbar.get.value": "Custom bossbar %s has a value of %s", + "commands.bossbar.get.visible.hidden": "Custom bossbar %s is currently hidden", + "commands.bossbar.get.visible.visible": "Custom bossbar %s is currently shown", + "commands.bossbar.list.bars.none": "There are no custom bossbars active", + "commands.bossbar.list.bars.some": "There are %s custom bossbar(s) active: %s", + "commands.bossbar.remove.success": "Removed custom bossbar %s", + "commands.bossbar.set.color.success": "Custom bossbar %s has changed color", + "commands.bossbar.set.color.unchanged": "Nothing changed. That's already the color of this bossbar", + "commands.bossbar.set.max.success": "Custom bossbar %s has changed maximum to %s", + "commands.bossbar.set.max.unchanged": "Nothing changed. That's already the max of this bossbar", + "commands.bossbar.set.name.success": "Custom bossbar %s has been renamed", + "commands.bossbar.set.name.unchanged": "Nothing changed. That's already the name of this bossbar", + "commands.bossbar.set.players.success.none": "Custom bossbar %s no longer has any players", + "commands.bossbar.set.players.success.some": "Custom bossbar %s now has %s player(s): %s", + "commands.bossbar.set.players.unchanged": "Nothing changed. Those players are already on the bossbar with nobody to add or remove", + "commands.bossbar.set.style.success": "Custom bossbar %s has changed style", + "commands.bossbar.set.style.unchanged": "Nothing changed. That's already the style of this bossbar", + "commands.bossbar.set.value.success": "Custom bossbar %s has changed value to %s", + "commands.bossbar.set.value.unchanged": "Nothing changed. That's already the value of this bossbar", + "commands.bossbar.set.visibility.unchanged.hidden": "Nothing changed. The bossbar is already hidden", + "commands.bossbar.set.visibility.unchanged.visible": "Nothing changed. The bossbar is already visible", + "commands.bossbar.set.visible.success.hidden": "Custom bossbar %s is now hidden", + "commands.bossbar.set.visible.success.visible": "Custom bossbar %s is now visible", + "commands.bossbar.unknown": "No bossbar exists with the ID '%s'", + "commands.clear.success.multiple": "Removed %s item(s) from %s players", + "commands.clear.success.single": "Removed %s item(s) from player %s", + "commands.clear.test.multiple": "Found %s matching item(s) on %s players", + "commands.clear.test.single": "Found %s matching item(s) on player %s", + "commands.clone.failed": "No blocks were cloned", + "commands.clone.overlap": "The source and destination areas cannot overlap", + "commands.clone.success": "Successfully cloned %s block(s)", + "commands.clone.toobig": "Too many blocks in the specified area (maximum %s, specified %s)", + "commands.damage.invulnerable": "Target is invulnerable to the given damage type", + "commands.damage.success": "Applied %s damage to %s", + "commands.data.block.get": "%s on block %s, %s, %s after scale factor of %s is %s", + "commands.data.block.invalid": "The target block is not a block entity", + "commands.data.block.modified": "Modified block data of %s, %s, %s", + "commands.data.block.query": "%s, %s, %s has the following block data: %s", + "commands.data.entity.get": "%s on %s after scale factor of %s is %s", + "commands.data.entity.invalid": "Unable to modify player data", + "commands.data.entity.modified": "Modified entity data of %s", + "commands.data.entity.query": "%s has the following entity data: %s", + "commands.data.get.invalid": "Can't get %s; only numeric tags are allowed", + "commands.data.get.multiple": "This argument accepts a single NBT value", + "commands.data.get.unknown": "Can't get %s; tag doesn't exist", + "commands.data.merge.failed": "Nothing changed. The specified properties already have these values", + "commands.data.modify.expected_list": "Expected list, got: %s", + "commands.data.modify.expected_object": "Expected object, got: %s", + "commands.data.modify.expected_value": "Expected value, got: %s", + "commands.data.modify.invalid_index": "Invalid list index: %s", + "commands.data.modify.invalid_substring": "Invalid substring indices: %s to %s", + "commands.data.storage.get": "%s in storage %s after scale factor of %s is %s", + "commands.data.storage.modified": "Modified storage %s", + "commands.data.storage.query": "Storage %s has the following contents: %s", + "commands.datapack.disable.failed": "Pack '%s' is not enabled!", + "commands.datapack.disable.failed.feature": "Pack '%s' cannot be disabled, since it is part of an enabled flag!", + "commands.datapack.enable.failed": "Pack '%s' is already enabled!", + "commands.datapack.enable.failed.no_flags": "Pack '%s' cannot be enabled, since required flags are not enabled in this world: %s!", + "commands.datapack.list.available.none": "There are no more data packs available", + "commands.datapack.list.available.success": "There are %s data pack(s) available: %s", + "commands.datapack.list.enabled.none": "There are no data packs enabled", + "commands.datapack.list.enabled.success": "There are %s data pack(s) enabled: %s", + "commands.datapack.modify.disable": "Disabling data pack %s", + "commands.datapack.modify.enable": "Enabling data pack %s", + "commands.datapack.unknown": "Unknown data pack '%s'", + "commands.debug.alreadyRunning": "The tick profiler is already started", + "commands.debug.function.noRecursion": "Can't trace from inside of function", + "commands.debug.function.noReturnRun": "Tracing can't be used with return run", + "commands.debug.function.success.multiple": "Traced %s command(s) from %s functions to output file %s", + "commands.debug.function.success.single": "Traced %s command(s) from function '%s' to output file %s", + "commands.debug.function.traceFailed": "Failed to trace function", + "commands.debug.notRunning": "The tick profiler hasn't started", + "commands.debug.started": "Started tick profiling", + "commands.debug.stopped": "Stopped tick profiling after %s second(s) and %s tick(s) (%s tick(s) per second)", + "commands.defaultgamemode.success": "The default game mode is now %s", + "commands.deop.failed": "Nothing changed. The player is not an operator", + "commands.deop.success": "Made %s no longer a server operator", + "commands.difficulty.failure": "The difficulty did not change; it is already set to %s", + "commands.difficulty.query": "The difficulty is %s", + "commands.difficulty.success": "The difficulty has been set to %s", + "commands.drop.no_held_items": "Entity can't hold any items", + "commands.drop.no_loot_table": "Entity %s has no loot table", + "commands.drop.no_loot_table.block": "Block %s has no loot table", + "commands.drop.success.multiple": "Dropped %s items", + "commands.drop.success.multiple_with_table": "Dropped %s items from loot table %s", + "commands.drop.success.single": "Dropped %s %s", + "commands.drop.success.single_with_table": "Dropped %s %s from loot table %s", + "commands.effect.clear.everything.failed": "Target has no effects to remove", + "commands.effect.clear.everything.success.multiple": "Removed every effect from %s targets", + "commands.effect.clear.everything.success.single": "Removed every effect from %s", + "commands.effect.clear.specific.failed": "Target doesn't have the requested effect", + "commands.effect.clear.specific.success.multiple": "Removed effect %s from %s targets", + "commands.effect.clear.specific.success.single": "Removed effect %s from %s", + "commands.effect.give.failed": "Unable to apply this effect (target is either immune to effects, or has something stronger)", + "commands.effect.give.success.multiple": "Applied effect %s to %s targets", + "commands.effect.give.success.single": "Applied effect %s to %s", + "commands.enchant.failed": "Nothing changed. Targets either have no item in their hands or the enchantment could not be applied", + "commands.enchant.failed.entity": "%s is not a valid entity for this command", + "commands.enchant.failed.incompatible": "%s cannot support that enchantment", + "commands.enchant.failed.itemless": "%s is not holding any item", + "commands.enchant.failed.level": "%s is higher than the maximum level of %s supported by that enchantment", + "commands.enchant.success.multiple": "Applied enchantment %s to %s entities", + "commands.enchant.success.single": "Applied enchantment %s to %s's item", + "commands.execute.blocks.toobig": "Too many blocks in the specified area (maximum %s, specified %s)", + "commands.execute.conditional.fail": "Test failed", + "commands.execute.conditional.fail_count": "Test failed, count: %s", + "commands.execute.conditional.pass": "Test passed", + "commands.execute.conditional.pass_count": "Test passed, count: %s", + "commands.execute.function.instantiationFailure": "Failed to instantiate function %s: %s", + "commands.experience.add.levels.success.multiple": "Gave %s experience levels to %s players", + "commands.experience.add.levels.success.single": "Gave %s experience levels to %s", + "commands.experience.add.points.success.multiple": "Gave %s experience points to %s players", + "commands.experience.add.points.success.single": "Gave %s experience points to %s", + "commands.experience.query.levels": "%s has %s experience levels", + "commands.experience.query.points": "%s has %s experience points", + "commands.experience.set.levels.success.multiple": "Set %s experience levels on %s players", + "commands.experience.set.levels.success.single": "Set %s experience levels on %s", + "commands.experience.set.points.invalid": "Cannot set experience points above the maximum points for the player's current level", + "commands.experience.set.points.success.multiple": "Set %s experience points on %s players", + "commands.experience.set.points.success.single": "Set %s experience points on %s", + "commands.fill.failed": "No blocks were filled", + "commands.fill.success": "Successfully filled %s block(s)", + "commands.fill.toobig": "Too many blocks in the specified area (maximum %s, specified %s)", + "commands.fillbiome.success": "Biomes set between %s, %s, %s and %s, %s, %s", + "commands.fillbiome.success.count": "%s biome entry/entries set between %s, %s, %s and %s, %s, %s", + "commands.fillbiome.toobig": "Too many blocks in the specified volume (maximum %s, specified %s)", + "commands.forceload.added.failure": "No chunks were marked for force loading", + "commands.forceload.added.multiple": "Marked %s chunks in %s from %s to %s to be force loaded", + "commands.forceload.added.none": "No force loaded chunks were found in %s", + "commands.forceload.added.single": "Marked chunk %s in %s to be force loaded", + "commands.forceload.list.multiple": "%s force loaded chunks were found in %s at: %s", + "commands.forceload.list.single": "A force loaded chunk was found in %s at: %s", + "commands.forceload.query.failure": "Chunk at %s in %s is not marked for force loading", + "commands.forceload.query.success": "Chunk at %s in %s is marked for force loading", + "commands.forceload.removed.all": "Unmarked all force loaded chunks in %s", + "commands.forceload.removed.failure": "No chunks were removed from force loading", + "commands.forceload.removed.multiple": "Unmarked %s chunks in %s from %s to %s for force loading", + "commands.forceload.removed.single": "Unmarked chunk %s in %s for force loading", + "commands.forceload.toobig": "Too many chunks in the specified area (maximum %s, specified %s)", + "commands.function.error.argument_not_compound": "Invalid argument type: %s, expected Compound", + "commands.function.error.missing_argument": "Missing argument %2$s to function %1$s", + "commands.function.error.missing_arguments": "Missing arguments to function %s", + "commands.function.error.parse": "While instantiating macro %s: Command '%s' caused error: %s", + "commands.function.instantiationFailure": "Failed to instantiate function %s: %s", + "commands.function.result": "Function %s returned %s", + "commands.function.scheduled.multiple": "Running functions %s", + "commands.function.scheduled.no_functions": "Can't find any functions for name %s", + "commands.function.scheduled.single": "Running function %s", + "commands.function.success.multiple": "Executed %s command(s) from %s functions", + "commands.function.success.multiple.result": "Executed %s functions", + "commands.function.success.single": "Executed %s command(s) from function '%s'", + "commands.function.success.single.result": "Function '%2$s' returned %1$s", + "commands.gamemode.success.other": "Set %s's game mode to %s", + "commands.gamemode.success.self": "Set own game mode to %s", + "commands.gamerule.query": "Gamerule %s is currently set to: %s", + "commands.gamerule.set": "Gamerule %s is now set to: %s", + "commands.give.failed.toomanyitems": "Can't give more than %s of %s", + "commands.give.success.multiple": "Gave %s %s to %s players", + "commands.give.success.single": "Gave %s %s to %s", + "commands.help.failed": "Unknown command or insufficient permissions", + "commands.item.block.set.success": "Replaced a slot at %s, %s, %s with %s", + "commands.item.entity.set.success.multiple": "Replaced a slot on %s entities with %s", + "commands.item.entity.set.success.single": "Replaced a slot on %s with %s", + "commands.item.source.no_such_slot": "The source does not have slot %s", + "commands.item.source.not_a_container": "Source position %s, %s, %s is not a container", + "commands.item.target.no_changed.known_item": "No targets accepted item %s into slot %s", + "commands.item.target.no_changes": "No targets accepted item into slot %s", + "commands.item.target.no_such_slot": "The target does not have slot %s", + "commands.item.target.not_a_container": "Target position %s, %s, %s is not a container", + "commands.jfr.dump.failed": "Failed to dump JFR recording: %s", + "commands.jfr.start.failed": "Failed to start JFR profiling", + "commands.jfr.started": "JFR profiling started", + "commands.jfr.stopped": "JFR profiling stopped and dumped to %s", + "commands.kick.owner.failed": "Cannot kick server owner in LAN game", + "commands.kick.singleplayer.failed": "Cannot kick in an offline singleplayer game", + "commands.kick.success": "Kicked %s: %s", + "commands.kill.success.multiple": "Killed %s entities", + "commands.kill.success.single": "Killed %s", + "commands.list.nameAndId": "%s (%s)", + "commands.list.players": "There are %s of a max of %s players online: %s", + "commands.locate.biome.not_found": "Could not find a biome of type \"%s\" within reasonable distance", + "commands.locate.biome.success": "The nearest %s is at %s (%s blocks away)", + "commands.locate.poi.not_found": "Could not find a point of interest of type \"%s\" within reasonable distance", + "commands.locate.poi.success": "The nearest %s is at %s (%s blocks away)", + "commands.locate.structure.invalid": "There is no structure with type \"%s\"", + "commands.locate.structure.not_found": "Could not find a structure of type \"%s\" nearby", + "commands.locate.structure.success": "The nearest %s is at %s (%s blocks away)", + "commands.message.display.incoming": "%s whispers to you: %s", + "commands.message.display.outgoing": "You whisper to %s: %s", + "commands.op.failed": "Nothing changed. The player already is an operator", + "commands.op.success": "Made %s a server operator", + "commands.pardon.failed": "Nothing changed. The player isn't banned", + "commands.pardon.success": "Unbanned %s", + "commands.pardonip.failed": "Nothing changed. That IP isn't banned", + "commands.pardonip.invalid": "Invalid IP address", + "commands.pardonip.success": "Unbanned IP %s", + "commands.particle.failed": "The particle was not visible for anybody", + "commands.particle.success": "Displaying particle %s", + "commands.perf.alreadyRunning": "The performance profiler is already started", + "commands.perf.notRunning": "The performance profiler hasn't started", + "commands.perf.reportFailed": "Failed to create debug report", + "commands.perf.reportSaved": "Created debug report in %s", + "commands.perf.started": "Started 10 second performance profiling run (use '/perf stop' to stop early)", + "commands.perf.stopped": "Stopped performance profiling after %s second(s) and %s tick(s) (%s tick(s) per second)", + "commands.place.feature.failed": "Failed to place feature", + "commands.place.feature.invalid": "There is no feature with type \"%s\"", + "commands.place.feature.success": "Placed \"%s\" at %s, %s, %s", + "commands.place.jigsaw.failed": "Failed to generate jigsaw", + "commands.place.jigsaw.invalid": "There is no template pool with type \"%s\"", + "commands.place.jigsaw.success": "Generated jigsaw at %s, %s, %s", + "commands.place.structure.failed": "Failed to place structure", + "commands.place.structure.invalid": "There is no structure with type \"%s\"", + "commands.place.structure.success": "Generated structure \"%s\" at %s, %s, %s", + "commands.place.template.failed": "Failed to place template", + "commands.place.template.invalid": "There is no template with id \"%s\"", + "commands.place.template.success": "Loaded template \"%s\" at %s, %s, %s", + "commands.playsound.failed": "The sound is too far away to be heard", + "commands.playsound.success.multiple": "Played sound %s to %s players", + "commands.playsound.success.single": "Played sound %s to %s", + "commands.publish.alreadyPublished": "Multiplayer game is already hosted on port %s", + "commands.publish.failed": "Unable to host local game", + "commands.publish.started": "Local game hosted on port %s", + "commands.publish.success": "Multiplayer game is now hosted on port %s", + "commands.random.error.range_too_large": "The range of the random value must be at most 2147483646", + "commands.random.error.range_too_small": "The range of the random value must be at least 2", + "commands.random.reset.all.success": "Reset %s random sequence(s)", + "commands.random.reset.success": "Reset random sequence %s", + "commands.random.roll": "%s rolled %s (from %s to %s)", + "commands.random.sample.success": "Randomized value: %s", + "commands.recipe.give.failed": "No new recipes were learned", + "commands.recipe.give.success.multiple": "Unlocked %s recipes for %s players", + "commands.recipe.give.success.single": "Unlocked %s recipes for %s", + "commands.recipe.take.failed": "No recipes could be forgotten", + "commands.recipe.take.success.multiple": "Took %s recipes from %s players", + "commands.recipe.take.success.single": "Took %s recipes from %s", + "commands.reload.failure": "Reload failed; keeping old data", + "commands.reload.success": "Reloading!", + "commands.ride.already_riding": "%s is already riding %s", + "commands.ride.dismount.success": "%s stopped riding %s", + "commands.ride.mount.failure.cant_ride_players": "Players can't be ridden", + "commands.ride.mount.failure.generic": "%s couldn't start riding %s", + "commands.ride.mount.failure.loop": "Can't mount entity on itself or any of its passengers", + "commands.ride.mount.failure.wrong_dimension": "Can't mount entity in different dimension", + "commands.ride.mount.success": "%s started riding %s", + "commands.ride.not_riding": "%s is not riding any vehicle", + "commands.rotate.success": "Rotated %s", + "commands.save.alreadyOff": "Saving is already turned off", + "commands.save.alreadyOn": "Saving is already turned on", + "commands.save.disabled": "Automatic saving is now disabled", + "commands.save.enabled": "Automatic saving is now enabled", + "commands.save.failed": "Unable to save the game (is there enough disk space?)", + "commands.save.saving": "Saving the game (this may take a moment!)", + "commands.save.success": "Saved the game", + "commands.schedule.cleared.failure": "No schedules with id %s", + "commands.schedule.cleared.success": "Removed %s schedule(s) with id %s", + "commands.schedule.created.function": "Scheduled function '%s' in %s tick(s) at gametime %s", + "commands.schedule.created.tag": "Scheduled tag '%s' in %s tick(s) at gametime %s", + "commands.schedule.macro": "Can't schedule a macro", + "commands.schedule.same_tick": "Can't schedule for current tick", + "commands.scoreboard.objectives.add.duplicate": "An objective already exists by that name", + "commands.scoreboard.objectives.add.success": "Created new objective %s", + "commands.scoreboard.objectives.display.alreadyEmpty": "Nothing changed. That display slot is already empty", + "commands.scoreboard.objectives.display.alreadySet": "Nothing changed. That display slot is already showing that objective", + "commands.scoreboard.objectives.display.cleared": "Cleared any objectives in display slot %s", + "commands.scoreboard.objectives.display.set": "Set display slot %s to show objective %s", + "commands.scoreboard.objectives.list.empty": "There are no objectives", + "commands.scoreboard.objectives.list.success": "There are %s objective(s): %s", + "commands.scoreboard.objectives.modify.displayAutoUpdate.disable": "Disabled display auto-update for objective %s", + "commands.scoreboard.objectives.modify.displayAutoUpdate.enable": "Enabled display auto-update for objective %s", + "commands.scoreboard.objectives.modify.displayname": "Changed the display name of %s to %s", + "commands.scoreboard.objectives.modify.objectiveFormat.clear": "Cleared default number format of objective %s", + "commands.scoreboard.objectives.modify.objectiveFormat.set": "Changed default number format of objective %s", + "commands.scoreboard.objectives.modify.rendertype": "Changed the render type of objective %s", + "commands.scoreboard.objectives.remove.success": "Removed objective %s", + "commands.scoreboard.players.add.success.multiple": "Added %s to %s for %s entities", + "commands.scoreboard.players.add.success.single": "Added %s to %s for %s (now %s)", + "commands.scoreboard.players.display.name.clear.success.multiple": "Cleared display name for %s entities in %s", + "commands.scoreboard.players.display.name.clear.success.single": "Cleared display name for %s in %s", + "commands.scoreboard.players.display.name.set.success.multiple": "Changed display name to %s for %s entities in %s", + "commands.scoreboard.players.display.name.set.success.single": "Changed display name to %s for %s in %s", + "commands.scoreboard.players.display.numberFormat.clear.success.multiple": "Cleared number format for %s entities in %s", + "commands.scoreboard.players.display.numberFormat.clear.success.single": "Cleared number format for %s in %s", + "commands.scoreboard.players.display.numberFormat.set.success.multiple": "Changed number format for %s entities in %s", + "commands.scoreboard.players.display.numberFormat.set.success.single": "Changed number format for %s in %s", + "commands.scoreboard.players.enable.failed": "Nothing changed. That trigger is already enabled", + "commands.scoreboard.players.enable.invalid": "Enable only works on trigger-objectives", + "commands.scoreboard.players.enable.success.multiple": "Enabled trigger %s for %s entities", + "commands.scoreboard.players.enable.success.single": "Enabled trigger %s for %s", + "commands.scoreboard.players.get.null": "Can't get value of %s for %s; none is set", + "commands.scoreboard.players.get.success": "%s has %s %s", + "commands.scoreboard.players.list.empty": "There are no tracked entities", + "commands.scoreboard.players.list.entity.empty": "%s has no scores to show", + "commands.scoreboard.players.list.entity.entry": "%s: %s", + "commands.scoreboard.players.list.entity.success": "%s has %s score(s):", + "commands.scoreboard.players.list.success": "There are %s tracked entity/entities: %s", + "commands.scoreboard.players.operation.success.multiple": "Updated %s for %s entities", + "commands.scoreboard.players.operation.success.single": "Set %s for %s to %s", + "commands.scoreboard.players.remove.success.multiple": "Removed %s from %s for %s entities", + "commands.scoreboard.players.remove.success.single": "Removed %s from %s for %s (now %s)", + "commands.scoreboard.players.reset.all.multiple": "Reset all scores for %s entities", + "commands.scoreboard.players.reset.all.single": "Reset all scores for %s", + "commands.scoreboard.players.reset.specific.multiple": "Reset %s for %s entities", + "commands.scoreboard.players.reset.specific.single": "Reset %s for %s", + "commands.scoreboard.players.set.success.multiple": "Set %s for %s entities to %s", + "commands.scoreboard.players.set.success.single": "Set %s for %s to %s", + "commands.seed.success": "Seed: %s", + "commands.setblock.failed": "Could not set the block", + "commands.setblock.success": "Changed the block at %s, %s, %s", + "commands.setidletimeout.success": "The player idle timeout is now %s minute(s)", + "commands.setidletimeout.success.disabled": "The player idle timeout is now disabled", + "commands.setworldspawn.failure.not_overworld": "Can only set the world spawn for overworld", + "commands.setworldspawn.success": "Set the world spawn point to %s, %s, %s [%s]", + "commands.spawnpoint.success.multiple": "Set spawn point to %s, %s, %s [%s] in %s for %s players", + "commands.spawnpoint.success.single": "Set spawn point to %s, %s, %s [%s] in %s for %s", + "commands.spectate.not_spectator": "%s is not in spectator mode", + "commands.spectate.self": "Cannot spectate yourself", + "commands.spectate.success.started": "Now spectating %s", + "commands.spectate.success.stopped": "No longer spectating an entity", + "commands.spreadplayers.failed.entities": "Could not spread %s entity/entities around %s, %s (too many entities for space - try using spread of at most %s)", + "commands.spreadplayers.failed.invalid.height": "Invalid maxHeight %s; expected higher than world minimum %s", + "commands.spreadplayers.failed.teams": "Could not spread %s team(s) around %s, %s (too many entities for space - try using spread of at most %s)", + "commands.spreadplayers.success.entities": "Spread %s entity/entities around %s, %s with an average distance of %s block(s) apart", + "commands.spreadplayers.success.teams": "Spread %s team(s) around %s, %s with an average distance of %s block(s) apart", + "commands.stop.stopping": "Stopping the server", + "commands.stopsound.success.source.any": "Stopped all '%s' sounds", + "commands.stopsound.success.source.sound": "Stopped sound '%s' on source '%s'", + "commands.stopsound.success.sourceless.any": "Stopped all sounds", + "commands.stopsound.success.sourceless.sound": "Stopped sound '%s'", + "commands.summon.failed": "Unable to summon entity", + "commands.summon.failed.uuid": "Unable to summon entity due to duplicate UUIDs", + "commands.summon.invalidPosition": "Invalid position for summon", + "commands.summon.success": "Summoned new %s", + "commands.tag.add.failed": "Target either already has the tag or has too many tags", + "commands.tag.add.success.multiple": "Added tag '%s' to %s entities", + "commands.tag.add.success.single": "Added tag '%s' to %s", + "commands.tag.list.multiple.empty": "There are no tags on the %s entities", + "commands.tag.list.multiple.success": "The %s entities have %s total tags: %s", + "commands.tag.list.single.empty": "%s has no tags", + "commands.tag.list.single.success": "%s has %s tags: %s", + "commands.tag.remove.failed": "Target does not have this tag", + "commands.tag.remove.success.multiple": "Removed tag '%s' from %s entities", + "commands.tag.remove.success.single": "Removed tag '%s' from %s", + "commands.team.add.duplicate": "A team already exists by that name", + "commands.team.add.success": "Created team %s", + "commands.team.empty.success": "Removed %s member(s) from team %s", + "commands.team.empty.unchanged": "Nothing changed. That team is already empty", + "commands.team.join.success.multiple": "Added %s members to team %s", + "commands.team.join.success.single": "Added %s to team %s", + "commands.team.leave.success.multiple": "Removed %s members from any team", + "commands.team.leave.success.single": "Removed %s from any team", + "commands.team.list.members.empty": "There are no members on team %s", + "commands.team.list.members.success": "Team %s has %s member(s): %s", + "commands.team.list.teams.empty": "There are no teams", + "commands.team.list.teams.success": "There are %s team(s): %s", + "commands.team.option.collisionRule.success": "Collision rule for team %s is now \"%s\"", + "commands.team.option.collisionRule.unchanged": "Nothing changed. Collision rule is already that value", + "commands.team.option.color.success": "Updated the color for team %s to %s", + "commands.team.option.color.unchanged": "Nothing changed. That team already has that color", + "commands.team.option.deathMessageVisibility.success": "Death message visibility for team %s is now \"%s\"", + "commands.team.option.deathMessageVisibility.unchanged": "Nothing changed. Death message visibility is already that value", + "commands.team.option.friendlyfire.alreadyDisabled": "Nothing changed. Friendly fire is already disabled for that team", + "commands.team.option.friendlyfire.alreadyEnabled": "Nothing changed. Friendly fire is already enabled for that team", + "commands.team.option.friendlyfire.disabled": "Disabled friendly fire for team %s", + "commands.team.option.friendlyfire.enabled": "Enabled friendly fire for team %s", + "commands.team.option.name.success": "Updated the name of team %s", + "commands.team.option.name.unchanged": "Nothing changed. That team already has that name", + "commands.team.option.nametagVisibility.success": "Nametag visibility for team %s is now \"%s\"", + "commands.team.option.nametagVisibility.unchanged": "Nothing changed. Nametag visibility is already that value", + "commands.team.option.prefix.success": "Team prefix set to %s", + "commands.team.option.seeFriendlyInvisibles.alreadyDisabled": "Nothing changed. That team already can't see invisible teammates", + "commands.team.option.seeFriendlyInvisibles.alreadyEnabled": "Nothing changed. That team can already see invisible teammates", + "commands.team.option.seeFriendlyInvisibles.disabled": "Team %s can no longer see invisible teammates", + "commands.team.option.seeFriendlyInvisibles.enabled": "Team %s can now see invisible teammates", + "commands.team.option.suffix.success": "Team suffix set to %s", + "commands.team.remove.success": "Removed team %s", + "commands.teammsg.failed.noteam": "You must be on a team to message your team", + "commands.teleport.invalidPosition": "Invalid position for teleport", + "commands.teleport.success.entity.multiple": "Teleported %s entities to %s", + "commands.teleport.success.entity.single": "Teleported %s to %s", + "commands.teleport.success.location.multiple": "Teleported %s entities to %s, %s, %s", + "commands.teleport.success.location.single": "Teleported %s to %s, %s, %s", + "commands.tick.query.percentiles": "Percentiles: P50: %sms P95: %sms P99: %sms, sample: %s", + "commands.tick.query.rate.running": "Target tick rate: %s per second.\nAverage time per tick: %sms (Target: %sms)", + "commands.tick.query.rate.sprinting": "Target tick rate: %s per second (ignored, reference only).\nAverage time per tick: %sms", + "commands.tick.rate.success": "Set the target tick rate to %s per second", + "commands.tick.sprint.report": "Sprint completed with %s ticks per second, or %s ms per tick", + "commands.tick.sprint.stop.fail": "No tick sprint in progress", + "commands.tick.sprint.stop.success": "Interrupted the current tick sprint", + "commands.tick.status.frozen": "The game is frozen", + "commands.tick.status.lagging": "The game is running, but can't keep up with the target tick rate", + "commands.tick.status.running": "The game is running normally", + "commands.tick.status.sprinting": "The game is sprinting", + "commands.tick.step.fail": "Unable to step the game - the game must be frozen first", + "commands.tick.step.stop.fail": "No tick step in progress", + "commands.tick.step.stop.success": "Interrupted the current tick step", + "commands.tick.step.success": "Stepping %s tick(s)", + "commands.time.query": "The time is %s", + "commands.time.set": "Set the time to %s", + "commands.title.cleared.multiple": "Cleared titles for %s players", + "commands.title.cleared.single": "Cleared titles for %s", + "commands.title.reset.multiple": "Reset title options for %s players", + "commands.title.reset.single": "Reset title options for %s", + "commands.title.show.actionbar.multiple": "Showing new actionbar title for %s players", + "commands.title.show.actionbar.single": "Showing new actionbar title for %s", + "commands.title.show.subtitle.multiple": "Showing new subtitle for %s players", + "commands.title.show.subtitle.single": "Showing new subtitle for %s", + "commands.title.show.title.multiple": "Showing new title for %s players", + "commands.title.show.title.single": "Showing new title for %s", + "commands.title.times.multiple": "Changed title display times for %s players", + "commands.title.times.single": "Changed title display times for %s", + "commands.transfer.error.no_players": "Must specify at least one player to transfer", + "commands.transfer.success.multiple": "Transferring %s players to %s:%s", + "commands.transfer.success.single": "Transferring %s to %s:%s", + "commands.trigger.add.success": "Triggered %s (added %s to value)", + "commands.trigger.failed.invalid": "You can only trigger objectives that are 'trigger' type", + "commands.trigger.failed.unprimed": "You cannot trigger this objective yet", + "commands.trigger.set.success": "Triggered %s (set value to %s)", + "commands.trigger.simple.success": "Triggered %s", + "commands.weather.set.clear": "Set the weather to clear", + "commands.weather.set.rain": "Set the weather to rain", + "commands.weather.set.thunder": "Set the weather to rain & thunder", + "commands.whitelist.add.failed": "Player is already whitelisted", + "commands.whitelist.add.success": "Added %s to the whitelist", + "commands.whitelist.alreadyOff": "Whitelist is already turned off", + "commands.whitelist.alreadyOn": "Whitelist is already turned on", + "commands.whitelist.disabled": "Whitelist is now turned off", + "commands.whitelist.enabled": "Whitelist is now turned on", + "commands.whitelist.list": "There are %s whitelisted player(s): %s", + "commands.whitelist.none": "There are no whitelisted players", + "commands.whitelist.reloaded": "Reloaded the whitelist", + "commands.whitelist.remove.failed": "Player is not whitelisted", + "commands.whitelist.remove.success": "Removed %s from the whitelist", + "commands.worldborder.center.failed": "Nothing changed. The world border is already centered there", + "commands.worldborder.center.success": "Set the center of the world border to %s, %s", + "commands.worldborder.damage.amount.failed": "Nothing changed. The world border damage is already that amount", + "commands.worldborder.damage.amount.success": "Set the world border damage to %s per block each second", + "commands.worldborder.damage.buffer.failed": "Nothing changed. The world border damage buffer is already that distance", + "commands.worldborder.damage.buffer.success": "Set the world border damage buffer to %s block(s)", + "commands.worldborder.get": "The world border is currently %s block(s) wide", + "commands.worldborder.set.failed.big": "World border cannot be bigger than %s blocks wide", + "commands.worldborder.set.failed.far": "World border cannot be further out than %s blocks", + "commands.worldborder.set.failed.nochange": "Nothing changed. The world border is already that size", + "commands.worldborder.set.failed.small": "World border cannot be smaller than 1 block wide", + "commands.worldborder.set.grow": "Growing the world border to %s blocks wide over %s seconds", + "commands.worldborder.set.immediate": "Set the world border to %s block(s) wide", + "commands.worldborder.set.shrink": "Shrinking the world border to %s block(s) wide over %s second(s)", + "commands.worldborder.warning.distance.failed": "Nothing changed. The world border warning is already that distance", + "commands.worldborder.warning.distance.success": "Set the world border warning distance to %s block(s)", + "commands.worldborder.warning.time.failed": "Nothing changed. The world border warning is already that amount of time", + "commands.worldborder.warning.time.success": "Set the world border warning time to %s second(s)", + "compliance.playtime.greaterThan24Hours": "You've been playing for greater than 24 hours", + "compliance.playtime.hours": "You've been playing for %s hour(s)", + "compliance.playtime.message": "Excessive gaming may interfere with normal daily life", + "connect.aborted": "Aborted", + "connect.authorizing": "Logging in...", + "connect.connecting": "Connecting to the server...", + "connect.encrypting": "Encrypting...", + "connect.failed": "Failed to connect to the server", + "connect.failed.transfer": "Connection failed while transferring to the server", + "connect.joining": "Joining world...", + "connect.negotiating": "Negotiating...", + "connect.reconfiging": "Reconfiguring...", + "connect.reconfiguring": "Reconfiguring...", + "connect.transferring": "Transferring to new server...", + "container.barrel": "Barrel", + "container.beacon": "Beacon", + "container.beehive.bees": "Bees: %s / %s", + "container.beehive.honey": "Honey: %s / %s", + "container.blast_furnace": "Blast Furnace", + "container.brewing": "Brewing Stand", + "container.cartography_table": "Cartography Table", + "container.chest": "Chest", + "container.chestDouble": "Large Chest", + "container.crafter": "Crafter", + "container.crafting": "Crafting", + "container.creative": "Item Selection", + "container.dispenser": "Dispenser", + "container.dropper": "Dropper", + "container.enchant": "Enchant", + "container.enchant.clue": "%s . . . ?", + "container.enchant.lapis.many": "%s Lapis Lazuli", + "container.enchant.lapis.one": "1 Lapis Lazuli", + "container.enchant.level.many": "%s Enchantment Levels", + "container.enchant.level.one": "1 Enchantment Level", + "container.enchant.level.requirement": "Level Requirement: %s", + "container.enderchest": "Ender Chest", + "container.furnace": "Furnace", + "container.grindstone_title": "Repair & Disenchant", + "container.hopper": "Item Hopper", + "container.inventory": "Inventory", + "container.isLocked": "%s is locked!", + "container.lectern": "Lectern", + "container.loom": "Loom", + "container.repair": "Repair & Name", + "container.repair.cost": "Enchantment Cost: %1$s", + "container.repair.expensive": "Too Expensive!", + "container.shulkerBox": "Shulker Box", + "container.shulkerBox.itemCount": "%s x%s", + "container.shulkerBox.more": "and %s more...", + "container.shulkerBox.unknownContents": "???????", + "container.smoker": "Smoker", + "container.spectatorCantOpen": "Unable to open. Loot not generated yet.", + "container.stonecutter": "Stonecutter", + "container.upgrade": "Upgrade Gear", + "container.upgrade.error_tooltip": "Item can't be upgraded this way", + "container.upgrade.missing_template_tooltip": "Add Smithing Template", + "controls.keybinds": "Key Binds...", + "controls.keybinds.duplicateKeybinds": "This key is also used for:\n%s", + "controls.keybinds.title": "Key Binds", + "controls.reset": "Reset", + "controls.resetAll": "Reset Keys", + "controls.title": "Controls", + "createWorld.customize.buffet.biome": "Please select a biome", + "createWorld.customize.buffet.title": "Buffet world customization", + "createWorld.customize.flat.height": "Height", + "createWorld.customize.flat.layer": "%s", + "createWorld.customize.flat.layer.bottom": "Bottom - %s", + "createWorld.customize.flat.layer.top": "Top - %s", + "createWorld.customize.flat.removeLayer": "Remove Layer", + "createWorld.customize.flat.tile": "Layer Material", + "createWorld.customize.flat.title": "Superflat Customization", + "createWorld.customize.presets": "Presets", + "createWorld.customize.presets.list": "Alternatively, here's some we made earlier!", + "createWorld.customize.presets.select": "Use Preset", + "createWorld.customize.presets.share": "Want to share your preset with someone? Use the box below!", + "createWorld.customize.presets.title": "Select a Preset", + "createWorld.preparing": "Preparing for world creation...", + "createWorld.tab.game.title": "Game", + "createWorld.tab.more.title": "More", + "createWorld.tab.world.title": "World", + "credits_and_attribution.button.attribution": "Attribution", + "credits_and_attribution.button.credits": "Credits", + "credits_and_attribution.button.licenses": "Licenses", + "credits_and_attribution.screen.title": "Credits and Attribution", + "dataPack.bundle.description": "Enables experimental Bundle item", + "dataPack.bundle.name": "Bundles", + "dataPack.minecart_improvements.description": "Improved movement for Minecarts", + "dataPack.minecart_improvements.name": "Minecart Improvements", + "dataPack.redstone_experiments.description": "Experimental Redstone changes", + "dataPack.redstone_experiments.name": "Redstone Experiments", + "dataPack.title": "Select Data Packs", + "dataPack.trade_rebalance.description": "Updated trades for Villagers", + "dataPack.trade_rebalance.name": "Villager Trade Rebalance", + "dataPack.update_1_20.description": "New features and content for Minecraft 1.20", + "dataPack.update_1_20.name": "Update 1.20", + "dataPack.update_1_21.description": "New features and content for Minecraft 1.21", + "dataPack.update_1_21.name": "Update 1.21", + "dataPack.validation.back": "Go Back", + "dataPack.validation.failed": "Data pack validation failed!", + "dataPack.validation.reset": "Reset to Default", + "dataPack.validation.working": "Validating selected data packs...", + "dataPack.vanilla.description": "The default data for Minecraft", + "dataPack.vanilla.name": "Default", + "dataPack.winter_drop.description": "New features and content for the Winter Drop", + "dataPack.winter_drop.name": "Winter Drop", + "datapackFailure.safeMode": "Safe Mode", + "datapackFailure.safeMode.failed.description": "This world contains invalid or corrupted save data.", + "datapackFailure.safeMode.failed.title": "Failed to load world in Safe Mode.", + "datapackFailure.title": "Errors in currently selected data packs prevented the world from loading.\nYou can either try to load it with only the vanilla data pack (\"safe mode\"), or go back to the title screen and fix it manually.", + "death.attack.anvil": "%1$s was squashed by a falling anvil", + "death.attack.anvil.player": "%1$s was squashed by a falling anvil while fighting %2$s", + "death.attack.arrow": "%1$s was shot by %2$s", + "death.attack.arrow.item": "%1$s was shot by %2$s using %3$s", + "death.attack.badRespawnPoint.link": "Intentional Game Design", + "death.attack.badRespawnPoint.message": "%1$s was killed by %2$s", + "death.attack.cactus": "%1$s was pricked to death", + "death.attack.cactus.player": "%1$s walked into a cactus while trying to escape %2$s", + "death.attack.cramming": "%1$s was squished too much", + "death.attack.cramming.player": "%1$s was squashed by %2$s", + "death.attack.dragonBreath": "%1$s was roasted in dragon's breath", + "death.attack.dragonBreath.player": "%1$s was roasted in dragon's breath by %2$s", + "death.attack.drown": "%1$s drowned", + "death.attack.drown.player": "%1$s drowned while trying to escape %2$s", + "death.attack.dryout": "%1$s died from dehydration", + "death.attack.dryout.player": "%1$s died from dehydration while trying to escape %2$s", + "death.attack.even_more_magic": "%1$s was killed by even more magic", + "death.attack.explosion": "%1$s blew up", + "death.attack.explosion.player": "%1$s was blown up by %2$s", + "death.attack.explosion.player.item": "%1$s was blown up by %2$s using %3$s", + "death.attack.fall": "%1$s hit the ground too hard", + "death.attack.fall.player": "%1$s hit the ground too hard while trying to escape %2$s", + "death.attack.fallingBlock": "%1$s was squashed by a falling block", + "death.attack.fallingBlock.player": "%1$s was squashed by a falling block while fighting %2$s", + "death.attack.fallingStalactite": "%1$s was skewered by a falling stalactite", + "death.attack.fallingStalactite.player": "%1$s was skewered by a falling stalactite while fighting %2$s", + "death.attack.fireball": "%1$s was fireballed by %2$s", + "death.attack.fireball.item": "%1$s was fireballed by %2$s using %3$s", + "death.attack.fireworks": "%1$s went off with a bang", + "death.attack.fireworks.item": "%1$s went off with a bang due to a firework fired from %3$s by %2$s", + "death.attack.fireworks.player": "%1$s went off with a bang while fighting %2$s", + "death.attack.flyIntoWall": "%1$s experienced kinetic energy", + "death.attack.flyIntoWall.player": "%1$s experienced kinetic energy while trying to escape %2$s", + "death.attack.freeze": "%1$s froze to death", + "death.attack.freeze.player": "%1$s was frozen to death by %2$s", + "death.attack.generic": "%1$s died", + "death.attack.generic.player": "%1$s died because of %2$s", + "death.attack.genericKill": "%1$s was killed", + "death.attack.genericKill.player": "%1$s was killed while fighting %2$s", + "death.attack.hotFloor": "%1$s discovered the floor was lava", + "death.attack.hotFloor.player": "%1$s walked into the danger zone due to %2$s", + "death.attack.indirectMagic": "%1$s was killed by %2$s using magic", + "death.attack.indirectMagic.item": "%1$s was killed by %2$s using %3$s", + "death.attack.inFire": "%1$s went up in flames", + "death.attack.inFire.player": "%1$s walked into fire while fighting %2$s", + "death.attack.inWall": "%1$s suffocated in a wall", + "death.attack.inWall.player": "%1$s suffocated in a wall while fighting %2$s", + "death.attack.lava": "%1$s tried to swim in lava", + "death.attack.lava.player": "%1$s tried to swim in lava to escape %2$s", + "death.attack.lightningBolt": "%1$s was struck by lightning", + "death.attack.lightningBolt.player": "%1$s was struck by lightning while fighting %2$s", + "death.attack.mace_smash": "%1$s was smashed by %2$s", + "death.attack.mace_smash.item": "%1$s was smashed by %2$s with %3$s", + "death.attack.magic": "%1$s was killed by magic", + "death.attack.magic.player": "%1$s was killed by magic while trying to escape %2$s", + "death.attack.message_too_long": "Actually, the message was too long to deliver fully. Sorry! Here's a stripped version: %s", + "death.attack.mob": "%1$s was slain by %2$s", + "death.attack.mob.item": "%1$s was slain by %2$s using %3$s", + "death.attack.onFire": "%1$s burned to death", + "death.attack.onFire.item": "%1$s was burned to a crisp while fighting %2$s wielding %3$s", + "death.attack.onFire.player": "%1$s was burned to a crisp while fighting %2$s", + "death.attack.outOfWorld": "%1$s fell out of the world", + "death.attack.outOfWorld.player": "%1$s didn't want to live in the same world as %2$s", + "death.attack.outsideBorder": "%1$s left the confines of this world", + "death.attack.outsideBorder.player": "%1$s left the confines of this world while fighting %2$s", + "death.attack.player": "%1$s was slain by %2$s", + "death.attack.player.item": "%1$s was slain by %2$s using %3$s", + "death.attack.sonic_boom": "%1$s was obliterated by a sonically-charged shriek", + "death.attack.sonic_boom.item": "%1$s was obliterated by a sonically-charged shriek while trying to escape %2$s wielding %3$s", + "death.attack.sonic_boom.player": "%1$s was obliterated by a sonically-charged shriek while trying to escape %2$s", + "death.attack.stalagmite": "%1$s was impaled on a stalagmite", + "death.attack.stalagmite.player": "%1$s was impaled on a stalagmite while fighting %2$s", + "death.attack.starve": "%1$s starved to death", + "death.attack.starve.player": "%1$s starved to death while fighting %2$s", + "death.attack.sting": "%1$s was stung to death", + "death.attack.sting.item": "%1$s was stung to death by %2$s using %3$s", + "death.attack.sting.player": "%1$s was stung to death by %2$s", + "death.attack.sweetBerryBush": "%1$s was poked to death by a sweet berry bush", + "death.attack.sweetBerryBush.player": "%1$s was poked to death by a sweet berry bush while trying to escape %2$s", + "death.attack.thorns": "%1$s was killed while trying to hurt %2$s", + "death.attack.thorns.item": "%1$s was killed by %3$s while trying to hurt %2$s", + "death.attack.thrown": "%1$s was pummeled by %2$s", + "death.attack.thrown.item": "%1$s was pummeled by %2$s using %3$s", + "death.attack.trident": "%1$s was impaled by %2$s", + "death.attack.trident.item": "%1$s was impaled by %2$s with %3$s", + "death.attack.wither": "%1$s withered away", + "death.attack.wither.player": "%1$s withered away while fighting %2$s", + "death.attack.witherSkull": "%1$s was shot by a skull from %2$s", + "death.attack.witherSkull.item": "%1$s was shot by a skull from %2$s using %3$s", + "death.fell.accident.generic": "%1$s fell from a high place", + "death.fell.accident.ladder": "%1$s fell off a ladder", + "death.fell.accident.other_climbable": "%1$s fell while climbing", + "death.fell.accident.scaffolding": "%1$s fell off scaffolding", + "death.fell.accident.twisting_vines": "%1$s fell off some twisting vines", + "death.fell.accident.vines": "%1$s fell off some vines", + "death.fell.accident.weeping_vines": "%1$s fell off some weeping vines", + "death.fell.assist": "%1$s was doomed to fall by %2$s", + "death.fell.assist.item": "%1$s was doomed to fall by %2$s using %3$s", + "death.fell.finish": "%1$s fell too far and was finished by %2$s", + "death.fell.finish.item": "%1$s fell too far and was finished by %2$s using %3$s", + "death.fell.killer": "%1$s was doomed to fall", + "deathScreen.quit.confirm": "Are you sure you want to quit?", + "deathScreen.respawn": "Respawn", + "deathScreen.score": "Score", + "deathScreen.score.value": "Score: %s", + "deathScreen.spectate": "Spectate World", + "deathScreen.title": "You Died!", + "deathScreen.title.hardcore": "Game Over!", + "deathScreen.titleScreen": "Title Screen", + "debug.advanced_tooltips.help": "F3 + H = Advanced tooltips", + "debug.advanced_tooltips.off": "Advanced tooltips: hidden", + "debug.advanced_tooltips.on": "Advanced tooltips: shown", + "debug.chunk_boundaries.help": "F3 + G = Show chunk boundaries", + "debug.chunk_boundaries.off": "Chunk borders: hidden", + "debug.chunk_boundaries.on": "Chunk borders: shown", + "debug.clear_chat.help": "F3 + D = Clear chat", + "debug.copy_location.help": "F3 + C = Copy location as /tp command, hold F3 + C to crash the game", + "debug.copy_location.message": "Copied location to clipboard", + "debug.crash.message": "F3 + C is held down. This will crash the game unless released.", + "debug.crash.warning": "Crashing in %s...", + "debug.creative_spectator.error": "Unable to switch game mode; no permission", + "debug.creative_spectator.help": "F3 + N = Cycle previous game mode <-> spectator", + "debug.dump_dynamic_textures": "Saved dynamic textures to %s", + "debug.dump_dynamic_textures.help": "F3 + S = Dump dynamic textures", + "debug.gamemodes.error": "Unable to open game mode switcher; no permission", + "debug.gamemodes.help": "F3 + F4 = Open game mode switcher", + "debug.gamemodes.press_f4": "[ F4 ]", + "debug.gamemodes.select_next": "%s Next", + "debug.help.help": "F3 + Q = Show this list", + "debug.help.message": "Key bindings:", + "debug.inspect.client.block": "Copied client-side block data to clipboard", + "debug.inspect.client.entity": "Copied client-side entity data to clipboard", + "debug.inspect.help": "F3 + I = Copy entity or block data to clipboard", + "debug.inspect.server.block": "Copied server-side block data to clipboard", + "debug.inspect.server.entity": "Copied server-side entity data to clipboard", + "debug.pause_focus.help": "F3 + P = Pause on lost focus", + "debug.pause_focus.off": "Pause on lost focus: disabled", + "debug.pause_focus.on": "Pause on lost focus: enabled", + "debug.pause.help": "F3 + Esc = Pause without pause menu (if pausing is possible)", + "debug.prefix": "[Debug]:", + "debug.profiling.help": "F3 + L = Start/stop profiling", + "debug.profiling.start": "Profiling started for %s seconds. Use F3 + L to stop early", + "debug.profiling.stop": "Profiling ended. Saved results to %s", + "debug.reload_chunks.help": "F3 + A = Reload chunks", + "debug.reload_chunks.message": "Reloading all chunks", + "debug.reload_resourcepacks.help": "F3 + T = Reload resource packs", + "debug.reload_resourcepacks.message": "Reloaded resource packs", + "debug.show_hitboxes.help": "F3 + B = Show hitboxes", + "debug.show_hitboxes.off": "Hitboxes: hidden", + "debug.show_hitboxes.on": "Hitboxes: shown", + "demo.day.1": "This demo will last five game days. Do your best!", + "demo.day.2": "Day Two", + "demo.day.3": "Day Three", + "demo.day.4": "Day Four", + "demo.day.5": "This is your last day!", + "demo.day.6": "You have passed your fifth day. Use %s to save a screenshot of your creation.", + "demo.day.warning": "Your time is almost up!", + "demo.demoExpired": "Demo time's up!", + "demo.help.buy": "Purchase Now!", + "demo.help.fullWrapped": "This demo will last 5 in-game days (about 1 hour and 40 minutes of real time). Check the advancements for hints! Have fun!", + "demo.help.inventory": "Use the %1$s key to open your inventory", + "demo.help.jump": "Jump by pressing the %1$s key", + "demo.help.later": "Continue Playing!", + "demo.help.movement": "Use the %1$s, %2$s, %3$s, %4$s keys and the mouse to move around", + "demo.help.movementMouse": "Look around using the mouse", + "demo.help.movementShort": "Move by pressing the %1$s, %2$s, %3$s, %4$s keys", + "demo.help.title": "Minecraft Demo Mode", + "demo.remainingTime": "Remaining time: %s", + "demo.reminder": "The demo time has expired. Buy the game to continue or start a new world!", + "difficulty.lock.question": "Are you sure you want to lock the difficulty of this world? This will set this world to always be %1$s, and you will never be able to change that again.", + "difficulty.lock.title": "Lock World Difficulty", + "disconnect.endOfStream": "End of stream", + "disconnect.exceeded_packet_rate": "Kicked for exceeding packet rate limit", + "disconnect.genericReason": "%s", + "disconnect.ignoring_status_request": "Ignoring status request", + "disconnect.loginFailedInfo": "Failed to log in: %s", + "disconnect.loginFailedInfo.insufficientPrivileges": "Multiplayer is disabled. Please check your Microsoft account settings.", + "disconnect.loginFailedInfo.invalidSession": "Invalid session (Try restarting your game and the launcher)", + "disconnect.loginFailedInfo.serversUnavailable": "The authentication servers are currently not reachable. Please try again.", + "disconnect.loginFailedInfo.userBanned": "You are banned from playing online", + "disconnect.lost": "Connection Lost", + "disconnect.packetError": "Network Protocol Error", + "disconnect.spam": "Kicked for spamming", + "disconnect.timeout": "Timed out", + "disconnect.transfer": "Transferred to another server", + "disconnect.unknownHost": "Unknown host", + "download.pack.failed": "%s out of %s pack(s) failed to download", + "download.pack.progress.bytes": "Progress: %s (total size unknown)", + "download.pack.progress.percent": "Progress: %s%%", + "download.pack.title": "Downloading resource pack %s/%s", + "editGamerule.default": "Default: %s", + "editGamerule.title": "Edit Game Rules", + "effect.duration.infinite": "∞", + "effect.minecraft.absorption": "Absorption", + "effect.minecraft.bad_omen": "Bad Omen", + "effect.minecraft.blindness": "Blindness", + "effect.minecraft.conduit_power": "Conduit Power", + "effect.minecraft.darkness": "Darkness", + "effect.minecraft.dolphins_grace": "Dolphin's Grace", + "effect.minecraft.fire_resistance": "Fire Resistance", + "effect.minecraft.glowing": "Glowing", + "effect.minecraft.haste": "Haste", + "effect.minecraft.health_boost": "Health Boost", + "effect.minecraft.hero_of_the_village": "Hero of the Village", + "effect.minecraft.hunger": "Hunger", + "effect.minecraft.infested": "Infested", + "effect.minecraft.instant_damage": "Instant Damage", + "effect.minecraft.instant_health": "Instant Health", + "effect.minecraft.invisibility": "Invisibility", + "effect.minecraft.jump_boost": "Jump Boost", + "effect.minecraft.levitation": "Levitation", + "effect.minecraft.luck": "Luck", + "effect.minecraft.mining_fatigue": "Mining Fatigue", + "effect.minecraft.nausea": "Nausea", + "effect.minecraft.night_vision": "Night Vision", + "effect.minecraft.oozing": "Oozing", + "effect.minecraft.poison": "Poison", + "effect.minecraft.raid_omen": "Raid Omen", + "effect.minecraft.regeneration": "Regeneration", + "effect.minecraft.resistance": "Resistance", + "effect.minecraft.saturation": "Saturation", + "effect.minecraft.slow_falling": "Slow Falling", + "effect.minecraft.slowness": "Slowness", + "effect.minecraft.speed": "Speed", + "effect.minecraft.strength": "Strength", + "effect.minecraft.trial_omen": "Trial Omen", + "effect.minecraft.unluck": "Bad Luck", + "effect.minecraft.water_breathing": "Water Breathing", + "effect.minecraft.weakness": "Weakness", + "effect.minecraft.weaving": "Weaving", + "effect.minecraft.wind_charged": "Wind Charged", + "effect.minecraft.wither": "Wither", + "effect.none": "No Effects", + "enchantment.level.1": "I", + "enchantment.level.2": "II", + "enchantment.level.3": "III", + "enchantment.level.4": "IV", + "enchantment.level.5": "V", + "enchantment.level.6": "VI", + "enchantment.level.7": "VII", + "enchantment.level.8": "VIII", + "enchantment.level.9": "IX", + "enchantment.level.10": "X", + "enchantment.minecraft.aqua_affinity": "Aqua Affinity", + "enchantment.minecraft.bane_of_arthropods": "Bane of Arthropods", + "enchantment.minecraft.binding_curse": "Curse of Binding", + "enchantment.minecraft.blast_protection": "Blast Protection", + "enchantment.minecraft.breach": "Breach", + "enchantment.minecraft.channeling": "Channeling", + "enchantment.minecraft.density": "Density", + "enchantment.minecraft.depth_strider": "Depth Strider", + "enchantment.minecraft.efficiency": "Efficiency", + "enchantment.minecraft.feather_falling": "Feather Falling", + "enchantment.minecraft.fire_aspect": "Fire Aspect", + "enchantment.minecraft.fire_protection": "Fire Protection", + "enchantment.minecraft.flame": "Flame", + "enchantment.minecraft.fortune": "Fortune", + "enchantment.minecraft.frost_walker": "Frost Walker", + "enchantment.minecraft.impaling": "Impaling", + "enchantment.minecraft.infinity": "Infinity", + "enchantment.minecraft.knockback": "Knockback", + "enchantment.minecraft.looting": "Looting", + "enchantment.minecraft.loyalty": "Loyalty", + "enchantment.minecraft.luck_of_the_sea": "Luck of the Sea", + "enchantment.minecraft.lure": "Lure", + "enchantment.minecraft.mending": "Mending", + "enchantment.minecraft.multishot": "Multishot", + "enchantment.minecraft.piercing": "Piercing", + "enchantment.minecraft.power": "Power", + "enchantment.minecraft.projectile_protection": "Projectile Protection", + "enchantment.minecraft.protection": "Protection", + "enchantment.minecraft.punch": "Punch", + "enchantment.minecraft.quick_charge": "Quick Charge", + "enchantment.minecraft.respiration": "Respiration", + "enchantment.minecraft.riptide": "Riptide", + "enchantment.minecraft.sharpness": "Sharpness", + "enchantment.minecraft.silk_touch": "Silk Touch", + "enchantment.minecraft.smite": "Smite", + "enchantment.minecraft.soul_speed": "Soul Speed", + "enchantment.minecraft.sweeping": "Sweeping Edge", + "enchantment.minecraft.sweeping_edge": "Sweeping Edge", + "enchantment.minecraft.swift_sneak": "Swift Sneak", + "enchantment.minecraft.thorns": "Thorns", + "enchantment.minecraft.unbreaking": "Unbreaking", + "enchantment.minecraft.vanishing_curse": "Curse of Vanishing", + "enchantment.minecraft.wind_burst": "Wind Burst", + "entity.minecraft.acacia_boat": "Acacia Boat", + "entity.minecraft.acacia_chest_boat": "Acacia Boat with Chest", + "entity.minecraft.allay": "Allay", + "entity.minecraft.area_effect_cloud": "Area Effect Cloud", + "entity.minecraft.armadillo": "Armadillo", + "entity.minecraft.armor_stand": "Armor Stand", + "entity.minecraft.arrow": "Arrow", + "entity.minecraft.axolotl": "Axolotl", + "entity.minecraft.bamboo_chest_raft": "Bamboo Raft with Chest", + "entity.minecraft.bamboo_raft": "Bamboo Raft", + "entity.minecraft.bat": "Bat", + "entity.minecraft.bee": "Bee", + "entity.minecraft.birch_boat": "Birch Boat", + "entity.minecraft.birch_chest_boat": "Birch Boat with Chest", + "entity.minecraft.blaze": "Blaze", + "entity.minecraft.block_display": "Block Display", + "entity.minecraft.boat": "Boat", + "entity.minecraft.bogged": "Bogged", + "entity.minecraft.breeze": "Breeze", + "entity.minecraft.breeze_wind_charge": "Wind Charge", + "entity.minecraft.camel": "Camel", + "entity.minecraft.cat": "Cat", + "entity.minecraft.cave_spider": "Cave Spider", + "entity.minecraft.cherry_boat": "Cherry Boat", + "entity.minecraft.cherry_chest_boat": "Cherry Boat with Chest", + "entity.minecraft.chest_boat": "Boat with Chest", + "entity.minecraft.chest_minecart": "Minecart with Chest", + "entity.minecraft.chicken": "Chicken", + "entity.minecraft.cod": "Cod", + "entity.minecraft.command_block_minecart": "Minecart with Command Block", + "entity.minecraft.cow": "Cow", + "entity.minecraft.creaking": "Creaking", + "entity.minecraft.creaking_transient": "Creaking", + "entity.minecraft.creeper": "Creeper", + "entity.minecraft.dark_oak_boat": "Dark Oak Boat", + "entity.minecraft.dark_oak_chest_boat": "Dark Oak Boat with Chest", + "entity.minecraft.dolphin": "Dolphin", + "entity.minecraft.donkey": "Donkey", + "entity.minecraft.dragon_fireball": "Dragon Fireball", + "entity.minecraft.drowned": "Drowned", + "entity.minecraft.egg": "Thrown Egg", + "entity.minecraft.elder_guardian": "Elder Guardian", + "entity.minecraft.end_crystal": "End Crystal", + "entity.minecraft.ender_dragon": "Ender Dragon", + "entity.minecraft.ender_pearl": "Thrown Ender Pearl", + "entity.minecraft.enderman": "Enderman", + "entity.minecraft.endermite": "Endermite", + "entity.minecraft.evoker": "Evoker", + "entity.minecraft.evoker_fangs": "Evoker Fangs", + "entity.minecraft.experience_bottle": "Thrown Bottle o' Enchanting", + "entity.minecraft.experience_orb": "Experience Orb", + "entity.minecraft.eye_of_ender": "Eye of Ender", + "entity.minecraft.falling_block": "Falling Block", + "entity.minecraft.falling_block_type": "Falling %s", + "entity.minecraft.fireball": "Fireball", + "entity.minecraft.firework_rocket": "Firework Rocket", + "entity.minecraft.fishing_bobber": "Fishing Bobber", + "entity.minecraft.fox": "Fox", + "entity.minecraft.frog": "Frog", + "entity.minecraft.furnace_minecart": "Minecart with Furnace", + "entity.minecraft.ghast": "Ghast", + "entity.minecraft.giant": "Giant", + "entity.minecraft.glow_item_frame": "Glow Item Frame", + "entity.minecraft.glow_squid": "Glow Squid", + "entity.minecraft.goat": "Goat", + "entity.minecraft.guardian": "Guardian", + "entity.minecraft.hoglin": "Hoglin", + "entity.minecraft.hopper_minecart": "Minecart with Hopper", + "entity.minecraft.horse": "Horse", + "entity.minecraft.husk": "Husk", + "entity.minecraft.illusioner": "Illusioner", + "entity.minecraft.interaction": "Interaction", + "entity.minecraft.iron_golem": "Iron Golem", + "entity.minecraft.item": "Item", + "entity.minecraft.item_display": "Item Display", + "entity.minecraft.item_frame": "Item Frame", + "entity.minecraft.jungle_boat": "Jungle Boat", + "entity.minecraft.jungle_chest_boat": "Jungle Boat with Chest", + "entity.minecraft.killer_bunny": "The Killer Bunny", + "entity.minecraft.leash_knot": "Leash Knot", + "entity.minecraft.lightning_bolt": "Lightning Bolt", + "entity.minecraft.llama": "Llama", + "entity.minecraft.llama_spit": "Llama Spit", + "entity.minecraft.magma_cube": "Magma Cube", + "entity.minecraft.mangrove_boat": "Mangrove Boat", + "entity.minecraft.mangrove_chest_boat": "Mangrove Boat with Chest", + "entity.minecraft.marker": "Marker", + "entity.minecraft.minecart": "Minecart", + "entity.minecraft.mooshroom": "Mooshroom", + "entity.minecraft.mule": "Mule", + "entity.minecraft.oak_boat": "Oak Boat", + "entity.minecraft.oak_chest_boat": "Oak Boat with Chest", + "entity.minecraft.ocelot": "Ocelot", + "entity.minecraft.ominous_item_spawner": "Ominous Item Spawner", + "entity.minecraft.painting": "Painting", + "entity.minecraft.pale_oak_boat": "Pale Oak Boat", + "entity.minecraft.pale_oak_chest_boat": "Pale Oak Boat with Chest", + "entity.minecraft.panda": "Panda", + "entity.minecraft.parrot": "Parrot", + "entity.minecraft.phantom": "Phantom", + "entity.minecraft.pig": "Pig", + "entity.minecraft.piglin": "Piglin", + "entity.minecraft.piglin_brute": "Piglin Brute", + "entity.minecraft.pillager": "Pillager", + "entity.minecraft.player": "Player", + "entity.minecraft.polar_bear": "Polar Bear", + "entity.minecraft.potion": "Potion", + "entity.minecraft.pufferfish": "Pufferfish", + "entity.minecraft.rabbit": "Rabbit", + "entity.minecraft.ravager": "Ravager", + "entity.minecraft.salmon": "Salmon", + "entity.minecraft.sheep": "Sheep", + "entity.minecraft.shulker": "Shulker", + "entity.minecraft.shulker_bullet": "Shulker Bullet", + "entity.minecraft.silverfish": "Silverfish", + "entity.minecraft.skeleton": "Skeleton", + "entity.minecraft.skeleton_horse": "Skeleton Horse", + "entity.minecraft.slime": "Slime", + "entity.minecraft.small_fireball": "Small Fireball", + "entity.minecraft.sniffer": "Sniffer", + "entity.minecraft.snow_golem": "Snow Golem", + "entity.minecraft.snowball": "Snowball", + "entity.minecraft.spawner_minecart": "Minecart with Monster Spawner", + "entity.minecraft.spectral_arrow": "Spectral Arrow", + "entity.minecraft.spider": "Spider", + "entity.minecraft.spruce_boat": "Spruce Boat", + "entity.minecraft.spruce_chest_boat": "Spruce Boat with Chest", + "entity.minecraft.squid": "Squid", + "entity.minecraft.stray": "Stray", + "entity.minecraft.strider": "Strider", + "entity.minecraft.tadpole": "Tadpole", + "entity.minecraft.text_display": "Text Display", + "entity.minecraft.tnt": "Primed TNT", + "entity.minecraft.tnt_minecart": "Minecart with TNT", + "entity.minecraft.trader_llama": "Trader Llama", + "entity.minecraft.trident": "Trident", + "entity.minecraft.tropical_fish": "Tropical Fish", + "entity.minecraft.tropical_fish.predefined.0": "Anemone", + "entity.minecraft.tropical_fish.predefined.1": "Black Tang", + "entity.minecraft.tropical_fish.predefined.2": "Blue Tang", + "entity.minecraft.tropical_fish.predefined.3": "Butterflyfish", + "entity.minecraft.tropical_fish.predefined.4": "Cichlid", + "entity.minecraft.tropical_fish.predefined.5": "Clownfish", + "entity.minecraft.tropical_fish.predefined.6": "Cotton Candy Betta", + "entity.minecraft.tropical_fish.predefined.7": "Dottyback", + "entity.minecraft.tropical_fish.predefined.8": "Emperor Red Snapper", + "entity.minecraft.tropical_fish.predefined.9": "Goatfish", + "entity.minecraft.tropical_fish.predefined.10": "Moorish Idol", + "entity.minecraft.tropical_fish.predefined.11": "Ornate Butterflyfish", + "entity.minecraft.tropical_fish.predefined.12": "Parrotfish", + "entity.minecraft.tropical_fish.predefined.13": "Queen Angelfish", + "entity.minecraft.tropical_fish.predefined.14": "Red Cichlid", + "entity.minecraft.tropical_fish.predefined.15": "Red Lipped Blenny", + "entity.minecraft.tropical_fish.predefined.16": "Red Snapper", + "entity.minecraft.tropical_fish.predefined.17": "Threadfin", + "entity.minecraft.tropical_fish.predefined.18": "Tomato Clownfish", + "entity.minecraft.tropical_fish.predefined.19": "Triggerfish", + "entity.minecraft.tropical_fish.predefined.20": "Yellowtail Parrotfish", + "entity.minecraft.tropical_fish.predefined.21": "Yellow Tang", + "entity.minecraft.tropical_fish.type.betty": "Betty", + "entity.minecraft.tropical_fish.type.blockfish": "Blockfish", + "entity.minecraft.tropical_fish.type.brinely": "Brinely", + "entity.minecraft.tropical_fish.type.clayfish": "Clayfish", + "entity.minecraft.tropical_fish.type.dasher": "Dasher", + "entity.minecraft.tropical_fish.type.flopper": "Flopper", + "entity.minecraft.tropical_fish.type.glitter": "Glitter", + "entity.minecraft.tropical_fish.type.kob": "Kob", + "entity.minecraft.tropical_fish.type.snooper": "Snooper", + "entity.minecraft.tropical_fish.type.spotty": "Spotty", + "entity.minecraft.tropical_fish.type.stripey": "Stripey", + "entity.minecraft.tropical_fish.type.sunstreak": "Sunstreak", + "entity.minecraft.turtle": "Turtle", + "entity.minecraft.vex": "Vex", + "entity.minecraft.villager": "Villager", + "entity.minecraft.villager.armorer": "Armorer", + "entity.minecraft.villager.butcher": "Butcher", + "entity.minecraft.villager.cartographer": "Cartographer", + "entity.minecraft.villager.cleric": "Cleric", + "entity.minecraft.villager.farmer": "Farmer", + "entity.minecraft.villager.fisherman": "Fisherman", + "entity.minecraft.villager.fletcher": "Fletcher", + "entity.minecraft.villager.leatherworker": "Leatherworker", + "entity.minecraft.villager.librarian": "Librarian", + "entity.minecraft.villager.mason": "Mason", + "entity.minecraft.villager.nitwit": "Nitwit", + "entity.minecraft.villager.none": "Villager", + "entity.minecraft.villager.shepherd": "Shepherd", + "entity.minecraft.villager.toolsmith": "Toolsmith", + "entity.minecraft.villager.weaponsmith": "Weaponsmith", + "entity.minecraft.vindicator": "Vindicator", + "entity.minecraft.wandering_trader": "Wandering Trader", + "entity.minecraft.warden": "Warden", + "entity.minecraft.wind_charge": "Wind Charge", + "entity.minecraft.witch": "Witch", + "entity.minecraft.wither": "Wither", + "entity.minecraft.wither_skeleton": "Wither Skeleton", + "entity.minecraft.wither_skull": "Wither Skull", + "entity.minecraft.wolf": "Wolf", + "entity.minecraft.zoglin": "Zoglin", + "entity.minecraft.zombie": "Zombie", + "entity.minecraft.zombie_horse": "Zombie Horse", + "entity.minecraft.zombie_villager": "Zombie Villager", + "entity.minecraft.zombified_piglin": "Zombified Piglin", + "entity.not_summonable": "Can't summon entity of type %s", + "event.minecraft.raid": "Raid", + "event.minecraft.raid.defeat": "Defeat", + "event.minecraft.raid.defeat.full": "Raid - Defeat", + "event.minecraft.raid.raiders_remaining": "Raiders Remaining: %s", + "event.minecraft.raid.victory": "Victory", + "event.minecraft.raid.victory.full": "Raid - Victory", + "filled_map.buried_treasure": "Buried Treasure Map", + "filled_map.explorer_jungle": "Jungle Explorer Map", + "filled_map.explorer_swamp": "Swamp Explorer Map", + "filled_map.id": "Id #%s", + "filled_map.level": "(Level %s/%s)", + "filled_map.locked": "Locked", + "filled_map.mansion": "Woodland Explorer Map", + "filled_map.monument": "Ocean Explorer Map", + "filled_map.scale": "Scaling at 1:%s", + "filled_map.trial_chambers": "Trial Explorer Map", + "filled_map.unknown": "Unknown Map", + "filled_map.village_desert": "Desert Village Map", + "filled_map.village_plains": "Plains Village Map", + "filled_map.village_savanna": "Savanna Village Map", + "filled_map.village_snowy": "Snowy Village Map", + "filled_map.village_taiga": "Taiga Village Map", + "flat_world_preset.minecraft.bottomless_pit": "Bottomless Pit", + "flat_world_preset.minecraft.classic_flat": "Classic Flat", + "flat_world_preset.minecraft.desert": "Desert", + "flat_world_preset.minecraft.overworld": "Overworld", + "flat_world_preset.minecraft.redstone_ready": "Redstone Ready", + "flat_world_preset.minecraft.snowy_kingdom": "Snowy Kingdom", + "flat_world_preset.minecraft.the_void": "The Void", + "flat_world_preset.minecraft.tunnelers_dream": "Tunnelers' Dream", + "flat_world_preset.minecraft.water_world": "Water World", + "flat_world_preset.unknown": "???", + "gameMode.adventure": "Adventure Mode", + "gameMode.changed": "Your game mode has been updated to %s", + "gameMode.creative": "Creative Mode", + "gameMode.hardcore": "Hardcore Mode!", + "gameMode.spectator": "Spectator Mode", + "gameMode.survival": "Survival Mode", + "gamerule.announceAdvancements": "Announce advancements", + "gamerule.blockExplosionDropDecay": "In block interaction explosions, some blocks won't drop their loot", + "gamerule.blockExplosionDropDecay.description": "Some of the drops from blocks destroyed by explosions caused by block interactions are lost in the explosion.", + "gamerule.category.chat": "Chat", + "gamerule.category.drops": "Drops", + "gamerule.category.misc": "Miscellaneous", + "gamerule.category.mobs": "Mobs", + "gamerule.category.player": "Player", + "gamerule.category.spawning": "Spawning", + "gamerule.category.updates": "World Updates", + "gamerule.commandBlockOutput": "Broadcast command block output", + "gamerule.commandModificationBlockLimit": "Command modification block limit", + "gamerule.commandModificationBlockLimit.description": "Number of blocks that can be changed at once by one command, such as fill or clone.", + "gamerule.disableElytraMovementCheck": "Disable elytra movement check", + "gamerule.disablePlayerMovementCheck": "Disable player movement check", + "gamerule.disableRaids": "Disable raids", + "gamerule.doDaylightCycle": "Advance time of day", + "gamerule.doEntityDrops": "Drop entity equipment", + "gamerule.doEntityDrops.description": "Controls drops from minecarts (including inventories), item frames, boats, etc.", + "gamerule.doFireTick": "Update fire", + "gamerule.doImmediateRespawn": "Respawn immediately", + "gamerule.doInsomnia": "Spawn phantoms", + "gamerule.doLimitedCrafting": "Require recipe for crafting", + "gamerule.doLimitedCrafting.description": "If enabled, players will be able to craft only unlocked recipes.", + "gamerule.doMobLoot": "Drop mob loot", + "gamerule.doMobLoot.description": "Controls resource drops from mobs, including experience orbs.", + "gamerule.doMobSpawning": "Spawn mobs", + "gamerule.doMobSpawning.description": "Some entities might have separate rules.", + "gamerule.doPatrolSpawning": "Spawn pillager patrols", + "gamerule.doTileDrops": "Drop blocks", + "gamerule.doTileDrops.description": "Controls resource drops from blocks, including experience orbs.", + "gamerule.doTraderSpawning": "Spawn Wandering Traders", + "gamerule.doVinesSpread": "Vines spread", + "gamerule.doVinesSpread.description": "Controls whether or not the Vines block spreads randomly to adjacent blocks. Does not affect other types of vine blocks such as Weeping Vines, Twisting Vines, etc.", + "gamerule.doWardenSpawning": "Spawn Wardens", + "gamerule.doWeatherCycle": "Update weather", + "gamerule.drowningDamage": "Deal drowning damage", + "gamerule.enderPearlsVanishOnDeath": "Thrown Ender Pearls vanish on death", + "gamerule.enderPearlsVanishOnDeath.description": "Whether Ender Pearls thrown by a player vanish when that player dies.", + "gamerule.entitiesWithPassengersCanUsePortals": "Entities with passengers can use portals", + "gamerule.entitiesWithPassengersCanUsePortals.description": "Allow entities with passengers to teleport through Nether Portals, End Portals, and End Gateways.", + "gamerule.fallDamage": "Deal fall damage", + "gamerule.fireDamage": "Deal fire damage", + "gamerule.forgiveDeadPlayers": "Forgive dead players", + "gamerule.forgiveDeadPlayers.description": "Angered neutral mobs stop being angry when the targeted player dies nearby.", + "gamerule.freezeDamage": "Deal freeze damage", + "gamerule.globalSoundEvents": "Global sound events", + "gamerule.globalSoundEvents.description": "When certain game events happen, like a boss spawning, the sound is heard everywhere.", + "gamerule.keepInventory": "Keep inventory after death", + "gamerule.lavaSourceConversion": "Lava converts to source", + "gamerule.lavaSourceConversion.description": "When flowing lava is surrounded on two sides by lava sources it converts into a source.", + "gamerule.logAdminCommands": "Broadcast admin commands", + "gamerule.maxCommandChainLength": "Command chain size limit", + "gamerule.maxCommandChainLength.description": "Applies to command block chains and functions.", + "gamerule.maxCommandForkCount": "Command context limit", + "gamerule.maxCommandForkCount.description": "Maximum number of contexts that can be used by commands like 'execute as'.", + "gamerule.maxEntityCramming": "Entity cramming threshold", + "gamerule.minecartMaxSpeed": "Minecart max speed", + "gamerule.minecartMaxSpeed.description": "Maximum default speed of a moving Minecart on land.", + "gamerule.mobExplosionDropDecay": "In mob explosions, some blocks won't drop their loot", + "gamerule.mobExplosionDropDecay.description": "Some of the drops from blocks destroyed by explosions caused by mobs are lost in the explosion.", + "gamerule.mobGriefing": "Allow destructive mob actions", + "gamerule.naturalRegeneration": "Regenerate health", + "gamerule.playersNetherPortalCreativeDelay": "Player's Nether portal delay in creative mode", + "gamerule.playersNetherPortalCreativeDelay.description": "Time (in ticks) that a creative mode player needs to stand in a Nether portal before changing dimensions.", + "gamerule.playersNetherPortalDefaultDelay": "Player's Nether portal delay in non-creative mode", + "gamerule.playersNetherPortalDefaultDelay.description": "Time (in ticks) that a non-creative mode player needs to stand in a Nether portal before changing dimensions.", + "gamerule.playersSleepingPercentage": "Sleep percentage", + "gamerule.playersSleepingPercentage.description": "The percentage of players who must be sleeping to skip the night.", + "gamerule.projectilesCanBreakBlocks": "Projectiles can break blocks", + "gamerule.projectilesCanBreakBlocks.description": "Controls whether impact projectiles will destroy blocks that are destructible by them.", + "gamerule.randomTickSpeed": "Random tick speed rate", + "gamerule.reducedDebugInfo": "Reduce debug info", + "gamerule.reducedDebugInfo.description": "Limits contents of debug screen.", + "gamerule.sendCommandFeedback": "Send command feedback", + "gamerule.showDeathMessages": "Show death messages", + "gamerule.snowAccumulationHeight": "Snow accumulation height", + "gamerule.snowAccumulationHeight.description": "When it snows, layers of snow form on the ground up to at most this number of layers.", + "gamerule.spawnChunkRadius": "Spawn chunk radius", + "gamerule.spawnChunkRadius.description": "Amount of chunks that stay loaded around the overworld spawn position.", + "gamerule.spawnRadius": "Respawn location radius", + "gamerule.spawnRadius.description": "Controls the size of the area around the spawn point that players can spawn in.", + "gamerule.spectatorsGenerateChunks": "Allow spectators to generate terrain", + "gamerule.tntExplosionDropDecay": "In TNT explosions, some blocks won't drop their loot", + "gamerule.tntExplosionDropDecay.description": "Some of the drops from blocks destroyed by explosions caused by TNT are lost in the explosion.", + "gamerule.universalAnger": "Universal anger", + "gamerule.universalAnger.description": "Angered neutral mobs attack any nearby player, not just the player that angered them. Works best if forgiveDeadPlayers is disabled.", + "gamerule.waterSourceConversion": "Water converts to source", + "gamerule.waterSourceConversion.description": "When flowing water is surrounded on two sides by water sources it converts into a source.", + "generator.custom": "Custom", + "generator.customized": "Old Customized", + "generator.minecraft.amplified": "AMPLIFIED", + "generator.minecraft.amplified.info": "Notice: Just for fun! Requires a beefy computer.", + "generator.minecraft.debug_all_block_states": "Debug Mode", + "generator.minecraft.flat": "Superflat", + "generator.minecraft.large_biomes": "Large Biomes", + "generator.minecraft.normal": "Default", + "generator.minecraft.single_biome_surface": "Single Biome", + "generator.single_biome_caves": "Caves", + "generator.single_biome_floating_islands": "Floating Islands", + "gui.abuseReport.attestation": "By submitting this report, you confirm that the information you have provided is accurate and complete to the best of your knowledge.", + "gui.abuseReport.comments": "Comments", + "gui.abuseReport.describe": "Sharing details will help us make a well-informed decision.", + "gui.abuseReport.discard.content": "If you leave, you'll lose this report and your comments.\nAre you sure you want to leave?", + "gui.abuseReport.discard.discard": "Leave and Discard Report", + "gui.abuseReport.discard.draft": "Save as Draft", + "gui.abuseReport.discard.return": "Continue Editing", + "gui.abuseReport.discard.title": "Discard report and comments?", + "gui.abuseReport.draft.content": "Would you like to continue editing the existing report or discard it and create a new one?", + "gui.abuseReport.draft.discard": "Discard", + "gui.abuseReport.draft.edit": "Continue Editing", + "gui.abuseReport.draft.quittotitle.content": "Would you like to continue editing it or discard it?", + "gui.abuseReport.draft.quittotitle.title": "You have a draft chat report that will be lost if you quit", + "gui.abuseReport.draft.title": "Edit draft chat report?", + "gui.abuseReport.error.title": "Problem sending your report", + "gui.abuseReport.message": "Where did you observe the bad behavior?\nThis will help us in researching your case.", + "gui.abuseReport.more_comments": "Please describe what happened:", + "gui.abuseReport.name.comment_box_label": "Please describe why you want to report this name:", + "gui.abuseReport.name.reporting": "You are reporting \"%s\".", + "gui.abuseReport.name.title": "Report Inappropriate Player Name", + "gui.abuseReport.observed_what": "Why are you reporting this?", + "gui.abuseReport.read_info": "Learn About Reporting", + "gui.abuseReport.reason.alcohol_tobacco_drugs": "Drugs or alcohol", + "gui.abuseReport.reason.alcohol_tobacco_drugs.description": "Someone is encouraging others to partake in illegal drug related activities or encouraging underage drinking.", + "gui.abuseReport.reason.child_sexual_exploitation_or_abuse": "Child sexual exploitation or abuse", + "gui.abuseReport.reason.child_sexual_exploitation_or_abuse.description": "Someone is talking about or otherwise promoting indecent behavior involving children.", + "gui.abuseReport.reason.defamation_impersonation_false_information": "Defamation", + "gui.abuseReport.reason.defamation_impersonation_false_information.description": "Someone is damaging your or someone else's reputation, for example sharing false information with the aim to exploit or mislead others.", + "gui.abuseReport.reason.description": "Description:", + "gui.abuseReport.reason.false_reporting": "False Reporting", + "gui.abuseReport.reason.generic": "I want to report them", + "gui.abuseReport.reason.generic.description": "I'm annoyed with them / they have done something I do not like.", + "gui.abuseReport.reason.harassment_or_bullying": "Harassment or bullying", + "gui.abuseReport.reason.harassment_or_bullying.description": "Someone is shaming, attacking, or bullying you or someone else. This includes when someone is repeatedly trying to contact you or someone else without consent or posting private personal information about you or someone else without consent (\"doxing\").", + "gui.abuseReport.reason.hate_speech": "Hate speech", + "gui.abuseReport.reason.hate_speech.description": "Someone is attacking you or another player based on characteristics of their identity, like religion, race, or sexuality.", + "gui.abuseReport.reason.imminent_harm": "Threat of harm to others", + "gui.abuseReport.reason.imminent_harm.description": "Someone is threatening to harm you or someone else in real life.", + "gui.abuseReport.reason.narration": "%s: %s", + "gui.abuseReport.reason.non_consensual_intimate_imagery": "Non-consensual intimate imagery", + "gui.abuseReport.reason.non_consensual_intimate_imagery.description": "Someone is talking about, sharing, or otherwise promoting private and intimate images.", + "gui.abuseReport.reason.self_harm_or_suicide": "Self-harm or suicide", + "gui.abuseReport.reason.self_harm_or_suicide.description": "Someone is threatening to harm themselves in real life or talking about harming themselves in real life.", + "gui.abuseReport.reason.sexually_inappropriate": "Sexually inappropriate", + "gui.abuseReport.reason.sexually_inappropriate.description": "Skins that are graphic in nature relating to sexual acts, sexual organs, and sexual violence.", + "gui.abuseReport.reason.terrorism_or_violent_extremism": "Terrorism or violent extremism", + "gui.abuseReport.reason.terrorism_or_violent_extremism.description": "Someone is talking about, promoting, or threatening to commit acts of terrorism or violent extremism for political, religious, ideological, or other reasons.", + "gui.abuseReport.reason.title": "Select Report Category", + "gui.abuseReport.report_sent_msg": "We've successfully received your report. Thank you!\n\nOur team will review it as soon as possible.", + "gui.abuseReport.select_reason": "Select Report Category", + "gui.abuseReport.send": "Send Report", + "gui.abuseReport.send.comment_too_long": "Please shorten the comment", + "gui.abuseReport.send.error_message": "An error was returned while sending your report:\n'%s'", + "gui.abuseReport.send.generic_error": "Encountered an unexpected error while sending your report.", + "gui.abuseReport.send.http_error": "An unexpected HTTP error occurred while sending your report.", + "gui.abuseReport.send.json_error": "Encountered malformed payload while sending your report.", + "gui.abuseReport.send.no_reason": "Please select a report category", + "gui.abuseReport.send.not_attested": "Please read the text above and tick the checkbox to be able to send the report", + "gui.abuseReport.send.service_unavailable": "Unable to reach the Abuse Reporting service. Please make sure you are connected to the internet and try again.", + "gui.abuseReport.sending.title": "Sending your report...", + "gui.abuseReport.sent.title": "Report sent", + "gui.abuseReport.skin.title": "Report Player Skin", + "gui.abuseReport.title": "Report Player", + "gui.abuseReport.type.chat": "Chat Messages", + "gui.abuseReport.type.name": "Player Name", + "gui.abuseReport.type.skin": "Player Skin", + "gui.acknowledge": "Acknowledge", + "gui.advancements": "Advancements", + "gui.all": "All", + "gui.back": "Back", + "gui.banned.description": "%s\n\n%s\n\nLearn more at the following link: %s", + "gui.banned.description.permanent": "Your account is permanently banned, which means you can't play online or join Realms.", + "gui.banned.description.reason": "We recently received a report for bad behavior by your account. Our moderators have now reviewed your case and identified it as %s, which goes against the Minecraft Community Standards.", + "gui.banned.description.reason_id": "Code: %s", + "gui.banned.description.reason_id_message": "Code: %s - %s", + "gui.banned.description.temporary": "%s Until then, you can't play online or join Realms.", + "gui.banned.description.temporary.duration": "Your account is temporarily suspended and will be reactivated in %s.", + "gui.banned.description.unknownreason": "We recently received a report for bad behavior by your account. Our moderators have now reviewed your case and identified that it goes against the Minecraft Community Standards.", + "gui.banned.name.description": "Your current name - \"%s\" - violates our Community Standards. You can play singleplayer, but will need to change your name to play online.\n\nLearn more or submit a case review at the following link: %s", + "gui.banned.name.title": "Name Not Allowed in Multiplayer", + "gui.banned.reason.defamation_impersonation_false_information": "Impersonation or sharing information to exploit or mislead others", + "gui.banned.reason.drugs": "References to illegal drugs", + "gui.banned.reason.extreme_violence_or_gore": "Depictions of real-life excessive violence or gore", + "gui.banned.reason.false_reporting": "Excessive false or inaccurate reports", + "gui.banned.reason.fraud": "Fraudulent acquisition or use of content", + "gui.banned.reason.generic_violation": "Violating Community Standards", + "gui.banned.reason.harassment_or_bullying": "Abusive language used in a directed, harmful manner", + "gui.banned.reason.hate_speech": "Hate speech or discrimination", + "gui.banned.reason.hate_terrorism_notorious_figure": "References to hate groups, terrorist organizations, or notorious figures", + "gui.banned.reason.imminent_harm_to_person_or_property": "Intent to cause real-life harm to persons or property", + "gui.banned.reason.nudity_or_pornography": "Displaying lewd or pornographic material", + "gui.banned.reason.sexually_inappropriate": "Topics or content of a sexual nature", + "gui.banned.reason.spam_or_advertising": "Spam or advertising", + "gui.banned.skin.description": "Your current skin violates our Community Standards. You can still play with a default skin, or select a new one.\n\nLearn more or submit a case review at the following link: %s", + "gui.banned.skin.title": "Skin Not Allowed", + "gui.banned.title.permanent": "Account permanently banned", + "gui.banned.title.temporary": "Account temporarily suspended", + "gui.cancel": "Cancel", + "gui.chatReport.comments": "Comments", + "gui.chatReport.describe": "Sharing details will help us make a well-informed decision.", + "gui.chatReport.discard.content": "If you leave, you'll lose this report and your comments.\nAre you sure you want to leave?", + "gui.chatReport.discard.discard": "Leave and Discard Report", + "gui.chatReport.discard.draft": "Save as Draft", + "gui.chatReport.discard.return": "Continue Editing", + "gui.chatReport.discard.title": "Discard report and comments?", + "gui.chatReport.draft.content": "Would you like to continue editing the existing report or discard it and create a new one?", + "gui.chatReport.draft.discard": "Discard", + "gui.chatReport.draft.edit": "Continue Editing", + "gui.chatReport.draft.quittotitle.content": "Would you like to continue editing it or discard it?", + "gui.chatReport.draft.quittotitle.title": "You have a draft chat report that will be lost if you quit", + "gui.chatReport.draft.title": "Edit draft chat report?", + "gui.chatReport.more_comments": "Please describe what happened:", + "gui.chatReport.observed_what": "Why are you reporting this?", + "gui.chatReport.read_info": "Learn About Reporting", + "gui.chatReport.report_sent_msg": "We've successfully received your report. Thank you!\n\nOur team will review it as soon as possible.", + "gui.chatReport.select_chat": "Select Chat Messages to Report", + "gui.chatReport.select_reason": "Select Report Category", + "gui.chatReport.selected_chat": "%s Chat Message(s) Selected to Report", + "gui.chatReport.send": "Send Report", + "gui.chatReport.send.comments_too_long": "Please shorten the comment", + "gui.chatReport.send.no_reason": "Please select a report category", + "gui.chatReport.send.no_reported_messages": "Please select at least one chat message to report", + "gui.chatReport.send.too_many_messages": "Trying to include too many messages in the report", + "gui.chatReport.title": "Report Player Chat", + "gui.chatSelection.context": "Messages surrounding this selection will be included to provide additional context", + "gui.chatSelection.fold": "%s message(s) hidden", + "gui.chatSelection.heading": "%s %s", + "gui.chatSelection.join": "%s joined the chat", + "gui.chatSelection.message.narrate": "%s said: %s at %s", + "gui.chatSelection.selected": "%s/%s message(s) selected", + "gui.chatSelection.title": "Select Chat Messages to Report", + "gui.continue": "Continue", + "gui.copy_link_to_clipboard": "Copy Link to Clipboard", + "gui.days": "%s day(s)", + "gui.done": "Done", + "gui.down": "Down", + "gui.entity_tooltip.type": "Type: %s", + "gui.fileDropFailure.detail": "Rejected %s files", + "gui.fileDropFailure.title": "Failed to add files", + "gui.hours": "%s hour(s)", + "gui.loadingMinecraft": "Loading Minecraft", + "gui.minutes": "%s minute(s)", + "gui.multiLineEditBox.character_limit": "%s/%s", + "gui.narrate.button": "%s button", + "gui.narrate.editBox": "%s edit box: %s", + "gui.narrate.slider": "%s slider", + "gui.narrate.tab": "%s tab", + "gui.no": "No", + "gui.none": "None", + "gui.ok": "Ok", + "gui.open_report_dir": "Open Report Directory", + "gui.proceed": "Proceed", + "gui.recipebook.moreRecipes": "Right Click for More", + "gui.recipebook.page": "%s/%s", + "gui.recipebook.search_hint": "Search...", + "gui.recipebook.toggleRecipes.all": "Showing All", + "gui.recipebook.toggleRecipes.blastable": "Showing Blastable", + "gui.recipebook.toggleRecipes.craftable": "Showing Craftable", + "gui.recipebook.toggleRecipes.smeltable": "Showing Smeltable", + "gui.recipebook.toggleRecipes.smokable": "Showing Smokable", + "gui.report_to_server": "Report To Server", + "gui.socialInteractions.blocking_hint": "Manage with Microsoft account", + "gui.socialInteractions.empty_blocked": "No blocked players in chat", + "gui.socialInteractions.empty_hidden": "No players hidden in chat", + "gui.socialInteractions.hidden_in_chat": "Chat messages from %s will be hidden", + "gui.socialInteractions.hide": "Hide in Chat", + "gui.socialInteractions.narration.hide": "Hide messages from %s", + "gui.socialInteractions.narration.report": "Report player %s", + "gui.socialInteractions.narration.show": "Show messages from %s", + "gui.socialInteractions.report": "Report", + "gui.socialInteractions.search_empty": "Couldn't find any players with that name", + "gui.socialInteractions.search_hint": "Search...", + "gui.socialInteractions.server_label.multiple": "%s - %s players", + "gui.socialInteractions.server_label.single": "%s - %s player", + "gui.socialInteractions.show": "Show in Chat", + "gui.socialInteractions.shown_in_chat": "Chat messages from %s will be shown", + "gui.socialInteractions.status_blocked": "Blocked", + "gui.socialInteractions.status_blocked_offline": "Blocked - Offline", + "gui.socialInteractions.status_hidden": "Hidden", + "gui.socialInteractions.status_hidden_offline": "Hidden - Offline", + "gui.socialInteractions.status_offline": "Offline", + "gui.socialInteractions.tab_all": "All", + "gui.socialInteractions.tab_blocked": "Blocked", + "gui.socialInteractions.tab_hidden": "Hidden", + "gui.socialInteractions.title": "Social Interactions", + "gui.socialInteractions.tooltip.hide": "Hide messages", + "gui.socialInteractions.tooltip.report": "Report player", + "gui.socialInteractions.tooltip.report.disabled": "The reporting service is unavailable", + "gui.socialInteractions.tooltip.report.no_messages": "No reportable messages from player %s", + "gui.socialInteractions.tooltip.report.not_reportable": "This player can't be reported, because their chat messages can't be verified on this server", + "gui.socialInteractions.tooltip.show": "Show messages", + "gui.stats": "Statistics", + "gui.togglable_slot": "Click to disable slot", + "gui.toMenu": "Back to Server List", + "gui.toRealms": "Back to Realms List", + "gui.toTitle": "Back to Title Screen", + "gui.toWorld": "Back to World List", + "gui.up": "Up", + "gui.yes": "Yes", + "hanging_sign.edit": "Edit Hanging Sign Message", + "instrument.minecraft.admire_goat_horn": "Admire", + "instrument.minecraft.call_goat_horn": "Call", + "instrument.minecraft.dream_goat_horn": "Dream", + "instrument.minecraft.feel_goat_horn": "Feel", + "instrument.minecraft.ponder_goat_horn": "Ponder", + "instrument.minecraft.seek_goat_horn": "Seek", + "instrument.minecraft.sing_goat_horn": "Sing", + "instrument.minecraft.yearn_goat_horn": "Yearn", + "inventory.binSlot": "Destroy Item", + "inventory.hotbarInfo": "Save hotbar with %1$s+%2$s", + "inventory.hotbarSaved": "Item hotbar saved (restore with %1$s+%2$s)", + "item_modifier.unknown": "Unknown item modifier: %s", + "item.canBreak": "Can break:", + "item.canPlace": "Can be placed on:", + "item.canUse.unknown": "Unknown", + "item.color": "Color: %s", + "item.components": "%s component(s)", + "item.disabled": "Disabled item", + "item.durability": "Durability: %s / %s", + "item.dyed": "Dyed", + "item.minecraft.acacia_boat": "Acacia Boat", + "item.minecraft.acacia_chest_boat": "Acacia Boat with Chest", + "item.minecraft.allay_spawn_egg": "Allay Spawn Egg", + "item.minecraft.amethyst_shard": "Amethyst Shard", + "item.minecraft.angler_pottery_shard": "Angler Pottery Shard", + "item.minecraft.angler_pottery_sherd": "Angler Pottery Sherd", + "item.minecraft.apple": "Apple", + "item.minecraft.archer_pottery_shard": "Archer Pottery Shard", + "item.minecraft.archer_pottery_sherd": "Archer Pottery Sherd", + "item.minecraft.armadillo_scute": "Armadillo Scute", + "item.minecraft.armadillo_spawn_egg": "Armadillo Spawn Egg", + "item.minecraft.armor_stand": "Armor Stand", + "item.minecraft.arms_up_pottery_shard": "Arms Up Pottery Shard", + "item.minecraft.arms_up_pottery_sherd": "Arms Up Pottery Sherd", + "item.minecraft.arrow": "Arrow", + "item.minecraft.axolotl_bucket": "Bucket of Axolotl", + "item.minecraft.axolotl_spawn_egg": "Axolotl Spawn Egg", + "item.minecraft.baked_potato": "Baked Potato", + "item.minecraft.bamboo_chest_raft": "Bamboo Raft with Chest", + "item.minecraft.bamboo_raft": "Bamboo Raft", + "item.minecraft.bat_spawn_egg": "Bat Spawn Egg", + "item.minecraft.bee_spawn_egg": "Bee Spawn Egg", + "item.minecraft.beef": "Raw Beef", + "item.minecraft.beetroot": "Beetroot", + "item.minecraft.beetroot_seeds": "Beetroot Seeds", + "item.minecraft.beetroot_soup": "Beetroot Soup", + "item.minecraft.birch_boat": "Birch Boat", + "item.minecraft.birch_chest_boat": "Birch Boat with Chest", + "item.minecraft.black_bundle": "Black Bundle", + "item.minecraft.black_dye": "Black Dye", + "item.minecraft.blade_pottery_shard": "Blade Pottery Shard", + "item.minecraft.blade_pottery_sherd": "Blade Pottery Sherd", + "item.minecraft.blaze_powder": "Blaze Powder", + "item.minecraft.blaze_rod": "Blaze Rod", + "item.minecraft.blaze_spawn_egg": "Blaze Spawn Egg", + "item.minecraft.blue_bundle": "Blue Bundle", + "item.minecraft.blue_dye": "Blue Dye", + "item.minecraft.bogged_spawn_egg": "Bogged Spawn Egg", + "item.minecraft.bolt_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.bolt_armor_trim_smithing_template.new": "Bolt Armor Trim", + "item.minecraft.bone": "Bone", + "item.minecraft.bone_meal": "Bone Meal", + "item.minecraft.book": "Book", + "item.minecraft.bordure_indented_banner_pattern": "Bordure Indented Banner Pattern", + "item.minecraft.bow": "Bow", + "item.minecraft.bowl": "Bowl", + "item.minecraft.bread": "Bread", + "item.minecraft.breeze_rod": "Breeze Rod", + "item.minecraft.breeze_spawn_egg": "Breeze Spawn Egg", + "item.minecraft.brewer_pottery_shard": "Brewer Pottery Shard", + "item.minecraft.brewer_pottery_sherd": "Brewer Pottery Sherd", + "item.minecraft.brewing_stand": "Brewing Stand", + "item.minecraft.brick": "Brick", + "item.minecraft.brown_bundle": "Brown Bundle", + "item.minecraft.brown_dye": "Brown Dye", + "item.minecraft.brush": "Brush", + "item.minecraft.bucket": "Bucket", + "item.minecraft.bundle": "Bundle", + "item.minecraft.bundle.empty": "Empty", + "item.minecraft.bundle.empty.description": "Can hold a mixed stack of items", + "item.minecraft.bundle.full": "Full", + "item.minecraft.bundle.fullness": "%s/%s", + "item.minecraft.burn_pottery_shard": "Burn Pottery Shard", + "item.minecraft.burn_pottery_sherd": "Burn Pottery Sherd", + "item.minecraft.camel_spawn_egg": "Camel Spawn Egg", + "item.minecraft.carrot": "Carrot", + "item.minecraft.carrot_on_a_stick": "Carrot on a Stick", + "item.minecraft.cat_spawn_egg": "Cat Spawn Egg", + "item.minecraft.cauldron": "Cauldron", + "item.minecraft.cave_spider_spawn_egg": "Cave Spider Spawn Egg", + "item.minecraft.chainmail_boots": "Chainmail Boots", + "item.minecraft.chainmail_chestplate": "Chainmail Chestplate", + "item.minecraft.chainmail_helmet": "Chainmail Helmet", + "item.minecraft.chainmail_leggings": "Chainmail Leggings", + "item.minecraft.charcoal": "Charcoal", + "item.minecraft.cherry_boat": "Cherry Boat", + "item.minecraft.cherry_chest_boat": "Cherry Boat with Chest", + "item.minecraft.chest_minecart": "Minecart with Chest", + "item.minecraft.chicken": "Raw Chicken", + "item.minecraft.chicken_spawn_egg": "Chicken Spawn Egg", + "item.minecraft.chorus_fruit": "Chorus Fruit", + "item.minecraft.clay_ball": "Clay Ball", + "item.minecraft.clock": "Clock", + "item.minecraft.coal": "Coal", + "item.minecraft.coast_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.coast_armor_trim_smithing_template.new": "Coast Armor Trim", + "item.minecraft.cocoa_beans": "Cocoa Beans", + "item.minecraft.cod": "Raw Cod", + "item.minecraft.cod_bucket": "Bucket of Cod", + "item.minecraft.cod_spawn_egg": "Cod Spawn Egg", + "item.minecraft.command_block_minecart": "Minecart with Command Block", + "item.minecraft.compass": "Compass", + "item.minecraft.cooked_beef": "Steak", + "item.minecraft.cooked_chicken": "Cooked Chicken", + "item.minecraft.cooked_cod": "Cooked Cod", + "item.minecraft.cooked_mutton": "Cooked Mutton", + "item.minecraft.cooked_porkchop": "Cooked Porkchop", + "item.minecraft.cooked_rabbit": "Cooked Rabbit", + "item.minecraft.cooked_salmon": "Cooked Salmon", + "item.minecraft.cookie": "Cookie", + "item.minecraft.copper_ingot": "Copper Ingot", + "item.minecraft.cow_spawn_egg": "Cow Spawn Egg", + "item.minecraft.creaking_spawn_egg": "Creaking Spawn Egg", + "item.minecraft.creeper_banner_pattern": "Banner Pattern", + "item.minecraft.creeper_banner_pattern.desc": "Creeper Charge", + "item.minecraft.creeper_banner_pattern.new": "Creeper Charge Banner Pattern", + "item.minecraft.creeper_spawn_egg": "Creeper Spawn Egg", + "item.minecraft.crossbow": "Crossbow", + "item.minecraft.crossbow.projectile": "Projectile:", + "item.minecraft.cyan_bundle": "Cyan Bundle", + "item.minecraft.cyan_dye": "Cyan Dye", + "item.minecraft.danger_pottery_shard": "Danger Pottery Shard", + "item.minecraft.danger_pottery_sherd": "Danger Pottery Sherd", + "item.minecraft.dark_oak_boat": "Dark Oak Boat", + "item.minecraft.dark_oak_chest_boat": "Dark Oak Boat with Chest", + "item.minecraft.debug_stick": "Debug Stick", + "item.minecraft.debug_stick.empty": "%s has no properties", + "item.minecraft.debug_stick.select": "selected \"%s\" (%s)", + "item.minecraft.debug_stick.update": "\"%s\" to %s", + "item.minecraft.diamond": "Diamond", + "item.minecraft.diamond_axe": "Diamond Axe", + "item.minecraft.diamond_boots": "Diamond Boots", + "item.minecraft.diamond_chestplate": "Diamond Chestplate", + "item.minecraft.diamond_helmet": "Diamond Helmet", + "item.minecraft.diamond_hoe": "Diamond Hoe", + "item.minecraft.diamond_horse_armor": "Diamond Horse Armor", + "item.minecraft.diamond_leggings": "Diamond Leggings", + "item.minecraft.diamond_pickaxe": "Diamond Pickaxe", + "item.minecraft.diamond_shovel": "Diamond Shovel", + "item.minecraft.diamond_sword": "Diamond Sword", + "item.minecraft.disc_fragment_5": "Disc Fragment", + "item.minecraft.disc_fragment_5.desc": "Music Disc - 5", + "item.minecraft.dolphin_spawn_egg": "Dolphin Spawn Egg", + "item.minecraft.donkey_spawn_egg": "Donkey Spawn Egg", + "item.minecraft.dragon_breath": "Dragon's Breath", + "item.minecraft.dried_kelp": "Dried Kelp", + "item.minecraft.drowned_spawn_egg": "Drowned Spawn Egg", + "item.minecraft.dune_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.dune_armor_trim_smithing_template.new": "Dune Armor Trim", + "item.minecraft.echo_shard": "Echo Shard", + "item.minecraft.egg": "Egg", + "item.minecraft.elder_guardian_spawn_egg": "Elder Guardian Spawn Egg", + "item.minecraft.elytra": "Elytra", + "item.minecraft.emerald": "Emerald", + "item.minecraft.enchanted_book": "Enchanted Book", + "item.minecraft.enchanted_golden_apple": "Enchanted Golden Apple", + "item.minecraft.end_crystal": "End Crystal", + "item.minecraft.ender_dragon_spawn_egg": "Ender Dragon Spawn Egg", + "item.minecraft.ender_eye": "Eye of Ender", + "item.minecraft.ender_pearl": "Ender Pearl", + "item.minecraft.enderman_spawn_egg": "Enderman Spawn Egg", + "item.minecraft.endermite_spawn_egg": "Endermite Spawn Egg", + "item.minecraft.evoker_spawn_egg": "Evoker Spawn Egg", + "item.minecraft.experience_bottle": "Bottle o' Enchanting", + "item.minecraft.explorer_pottery_shard": "Explorer Pottery Shard", + "item.minecraft.explorer_pottery_sherd": "Explorer Pottery Sherd", + "item.minecraft.eye_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.eye_armor_trim_smithing_template.new": "Eye Armor Trim", + "item.minecraft.feather": "Feather", + "item.minecraft.fermented_spider_eye": "Fermented Spider Eye", + "item.minecraft.field_masoned_banner_pattern": "Field Masoned Banner Pattern", + "item.minecraft.filled_map": "Map", + "item.minecraft.fire_charge": "Fire Charge", + "item.minecraft.firework_rocket": "Firework Rocket", + "item.minecraft.firework_rocket.flight": "Flight Duration:", + "item.minecraft.firework_star": "Firework Star", + "item.minecraft.firework_star.black": "Black", + "item.minecraft.firework_star.blue": "Blue", + "item.minecraft.firework_star.brown": "Brown", + "item.minecraft.firework_star.custom_color": "Custom", + "item.minecraft.firework_star.cyan": "Cyan", + "item.minecraft.firework_star.fade_to": "Fade to", + "item.minecraft.firework_star.flicker": "Twinkle", + "item.minecraft.firework_star.gray": "Gray", + "item.minecraft.firework_star.green": "Green", + "item.minecraft.firework_star.light_blue": "Light Blue", + "item.minecraft.firework_star.light_gray": "Light Gray", + "item.minecraft.firework_star.lime": "Lime", + "item.minecraft.firework_star.magenta": "Magenta", + "item.minecraft.firework_star.orange": "Orange", + "item.minecraft.firework_star.pink": "Pink", + "item.minecraft.firework_star.purple": "Purple", + "item.minecraft.firework_star.red": "Red", + "item.minecraft.firework_star.shape": "Unknown Shape", + "item.minecraft.firework_star.shape.burst": "Burst", + "item.minecraft.firework_star.shape.creeper": "Creeper-shaped", + "item.minecraft.firework_star.shape.large_ball": "Large Ball", + "item.minecraft.firework_star.shape.small_ball": "Small Ball", + "item.minecraft.firework_star.shape.star": "Star-shaped", + "item.minecraft.firework_star.trail": "Trail", + "item.minecraft.firework_star.white": "White", + "item.minecraft.firework_star.yellow": "Yellow", + "item.minecraft.fishing_rod": "Fishing Rod", + "item.minecraft.flint": "Flint", + "item.minecraft.flint_and_steel": "Flint and Steel", + "item.minecraft.flow_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.flow_armor_trim_smithing_template.new": "Flow Armor Trim", + "item.minecraft.flow_banner_pattern": "Banner Pattern", + "item.minecraft.flow_banner_pattern.desc": "Flow", + "item.minecraft.flow_banner_pattern.new": "Flow Banner Pattern", + "item.minecraft.flow_pottery_sherd": "Flow Pottery Sherd", + "item.minecraft.flower_banner_pattern": "Banner Pattern", + "item.minecraft.flower_banner_pattern.desc": "Flower Charge", + "item.minecraft.flower_banner_pattern.new": "Flower Charge Banner Pattern", + "item.minecraft.flower_pot": "Flower Pot", + "item.minecraft.fox_spawn_egg": "Fox Spawn Egg", + "item.minecraft.friend_pottery_shard": "Friend Pottery Shard", + "item.minecraft.friend_pottery_sherd": "Friend Pottery Sherd", + "item.minecraft.frog_spawn_egg": "Frog Spawn Egg", + "item.minecraft.furnace_minecart": "Minecart with Furnace", + "item.minecraft.ghast_spawn_egg": "Ghast Spawn Egg", + "item.minecraft.ghast_tear": "Ghast Tear", + "item.minecraft.glass_bottle": "Glass Bottle", + "item.minecraft.glistering_melon_slice": "Glistering Melon Slice", + "item.minecraft.globe_banner_pattern": "Banner Pattern", + "item.minecraft.globe_banner_pattern.desc": "Globe", + "item.minecraft.globe_banner_pattern.new": "Globe Banner Pattern", + "item.minecraft.glow_berries": "Glow Berries", + "item.minecraft.glow_ink_sac": "Glow Ink Sac", + "item.minecraft.glow_item_frame": "Glow Item Frame", + "item.minecraft.glow_squid_spawn_egg": "Glow Squid Spawn Egg", + "item.minecraft.glowstone_dust": "Glowstone Dust", + "item.minecraft.goat_horn": "Goat Horn", + "item.minecraft.goat_spawn_egg": "Goat Spawn Egg", + "item.minecraft.gold_ingot": "Gold Ingot", + "item.minecraft.gold_nugget": "Gold Nugget", + "item.minecraft.golden_apple": "Golden Apple", + "item.minecraft.golden_axe": "Golden Axe", + "item.minecraft.golden_boots": "Golden Boots", + "item.minecraft.golden_carrot": "Golden Carrot", + "item.minecraft.golden_chestplate": "Golden Chestplate", + "item.minecraft.golden_helmet": "Golden Helmet", + "item.minecraft.golden_hoe": "Golden Hoe", + "item.minecraft.golden_horse_armor": "Golden Horse Armor", + "item.minecraft.golden_leggings": "Golden Leggings", + "item.minecraft.golden_pickaxe": "Golden Pickaxe", + "item.minecraft.golden_shovel": "Golden Shovel", + "item.minecraft.golden_sword": "Golden Sword", + "item.minecraft.gray_bundle": "Gray Bundle", + "item.minecraft.gray_dye": "Gray Dye", + "item.minecraft.green_bundle": "Green Bundle", + "item.minecraft.green_dye": "Green Dye", + "item.minecraft.guardian_spawn_egg": "Guardian Spawn Egg", + "item.minecraft.gunpowder": "Gunpowder", + "item.minecraft.guster_banner_pattern": "Banner Pattern", + "item.minecraft.guster_banner_pattern.desc": "Guster", + "item.minecraft.guster_banner_pattern.new": "Guster Banner Pattern", + "item.minecraft.guster_pottery_sherd": "Guster Pottery Sherd", + "item.minecraft.heart_of_the_sea": "Heart of the Sea", + "item.minecraft.heart_pottery_shard": "Heart Pottery Shard", + "item.minecraft.heart_pottery_sherd": "Heart Pottery Sherd", + "item.minecraft.heartbreak_pottery_shard": "Heartbreak Pottery Shard", + "item.minecraft.heartbreak_pottery_sherd": "Heartbreak Pottery Sherd", + "item.minecraft.hoglin_spawn_egg": "Hoglin Spawn Egg", + "item.minecraft.honey_bottle": "Honey Bottle", + "item.minecraft.honeycomb": "Honeycomb", + "item.minecraft.hopper_minecart": "Minecart with Hopper", + "item.minecraft.horse_spawn_egg": "Horse Spawn Egg", + "item.minecraft.host_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.host_armor_trim_smithing_template.new": "Host Armor Trim", + "item.minecraft.howl_pottery_shard": "Howl Pottery Shard", + "item.minecraft.howl_pottery_sherd": "Howl Pottery Sherd", + "item.minecraft.husk_spawn_egg": "Husk Spawn Egg", + "item.minecraft.ink_sac": "Ink Sac", + "item.minecraft.iron_axe": "Iron Axe", + "item.minecraft.iron_boots": "Iron Boots", + "item.minecraft.iron_chestplate": "Iron Chestplate", + "item.minecraft.iron_golem_spawn_egg": "Iron Golem Spawn Egg", + "item.minecraft.iron_helmet": "Iron Helmet", + "item.minecraft.iron_hoe": "Iron Hoe", + "item.minecraft.iron_horse_armor": "Iron Horse Armor", + "item.minecraft.iron_ingot": "Iron Ingot", + "item.minecraft.iron_leggings": "Iron Leggings", + "item.minecraft.iron_nugget": "Iron Nugget", + "item.minecraft.iron_pickaxe": "Iron Pickaxe", + "item.minecraft.iron_shovel": "Iron Shovel", + "item.minecraft.iron_sword": "Iron Sword", + "item.minecraft.item_frame": "Item Frame", + "item.minecraft.jungle_boat": "Jungle Boat", + "item.minecraft.jungle_chest_boat": "Jungle Boat with Chest", + "item.minecraft.knowledge_book": "Knowledge Book", + "item.minecraft.lapis_lazuli": "Lapis Lazuli", + "item.minecraft.lava_bucket": "Lava Bucket", + "item.minecraft.lead": "Lead", + "item.minecraft.leather": "Leather", + "item.minecraft.leather_boots": "Leather Boots", + "item.minecraft.leather_chestplate": "Leather Tunic", + "item.minecraft.leather_helmet": "Leather Cap", + "item.minecraft.leather_horse_armor": "Leather Horse Armor", + "item.minecraft.leather_leggings": "Leather Pants", + "item.minecraft.light_blue_bundle": "Light Blue Bundle", + "item.minecraft.light_blue_dye": "Light Blue Dye", + "item.minecraft.light_gray_bundle": "Light Gray Bundle", + "item.minecraft.light_gray_dye": "Light Gray Dye", + "item.minecraft.lime_bundle": "Lime Bundle", + "item.minecraft.lime_dye": "Lime Dye", + "item.minecraft.lingering_potion": "Lingering Potion", + "item.minecraft.lingering_potion.effect.awkward": "Awkward Lingering Potion", + "item.minecraft.lingering_potion.effect.empty": "Lingering Uncraftable Potion", + "item.minecraft.lingering_potion.effect.fire_resistance": "Lingering Potion of Fire Resistance", + "item.minecraft.lingering_potion.effect.harming": "Lingering Potion of Harming", + "item.minecraft.lingering_potion.effect.healing": "Lingering Potion of Healing", + "item.minecraft.lingering_potion.effect.infested": "Lingering Potion of Infestation", + "item.minecraft.lingering_potion.effect.invisibility": "Lingering Potion of Invisibility", + "item.minecraft.lingering_potion.effect.leaping": "Lingering Potion of Leaping", + "item.minecraft.lingering_potion.effect.levitation": "Lingering Potion of Levitation", + "item.minecraft.lingering_potion.effect.luck": "Lingering Potion of Luck", + "item.minecraft.lingering_potion.effect.mundane": "Mundane Lingering Potion", + "item.minecraft.lingering_potion.effect.night_vision": "Lingering Potion of Night Vision", + "item.minecraft.lingering_potion.effect.oozing": "Lingering Potion of Oozing", + "item.minecraft.lingering_potion.effect.poison": "Lingering Potion of Poison", + "item.minecraft.lingering_potion.effect.regeneration": "Lingering Potion of Regeneration", + "item.minecraft.lingering_potion.effect.slow_falling": "Lingering Potion of Slow Falling", + "item.minecraft.lingering_potion.effect.slowness": "Lingering Potion of Slowness", + "item.minecraft.lingering_potion.effect.strength": "Lingering Potion of Strength", + "item.minecraft.lingering_potion.effect.swiftness": "Lingering Potion of Swiftness", + "item.minecraft.lingering_potion.effect.thick": "Thick Lingering Potion", + "item.minecraft.lingering_potion.effect.turtle_master": "Lingering Potion of the Turtle Master", + "item.minecraft.lingering_potion.effect.water": "Lingering Water Bottle", + "item.minecraft.lingering_potion.effect.water_breathing": "Lingering Potion of Water Breathing", + "item.minecraft.lingering_potion.effect.weakness": "Lingering Potion of Weakness", + "item.minecraft.lingering_potion.effect.weaving": "Lingering Potion of Weaving", + "item.minecraft.lingering_potion.effect.wind_charged": "Lingering Potion of Wind Charging", + "item.minecraft.llama_spawn_egg": "Llama Spawn Egg", + "item.minecraft.lodestone_compass": "Lodestone Compass", + "item.minecraft.mace": "Mace", + "item.minecraft.magenta_bundle": "Magenta Bundle", + "item.minecraft.magenta_dye": "Magenta Dye", + "item.minecraft.magma_cream": "Magma Cream", + "item.minecraft.magma_cube_spawn_egg": "Magma Cube Spawn Egg", + "item.minecraft.mangrove_boat": "Mangrove Boat", + "item.minecraft.mangrove_chest_boat": "Mangrove Boat with Chest", + "item.minecraft.map": "Empty Map", + "item.minecraft.melon_seeds": "Melon Seeds", + "item.minecraft.melon_slice": "Melon Slice", + "item.minecraft.milk_bucket": "Milk Bucket", + "item.minecraft.minecart": "Minecart", + "item.minecraft.miner_pottery_shard": "Miner Pottery Shard", + "item.minecraft.miner_pottery_sherd": "Miner Pottery Sherd", + "item.minecraft.mojang_banner_pattern": "Banner Pattern", + "item.minecraft.mojang_banner_pattern.desc": "Thing", + "item.minecraft.mojang_banner_pattern.new": "Thing Banner Pattern", + "item.minecraft.mooshroom_spawn_egg": "Mooshroom Spawn Egg", + "item.minecraft.mourner_pottery_shard": "Mourner Pottery Shard", + "item.minecraft.mourner_pottery_sherd": "Mourner Pottery Sherd", + "item.minecraft.mule_spawn_egg": "Mule Spawn Egg", + "item.minecraft.mushroom_stew": "Mushroom Stew", + "item.minecraft.music_disc_5": "Music Disc", + "item.minecraft.music_disc_5.desc": "Samuel Åberg - 5", + "item.minecraft.music_disc_11": "Music Disc", + "item.minecraft.music_disc_11.desc": "C418 - 11", + "item.minecraft.music_disc_13": "Music Disc", + "item.minecraft.music_disc_13.desc": "C418 - 13", + "item.minecraft.music_disc_blocks": "Music Disc", + "item.minecraft.music_disc_blocks.desc": "C418 - blocks", + "item.minecraft.music_disc_cat": "Music Disc", + "item.minecraft.music_disc_cat.desc": "C418 - cat", + "item.minecraft.music_disc_chirp": "Music Disc", + "item.minecraft.music_disc_chirp.desc": "C418 - chirp", + "item.minecraft.music_disc_creator": "Music Disc", + "item.minecraft.music_disc_creator_music_box": "Music Disc", + "item.minecraft.music_disc_creator_music_box.desc": "Lena Raine - Creator (Music Box)", + "item.minecraft.music_disc_creator.desc": "Lena Raine - Creator", + "item.minecraft.music_disc_far": "Music Disc", + "item.minecraft.music_disc_far.desc": "C418 - far", + "item.minecraft.music_disc_mall": "Music Disc", + "item.minecraft.music_disc_mall.desc": "C418 - mall", + "item.minecraft.music_disc_mellohi": "Music Disc", + "item.minecraft.music_disc_mellohi.desc": "C418 - mellohi", + "item.minecraft.music_disc_otherside": "Music Disc", + "item.minecraft.music_disc_otherside.desc": "Lena Raine - otherside", + "item.minecraft.music_disc_pigstep": "Music Disc", + "item.minecraft.music_disc_pigstep.desc": "Lena Raine - Pigstep", + "item.minecraft.music_disc_precipice": "Music Disc", + "item.minecraft.music_disc_precipice.desc": "Aaron Cherof - Precipice", + "item.minecraft.music_disc_relic": "Music Disc", + "item.minecraft.music_disc_relic.desc": "Aaron Cherof - Relic", + "item.minecraft.music_disc_stal": "Music Disc", + "item.minecraft.music_disc_stal.desc": "C418 - stal", + "item.minecraft.music_disc_strad": "Music Disc", + "item.minecraft.music_disc_strad.desc": "C418 - strad", + "item.minecraft.music_disc_wait": "Music Disc", + "item.minecraft.music_disc_wait.desc": "C418 - wait", + "item.minecraft.music_disc_ward": "Music Disc", + "item.minecraft.music_disc_ward.desc": "C418 - ward", + "item.minecraft.mutton": "Raw Mutton", + "item.minecraft.name_tag": "Name Tag", + "item.minecraft.nautilus_shell": "Nautilus Shell", + "item.minecraft.nether_brick": "Nether Brick", + "item.minecraft.nether_star": "Nether Star", + "item.minecraft.nether_wart": "Nether Wart", + "item.minecraft.netherite_axe": "Netherite Axe", + "item.minecraft.netherite_boots": "Netherite Boots", + "item.minecraft.netherite_chestplate": "Netherite Chestplate", + "item.minecraft.netherite_helmet": "Netherite Helmet", + "item.minecraft.netherite_hoe": "Netherite Hoe", + "item.minecraft.netherite_ingot": "Netherite Ingot", + "item.minecraft.netherite_leggings": "Netherite Leggings", + "item.minecraft.netherite_pickaxe": "Netherite Pickaxe", + "item.minecraft.netherite_scrap": "Netherite Scrap", + "item.minecraft.netherite_shovel": "Netherite Shovel", + "item.minecraft.netherite_sword": "Netherite Sword", + "item.minecraft.netherite_upgrade_smithing_template": "Smithing Template", + "item.minecraft.netherite_upgrade_smithing_template.new": "Netherite Upgrade", + "item.minecraft.oak_boat": "Oak Boat", + "item.minecraft.oak_chest_boat": "Oak Boat with Chest", + "item.minecraft.ocelot_spawn_egg": "Ocelot Spawn Egg", + "item.minecraft.ominous_bottle": "Ominous Bottle", + "item.minecraft.ominous_trial_key": "Ominous Trial Key", + "item.minecraft.orange_bundle": "Orange Bundle", + "item.minecraft.orange_dye": "Orange Dye", + "item.minecraft.painting": "Painting", + "item.minecraft.pale_oak_boat": "Pale Oak Boat", + "item.minecraft.pale_oak_chest_boat": "Pale Oak Boat with Chest", + "item.minecraft.panda_spawn_egg": "Panda Spawn Egg", + "item.minecraft.paper": "Paper", + "item.minecraft.parrot_spawn_egg": "Parrot Spawn Egg", + "item.minecraft.phantom_membrane": "Phantom Membrane", + "item.minecraft.phantom_spawn_egg": "Phantom Spawn Egg", + "item.minecraft.pig_spawn_egg": "Pig Spawn Egg", + "item.minecraft.piglin_banner_pattern": "Banner Pattern", + "item.minecraft.piglin_banner_pattern.desc": "Snout", + "item.minecraft.piglin_banner_pattern.new": "Snout Banner Pattern", + "item.minecraft.piglin_brute_spawn_egg": "Piglin Brute Spawn Egg", + "item.minecraft.piglin_spawn_egg": "Piglin Spawn Egg", + "item.minecraft.pillager_spawn_egg": "Pillager Spawn Egg", + "item.minecraft.pink_bundle": "Pink Bundle", + "item.minecraft.pink_dye": "Pink Dye", + "item.minecraft.pitcher_plant": "Pitcher Plant", + "item.minecraft.pitcher_pod": "Pitcher Pod", + "item.minecraft.plenty_pottery_shard": "Plenty Pottery Shard", + "item.minecraft.plenty_pottery_sherd": "Plenty Pottery Sherd", + "item.minecraft.poisonous_potato": "Poisonous Potato", + "item.minecraft.polar_bear_spawn_egg": "Polar Bear Spawn Egg", + "item.minecraft.popped_chorus_fruit": "Popped Chorus Fruit", + "item.minecraft.porkchop": "Raw Porkchop", + "item.minecraft.potato": "Potato", + "item.minecraft.potion": "Potion", + "item.minecraft.potion.effect.awkward": "Awkward Potion", + "item.minecraft.potion.effect.empty": "Uncraftable Potion", + "item.minecraft.potion.effect.fire_resistance": "Potion of Fire Resistance", + "item.minecraft.potion.effect.harming": "Potion of Harming", + "item.minecraft.potion.effect.healing": "Potion of Healing", + "item.minecraft.potion.effect.infested": "Potion of Infestation", + "item.minecraft.potion.effect.invisibility": "Potion of Invisibility", + "item.minecraft.potion.effect.leaping": "Potion of Leaping", + "item.minecraft.potion.effect.levitation": "Potion of Levitation", + "item.minecraft.potion.effect.luck": "Potion of Luck", + "item.minecraft.potion.effect.mundane": "Mundane Potion", + "item.minecraft.potion.effect.night_vision": "Potion of Night Vision", + "item.minecraft.potion.effect.oozing": "Potion of Oozing", + "item.minecraft.potion.effect.poison": "Potion of Poison", + "item.minecraft.potion.effect.regeneration": "Potion of Regeneration", + "item.minecraft.potion.effect.slow_falling": "Potion of Slow Falling", + "item.minecraft.potion.effect.slowness": "Potion of Slowness", + "item.minecraft.potion.effect.strength": "Potion of Strength", + "item.minecraft.potion.effect.swiftness": "Potion of Swiftness", + "item.minecraft.potion.effect.thick": "Thick Potion", + "item.minecraft.potion.effect.turtle_master": "Potion of the Turtle Master", + "item.minecraft.potion.effect.water": "Water Bottle", + "item.minecraft.potion.effect.water_breathing": "Potion of Water Breathing", + "item.minecraft.potion.effect.weakness": "Potion of Weakness", + "item.minecraft.potion.effect.weaving": "Potion of Weaving", + "item.minecraft.potion.effect.wind_charged": "Potion of Wind Charging", + "item.minecraft.pottery_shard_archer": "Archer Pottery Shard", + "item.minecraft.pottery_shard_arms_up": "Arms Up Pottery Shard", + "item.minecraft.pottery_shard_prize": "Prize Pottery Shard", + "item.minecraft.pottery_shard_skull": "Skull Pottery Shard", + "item.minecraft.powder_snow_bucket": "Powder Snow Bucket", + "item.minecraft.prismarine_crystals": "Prismarine Crystals", + "item.minecraft.prismarine_shard": "Prismarine Shard", + "item.minecraft.prize_pottery_shard": "Prize Pottery Shard", + "item.minecraft.prize_pottery_sherd": "Prize Pottery Sherd", + "item.minecraft.pufferfish": "Pufferfish", + "item.minecraft.pufferfish_bucket": "Bucket of Pufferfish", + "item.minecraft.pufferfish_spawn_egg": "Pufferfish Spawn Egg", + "item.minecraft.pumpkin_pie": "Pumpkin Pie", + "item.minecraft.pumpkin_seeds": "Pumpkin Seeds", + "item.minecraft.purple_bundle": "Purple Bundle", + "item.minecraft.purple_dye": "Purple Dye", + "item.minecraft.quartz": "Nether Quartz", + "item.minecraft.rabbit": "Raw Rabbit", + "item.minecraft.rabbit_foot": "Rabbit's Foot", + "item.minecraft.rabbit_hide": "Rabbit Hide", + "item.minecraft.rabbit_spawn_egg": "Rabbit Spawn Egg", + "item.minecraft.rabbit_stew": "Rabbit Stew", + "item.minecraft.raiser_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.raiser_armor_trim_smithing_template.new": "Raiser Armor Trim", + "item.minecraft.ravager_spawn_egg": "Ravager Spawn Egg", + "item.minecraft.raw_copper": "Raw Copper", + "item.minecraft.raw_gold": "Raw Gold", + "item.minecraft.raw_iron": "Raw Iron", + "item.minecraft.recovery_compass": "Recovery Compass", + "item.minecraft.red_bundle": "Red Bundle", + "item.minecraft.red_dye": "Red Dye", + "item.minecraft.redstone": "Redstone Dust", + "item.minecraft.resin_brick": "Resin Brick", + "item.minecraft.resin_clump": "Resin Clump", + "item.minecraft.rib_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.rib_armor_trim_smithing_template.new": "Rib Armor Trim", + "item.minecraft.rotten_flesh": "Rotten Flesh", + "item.minecraft.saddle": "Saddle", + "item.minecraft.salmon": "Raw Salmon", + "item.minecraft.salmon_bucket": "Bucket of Salmon", + "item.minecraft.salmon_spawn_egg": "Salmon Spawn Egg", + "item.minecraft.scrape_pottery_sherd": "Scrape Pottery Sherd", + "item.minecraft.scute": "Scute", + "item.minecraft.sentry_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.sentry_armor_trim_smithing_template.new": "Sentry Armor Trim", + "item.minecraft.shaper_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.shaper_armor_trim_smithing_template.new": "Shaper Armor Trim", + "item.minecraft.sheaf_pottery_shard": "Sheaf Pottery Shard", + "item.minecraft.sheaf_pottery_sherd": "Sheaf Pottery Sherd", + "item.minecraft.shears": "Shears", + "item.minecraft.sheep_spawn_egg": "Sheep Spawn Egg", + "item.minecraft.shelter_pottery_shard": "Shelter Pottery Shard", + "item.minecraft.shelter_pottery_sherd": "Shelter Pottery Sherd", + "item.minecraft.shield": "Shield", + "item.minecraft.shield.black": "Black Shield", + "item.minecraft.shield.blue": "Blue Shield", + "item.minecraft.shield.brown": "Brown Shield", + "item.minecraft.shield.cyan": "Cyan Shield", + "item.minecraft.shield.gray": "Gray Shield", + "item.minecraft.shield.green": "Green Shield", + "item.minecraft.shield.light_blue": "Light Blue Shield", + "item.minecraft.shield.light_gray": "Light Gray Shield", + "item.minecraft.shield.lime": "Lime Shield", + "item.minecraft.shield.magenta": "Magenta Shield", + "item.minecraft.shield.orange": "Orange Shield", + "item.minecraft.shield.pink": "Pink Shield", + "item.minecraft.shield.purple": "Purple Shield", + "item.minecraft.shield.red": "Red Shield", + "item.minecraft.shield.white": "White Shield", + "item.minecraft.shield.yellow": "Yellow Shield", + "item.minecraft.shulker_shell": "Shulker Shell", + "item.minecraft.shulker_spawn_egg": "Shulker Spawn Egg", + "item.minecraft.sign": "Sign", + "item.minecraft.silence_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.silence_armor_trim_smithing_template.new": "Silence Armor Trim", + "item.minecraft.silverfish_spawn_egg": "Silverfish Spawn Egg", + "item.minecraft.skeleton_horse_spawn_egg": "Skeleton Horse Spawn Egg", + "item.minecraft.skeleton_spawn_egg": "Skeleton Spawn Egg", + "item.minecraft.skull_banner_pattern": "Banner Pattern", + "item.minecraft.skull_banner_pattern.desc": "Skull Charge", + "item.minecraft.skull_banner_pattern.new": "Skull Charge Banner Pattern", + "item.minecraft.skull_pottery_shard": "Skull Pottery Shard", + "item.minecraft.skull_pottery_sherd": "Skull Pottery Sherd", + "item.minecraft.slime_ball": "Slimeball", + "item.minecraft.slime_spawn_egg": "Slime Spawn Egg", + "item.minecraft.smithing_template": "Smithing Template", + "item.minecraft.smithing_template.applies_to": "Applies to:", + "item.minecraft.smithing_template.armor_trim.additions_slot_description": "Add ingot or crystal", + "item.minecraft.smithing_template.armor_trim.applies_to": "Armor", + "item.minecraft.smithing_template.armor_trim.base_slot_description": "Add a piece of armor", + "item.minecraft.smithing_template.armor_trim.ingredients": "Ingots & Crystals", + "item.minecraft.smithing_template.ingredients": "Ingredients:", + "item.minecraft.smithing_template.netherite_upgrade.additions_slot_description": "Add Netherite Ingot", + "item.minecraft.smithing_template.netherite_upgrade.applies_to": "Diamond Equipment", + "item.minecraft.smithing_template.netherite_upgrade.base_slot_description": "Add diamond armor, weapon, or tool", + "item.minecraft.smithing_template.netherite_upgrade.ingredients": "Netherite Ingot", + "item.minecraft.smithing_template.upgrade": "Upgrade: ", + "item.minecraft.sniffer_spawn_egg": "Sniffer Spawn Egg", + "item.minecraft.snort_pottery_shard": "Snort Pottery Shard", + "item.minecraft.snort_pottery_sherd": "Snort Pottery Sherd", + "item.minecraft.snout_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.snout_armor_trim_smithing_template.new": "Snout Armor Trim", + "item.minecraft.snow_golem_spawn_egg": "Snow Golem Spawn Egg", + "item.minecraft.snowball": "Snowball", + "item.minecraft.spectral_arrow": "Spectral Arrow", + "item.minecraft.spider_eye": "Spider Eye", + "item.minecraft.spider_spawn_egg": "Spider Spawn Egg", + "item.minecraft.spire_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.spire_armor_trim_smithing_template.new": "Spire Armor Trim", + "item.minecraft.splash_potion": "Splash Potion", + "item.minecraft.splash_potion.effect.awkward": "Awkward Splash Potion", + "item.minecraft.splash_potion.effect.empty": "Splash Uncraftable Potion", + "item.minecraft.splash_potion.effect.fire_resistance": "Splash Potion of Fire Resistance", + "item.minecraft.splash_potion.effect.harming": "Splash Potion of Harming", + "item.minecraft.splash_potion.effect.healing": "Splash Potion of Healing", + "item.minecraft.splash_potion.effect.infested": "Splash Potion of Infestation", + "item.minecraft.splash_potion.effect.invisibility": "Splash Potion of Invisibility", + "item.minecraft.splash_potion.effect.leaping": "Splash Potion of Leaping", + "item.minecraft.splash_potion.effect.levitation": "Splash Potion of Levitation", + "item.minecraft.splash_potion.effect.luck": "Splash Potion of Luck", + "item.minecraft.splash_potion.effect.mundane": "Mundane Splash Potion", + "item.minecraft.splash_potion.effect.night_vision": "Splash Potion of Night Vision", + "item.minecraft.splash_potion.effect.oozing": "Splash Potion of Oozing", + "item.minecraft.splash_potion.effect.poison": "Splash Potion of Poison", + "item.minecraft.splash_potion.effect.regeneration": "Splash Potion of Regeneration", + "item.minecraft.splash_potion.effect.slow_falling": "Splash Potion of Slow Falling", + "item.minecraft.splash_potion.effect.slowness": "Splash Potion of Slowness", + "item.minecraft.splash_potion.effect.strength": "Splash Potion of Strength", + "item.minecraft.splash_potion.effect.swiftness": "Splash Potion of Swiftness", + "item.minecraft.splash_potion.effect.thick": "Thick Splash Potion", + "item.minecraft.splash_potion.effect.turtle_master": "Splash Potion of the Turtle Master", + "item.minecraft.splash_potion.effect.water": "Splash Water Bottle", + "item.minecraft.splash_potion.effect.water_breathing": "Splash Potion of Water Breathing", + "item.minecraft.splash_potion.effect.weakness": "Splash Potion of Weakness", + "item.minecraft.splash_potion.effect.weaving": "Splash Potion of Weaving", + "item.minecraft.splash_potion.effect.wind_charged": "Splash Potion of Wind Charging", + "item.minecraft.spruce_boat": "Spruce Boat", + "item.minecraft.spruce_chest_boat": "Spruce Boat with Chest", + "item.minecraft.spyglass": "Spyglass", + "item.minecraft.squid_spawn_egg": "Squid Spawn Egg", + "item.minecraft.stick": "Stick", + "item.minecraft.stone_axe": "Stone Axe", + "item.minecraft.stone_hoe": "Stone Hoe", + "item.minecraft.stone_pickaxe": "Stone Pickaxe", + "item.minecraft.stone_shovel": "Stone Shovel", + "item.minecraft.stone_sword": "Stone Sword", + "item.minecraft.stray_spawn_egg": "Stray Spawn Egg", + "item.minecraft.strider_spawn_egg": "Strider Spawn Egg", + "item.minecraft.string": "String", + "item.minecraft.sugar": "Sugar", + "item.minecraft.suspicious_stew": "Suspicious Stew", + "item.minecraft.sweet_berries": "Sweet Berries", + "item.minecraft.tadpole_bucket": "Bucket of Tadpole", + "item.minecraft.tadpole_spawn_egg": "Tadpole Spawn Egg", + "item.minecraft.tide_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.tide_armor_trim_smithing_template.new": "Tide Armor Trim", + "item.minecraft.tipped_arrow": "Tipped Arrow", + "item.minecraft.tipped_arrow.effect.awkward": "Tipped Arrow", + "item.minecraft.tipped_arrow.effect.empty": "Uncraftable Tipped Arrow", + "item.minecraft.tipped_arrow.effect.fire_resistance": "Arrow of Fire Resistance", + "item.minecraft.tipped_arrow.effect.harming": "Arrow of Harming", + "item.minecraft.tipped_arrow.effect.healing": "Arrow of Healing", + "item.minecraft.tipped_arrow.effect.infested": "Arrow of Infestation", + "item.minecraft.tipped_arrow.effect.invisibility": "Arrow of Invisibility", + "item.minecraft.tipped_arrow.effect.leaping": "Arrow of Leaping", + "item.minecraft.tipped_arrow.effect.levitation": "Arrow of Levitation", + "item.minecraft.tipped_arrow.effect.luck": "Arrow of Luck", + "item.minecraft.tipped_arrow.effect.mundane": "Tipped Arrow", + "item.minecraft.tipped_arrow.effect.night_vision": "Arrow of Night Vision", + "item.minecraft.tipped_arrow.effect.oozing": "Arrow of Oozing", + "item.minecraft.tipped_arrow.effect.poison": "Arrow of Poison", + "item.minecraft.tipped_arrow.effect.regeneration": "Arrow of Regeneration", + "item.minecraft.tipped_arrow.effect.slow_falling": "Arrow of Slow Falling", + "item.minecraft.tipped_arrow.effect.slowness": "Arrow of Slowness", + "item.minecraft.tipped_arrow.effect.strength": "Arrow of Strength", + "item.minecraft.tipped_arrow.effect.swiftness": "Arrow of Swiftness", + "item.minecraft.tipped_arrow.effect.thick": "Tipped Arrow", + "item.minecraft.tipped_arrow.effect.turtle_master": "Arrow of the Turtle Master", + "item.minecraft.tipped_arrow.effect.water": "Arrow of Splashing", + "item.minecraft.tipped_arrow.effect.water_breathing": "Arrow of Water Breathing", + "item.minecraft.tipped_arrow.effect.weakness": "Arrow of Weakness", + "item.minecraft.tipped_arrow.effect.weaving": "Arrow of Weaving", + "item.minecraft.tipped_arrow.effect.wind_charged": "Arrow of Wind Charging", + "item.minecraft.tnt_minecart": "Minecart with TNT", + "item.minecraft.torchflower_seeds": "Torchflower Seeds", + "item.minecraft.totem_of_undying": "Totem of Undying", + "item.minecraft.trader_llama_spawn_egg": "Trader Llama Spawn Egg", + "item.minecraft.trial_key": "Trial Key", + "item.minecraft.trident": "Trident", + "item.minecraft.tropical_fish": "Tropical Fish", + "item.minecraft.tropical_fish_bucket": "Bucket of Tropical Fish", + "item.minecraft.tropical_fish_spawn_egg": "Tropical Fish Spawn Egg", + "item.minecraft.turtle_helmet": "Turtle Shell", + "item.minecraft.turtle_scute": "Turtle Scute", + "item.minecraft.turtle_spawn_egg": "Turtle Spawn Egg", + "item.minecraft.vex_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.vex_armor_trim_smithing_template.new": "Vex Armor Trim", + "item.minecraft.vex_spawn_egg": "Vex Spawn Egg", + "item.minecraft.villager_spawn_egg": "Villager Spawn Egg", + "item.minecraft.vindicator_spawn_egg": "Vindicator Spawn Egg", + "item.minecraft.wandering_trader_spawn_egg": "Wandering Trader Spawn Egg", + "item.minecraft.ward_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.ward_armor_trim_smithing_template.new": "Ward Armor Trim", + "item.minecraft.warden_spawn_egg": "Warden Spawn Egg", + "item.minecraft.warped_fungus_on_a_stick": "Warped Fungus on a Stick", + "item.minecraft.water_bucket": "Water Bucket", + "item.minecraft.wayfinder_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.wayfinder_armor_trim_smithing_template.new": "Wayfinder Armor Trim", + "item.minecraft.wheat": "Wheat", + "item.minecraft.wheat_seeds": "Wheat Seeds", + "item.minecraft.white_bundle": "White Bundle", + "item.minecraft.white_dye": "White Dye", + "item.minecraft.wild_armor_trim_smithing_template": "Smithing Template", + "item.minecraft.wild_armor_trim_smithing_template.new": "Wild Armor Trim", + "item.minecraft.wind_charge": "Wind Charge", + "item.minecraft.witch_spawn_egg": "Witch Spawn Egg", + "item.minecraft.wither_skeleton_spawn_egg": "Wither Skeleton Spawn Egg", + "item.minecraft.wither_spawn_egg": "Wither Spawn Egg", + "item.minecraft.wolf_armor": "Wolf Armor", + "item.minecraft.wolf_spawn_egg": "Wolf Spawn Egg", + "item.minecraft.wooden_axe": "Wooden Axe", + "item.minecraft.wooden_hoe": "Wooden Hoe", + "item.minecraft.wooden_pickaxe": "Wooden Pickaxe", + "item.minecraft.wooden_shovel": "Wooden Shovel", + "item.minecraft.wooden_sword": "Wooden Sword", + "item.minecraft.writable_book": "Book and Quill", + "item.minecraft.written_book": "Written Book", + "item.minecraft.yellow_bundle": "Yellow Bundle", + "item.minecraft.yellow_dye": "Yellow Dye", + "item.minecraft.zoglin_spawn_egg": "Zoglin Spawn Egg", + "item.minecraft.zombie_horse_spawn_egg": "Zombie Horse Spawn Egg", + "item.minecraft.zombie_spawn_egg": "Zombie Spawn Egg", + "item.minecraft.zombie_villager_spawn_egg": "Zombie Villager Spawn Egg", + "item.minecraft.zombified_piglin_spawn_egg": "Zombified Piglin Spawn Egg", + "item.modifiers.any": "When equipped:", + "item.modifiers.armor": "When worn:", + "item.modifiers.body": "When equipped:", + "item.modifiers.chest": "When on Body:", + "item.modifiers.feet": "When on Feet:", + "item.modifiers.hand": "When held:", + "item.modifiers.head": "When on Head:", + "item.modifiers.legs": "When on Legs:", + "item.modifiers.mainhand": "When in Main Hand:", + "item.modifiers.offhand": "When in Off Hand:", + "item.nbt_tags": "NBT: %s tag(s)", + "item.op_block_warning.line1": "Warning:", + "item.op_block_warning.line2": "Use of this item might lead to command execution", + "item.op_block_warning.line3": "Do not use unless you know the exact contents!", + "item.unbreakable": "Unbreakable", + "itemGroup.buildingBlocks": "Building Blocks", + "itemGroup.coloredBlocks": "Colored Blocks", + "itemGroup.combat": "Combat", + "itemGroup.consumables": "Consumables", + "itemGroup.crafting": "Crafting", + "itemGroup.foodAndDrink": "Food & Drinks", + "itemGroup.functional": "Functional Blocks", + "itemGroup.hotbar": "Saved Hotbars", + "itemGroup.ingredients": "Ingredients", + "itemGroup.inventory": "Survival Inventory", + "itemGroup.natural": "Natural Blocks", + "itemGroup.op": "Operator Utilities", + "itemGroup.redstone": "Redstone Blocks", + "itemGroup.search": "Search Items", + "itemGroup.spawnEggs": "Spawn Eggs", + "itemGroup.tools": "Tools & Utilities", + "jigsaw_block.final_state": "Turns into:", + "jigsaw_block.generate": "Generate", + "jigsaw_block.joint_label": "Joint Type:", + "jigsaw_block.joint.aligned": "Aligned", + "jigsaw_block.joint.rollable": "Rollable", + "jigsaw_block.keep_jigsaws": "Keep Jigsaws", + "jigsaw_block.levels": "Levels: %s", + "jigsaw_block.name": "Name:", + "jigsaw_block.placement_priority": "Placement Priority:", + "jigsaw_block.placement_priority.tooltip": "When this Jigsaw block connects to a piece, this is the order in which that piece is processed for connections in the wider structure.\n\nPieces will be processed in descending priority with insertion order breaking ties.", + "jigsaw_block.pool": "Target Pool:", + "jigsaw_block.selection_priority": "Selection Priority:", + "jigsaw_block.selection_priority.tooltip": "When the parent piece is being processed for connections, this is the order in which this Jigsaw block attempts to connect to its target piece.\n\nJigsaws will be processed in descending priority with random ordering breaking ties.", + "jigsaw_block.target": "Target Name:", + "jukebox_song.minecraft.5": "Samuel Åberg - 5", + "jukebox_song.minecraft.11": "C418 - 11", + "jukebox_song.minecraft.13": "C418 - 13", + "jukebox_song.minecraft.blocks": "C418 - blocks", + "jukebox_song.minecraft.cat": "C418 - cat", + "jukebox_song.minecraft.chirp": "C418 - chirp", + "jukebox_song.minecraft.creator": "Lena Raine - Creator", + "jukebox_song.minecraft.creator_music_box": "Lena Raine - Creator (Music Box)", + "jukebox_song.minecraft.far": "C418 - far", + "jukebox_song.minecraft.mall": "C418 - mall", + "jukebox_song.minecraft.mellohi": "C418 - mellohi", + "jukebox_song.minecraft.otherside": "Lena Raine - otherside", + "jukebox_song.minecraft.pigstep": "Lena Raine - Pigstep", + "jukebox_song.minecraft.precipice": "Aaron Cherof - Precipice", + "jukebox_song.minecraft.relic": "Aaron Cherof - Relic", + "jukebox_song.minecraft.stal": "C418 - stal", + "jukebox_song.minecraft.strad": "C418 - strad", + "jukebox_song.minecraft.wait": "C418 - wait", + "jukebox_song.minecraft.ward": "C418 - ward", + "key.advancements": "Advancements", + "key.attack": "Attack/Destroy", + "key.back": "Walk Backward", + "key.categories.creative": "Creative Mode", + "key.categories.gameplay": "Gameplay", + "key.categories.inventory": "Inventory", + "key.categories.misc": "Miscellaneous", + "key.categories.movement": "Movement", + "key.categories.multiplayer": "Multiplayer", + "key.categories.ui": "Game Interface", + "key.chat": "Open Chat", + "key.command": "Open Command", + "key.drop": "Drop Selected Item", + "key.forward": "Walk Forward", + "key.fullscreen": "Toggle Fullscreen", + "key.hotbar.1": "Hotbar Slot 1", + "key.hotbar.2": "Hotbar Slot 2", + "key.hotbar.3": "Hotbar Slot 3", + "key.hotbar.4": "Hotbar Slot 4", + "key.hotbar.5": "Hotbar Slot 5", + "key.hotbar.6": "Hotbar Slot 6", + "key.hotbar.7": "Hotbar Slot 7", + "key.hotbar.8": "Hotbar Slot 8", + "key.hotbar.9": "Hotbar Slot 9", + "key.inventory": "Open/Close Inventory", + "key.jump": "Jump", + "key.keyboard.apostrophe": "'", + "key.keyboard.backslash": "\\", + "key.keyboard.backspace": "Backspace", + "key.keyboard.caps.lock": "Caps Lock", + "key.keyboard.comma": ",", + "key.keyboard.delete": "Delete", + "key.keyboard.down": "Down Arrow", + "key.keyboard.end": "End", + "key.keyboard.enter": "Enter", + "key.keyboard.equal": "=", + "key.keyboard.escape": "Escape", + "key.keyboard.f1": "F1", + "key.keyboard.f2": "F2", + "key.keyboard.f3": "F3", + "key.keyboard.f4": "F4", + "key.keyboard.f5": "F5", + "key.keyboard.f6": "F6", + "key.keyboard.f7": "F7", + "key.keyboard.f8": "F8", + "key.keyboard.f9": "F9", + "key.keyboard.f10": "F10", + "key.keyboard.f11": "F11", + "key.keyboard.f12": "F12", + "key.keyboard.f13": "F13", + "key.keyboard.f14": "F14", + "key.keyboard.f15": "F15", + "key.keyboard.f16": "F16", + "key.keyboard.f17": "F17", + "key.keyboard.f18": "F18", + "key.keyboard.f19": "F19", + "key.keyboard.f20": "F20", + "key.keyboard.f21": "F21", + "key.keyboard.f22": "F22", + "key.keyboard.f23": "F23", + "key.keyboard.f24": "F24", + "key.keyboard.f25": "F25", + "key.keyboard.grave.accent": "`", + "key.keyboard.home": "Home", + "key.keyboard.insert": "Insert", + "key.keyboard.keypad.0": "Keypad 0", + "key.keyboard.keypad.1": "Keypad 1", + "key.keyboard.keypad.2": "Keypad 2", + "key.keyboard.keypad.3": "Keypad 3", + "key.keyboard.keypad.4": "Keypad 4", + "key.keyboard.keypad.5": "Keypad 5", + "key.keyboard.keypad.6": "Keypad 6", + "key.keyboard.keypad.7": "Keypad 7", + "key.keyboard.keypad.8": "Keypad 8", + "key.keyboard.keypad.9": "Keypad 9", + "key.keyboard.keypad.add": "Keypad +", + "key.keyboard.keypad.decimal": "Keypad Decimal", + "key.keyboard.keypad.divide": "Keypad /", + "key.keyboard.keypad.enter": "Keypad Enter", + "key.keyboard.keypad.equal": "Keypad =", + "key.keyboard.keypad.multiply": "Keypad *", + "key.keyboard.keypad.subtract": "Keypad -", + "key.keyboard.left": "Left Arrow", + "key.keyboard.left.alt": "Left Alt", + "key.keyboard.left.bracket": "[", + "key.keyboard.left.control": "Left Control", + "key.keyboard.left.shift": "Left Shift", + "key.keyboard.left.win": "Left Win", + "key.keyboard.menu": "Menu", + "key.keyboard.minus": "-", + "key.keyboard.num.lock": "Num Lock", + "key.keyboard.page.down": "Page Down", + "key.keyboard.page.up": "Page Up", + "key.keyboard.pause": "Pause", + "key.keyboard.period": ".", + "key.keyboard.print.screen": "Print Screen", + "key.keyboard.right": "Right Arrow", + "key.keyboard.right.alt": "Right Alt", + "key.keyboard.right.bracket": "]", + "key.keyboard.right.control": "Right Control", + "key.keyboard.right.shift": "Right Shift", + "key.keyboard.right.win": "Right Win", + "key.keyboard.scroll.lock": "Scroll Lock", + "key.keyboard.semicolon": ";", + "key.keyboard.slash": "/", + "key.keyboard.space": "Space", + "key.keyboard.tab": "Tab", + "key.keyboard.unknown": "Not Bound", + "key.keyboard.up": "Up Arrow", + "key.keyboard.world.1": "World 1", + "key.keyboard.world.2": "World 2", + "key.left": "Strafe Left", + "key.loadToolbarActivator": "Load Hotbar Activator", + "key.mouse": "Button %1$s", + "key.mouse.left": "Left Button", + "key.mouse.middle": "Middle Button", + "key.mouse.right": "Right Button", + "key.pickItem": "Pick Block", + "key.playerlist": "List Players", + "key.right": "Strafe Right", + "key.saveToolbarActivator": "Save Hotbar Activator", + "key.screenshot": "Take Screenshot", + "key.smoothCamera": "Toggle Cinematic Camera", + "key.sneak": "Sneak", + "key.socialInteractions": "Social Interactions Screen", + "key.spectatorOutlines": "Highlight Players (Spectators)", + "key.sprint": "Sprint", + "key.swapOffhand": "Swap Item With Off Hand", + "key.togglePerspective": "Toggle Perspective", + "key.use": "Use Item/Place Block", + "known_server_link.announcements": "Announcements", + "known_server_link.community": "Community", + "known_server_link.community_guidelines": "Community Guidelines", + "known_server_link.feedback": "Feedback", + "known_server_link.forums": "Forums", + "known_server_link.news": "News", + "known_server_link.report_bug": "Report Server Bug", + "known_server_link.status": "Status", + "known_server_link.support": "Support", + "known_server_link.website": "Website", + "language.code": "en_us", + "language.name": "English", + "language.region": "United States", + "lanServer.otherPlayers": "Settings for Other Players", + "lanServer.port": "Port Number", + "lanServer.port.invalid": "Not a valid port.\nLeave the edit box empty or enter a number between 1024 and 65535.", + "lanServer.port.invalid.new": "Not a valid port.\nLeave the edit box empty or enter a number between %s and %s.", + "lanServer.port.unavailable": "Port not available.\nLeave the edit box empty or enter a different number between 1024 and 65535.", + "lanServer.port.unavailable.new": "Port not available.\nLeave the edit box empty or enter a different number between %s and %s.", + "lanServer.scanning": "Scanning for games on your local network", + "lanServer.start": "Start LAN World", + "lanServer.title": "LAN World", + "lectern.take_book": "Take Book", + "loading.progress": "%s%%", + "mco.account.privacy.info": "Read more about Mojang and privacy laws", + "mco.account.privacy.info.button": "Read more about GDPR", + "mco.account.privacy.information": "Mojang implements certain procedures to help protect children and their privacy including complying with the Children's Online Privacy Protection Act (COPPA) and General Data Protection Regulation (GDPR).\n\nYou may need to obtain parental consent before accessing your Realms account.", + "mco.account.privacyinfo": "Mojang implements certain procedures to help protect children and their privacy including complying with the Children's Online Privacy Protection Act (COPPA) and General Data Protection Regulation (GDPR).\n\nYou may need to obtain parental consent before accessing your Realms account.\n\nIf you have an older Minecraft account (you log in with your username), you need to migrate the account to a Mojang account in order to access Realms.", + "mco.account.update": "Update account", + "mco.activity.noactivity": "No activity for the past %s day(s)", + "mco.activity.title": "Player activity", + "mco.backup.button.download": "Download Latest", + "mco.backup.button.reset": "Reset World", + "mco.backup.button.restore": "Restore", + "mco.backup.button.upload": "Upload World", + "mco.backup.changes.tooltip": "Changes", + "mco.backup.entry": "Backup (%s)", + "mco.backup.entry.description": "Description", + "mco.backup.entry.enabledPack": "Enabled Pack(s)", + "mco.backup.entry.gameDifficulty": "Game Difficulty", + "mco.backup.entry.gameMode": "Game Mode", + "mco.backup.entry.gameServerVersion": "Game Server Version", + "mco.backup.entry.name": "Name", + "mco.backup.entry.seed": "Seed", + "mco.backup.entry.templateName": "Template Name", + "mco.backup.entry.undefined": "Undefined Change", + "mco.backup.entry.uploaded": "Uploaded", + "mco.backup.entry.worldType": "World Type", + "mco.backup.generate.world": "Generate world", + "mco.backup.info.title": "Changes From Last Backup", + "mco.backup.narration": "Backup from %s", + "mco.backup.nobackups": "This realm doesn't have any backups currently.", + "mco.backup.restoring": "Restoring your realm", + "mco.backup.unknown": "UNKNOWN", + "mco.brokenworld.download": "Download", + "mco.brokenworld.downloaded": "Downloaded", + "mco.brokenworld.message.line1": "Please reset or select another world.", + "mco.brokenworld.message.line2": "You can also choose to download the world to singleplayer.", + "mco.brokenworld.minigame.title": "This minigame is no longer supported", + "mco.brokenworld.nonowner.error": "Please wait for the realm owner to reset the world", + "mco.brokenworld.nonowner.title": "World is out of date", + "mco.brokenworld.play": "Play", + "mco.brokenworld.reset": "Reset", + "mco.brokenworld.title": "Your current world is no longer supported", + "mco.client.incompatible.msg.line1": "Your client is not compatible with Realms.", + "mco.client.incompatible.msg.line2": "Please use the most recent version of Minecraft.", + "mco.client.incompatible.msg.line3": "Realms is not compatible with snapshot versions.", + "mco.client.incompatible.title": "Client incompatible!", + "mco.client.outdated.stable.version": "Your client version (%s) is not compatible with Realms.\n\nPlease use the most recent version of Minecraft.", + "mco.client.unsupported.snapshot.version": "Your client version (%s) is not compatible with Realms.\n\nRealms is not available for this snapshot version.", + "mco.compatibility.downgrade": "Downgrade", + "mco.compatibility.downgrade.description": "This world was last played in version %s; you are on version %s. Downgrading a world could cause corruption - we cannot guarantee that it will load or work.\n\nA backup of your world will be saved under \"World Backups\". Please restore your world if needed.", + "mco.compatibility.incompatible.popup.title": "Incompatible version", + "mco.compatibility.incompatible.releaseType.popup.message": "The world you are trying to join is incompatible with the version you are on.", + "mco.compatibility.incompatible.series.popup.message": "This world was last played in version %s; you are on version %s.\n\nThese series are not compatible with each other. A new world is needed to play on this version.", + "mco.compatibility.unverifiable.message": "The version this world was last played in could not be verified. If the world gets upgraded or downgraded, a backup will be automatically created and saved under \"World Backups\".", + "mco.compatibility.unverifiable.title": "Compatibility not verifiable", + "mco.compatibility.upgrade": "Upgrade", + "mco.compatibility.upgrade.description": "This world was last played in version %s; you are on version %s.\n\nA backup of your world will be saved under \"World Backups\".\n\nPlease restore your world if needed.", + "mco.compatibility.upgrade.friend.description": "This world was last played in version %s; you are on version %s.\n\nA backup of the world will be saved under \"World Backups\".\n\nThe owner of the Realm can restore the world if needed.", + "mco.compatibility.upgrade.title": "Do you really want to upgrade this world?", + "mco.configure.current.minigame": "Current", + "mco.configure.world.activityfeed.disabled": "Player feed temporarily disabled", + "mco.configure.world.backup": "World Backups", + "mco.configure.world.buttons.activity": "Player activity", + "mco.configure.world.buttons.close": "Close Realm", + "mco.configure.world.buttons.delete": "Delete", + "mco.configure.world.buttons.done": "Done", + "mco.configure.world.buttons.edit": "Settings", + "mco.configure.world.buttons.invite": "Invite Player", + "mco.configure.world.buttons.moreoptions": "More options", + "mco.configure.world.buttons.open": "Open Realm", + "mco.configure.world.buttons.options": "World Options", + "mco.configure.world.buttons.players": "Players", + "mco.configure.world.buttons.resetworld": "Reset World", + "mco.configure.world.buttons.settings": "Settings", + "mco.configure.world.buttons.subscription": "Subscription", + "mco.configure.world.buttons.switchminigame": "Switch Minigame", + "mco.configure.world.close.question.line1": "Your realm will become unavailable.", + "mco.configure.world.close.question.line2": "Are you sure you want to continue?", + "mco.configure.world.closing": "Closing the realm...", + "mco.configure.world.commandBlocks": "Command Blocks", + "mco.configure.world.delete.button": "Delete Realm", + "mco.configure.world.delete.question.line1": "Your realm will be permanently deleted", + "mco.configure.world.delete.question.line2": "Are you sure you want to continue?", + "mco.configure.world.description": "Realm Description", + "mco.configure.world.edit.slot.name": "World Name", + "mco.configure.world.edit.subscreen.adventuremap": "Some settings are disabled since your current world is an adventure", + "mco.configure.world.edit.subscreen.experience": "Some settings are disabled since your current world is an experience", + "mco.configure.world.edit.subscreen.inspiration": "Some settings are disabled since your current world is an inspiration", + "mco.configure.world.forceGameMode": "Force Game Mode", + "mco.configure.world.invite.narration": "You have %s new invite(s)", + "mco.configure.world.invite.profile.name": "Name", + "mco.configure.world.invited": "Invited", + "mco.configure.world.invited.number": "Invited (%s)", + "mco.configure.world.invites.normal.tooltip": "Normal User", + "mco.configure.world.invites.ops.tooltip": "Operator", + "mco.configure.world.invites.remove.tooltip": "Remove", + "mco.configure.world.leave.question.line1": "If you leave this realm you won't see it unless you are invited again", + "mco.configure.world.leave.question.line2": "Are you sure you want to continue?", + "mco.configure.world.location": "Location", + "mco.configure.world.minigame": "Current: %s", + "mco.configure.world.name": "Realm Name", + "mco.configure.world.opening": "Opening the realm...", + "mco.configure.world.players.error": "A player with the provided name does not exist", + "mco.configure.world.players.inviting": "Inviting player...", + "mco.configure.world.players.title": "Players", + "mco.configure.world.pvp": "PVP", + "mco.configure.world.reset.question.line1": "Your world will be regenerated and your current world will be lost", + "mco.configure.world.reset.question.line2": "Are you sure you want to continue?", + "mco.configure.world.resourcepack.question": "You need a custom resource pack to play on this realm\n\nDo you want to download it and play?", + "mco.configure.world.resourcepack.question.line1": "You need a custom resource pack to play on this realm", + "mco.configure.world.resourcepack.question.line2": "Do you want to download it and play?", + "mco.configure.world.restore.download.question.line1": "The world will be downloaded and added to your single player worlds.", + "mco.configure.world.restore.download.question.line2": "Do you want to continue?", + "mco.configure.world.restore.question.line1": "Your world will be restored to date '%s' (%s)", + "mco.configure.world.restore.question.line2": "Are you sure you want to continue?", + "mco.configure.world.settings.title": "Settings", + "mco.configure.world.slot": "World %s", + "mco.configure.world.slot.empty": "Empty", + "mco.configure.world.slot.switch.question.line1": "Your realm will be switched to another world", + "mco.configure.world.slot.switch.question.line2": "Are you sure you want to continue?", + "mco.configure.world.slot.tooltip": "Switch to world", + "mco.configure.world.slot.tooltip.active": "Join", + "mco.configure.world.slot.tooltip.minigame": "Switch to minigame", + "mco.configure.world.spawn_toggle.message": "Turning this option off will remove all existing entities of that type", + "mco.configure.world.spawn_toggle.message.npc": "Turning this option off will remove all existing entities of that type, like Villagers", + "mco.configure.world.spawn_toggle.title": "Warning!", + "mco.configure.world.spawnAnimals": "Spawn Animals", + "mco.configure.world.spawnMonsters": "Spawn Monsters", + "mco.configure.world.spawnNPCs": "Spawn NPCs", + "mco.configure.world.spawnProtection": "Spawn Protection", + "mco.configure.world.status": "Status", + "mco.configure.world.subscription.day": "day", + "mco.configure.world.subscription.days": "days", + "mco.configure.world.subscription.expired": "Expired", + "mco.configure.world.subscription.extend": "Extend Subscription", + "mco.configure.world.subscription.less_than_a_day": "Less than a day", + "mco.configure.world.subscription.month": "month", + "mco.configure.world.subscription.months": "months", + "mco.configure.world.subscription.recurring.daysleft": "Renewed automatically in", + "mco.configure.world.subscription.recurring.info": "Changes made to your Realms subscription such as stacking time or turning off recurring billing will not be reflected until your next bill date.", + "mco.configure.world.subscription.remaining.days": "%1$s day(s)", + "mco.configure.world.subscription.remaining.months": "%1$s month(s)", + "mco.configure.world.subscription.remaining.months.days": "%1$s month(s), %2$s day(s)", + "mco.configure.world.subscription.start": "Start Date", + "mco.configure.world.subscription.timeleft": "Time Left", + "mco.configure.world.subscription.title": "Your Subscription", + "mco.configure.world.subscription.unknown": "Unknown", + "mco.configure.world.switch.slot": "Create World", + "mco.configure.world.switch.slot.subtitle": "This world is empty, choose how to create your world", + "mco.configure.world.title": "Configure Realm:", + "mco.configure.world.uninvite.player": "Are you sure that you want to uninvite '%s'?", + "mco.configure.world.uninvite.question": "Are you sure that you want to uninvite", + "mco.configure.worlds.title": "Worlds", + "mco.connect.authorizing": "Logging in...", + "mco.connect.connecting": "Connecting to the realm...", + "mco.connect.failed": "Failed to connect to the realm", + "mco.connect.success": "Done", + "mco.create.world": "Create", + "mco.create.world.error": "You must enter a name!", + "mco.create.world.failed": "Failed to create world!", + "mco.create.world.reset.title": "Creating world...", + "mco.create.world.skip": "Skip", + "mco.create.world.subtitle": "Optionally, select what world to put on your new realm", + "mco.create.world.wait": "Creating the realm...", + "mco.download.cancelled": "Download cancelled", + "mco.download.confirmation.line1": "The world you are going to download is larger than %s", + "mco.download.confirmation.line2": "You won't be able to upload this world to your realm again", + "mco.download.confirmation.oversized": "The world you are going to download is larger than %s\n\nYou won't be able to upload this world to your realm again", + "mco.download.done": "Download done", + "mco.download.downloading": "Downloading", + "mco.download.extracting": "Extracting", + "mco.download.failed": "Download failed", + "mco.download.percent": "%s %%", + "mco.download.preparing": "Preparing download", + "mco.download.resourcePack.fail": "Failed to download resource pack!", + "mco.download.speed": "(%s/s)", + "mco.download.speed.narration": "%s/s", + "mco.download.title": "Downloading Latest World", + "mco.error.invalid.session.message": "Please try restarting Minecraft", + "mco.error.invalid.session.title": "Invalid Session", + "mco.errorMessage.6001": "Client outdated", + "mco.errorMessage.6002": "Terms of service not accepted", + "mco.errorMessage.6003": "Download limit reached", + "mco.errorMessage.6004": "Upload limit reached", + "mco.errorMessage.6005": "World locked", + "mco.errorMessage.6006": "World is out of date", + "mco.errorMessage.6007": "User in too many Realms", + "mco.errorMessage.6008": "Invalid Realm name", + "mco.errorMessage.6009": "Invalid Realm description", + "mco.errorMessage.connectionFailure": "An error occurred, please try again later.", + "mco.errorMessage.generic": "An error occurred: ", + "mco.errorMessage.initialize.failed": "Failed to initialize Realm", + "mco.errorMessage.noDetails": "No error details provided", + "mco.errorMessage.realmsService": "An error occurred (%s):", + "mco.errorMessage.realmsService.connectivity": "Could not connect to Realms: %s", + "mco.errorMessage.realmsService.realmsError": "Realms (%s):", + "mco.errorMessage.realmsService.unknownCompatibility": "Could not check compatible version, got response: %s", + "mco.errorMessage.retry": "Retry operation", + "mco.errorMessage.serviceBusy": "Realms is busy at the moment.\nPlease try connecting to your Realm again in a couple of minutes.", + "mco.gui.button": "Button", + "mco.gui.ok": "Ok", + "mco.info": "Info!", + "mco.invited.player.narration": "Invited player %s", + "mco.invites.button.accept": "Accept", + "mco.invites.button.reject": "Reject", + "mco.invites.nopending": "No pending invites!", + "mco.invites.pending": "New invite(s)!", + "mco.invites.title": "Pending Invites", + "mco.minigame.world.changeButton": "Select Another Minigame", + "mco.minigame.world.info.line1": "This will temporarily replace your world with a minigame!", + "mco.minigame.world.info.line2": "You can later return to your original world without losing anything.", + "mco.minigame.world.noSelection": "Please make a selection", + "mco.minigame.world.restore": "Ending Minigame...", + "mco.minigame.world.restore.question.line1": "The minigame will end and your realm will be restored.", + "mco.minigame.world.restore.question.line2": "Are you sure you want to continue?", + "mco.minigame.world.selected": "Selected Minigame:", + "mco.minigame.world.slot.screen.title": "Switching World...", + "mco.minigame.world.startButton": "Switch", + "mco.minigame.world.starting.screen.title": "Starting Minigame...", + "mco.minigame.world.stopButton": "End Minigame", + "mco.minigame.world.switch.new": "Select another minigame?", + "mco.minigame.world.switch.title": "Switch Minigame", + "mco.minigame.world.title": "Switch Realm to Minigame", + "mco.news": "Realms news", + "mco.notification.dismiss": "Dismiss", + "mco.notification.transferSubscription.buttonText": "Transfer Now", + "mco.notification.transferSubscription.message": "Java Realms subscriptions are moving to the Microsoft Store. Do not let your subscription expire!\nTransfer now and get 30 days of Realms for free.\nGo to Profile on minecraft.net to transfer your subscription.", + "mco.notification.visitUrl.buttonText.default": "Open Link", + "mco.notification.visitUrl.message.default": "Please visit the link below", + "mco.onlinePlayers": "Online Players", + "mco.question": "Question", + "mco.reset.world.adventure": "Adventures", + "mco.reset.world.experience": "Experiences", + "mco.reset.world.generate": "New World", + "mco.reset.world.inspiration": "Inspiration", + "mco.reset.world.resetting.screen.title": "Resetting world...", + "mco.reset.world.seed": "Seed (Optional)", + "mco.reset.world.template": "World Templates", + "mco.reset.world.title": "Reset World", + "mco.reset.world.upload": "Upload world", + "mco.reset.world.warning": "This will replace the current world of your realm", + "mco.selectServer.buy": "Buy a Realm!", + "mco.selectServer.close": "Close", + "mco.selectServer.closed": "Closed realm", + "mco.selectServer.closeserver": "Close realm", + "mco.selectServer.configure": "Configure", + "mco.selectServer.configureRealm": "Configure realm", + "mco.selectServer.create": "Create Realm", + "mco.selectServer.create.subtitle": "Select what world to put on your new realm", + "mco.selectServer.expired": "Expired realm", + "mco.selectServer.expiredList": "Your subscription has expired", + "mco.selectServer.expiredRenew": "Renew", + "mco.selectServer.expiredSubscribe": "Subscribe", + "mco.selectServer.expiredTrial": "Your trial has ended", + "mco.selectServer.expires.day": "Expires in a day", + "mco.selectServer.expires.days": "Expires in %s days", + "mco.selectServer.expires.soon": "Expires soon", + "mco.selectServer.leave": "Leave Realm", + "mco.selectServer.loading": "Loading Realms List", + "mco.selectServer.mapOnlySupportedForVersion": "This map is unsupported in %s", + "mco.selectServer.minigame": "Minigame:", + "mco.selectServer.minigameName": "Minigame: %s", + "mco.selectServer.minigameNotSupportedInVersion": "Can't play this minigame in %s", + "mco.selectServer.noRealms": "You don't seem to have a Realm. Add a Realm to play together with your friends.", + "mco.selectServer.note": "Note:", + "mco.selectServer.open": "Open realm", + "mco.selectServer.openserver": "Open realm", + "mco.selectServer.play": "Play", + "mco.selectServer.popup": "Realms is a safe, simple way to enjoy an online Minecraft world with up to ten friends at a time. It supports loads of minigames and plenty of custom worlds! Only the owner of the realm needs to pay.", + "mco.selectServer.purchase": "Add Realm", + "mco.selectServer.trial": "Get a Trial!", + "mco.selectServer.uninitialized": "Click to start your new realm!", + "mco.snapshot.createSnapshotPopup.text": "You are about to create a free Snapshot Realm that will be paired with your paid Realms subscription. This new Snapshot Realm will be accessible for as long as the paid subscription is active. Your paid Realm will not be affected.", + "mco.snapshot.createSnapshotPopup.title": "Create Snapshot Realm?", + "mco.snapshot.creating": "Creating Snapshot Realm...", + "mco.snapshot.description": "Paired with \"%s\"", + "mco.snapshot.friendsRealm.downgrade": "You need to be on version %s to join this Realm", + "mco.snapshot.friendsRealm.upgrade": "%s needs to upgrade their Realm before you can play from this version", + "mco.snapshot.paired": "This Snapshot Realm is paired with \"%s\"", + "mco.snapshot.parent.tooltip": "Use the latest release of Minecraft to play on this Realm", + "mco.snapshot.start": "Start free Snapshot Realm", + "mco.snapshot.subscription.info": "This is a Snapshot Realm that is paired to the subscription of your Realm '%s'. It will stay active for as long as its paired Realm is.", + "mco.snapshot.tooltip": "Use Snapshot Realms to get a sneak peek at upcoming versions of Minecraft, which might include new features and other changes.\n\nYou can find your normal Realms in the release version of the game.", + "mco.snapshotRealmsPopup.message": "Realms are now available in Snapshots starting with Snapshot 23w41a. Every Realms subscription comes with a free Snapshot Realm that is separate from your normal Java Realm!", + "mco.snapshotRealmsPopup.title": "Realms now available in Snapshots", + "mco.snapshotRealmsPopup.urlText": "Learn More", + "mco.template.button.publisher": "Publisher", + "mco.template.button.select": "Select", + "mco.template.button.trailer": "Trailer", + "mco.template.default.name": "World template", + "mco.template.info.tooltip": "Publisher website", + "mco.template.name": "Template", + "mco.template.select.failure": "We couldn't retrieve the list of content for this category.\nPlease check your internet connection, or try again later.", + "mco.template.select.narrate.authors": "Authors: %s", + "mco.template.select.narrate.version": "version %s", + "mco.template.select.none": "Oops, it looks like this content category is currently empty.\nPlease check back later for new content, or if you're a creator,\n%s.", + "mco.template.select.none.linkTitle": "consider submitting something yourself", + "mco.template.title": "World templates", + "mco.template.title.minigame": "Minigames", + "mco.template.trailer.tooltip": "Map trailer", + "mco.terms.buttons.agree": "Agree", + "mco.terms.buttons.disagree": "Don't agree", + "mco.terms.sentence.1": "I agree to the Minecraft Realms", + "mco.terms.sentence.2": "Terms of Service", + "mco.terms.title": "Realms Terms of Service", + "mco.time.daysAgo": "%1$s day(s) ago", + "mco.time.hoursAgo": "%1$s hour(s) ago", + "mco.time.minutesAgo": "%1$s minute(s) ago", + "mco.time.now": "right now", + "mco.time.secondsAgo": "%1$s second(s) ago", + "mco.trial.message.line1": "Want to get your own realm?", + "mco.trial.message.line2": "Click here for more info!", + "mco.upload.button.name": "Upload", + "mco.upload.cancelled": "Upload cancelled", + "mco.upload.close.failure": "Could not close your realm, please try again later", + "mco.upload.done": "Upload done", + "mco.upload.entry.cheats": "%1$s, %2$s", + "mco.upload.entry.commands": "%1$s, %2$s", + "mco.upload.entry.id": "%1$s (%2$s)", + "mco.upload.failed": "Upload failed! (%s)", + "mco.upload.failed.too_big.description": "The selected world is too big. The maximum allowed size is %s.", + "mco.upload.failed.too_big.title": "World too big", + "mco.upload.hardcore": "Hardcore worlds can't be uploaded!", + "mco.upload.percent": "%s %%", + "mco.upload.preparing": "Preparing your world", + "mco.upload.select.world.none": "No singleplayer worlds found!", + "mco.upload.select.world.subtitle": "Please select a singleplayer world to upload", + "mco.upload.select.world.title": "Upload World", + "mco.upload.size.failure.line1": "'%s' is too big!", + "mco.upload.size.failure.line2": "It is %s. The maximum allowed size is %s.", + "mco.upload.uploading": "Uploading '%s'", + "mco.upload.verifying": "Verifying your world", + "mco.version": "Version: %s", + "mco.warning": "Warning!", + "mco.worldSlot.minigame": "Minigame", + "menu.disconnect": "Disconnect", + "menu.feedback": "Feedback...", + "menu.feedback.title": "Feedback", + "menu.game": "Game Menu", + "menu.modded": " (Modded)", + "menu.multiplayer": "Multiplayer", + "menu.online": "Minecraft Realms", + "menu.options": "Options...", + "menu.paused": "Game Paused", + "menu.playdemo": "Play Demo World", + "menu.playerReporting": "Player Reporting", + "menu.preparingSpawn": "Preparing spawn area: %s%%", + "menu.quit": "Quit Game", + "menu.reportBugs": "Report Bugs", + "menu.resetdemo": "Reset Demo World", + "menu.returnToGame": "Back to Game", + "menu.returnToMenu": "Save and Quit to Title", + "menu.savingChunks": "Saving chunks", + "menu.savingLevel": "Saving world", + "menu.sendFeedback": "Give Feedback", + "menu.server_links": "Server Links...", + "menu.server_links.title": "Server Links", + "menu.shareToLan": "Open to LAN", + "menu.singleplayer": "Singleplayer", + "menu.working": "Working...", + "merchant.deprecated": "Villagers restock up to two times per day.", + "merchant.level.1": "Novice", + "merchant.level.2": "Apprentice", + "merchant.level.3": "Journeyman", + "merchant.level.4": "Expert", + "merchant.level.5": "Master", + "merchant.title": "%s - %s", + "merchant.trades": "Trades", + "mirror.front_back": "↑ ↓", + "mirror.left_right": "← →", + "mirror.none": "|", + "mount.onboard": "Press %1$s to Dismount", + "multiplayer.applyingPack": "Applying resource pack", + "multiplayer.disconnect.authservers_down": "Authentication servers are down. Please try again later, sorry!", + "multiplayer.disconnect.banned": "You are banned from this server", + "multiplayer.disconnect.banned_ip.expiration": "\nYour ban will be removed on %s", + "multiplayer.disconnect.banned_ip.reason": "Your IP address is banned from this server.\nReason: %s", + "multiplayer.disconnect.banned.expiration": "\nYour ban will be removed on %s", + "multiplayer.disconnect.banned.reason": "You are banned from this server.\nReason: %s", + "multiplayer.disconnect.chat_validation_failed": "Chat message validation failure", + "multiplayer.disconnect.duplicate_login": "You logged in from another location", + "multiplayer.disconnect.expired_public_key": "Expired profile public key. Check that your system time is synchronized, and try restarting your game.", + "multiplayer.disconnect.flying": "Flying is not enabled on this server", + "multiplayer.disconnect.generic": "Disconnected", + "multiplayer.disconnect.idling": "You have been idle for too long!", + "multiplayer.disconnect.illegal_characters": "Illegal characters in chat", + "multiplayer.disconnect.incompatible": "Incompatible client! Please use %s", + "multiplayer.disconnect.invalid_entity_attacked": "Attempting to attack an invalid entity", + "multiplayer.disconnect.invalid_packet": "Server sent an invalid packet", + "multiplayer.disconnect.invalid_player_data": "Invalid player data", + "multiplayer.disconnect.invalid_player_movement": "Invalid move player packet received", + "multiplayer.disconnect.invalid_public_key_signature": "Invalid signature for profile public key.\nTry restarting your game.", + "multiplayer.disconnect.invalid_public_key_signature.new": "Invalid signature for profile public key.\nTry restarting your game.", + "multiplayer.disconnect.invalid_vehicle_movement": "Invalid move vehicle packet received", + "multiplayer.disconnect.ip_banned": "You have been IP banned from this server", + "multiplayer.disconnect.kicked": "Kicked by an operator", + "multiplayer.disconnect.missing_tags": "Incomplete set of tags received from server.\nPlease contact server operator.", + "multiplayer.disconnect.name_taken": "That name is already taken", + "multiplayer.disconnect.not_whitelisted": "You are not white-listed on this server!", + "multiplayer.disconnect.out_of_order_chat": "Out-of-order chat packet received. Did your system time change?", + "multiplayer.disconnect.outdated_client": "Incompatible client! Please use %s", + "multiplayer.disconnect.outdated_server": "Incompatible client! Please use %s", + "multiplayer.disconnect.server_full": "The server is full!", + "multiplayer.disconnect.server_shutdown": "Server closed", + "multiplayer.disconnect.slow_login": "Took too long to log in", + "multiplayer.disconnect.too_many_pending_chats": "Too many unacknowledged chat messages", + "multiplayer.disconnect.transfers_disabled": "Server does not accept transfers", + "multiplayer.disconnect.unexpected_query_response": "Unexpected custom data from client", + "multiplayer.disconnect.unsigned_chat": "Received chat packet with missing or invalid signature.", + "multiplayer.disconnect.unverified_username": "Failed to verify username!", + "multiplayer.downloadingStats": "Retrieving statistics...", + "multiplayer.downloadingTerrain": "Loading terrain...", + "multiplayer.lan.server_found": "New server found: %s", + "multiplayer.message_not_delivered": "Can't deliver chat message, check server logs: %s", + "multiplayer.player.joined": "%s joined the game", + "multiplayer.player.joined.renamed": "%s (formerly known as %s) joined the game", + "multiplayer.player.left": "%s left the game", + "multiplayer.player.list.hp": "%shp", + "multiplayer.player.list.narration": "Online players: %s", + "multiplayer.requiredTexturePrompt.disconnect": "Server requires a custom resource pack", + "multiplayer.requiredTexturePrompt.line1": "This server requires the use of a custom resource pack.", + "multiplayer.requiredTexturePrompt.line2": "Rejecting this custom resource pack will disconnect you from this server.", + "multiplayer.socialInteractions.not_available": "Social Interactions are only available in Multiplayer worlds", + "multiplayer.status.and_more": "... and %s more ...", + "multiplayer.status.cancelled": "Cancelled", + "multiplayer.status.cannot_connect": "Can't connect to server", + "multiplayer.status.cannot_resolve": "Can't resolve hostname", + "multiplayer.status.finished": "Finished", + "multiplayer.status.incompatible": "Incompatible version!", + "multiplayer.status.motd.narration": "Message of the day: %s", + "multiplayer.status.no_connection": "(no connection)", + "multiplayer.status.old": "Old", + "multiplayer.status.online": "Online", + "multiplayer.status.ping": "%s ms", + "multiplayer.status.ping.narration": "Ping %s milliseconds", + "multiplayer.status.pinging": "Pinging...", + "multiplayer.status.player_count": "%s/%s", + "multiplayer.status.player_count.narration": "%s out of %s players online", + "multiplayer.status.quitting": "Quitting", + "multiplayer.status.request_handled": "Status request has been handled", + "multiplayer.status.unknown": "???", + "multiplayer.status.unrequested": "Received unrequested status", + "multiplayer.status.version.narration": "Server version: %s", + "multiplayer.stopSleeping": "Leave Bed", + "multiplayer.texturePrompt.failure.line1": "Server resource pack couldn't be applied", + "multiplayer.texturePrompt.failure.line2": "Any functionality that requires custom resources might not work as expected", + "multiplayer.texturePrompt.line1": "This server recommends the use of a custom resource pack.", + "multiplayer.texturePrompt.line2": "Would you like to download and install it automagically?", + "multiplayer.texturePrompt.serverPrompt": "%s\n\nMessage from server:\n%s", + "multiplayer.title": "Play Multiplayer", + "multiplayer.unsecureserver.toast": "Messages sent on this server may be modified and might not reflect the original message", + "multiplayer.unsecureserver.toast.title": "Chat messages can't be verified", + "multiplayerWarning.check": "Do not show this screen again", + "multiplayerWarning.header": "Caution: Third-Party Online Play", + "multiplayerWarning.message": "Caution: Online play is offered by third-party servers that are not owned, operated, or supervised by Mojang Studios or Microsoft. During online play, you may be exposed to unmoderated chat messages or other types of user-generated content that may not be suitable for everyone.", + "narration.button": "Button: %s", + "narration.button.usage.focused": "Press Enter to activate", + "narration.button.usage.hovered": "Left click to activate", + "narration.checkbox": "Checkbox: %s", + "narration.checkbox.usage.focused": "Press Enter to toggle", + "narration.checkbox.usage.hovered": "Left click to toggle", + "narration.component_list.usage": "Press Tab to navigate to next element", + "narration.cycle_button.usage.focused": "Press Enter to switch to %s", + "narration.cycle_button.usage.hovered": "Left click to switch to %s", + "narration.edit_box": "Edit box: %s", + "narration.recipe": "Recipe for %s", + "narration.recipe.usage": "Left click to select", + "narration.recipe.usage.more": "Right click to show more recipes", + "narration.selection.usage": "Press up and down buttons to move to another entry", + "narration.slider.usage.focused": "Press left or right keyboard buttons to change value", + "narration.slider.usage.hovered": "Drag slider to change value", + "narration.suggestion": "Selected suggestion %s out of %s: %s", + "narration.suggestion.tooltip": "Selected suggestion %s out of %s: %s (%s)", + "narration.suggestion.usage.cycle.fixed": "Press Tab to cycle to the next suggestion", + "narration.suggestion.usage.cycle.hidable": "Press Tab to cycle to the next suggestion, or Escape to leave suggestions", + "narration.suggestion.usage.fill.fixed": "Press Tab to use suggestion", + "narration.suggestion.usage.fill.hidable": "Press Tab to use suggestion, or Escape to leave suggestions", + "narration.tab_navigation.usage": "Press Ctrl and Tab to switch between tabs", + "narrator.button.accessibility": "Accessibility", + "narrator.button.difficulty_lock": "Difficulty lock", + "narrator.button.difficulty_lock.locked": "Locked", + "narrator.button.difficulty_lock.unlocked": "Unlocked", + "narrator.button.language": "Language", + "narrator.controls.bound": "%s is bound to %s", + "narrator.controls.reset": "Reset %s button", + "narrator.controls.unbound": "%s is not bound", + "narrator.joining": "Joining", + "narrator.loading": "Loading: %s", + "narrator.loading.done": "Done", + "narrator.position.list": "Selected list row %s out of %s", + "narrator.position.object_list": "Selected row element %s out of %s", + "narrator.position.screen": "Screen element %s out of %s", + "narrator.position.tab": "Selected tab %s out of %s", + "narrator.ready_to_play": "Ready to play", + "narrator.screen.title": "Title Screen", + "narrator.screen.usage": "Use mouse cursor or Tab button to select element", + "narrator.select": "Selected: %s", + "narrator.select.world": "Selected %s, last played: %s, %s, %s, version: %s", + "narrator.select.world_info": "Selected %s, last played: %s, %s", + "narrator.toast.disabled": "Narrator Disabled", + "narrator.toast.enabled": "Narrator Enabled", + "optimizeWorld.confirm.description": "This will attempt to optimize your world by making sure all data is stored in the most recent game format. This can take a very long time, depending on your world. Once done, your world may play faster but will no longer be compatible with older versions of the game. Are you sure you wish to proceed?", + "optimizeWorld.confirm.proceed": "Create Backup and Optimize", + "optimizeWorld.confirm.title": "Optimize World", + "optimizeWorld.info.converted": "Upgraded chunks: %s", + "optimizeWorld.info.skipped": "Skipped chunks: %s", + "optimizeWorld.info.total": "Total chunks: %s", + "optimizeWorld.progress.counter": "%s / %s", + "optimizeWorld.progress.percentage": "%s%%", + "optimizeWorld.stage.counting": "Counting chunks...", + "optimizeWorld.stage.failed": "Failed! :(", + "optimizeWorld.stage.finished": "Finishing up...", + "optimizeWorld.stage.finished.chunks": "Finishing up upgrading chunks...", + "optimizeWorld.stage.finished.entities": "Finishing up upgrading entities...", + "optimizeWorld.stage.finished.poi": "Finishing up upgrading points of interest...", + "optimizeWorld.stage.upgrading": "Upgrading all chunks...", + "optimizeWorld.stage.upgrading.chunks": "Upgrading all chunks...", + "optimizeWorld.stage.upgrading.entities": "Upgrading all entities...", + "optimizeWorld.stage.upgrading.poi": "Upgrading all points of interest...", + "optimizeWorld.title": "Optimizing World '%s'", + "options.accessibility": "Accessibility Settings...", + "options.accessibility.high_contrast": "High Contrast", + "options.accessibility.high_contrast_block_outline": "High Contrast Block Outlines", + "options.accessibility.high_contrast_block_outline.tooltip": "Enhances the block outline contrast of the targeted block.", + "options.accessibility.high_contrast.error.tooltip": "High Contrast resource pack is not available.", + "options.accessibility.high_contrast.tooltip": "Enhances the contrast of UI elements.", + "options.accessibility.link": "Accessibility Guide", + "options.accessibility.menu_background_blurriness": "Menu Background Blur", + "options.accessibility.menu_background_blurriness.tooltip": "Changes the blurriness of menu backgrounds.", + "options.accessibility.narrator_hotkey": "Narrator Hotkey", + "options.accessibility.narrator_hotkey.mac.tooltip": "Allows the Narrator to be toggled on and off with 'Cmd+B'.", + "options.accessibility.narrator_hotkey.tooltip": "Allows the Narrator to be toggled on and off with 'Ctrl+B'.", + "options.accessibility.panorama_speed": "Panorama Scroll Speed", + "options.accessibility.text_background": "Text Background", + "options.accessibility.text_background_opacity": "Text Background Opacity", + "options.accessibility.text_background.chat": "Chat", + "options.accessibility.text_background.everywhere": "Everywhere", + "options.accessibility.title": "Accessibility Settings", + "options.allowServerListing": "Allow Server Listings", + "options.allowServerListing.tooltip": "Servers may list online players as part of their public status.\nWith this option off your name will not show up in such lists.", + "options.ao": "Smooth Lighting", + "options.ao.max": "Maximum", + "options.ao.min": "Minimum", + "options.ao.off": "OFF", + "options.attack.crosshair": "Crosshair", + "options.attack.hotbar": "Hotbar", + "options.attackIndicator": "Attack Indicator", + "options.audioDevice": "Device", + "options.audioDevice.default": "System Default", + "options.autoJump": "Auto-Jump", + "options.autosaveIndicator": "Autosave Indicator", + "options.autoSuggestCommands": "Command Suggestions", + "options.biomeBlendRadius": "Biome Blend", + "options.biomeBlendRadius.1": "OFF (Fastest)", + "options.biomeBlendRadius.3": "3x3 (Fast)", + "options.biomeBlendRadius.5": "5x5 (Normal)", + "options.biomeBlendRadius.7": "7x7 (High)", + "options.biomeBlendRadius.9": "9x9 (Very High)", + "options.biomeBlendRadius.11": "11x11 (Extreme)", + "options.biomeBlendRadius.13": "13x13 (Showoff)", + "options.biomeBlendRadius.15": "15x15 (Maximum)", + "options.chat": "Chat Settings...", + "options.chat.color": "Colors", + "options.chat.delay": "Chat Delay: %s second(s)", + "options.chat.delay_none": "Chat Delay: None", + "options.chat.height.focused": "Focused Height", + "options.chat.height.unfocused": "Unfocused Height", + "options.chat.line_spacing": "Line Spacing", + "options.chat.links": "Web Links", + "options.chat.links.prompt": "Prompt on Links", + "options.chat.opacity": "Chat Text Opacity", + "options.chat.scale": "Chat Text Size", + "options.chat.title": "Chat Settings", + "options.chat.visibility": "Chat", + "options.chat.visibility.full": "Shown", + "options.chat.visibility.hidden": "Hidden", + "options.chat.visibility.system": "Commands Only", + "options.chat.width": "Width", + "options.chunks": "%s chunks", + "options.clouds.fancy": "Fancy", + "options.clouds.fast": "Fast", + "options.controls": "Controls...", + "options.credits_and_attribution": "Credits & Attribution...", + "options.damageTiltStrength": "Damage Tilt", + "options.damageTiltStrength.tooltip": "The amount of camera shake caused by being hurt.", + "options.darkMojangStudiosBackgroundColor": "Monochrome Logo", + "options.darkMojangStudiosBackgroundColor.tooltip": "Changes the Mojang Studios loading screen background color to black.", + "options.darknessEffectScale": "Darkness Pulsing", + "options.darknessEffectScale.tooltip": "Controls how much the Darkness effect pulses when a Warden or Sculk Shrieker gives it to you.", + "options.difficulty": "Difficulty", + "options.difficulty.easy": "Easy", + "options.difficulty.easy.info": "Hostile mobs spawn but deal less damage. Hunger bar depletes and drains health down to 5 hearts.", + "options.difficulty.hard": "Hard", + "options.difficulty.hard.info": "Hostile mobs spawn and deal more damage. Hunger bar depletes and drains all health.", + "options.difficulty.hardcore": "Hardcore", + "options.difficulty.normal": "Normal", + "options.difficulty.normal.info": "Hostile mobs spawn and deal standard damage. Hunger bar depletes and drains health down to half a heart.", + "options.difficulty.online": "Server Difficulty", + "options.difficulty.peaceful": "Peaceful", + "options.difficulty.peaceful.info": "No hostile mobs and only some neutral mobs spawn. Hunger bar doesn't deplete and health replenishes over time.", + "options.directionalAudio": "Directional Audio", + "options.directionalAudio.off.tooltip": "Classic Stereo sound.", + "options.directionalAudio.on.tooltip": "Uses HRTF-based directional audio to improve the simulation of 3D sound. Requires HRTF compatible audio hardware, and is best experienced with headphones.", + "options.discrete_mouse_scroll": "Discrete Scrolling", + "options.entityDistanceScaling": "Entity Distance", + "options.entityShadows": "Entity Shadows", + "options.font": "Font Settings...", + "options.font.title": "Font Settings", + "options.forceUnicodeFont": "Force Unicode Font", + "options.fov": "FOV", + "options.fov.max": "Quake Pro", + "options.fov.min": "Normal", + "options.fovEffectScale": "FOV Effects", + "options.fovEffectScale.tooltip": "Controls how much the field of view can change with gameplay effects.", + "options.framerate": "%s fps", + "options.framerateLimit": "Max Framerate", + "options.framerateLimit.max": "Unlimited", + "options.fullscreen": "Fullscreen", + "options.fullscreen.current": "Current", + "options.fullscreen.entry": "%sx%s@%s (%sbit)", + "options.fullscreen.resolution": "Fullscreen Resolution", + "options.fullscreen.unavailable": "Setting unavailable", + "options.gamma": "Brightness", + "options.gamma.default": "Default", + "options.gamma.max": "Bright", + "options.gamma.min": "Moody", + "options.generic_value": "%s: %s", + "options.glintSpeed": "Glint Speed", + "options.glintSpeed.tooltip": "Controls how fast the visual glint shimmers across enchanted items.", + "options.glintStrength": "Glint Strength", + "options.glintStrength.tooltip": "Controls how transparent the visual glint is on enchanted items.", + "options.graphics": "Graphics", + "options.graphics.fabulous": "Fabulous!", + "options.graphics.fabulous.tooltip": "%s graphics uses screen shaders for drawing weather, clouds, and particles behind translucent blocks and water.\nThis may severely impact performance for portable devices and 4K displays.", + "options.graphics.fancy": "Fancy", + "options.graphics.fancy.tooltip": "Fancy graphics balances performance and quality for the majority of machines.\nWeather, clouds, and particles may not appear behind translucent blocks or water.", + "options.graphics.fast": "Fast", + "options.graphics.fast.tooltip": "Fast graphics reduces the amount of visible rain and snow.\nTransparency effects are disabled for various blocks such as leaves.", + "options.graphics.warning.accept": "Continue Without Support", + "options.graphics.warning.cancel": "Take Me Back", + "options.graphics.warning.message": "Your graphics device is detected as unsupported for the %s graphics option.\n\nYou may ignore this and continue, however support will not be provided for your device if you choose to use %s graphics.", + "options.graphics.warning.renderer": "Renderer detected: [%s]", + "options.graphics.warning.title": "Graphics Device Unsupported", + "options.graphics.warning.vendor": "Vendor detected: [%s]", + "options.graphics.warning.version": "OpenGL Version detected: [%s]", + "options.guiScale": "GUI Scale", + "options.guiScale.auto": "Auto", + "options.hidden": "Hidden", + "options.hideLightningFlashes": "Hide Lightning Flashes", + "options.hideLightningFlashes.tooltip": "Prevents Lightning Bolts from making the sky flash. The bolts themselves will still be visible.", + "options.hideMatchedNames": "Hide Matched Names", + "options.hideMatchedNames.tooltip": "3rd-party Servers may send chat messages in non-standard formats.\nWith this option on, hidden players will be matched based on chat sender names.", + "options.hideSplashTexts": "Hide Splash Texts", + "options.hideSplashTexts.tooltip": "Hides the yellow splash text in the main menu.", + "options.inactivityFpsLimit": "Reduce FPS when", + "options.inactivityFpsLimit.afk": "AFK", + "options.inactivityFpsLimit.afk.tooltip": "Limits framerate to 30 when the game is not getting any player input for more than a minute. Further limits it to 10 after 9 more minutes.", + "options.inactivityFpsLimit.minimized": "Minimized", + "options.inactivityFpsLimit.minimized.tooltip": "Limits framerate only when the game window is minimized.", + "options.invertMouse": "Invert Mouse", + "options.japaneseGlyphVariants": "Japanese Glyph Variants", + "options.japaneseGlyphVariants.tooltip": "Uses Japanese variants of CJK characters in the default font.", + "options.key.hold": "Hold", + "options.key.toggle": "Toggle", + "options.language": "Language...", + "options.language.title": "Language", + "options.languageAccuracyWarning": "(Language translations may not be 100%% accurate)", + "options.languageWarning": "Language translations may not be 100%% accurate", + "options.mainHand": "Main Hand", + "options.mainHand.left": "Left", + "options.mainHand.right": "Right", + "options.mipmapLevels": "Mipmap Levels", + "options.modelPart.cape": "Cape", + "options.modelPart.hat": "Hat", + "options.modelPart.jacket": "Jacket", + "options.modelPart.left_pants_leg": "Left Pant Leg", + "options.modelPart.left_sleeve": "Left Sleeve", + "options.modelPart.right_pants_leg": "Right Pant Leg", + "options.modelPart.right_sleeve": "Right Sleeve", + "options.mouse_settings": "Mouse Settings...", + "options.mouse_settings.title": "Mouse Settings", + "options.mouseWheelSensitivity": "Scroll Sensitivity", + "options.multiplayer.title": "Multiplayer Settings...", + "options.multiplier": "%sx", + "options.narrator": "Narrator", + "options.narrator.all": "Narrates All", + "options.narrator.chat": "Narrates Chat", + "options.narrator.notavailable": "Not Available", + "options.narrator.off": "OFF", + "options.narrator.system": "Narrates System", + "options.notifications.display_time": "Notification Time", + "options.notifications.display_time.tooltip": "Affects the length of time that all notifications stay visible on the screen.", + "options.off": "OFF", + "options.off.composed": "%s: OFF", + "options.on": "ON", + "options.on.composed": "%s: ON", + "options.online": "Online...", + "options.online.title": "Online Options", + "options.onlyShowSecureChat": "Only Show Secure Chat", + "options.onlyShowSecureChat.tooltip": "Only display messages from other players that can be verified to have been sent by that player, and have not been modified.", + "options.operatorItemsTab": "Operator Items Tab", + "options.particles": "Particles", + "options.particles.all": "All", + "options.particles.decreased": "Decreased", + "options.particles.minimal": "Minimal", + "options.percent_add_value": "%s: +%s%%", + "options.percent_value": "%s: %s%%", + "options.pixel_value": "%s: %spx", + "options.prioritizeChunkUpdates": "Chunk Builder", + "options.prioritizeChunkUpdates.byPlayer": "Semi Blocking", + "options.prioritizeChunkUpdates.byPlayer.tooltip": "Some actions within a chunk will recompile the chunk immediately. This includes block placing & destroying.", + "options.prioritizeChunkUpdates.nearby": "Fully Blocking", + "options.prioritizeChunkUpdates.nearby.tooltip": "Nearby chunks are always compiled immediately. This may impact game performance when blocks are placed or destroyed.", + "options.prioritizeChunkUpdates.none": "Threaded", + "options.prioritizeChunkUpdates.none.tooltip": "Nearby chunks are compiled in parallel threads. This may result in brief visual holes when blocks are destroyed.", + "options.rawMouseInput": "Raw Input", + "options.realmsNotifications": "Realms News & Invites", + "options.realmsNotifications.tooltip": "Fetches Realms news and invites in the title screen and displays their respective icon on the Realms button.", + "options.reducedDebugInfo": "Reduced Debug Info", + "options.renderClouds": "Clouds", + "options.renderDistance": "Render Distance", + "options.resourcepack": "Resource Packs...", + "options.rotateWithMinecart": "Rotate with Minecarts", + "options.rotateWithMinecart.tooltip": "Whether the player's view should rotate with a turning Minecart. Only available in worlds with the 'Minecart Improvements' experimental setting turned on.", + "options.screenEffectScale": "Distortion Effects", + "options.screenEffectScale.tooltip": "Strength of nausea and Nether portal screen distortion effects.\nAt lower values, the nausea effect is replaced with a green overlay.", + "options.sensitivity": "Sensitivity", + "options.sensitivity.max": "HYPERSPEED!!!", + "options.sensitivity.min": "*yawn*", + "options.showSubtitles": "Show Subtitles", + "options.simulationDistance": "Simulation Distance", + "options.skinCustomisation": "Skin Customization...", + "options.skinCustomisation.title": "Skin Customization", + "options.sounds": "Music & Sounds...", + "options.sounds.title": "Music & Sound Options", + "options.telemetry": "Telemetry Data...", + "options.telemetry.button": "Data Collection", + "options.telemetry.button.tooltip": "\"%s\" includes only the required data.\n\"%s\" includes optional, as well as the required data.", + "options.telemetry.disabled": "Telemetry is disabled.", + "options.telemetry.state.all": "All", + "options.telemetry.state.minimal": "Minimal", + "options.telemetry.state.none": "None", + "options.title": "Options", + "options.touchscreen": "Touchscreen Mode", + "options.video": "Video Settings...", + "options.videoTitle": "Video Settings", + "options.viewBobbing": "View Bobbing", + "options.visible": "Shown", + "options.vsync": "VSync", + "outOfMemory.message": "Minecraft has run out of memory.\n\nThis could be caused by a bug in the game or by the Java Virtual Machine not being allocated enough memory.\n\nTo prevent world corruption, the current game has quit. We've tried to free up enough memory to let you go back to the main menu and back to playing, but this may not have worked.\n\nPlease restart the game if you see this message again.", + "outOfMemory.title": "Out of memory!", + "pack.available.title": "Available", + "pack.copyFailure": "Failed to copy packs", + "pack.dropConfirm": "Do you want to add the following packs to Minecraft?", + "pack.dropInfo": "Drag and drop files into this window to add packs", + "pack.dropRejected.message": "The following entries were not valid packs and were not copied:\n %s", + "pack.dropRejected.title": "Non-pack entries", + "pack.folderInfo": "(Place pack files here)", + "pack.incompatible": "Incompatible", + "pack.incompatible.confirm.new": "This pack was made for a newer version of Minecraft and may not work correctly.", + "pack.incompatible.confirm.old": "This pack was made for an older version of Minecraft and may no longer work correctly.", + "pack.incompatible.confirm.title": "Are you sure you want to load this pack?", + "pack.incompatible.new": "(Made for a newer version of Minecraft)", + "pack.incompatible.old": "(Made for an older version of Minecraft)", + "pack.nameAndSource": "%s (%s)", + "pack.openFolder": "Open Pack Folder", + "pack.selected.title": "Selected", + "pack.source.builtin": "built-in", + "pack.source.feature": "feature", + "pack.source.local": "local", + "pack.source.server": "server", + "pack.source.world": "world", + "painting.dimensions": "%sx%s", + "painting.minecraft.alban.author": "Kristoffer Zetterstrand", + "painting.minecraft.alban.title": "Albanian", + "painting.minecraft.aztec.author": "Kristoffer Zetterstrand", + "painting.minecraft.aztec.title": "de_aztec", + "painting.minecraft.aztec2.author": "Kristoffer Zetterstrand", + "painting.minecraft.aztec2.title": "de_aztec", + "painting.minecraft.backyard.author": "Kristoffer Zetterstrand", + "painting.minecraft.backyard.title": "Backyard", + "painting.minecraft.baroque.author": "Sarah Boeving", + "painting.minecraft.baroque.title": "Baroque", + "painting.minecraft.bomb.author": "Kristoffer Zetterstrand", + "painting.minecraft.bomb.title": "Target Successfully Bombed", + "painting.minecraft.bouquet.author": "Kristoffer Zetterstrand", + "painting.minecraft.bouquet.title": "Bouquet", + "painting.minecraft.burning_skull.author": "Kristoffer Zetterstrand", + "painting.minecraft.burning_skull.title": "Skull On Fire", + "painting.minecraft.bust.author": "Kristoffer Zetterstrand", + "painting.minecraft.bust.title": "Bust", + "painting.minecraft.cavebird.author": "Kristoffer Zetterstrand", + "painting.minecraft.cavebird.title": "Cavebird", + "painting.minecraft.changing.author": "Kristoffer Zetterstrand", + "painting.minecraft.changing.title": "Changing", + "painting.minecraft.cotan.author": "Kristoffer Zetterstrand", + "painting.minecraft.cotan.title": "Cotán", + "painting.minecraft.courbet.author": "Kristoffer Zetterstrand", + "painting.minecraft.courbet.title": "Bonjour Monsieur Courbet", + "painting.minecraft.creebet.author": "Kristoffer Zetterstrand", + "painting.minecraft.creebet.title": "Creebet", + "painting.minecraft.donkey_kong.author": "Kristoffer Zetterstrand", + "painting.minecraft.donkey_kong.title": "Kong", + "painting.minecraft.earth.author": "Mojang", + "painting.minecraft.earth.title": "Earth", + "painting.minecraft.endboss.author": "Kristoffer Zetterstrand", + "painting.minecraft.endboss.title": "Endboss", + "painting.minecraft.fern.author": "Kristoffer Zetterstrand", + "painting.minecraft.fern.title": "Fern", + "painting.minecraft.fighters.author": "Kristoffer Zetterstrand", + "painting.minecraft.fighters.title": "Fighters", + "painting.minecraft.finding.author": "Kristoffer Zetterstrand", + "painting.minecraft.finding.title": "Finding", + "painting.minecraft.fire.author": "Mojang", + "painting.minecraft.fire.title": "Fire", + "painting.minecraft.graham.author": "Kristoffer Zetterstrand", + "painting.minecraft.graham.title": "Graham", + "painting.minecraft.humble.author": "Sarah Boeving", + "painting.minecraft.humble.title": "Humble", + "painting.minecraft.kebab.author": "Kristoffer Zetterstrand", + "painting.minecraft.kebab.title": "Kebab med tre pepperoni", + "painting.minecraft.lowmist.author": "Kristoffer Zetterstrand", + "painting.minecraft.lowmist.title": "Lowmist", + "painting.minecraft.match.author": "Kristoffer Zetterstrand", + "painting.minecraft.match.title": "Match", + "painting.minecraft.meditative.author": "Sarah Boeving", + "painting.minecraft.meditative.title": "Meditative", + "painting.minecraft.orb.author": "Kristoffer Zetterstrand", + "painting.minecraft.orb.title": "Orb", + "painting.minecraft.owlemons.author": "Kristoffer Zetterstrand", + "painting.minecraft.owlemons.title": "Owlemons", + "painting.minecraft.passage.author": "Kristoffer Zetterstrand", + "painting.minecraft.passage.title": "Passage", + "painting.minecraft.pigscene.author": "Kristoffer Zetterstrand", + "painting.minecraft.pigscene.title": "Pigscene", + "painting.minecraft.plant.author": "Kristoffer Zetterstrand", + "painting.minecraft.plant.title": "Paradisträd", + "painting.minecraft.pointer.author": "Kristoffer Zetterstrand", + "painting.minecraft.pointer.title": "Pointer", + "painting.minecraft.pond.author": "Kristoffer Zetterstrand", + "painting.minecraft.pond.title": "Pond", + "painting.minecraft.pool.author": "Kristoffer Zetterstrand", + "painting.minecraft.pool.title": "The Pool", + "painting.minecraft.prairie_ride.author": "Sarah Boeving", + "painting.minecraft.prairie_ride.title": "Prairie Ride", + "painting.minecraft.sea.author": "Kristoffer Zetterstrand", + "painting.minecraft.sea.title": "Seaside", + "painting.minecraft.skeleton.author": "Kristoffer Zetterstrand", + "painting.minecraft.skeleton.title": "Mortal Coil", + "painting.minecraft.skull_and_roses.author": "Kristoffer Zetterstrand", + "painting.minecraft.skull_and_roses.title": "Skull and Roses", + "painting.minecraft.stage.author": "Kristoffer Zetterstrand", + "painting.minecraft.stage.title": "The Stage Is Set", + "painting.minecraft.sunflowers.author": "Kristoffer Zetterstrand", + "painting.minecraft.sunflowers.title": "Sunflowers", + "painting.minecraft.sunset.author": "Kristoffer Zetterstrand", + "painting.minecraft.sunset.title": "sunset_dense", + "painting.minecraft.tides.author": "Kristoffer Zetterstrand", + "painting.minecraft.tides.title": "Tides", + "painting.minecraft.unpacked.author": "Sarah Boeving", + "painting.minecraft.unpacked.title": "Unpacked", + "painting.minecraft.void.author": "Kristoffer Zetterstrand", + "painting.minecraft.void.title": "The void", + "painting.minecraft.wanderer.author": "Kristoffer Zetterstrand", + "painting.minecraft.wanderer.title": "Wanderer", + "painting.minecraft.wasteland.author": "Kristoffer Zetterstrand", + "painting.minecraft.wasteland.title": "Wasteland", + "painting.minecraft.water.author": "Mojang", + "painting.minecraft.water.title": "Water", + "painting.minecraft.wind.author": "Mojang", + "painting.minecraft.wind.title": "Wind", + "painting.minecraft.wither.author": "Mojang", + "painting.minecraft.wither.title": "Wither", + "painting.random": "Random variant", + "parsing.bool.expected": "Expected boolean", + "parsing.bool.invalid": "Invalid boolean, expected 'true' or 'false' but found '%s'", + "parsing.double.expected": "Expected double", + "parsing.double.invalid": "Invalid double '%s'", + "parsing.expected": "Expected '%s'", + "parsing.float.expected": "Expected float", + "parsing.float.invalid": "Invalid float '%s'", + "parsing.int.expected": "Expected integer", + "parsing.int.invalid": "Invalid integer '%s'", + "parsing.long.expected": "Expected long", + "parsing.long.invalid": "Invalid long '%s'", + "parsing.quote.escape": "Invalid escape sequence '\\%s' in quoted string", + "parsing.quote.expected.end": "Unclosed quoted string", + "parsing.quote.expected.start": "Expected quote to start a string", + "particle.invalidOptions": "Can't parse particle options: %s", + "particle.notFound": "Unknown particle: %s", + "permissions.requires.entity": "An entity is required to run this command here", + "permissions.requires.player": "A player is required to run this command here", + "potion.potency.0": "", + "potion.potency.1": "II", + "potion.potency.2": "III", + "potion.potency.3": "IV", + "potion.potency.4": "V", + "potion.potency.5": "VI", + "potion.whenDrank": "When Applied:", + "potion.withAmplifier": "%s %s", + "potion.withDuration": "%s (%s)", + "predicate.unknown": "Unknown predicate: %s", + "quickplay.error.invalid_identifier": "Could not find world with the provided identifier", + "quickplay.error.realm_connect": "Could not connect to Realm", + "quickplay.error.realm_permission": "Lacking permission to connect to this Realm", + "quickplay.error.title": "Failed to Quick Play", + "realms.missing.snapshot.error.text": "Realms is currently not supported in snapshots", + "recipe.notFound": "Unknown recipe: %s", + "recipe.toast.description": "Check your recipe book", + "recipe.toast.title": "New Recipes Unlocked!", + "record.nowPlaying": "Now Playing: %s", + "recover_world.bug_tracker": "Report a Bug", + "recover_world.button": "Attempt to Recover", + "recover_world.done.failed": "Failed to recover from previous state.", + "recover_world.done.success": "Recovery was successful!", + "recover_world.done.title": "Recovery done", + "recover_world.issue.missing_file": "Missing file", + "recover_world.issue.none": "No issues", + "recover_world.message": "The following issues occurred while trying to read world folder \"%s\".\nIt might be possible to restore the world from an older state or you can report this issue on the bug tracker.", + "recover_world.no_fallback": "No state to recover from available", + "recover_world.restore": "Attempt to Restore", + "recover_world.restoring": "Attempting to restore world...", + "recover_world.state_entry": "State from %s: ", + "recover_world.state_entry.unknown": "unknown", + "recover_world.title": "Failed to load world", + "recover_world.warning": "Failed to load world summary", + "resourcePack.broken_assets": "BROKEN ASSETS DETECTED", + "resourcepack.downloading": "Downloading Resource Pack", + "resourcePack.high_contrast.name": "High Contrast", + "resourcePack.load_fail": "Resource reload failed", + "resourcePack.programmer_art.name": "Programmer Art", + "resourcepack.progress": "Downloading file (%s MB)...", + "resourcepack.requesting": "Making Request...", + "resourcePack.runtime_failure": "Resource pack error detected", + "resourcePack.server.name": "World Specific Resources", + "resourcePack.title": "Select Resource Packs", + "resourcePack.vanilla.description": "The default look and feel of Minecraft", + "resourcePack.vanilla.name": "Default", + "screenshot.failure": "Couldn't save screenshot: %s", + "screenshot.success": "Saved screenshot as %s", + "selectServer.add": "Add Server", + "selectServer.defaultName": "Minecraft Server", + "selectServer.delete": "Delete", + "selectServer.deleteButton": "Delete", + "selectServer.deleteQuestion": "Are you sure you want to remove this server?", + "selectServer.deleteWarning": "'%s' will be lost forever! (A long time!)", + "selectServer.direct": "Direct Connection", + "selectServer.edit": "Edit", + "selectServer.hiddenAddress": "(Hidden)", + "selectServer.refresh": "Refresh", + "selectServer.select": "Join Server", + "selectWorld.access_failure": "Failed to access world", + "selectWorld.allowCommands": "Allow Cheats", + "selectWorld.allowCommands.info": "Commands like /gamemode, /experience", + "selectWorld.allowCommands.new": "Allow Commands", + "selectWorld.backupEraseCache": "Erase Cached Data", + "selectWorld.backupJoinConfirmButton": "Create Backup and Load", + "selectWorld.backupJoinSkipButton": "I know what I'm doing!", + "selectWorld.backupQuestion.customized": "Customized worlds are no longer supported", + "selectWorld.backupQuestion.downgrade": "Downgrading a world is not supported", + "selectWorld.backupQuestion.experimental": "Worlds using Experimental Settings are not supported", + "selectWorld.backupQuestion.snapshot": "Do you really want to load this world?", + "selectWorld.backupWarning.customized": "Unfortunately, we do not support customized worlds in this version of Minecraft. We can still load this world and keep everything the way it was, but any newly generated terrain will no longer be customized. We're sorry for the inconvenience!", + "selectWorld.backupWarning.downgrade": "This world was last played in version %s; you are on version %s. Downgrading a world could cause corruption - we cannot guarantee that it will load or work. If you still want to continue, please make a backup.", + "selectWorld.backupWarning.experimental": "This world uses experimental settings that could stop working at any time. We cannot guarantee it will load or work. Here be dragons!", + "selectWorld.backupWarning.snapshot": "This world was last played in version %s; you are on version %s. Please make a backup in case you experience world corruptions.", + "selectWorld.bonusItems": "Bonus Chest", + "selectWorld.cheats": "Cheats", + "selectWorld.commands": "Commands", + "selectWorld.conversion": "Must be converted!", + "selectWorld.conversion.tooltip": "This world must be opened in an older version (like 1.6.4) to be safely converted", + "selectWorld.create": "Create New World", + "selectWorld.customizeType": "Customize", + "selectWorld.data_read": "Reading world data...", + "selectWorld.dataPacks": "Data Packs", + "selectWorld.delete": "Delete", + "selectWorld.delete_failure": "Failed to delete world", + "selectWorld.deleteButton": "Delete", + "selectWorld.deleteQuestion": "Are you sure you want to delete this world?", + "selectWorld.deleteWarning": "'%s' will be lost forever! (A long time!)", + "selectWorld.edit": "Edit", + "selectWorld.edit.backup": "Make Backup", + "selectWorld.edit.backupCreated": "Backed up: %s", + "selectWorld.edit.backupFailed": "Backup failed", + "selectWorld.edit.backupFolder": "Open Backups Folder", + "selectWorld.edit.backupSize": "size: %s MB", + "selectWorld.edit.export_worldgen_settings": "Export World Generation Settings", + "selectWorld.edit.export_worldgen_settings.failure": "Export failed", + "selectWorld.edit.export_worldgen_settings.success": "Exported", + "selectWorld.edit.openFolder": "Open World Folder", + "selectWorld.edit.optimize": "Optimize World", + "selectWorld.edit.resetIcon": "Reset Icon", + "selectWorld.edit.save": "Save", + "selectWorld.edit.title": "Edit World", + "selectWorld.enterName": "World Name", + "selectWorld.enterSeed": "Seed for the world generator", + "selectWorld.experimental": "Experimental", + "selectWorld.experimental.details": "Details", + "selectWorld.experimental.details.entry": "Required experimental features: %s", + "selectWorld.experimental.details.title": "Experimental Feature Requirements", + "selectWorld.experimental.message": "Be careful!\nThis configuration requires features that are still under development. Your world might crash, break, or not work with future updates.", + "selectWorld.experimental.title": "Experimental Features Warning", + "selectWorld.experiments": "Experiments", + "selectWorld.experiments.info": "Experiments are potential new features. Be careful as things might break. Experiments can't be turned off after world creation.", + "selectWorld.futureworld.error.text": "Something went wrong while trying to load a world from a future version. This was a risky operation to begin with; sorry it didn't work.", + "selectWorld.futureworld.error.title": "An error occurred!", + "selectWorld.gameMode": "Game Mode", + "selectWorld.gameMode.adventure": "Adventure", + "selectWorld.gameMode.adventure.info": "Same as Survival Mode, but blocks can't be added or removed.", + "selectWorld.gameMode.adventure.line1": "Same as Survival Mode, but blocks can't", + "selectWorld.gameMode.adventure.line2": "be added or removed", + "selectWorld.gameMode.creative": "Creative", + "selectWorld.gameMode.creative.info": "Create, build, and explore without limits. You can fly, have endless materials, and can't be hurt by monsters.", + "selectWorld.gameMode.creative.line1": "Unlimited resources, free flying and", + "selectWorld.gameMode.creative.line2": "destroy blocks instantly", + "selectWorld.gameMode.hardcore": "Hardcore", + "selectWorld.gameMode.hardcore.info": "Survival Mode locked to 'Hard' difficulty. You can't respawn if you die.", + "selectWorld.gameMode.hardcore.line1": "Same as Survival Mode, locked at hardest", + "selectWorld.gameMode.hardcore.line2": "difficulty, and one life only", + "selectWorld.gameMode.spectator": "Spectator", + "selectWorld.gameMode.spectator.info": "You can look but don't touch.", + "selectWorld.gameMode.spectator.line1": "You can look but don't touch", + "selectWorld.gameMode.spectator.line2": "", + "selectWorld.gameMode.survival": "Survival", + "selectWorld.gameMode.survival.info": "Explore a mysterious world where you build, collect, craft, and fight monsters.", + "selectWorld.gameMode.survival.line1": "Search for resources, craft, gain", + "selectWorld.gameMode.survival.line2": "levels, health and hunger", + "selectWorld.gameRules": "Game Rules", + "selectWorld.import_worldgen_settings": "Import Settings", + "selectWorld.import_worldgen_settings.failure": "Error importing settings", + "selectWorld.import_worldgen_settings.select_file": "Select settings file (.json)", + "selectWorld.incompatible_series": "Created by an incompatible version", + "selectWorld.incompatible.description": "This world cannot be opened in this version.\nIt was last played in version %s.", + "selectWorld.incompatible.info": "Incompatible version: %s", + "selectWorld.incompatible.title": "Incompatible version", + "selectWorld.incompatible.tooltip": "This world cannot be opened because it was created by an incompatible version.", + "selectWorld.load_folder_access": "Unable to read or access folder where game worlds are saved!", + "selectWorld.loading_list": "Loading World List", + "selectWorld.locked": "Locked by another running instance of Minecraft", + "selectWorld.mapFeatures": "Generate Structures", + "selectWorld.mapFeatures.info": "Villages, Shipwrecks, etc.", + "selectWorld.mapType": "World Type", + "selectWorld.mapType.normal": "Normal", + "selectWorld.moreWorldOptions": "More World Options...", + "selectWorld.newWorld": "New World", + "selectWorld.recreate": "Re-Create", + "selectWorld.recreate.customized.text": "Customized worlds are no longer supported in this version of Minecraft. We can try to recreate it with the same seed and properties, but any terrain customizations will be lost. We're sorry for the inconvenience!", + "selectWorld.recreate.customized.title": "Customized worlds are no longer supported", + "selectWorld.recreate.error.text": "Something went wrong while trying to recreate a world.", + "selectWorld.recreate.error.title": "An error occurred!", + "selectWorld.resource_load": "Preparing Resources...", + "selectWorld.resultFolder": "Will be saved in:", + "selectWorld.search": "search for worlds", + "selectWorld.seedInfo": "Leave blank for a random seed", + "selectWorld.select": "Play Selected World", + "selectWorld.targetFolder": "Save folder: %s", + "selectWorld.title": "Select World", + "selectWorld.tooltip.fromNewerVersion1": "World was saved in a newer version,", + "selectWorld.tooltip.fromNewerVersion2": "loading this world could cause problems!", + "selectWorld.tooltip.snapshot1": "Don't forget to back up this world", + "selectWorld.tooltip.snapshot2": "before you load it in this snapshot.", + "selectWorld.unable_to_load": "Unable to load worlds", + "selectWorld.version": "Version:", + "selectWorld.versionJoinButton": "Load Anyway", + "selectWorld.versionQuestion": "Do you really want to load this world?", + "selectWorld.versionUnknown": "unknown", + "selectWorld.versionWarning": "This world was last played in version %s and loading it in this version could cause corruption!", + "selectWorld.warning.deprecated.question": "Some features used are deprecated and will stop working in the future. Do you wish to proceed?", + "selectWorld.warning.deprecated.title": "Warning! These settings are using deprecated features", + "selectWorld.warning.experimental.question": "These settings are experimental and could one day stop working. Do you wish to proceed?", + "selectWorld.warning.experimental.title": "Warning! These settings are using experimental features", + "selectWorld.warning.lowDiskSpace.description": "There is not much space left on your device.\nRunning out of disk space while in game can lead to your world being damaged.", + "selectWorld.warning.lowDiskSpace.title": "Warning! Low disk space!", + "selectWorld.world": "World", + "sign.edit": "Edit Sign Message", + "sleep.not_possible": "No amount of rest can pass this night", + "sleep.players_sleeping": "%s/%s players sleeping", + "sleep.skipping_night": "Sleeping through this night", + "slot.only_single_allowed": "Only single slots allowed, got '%s'", + "slot.unknown": "Unknown slot '%s'", + "soundCategory.ambient": "Ambient/Environment", + "soundCategory.block": "Blocks", + "soundCategory.hostile": "Hostile Creatures", + "soundCategory.master": "Master Volume", + "soundCategory.music": "Music", + "soundCategory.neutral": "Friendly Creatures", + "soundCategory.player": "Players", + "soundCategory.record": "Jukebox/Note Blocks", + "soundCategory.voice": "Voice/Speech", + "soundCategory.weather": "Weather", + "spectatorMenu.close": "Close Menu", + "spectatorMenu.next_page": "Next Page", + "spectatorMenu.previous_page": "Previous Page", + "spectatorMenu.root.prompt": "Press a key to select a command, and again to use it.", + "spectatorMenu.team_teleport": "Teleport to Team Member", + "spectatorMenu.team_teleport.prompt": "Select a team to teleport to", + "spectatorMenu.teleport": "Teleport to Player", + "spectatorMenu.teleport.prompt": "Select a player to teleport to", + "stat_type.minecraft.broken": "Times Broken", + "stat_type.minecraft.crafted": "Times Crafted", + "stat_type.minecraft.dropped": "Dropped", + "stat_type.minecraft.killed": "You killed %s %s", + "stat_type.minecraft.killed_by": "%s killed you %s time(s)", + "stat_type.minecraft.killed_by.none": "You have never been killed by %s", + "stat_type.minecraft.killed.none": "You have never killed %s", + "stat_type.minecraft.mined": "Times Mined", + "stat_type.minecraft.picked_up": "Picked Up", + "stat_type.minecraft.used": "Times Used", + "stat.generalButton": "General", + "stat.itemsButton": "Items", + "stat.minecraft.animals_bred": "Animals Bred", + "stat.minecraft.aviate_one_cm": "Distance by Elytra", + "stat.minecraft.bell_ring": "Bells Rung", + "stat.minecraft.boat_one_cm": "Distance by Boat", + "stat.minecraft.clean_armor": "Armor Pieces Cleaned", + "stat.minecraft.clean_banner": "Banners Cleaned", + "stat.minecraft.clean_shulker_box": "Shulker Boxes Cleaned", + "stat.minecraft.climb_one_cm": "Distance Climbed", + "stat.minecraft.crouch_one_cm": "Distance Crouched", + "stat.minecraft.damage_absorbed": "Damage Absorbed", + "stat.minecraft.damage_blocked_by_shield": "Damage Blocked by Shield", + "stat.minecraft.damage_dealt": "Damage Dealt", + "stat.minecraft.damage_dealt_absorbed": "Damage Dealt (Absorbed)", + "stat.minecraft.damage_dealt_resisted": "Damage Dealt (Resisted)", + "stat.minecraft.damage_resisted": "Damage Resisted", + "stat.minecraft.damage_taken": "Damage Taken", + "stat.minecraft.deaths": "Number of Deaths", + "stat.minecraft.drop": "Items Dropped", + "stat.minecraft.eat_cake_slice": "Cake Slices Eaten", + "stat.minecraft.enchant_item": "Items Enchanted", + "stat.minecraft.fall_one_cm": "Distance Fallen", + "stat.minecraft.fill_cauldron": "Cauldrons Filled", + "stat.minecraft.fish_caught": "Fish Caught", + "stat.minecraft.fly_one_cm": "Distance Flown", + "stat.minecraft.horse_one_cm": "Distance by Horse", + "stat.minecraft.inspect_dispenser": "Dispensers Searched", + "stat.minecraft.inspect_dropper": "Droppers Searched", + "stat.minecraft.inspect_hopper": "Hoppers Searched", + "stat.minecraft.interact_with_anvil": "Interactions with Anvil", + "stat.minecraft.interact_with_beacon": "Interactions with Beacon", + "stat.minecraft.interact_with_blast_furnace": "Interactions with Blast Furnace", + "stat.minecraft.interact_with_brewingstand": "Interactions with Brewing Stand", + "stat.minecraft.interact_with_campfire": "Interactions with Campfire", + "stat.minecraft.interact_with_cartography_table": "Interactions with Cartography Table", + "stat.minecraft.interact_with_crafting_table": "Interactions with Crafting Table", + "stat.minecraft.interact_with_furnace": "Interactions with Furnace", + "stat.minecraft.interact_with_grindstone": "Interactions with Grindstone", + "stat.minecraft.interact_with_lectern": "Interactions with Lectern", + "stat.minecraft.interact_with_loom": "Interactions with Loom", + "stat.minecraft.interact_with_smithing_table": "Interactions with Smithing Table", + "stat.minecraft.interact_with_smoker": "Interactions with Smoker", + "stat.minecraft.interact_with_stonecutter": "Interactions with Stonecutter", + "stat.minecraft.jump": "Jumps", + "stat.minecraft.leave_game": "Games Quit", + "stat.minecraft.minecart_one_cm": "Distance by Minecart", + "stat.minecraft.mob_kills": "Mob Kills", + "stat.minecraft.open_barrel": "Barrels Opened", + "stat.minecraft.open_chest": "Chests Opened", + "stat.minecraft.open_enderchest": "Ender Chests Opened", + "stat.minecraft.open_shulker_box": "Shulker Boxes Opened", + "stat.minecraft.pig_one_cm": "Distance by Pig", + "stat.minecraft.play_noteblock": "Note Blocks Played", + "stat.minecraft.play_record": "Music Discs Played", + "stat.minecraft.play_time": "Time Played", + "stat.minecraft.player_kills": "Player Kills", + "stat.minecraft.pot_flower": "Plants Potted", + "stat.minecraft.raid_trigger": "Raids Triggered", + "stat.minecraft.raid_win": "Raids Won", + "stat.minecraft.sleep_in_bed": "Times Slept in a Bed", + "stat.minecraft.sneak_time": "Sneak Time", + "stat.minecraft.sprint_one_cm": "Distance Sprinted", + "stat.minecraft.strider_one_cm": "Distance by Strider", + "stat.minecraft.swim_one_cm": "Distance Swum", + "stat.minecraft.talked_to_villager": "Talked to Villagers", + "stat.minecraft.target_hit": "Targets Hit", + "stat.minecraft.time_since_death": "Time Since Last Death", + "stat.minecraft.time_since_rest": "Time Since Last Rest", + "stat.minecraft.total_world_time": "Time with World Open", + "stat.minecraft.traded_with_villager": "Traded with Villagers", + "stat.minecraft.trigger_trapped_chest": "Trapped Chests Triggered", + "stat.minecraft.tune_noteblock": "Note Blocks Tuned", + "stat.minecraft.use_cauldron": "Water Taken from Cauldron", + "stat.minecraft.walk_on_water_one_cm": "Distance Walked on Water", + "stat.minecraft.walk_one_cm": "Distance Walked", + "stat.minecraft.walk_under_water_one_cm": "Distance Walked under Water", + "stat.mobsButton": "Mobs", + "stats.none": "-", + "structure_block.button.detect_size": "DETECT", + "structure_block.button.load": "LOAD", + "structure_block.button.save": "SAVE", + "structure_block.custom_data": "Custom Data Tag Name", + "structure_block.detect_size": "Detect Structure Size and Position:", + "structure_block.hover.corner": "Corner: %s", + "structure_block.hover.data": "Data: %s", + "structure_block.hover.load": "Load: %s", + "structure_block.hover.save": "Save: %s", + "structure_block.include_entities": "Include Entities:", + "structure_block.integrity": "Structure Integrity and Seed", + "structure_block.integrity.integrity": "Structure Integrity", + "structure_block.integrity.seed": "Structure Seed", + "structure_block.invalid_structure_name": "Invalid structure name '%s'", + "structure_block.load_not_found": "Structure '%s' is not available", + "structure_block.load_prepare": "Structure '%s' position prepared", + "structure_block.load_success": "Structure loaded from '%s'", + "structure_block.mode_info.corner": "Corner Mode - Placement and Size Marker", + "structure_block.mode_info.data": "Data Mode - Game Logic Marker", + "structure_block.mode_info.load": "Load Mode - Load from File", + "structure_block.mode_info.save": "Save Mode - Write to File", + "structure_block.mode.corner": "Corner", + "structure_block.mode.data": "Data", + "structure_block.mode.load": "Load", + "structure_block.mode.save": "Save", + "structure_block.position": "Relative Position", + "structure_block.position.x": "relative Position x", + "structure_block.position.y": "relative position y", + "structure_block.position.z": "relative position z", + "structure_block.save_failure": "Unable to save structure '%s'", + "structure_block.save_success": "Structure saved as '%s'", + "structure_block.show_air": "Show Invisible Blocks:", + "structure_block.show_boundingbox": "Show Bounding Box:", + "structure_block.size": "Structure Size", + "structure_block.size_failure": "Unable to detect structure size. Add corners with matching structure names", + "structure_block.size_success": "Size successfully detected for '%s'", + "structure_block.size.x": "structure size x", + "structure_block.size.y": "structure size y", + "structure_block.size.z": "structure size z", + "structure_block.structure_name": "Structure Name", + "subtitles.ambient.cave": "Eerie noise", + "subtitles.ambient.sound": "Eerie noise", + "subtitles.block.amethyst_block.chime": "Amethyst chimes", + "subtitles.block.amethyst_block.resonate": "Amethyst resonates", + "subtitles.block.anvil.destroy": "Anvil destroyed", + "subtitles.block.anvil.land": "Anvil landed", + "subtitles.block.anvil.use": "Anvil used", + "subtitles.block.barrel.close": "Barrel closes", + "subtitles.block.barrel.open": "Barrel opens", + "subtitles.block.beacon.activate": "Beacon activates", + "subtitles.block.beacon.ambient": "Beacon hums", + "subtitles.block.beacon.deactivate": "Beacon deactivates", + "subtitles.block.beacon.power_select": "Beacon power selected", + "subtitles.block.beehive.drip": "Honey drips", + "subtitles.block.beehive.enter": "Bee enters hive", + "subtitles.block.beehive.exit": "Bee leaves hive", + "subtitles.block.beehive.shear": "Shears scrape", + "subtitles.block.beehive.work": "Bees work", + "subtitles.block.bell.resonate": "Bell resonates", + "subtitles.block.bell.use": "Bell rings", + "subtitles.block.big_dripleaf.tilt_down": "Dripleaf tilts down", + "subtitles.block.big_dripleaf.tilt_up": "Dripleaf tilts up", + "subtitles.block.blastfurnace.fire_crackle": "Blast Furnace crackles", + "subtitles.block.brewing_stand.brew": "Brewing Stand bubbles", + "subtitles.block.bubble_column.bubble_pop": "Bubbles pop", + "subtitles.block.bubble_column.upwards_ambient": "Bubbles flow", + "subtitles.block.bubble_column.upwards_inside": "Bubbles woosh", + "subtitles.block.bubble_column.whirlpool_ambient": "Bubbles whirl", + "subtitles.block.bubble_column.whirlpool_inside": "Bubbles zoom", + "subtitles.block.button.click": "Button clicks", + "subtitles.block.cake.add_candle": "Cake squishes", + "subtitles.block.campfire.crackle": "Campfire crackles", + "subtitles.block.candle.crackle": "Candle crackles", + "subtitles.block.candle.extinguish": "Candle extinguishes", + "subtitles.block.chest.close": "Chest closes", + "subtitles.block.chest.locked": "Chest locked", + "subtitles.block.chest.open": "Chest opens", + "subtitles.block.chorus_flower.death": "Chorus Flower withers", + "subtitles.block.chorus_flower.grow": "Chorus Flower grows", + "subtitles.block.comparator.click": "Comparator clicks", + "subtitles.block.composter.empty": "Composter emptied", + "subtitles.block.composter.fill": "Composter filled", + "subtitles.block.composter.ready": "Composter composts", + "subtitles.block.conduit.activate": "Conduit activates", + "subtitles.block.conduit.ambient": "Conduit pulses", + "subtitles.block.conduit.attack.target": "Conduit attacks", + "subtitles.block.conduit.deactivate": "Conduit deactivates", + "subtitles.block.copper_bulb.turn_off": "Copper Bulb turns off", + "subtitles.block.copper_bulb.turn_on": "Copper Bulb turns on", + "subtitles.block.copper_trapdoor.close": "Trapdoor closes", + "subtitles.block.copper_trapdoor.open": "Trapdoor opens", + "subtitles.block.crafter.craft": "Crafter crafts", + "subtitles.block.crafter.fail": "Crafter fails crafting", + "subtitles.block.creaking_heart.hurt": "Creaking Heart grumbles", + "subtitles.block.creaking_heart.idle": "Eerie noise", + "subtitles.block.creaking_heart.spawn": "Creaking Heart awakens", + "subtitles.block.decorated_pot.insert": "Decorated Pot fills", + "subtitles.block.decorated_pot.insert_fail": "Decorated Pot wobbles", + "subtitles.block.decorated_pot.shatter": "Decorated Pot shatters", + "subtitles.block.dispenser.dispense": "Dispensed item", + "subtitles.block.dispenser.fail": "Dispenser failed", + "subtitles.block.door.toggle": "Door creaks", + "subtitles.block.enchantment_table.use": "Enchanting Table used", + "subtitles.block.end_portal_frame.fill": "Eye of Ender attaches", + "subtitles.block.end_portal.spawn": "End Portal opens", + "subtitles.block.eyeblossom.close": "Eyeblossom closes", + "subtitles.block.eyeblossom.idle": "Eyeblossom whispers", + "subtitles.block.eyeblossom.open": "Eyeblossom opens", + "subtitles.block.fence_gate.toggle": "Fence Gate creaks", + "subtitles.block.fire.ambient": "Fire crackles", + "subtitles.block.fire.extinguish": "Fire extinguished", + "subtitles.block.frogspawn.hatch": "Tadpole hatches", + "subtitles.block.furnace.fire_crackle": "Furnace crackles", + "subtitles.block.generic.break": "Block broken", + "subtitles.block.generic.fall": "Something falls on a block", + "subtitles.block.generic.footsteps": "Footsteps", + "subtitles.block.generic.hit": "Block breaking", + "subtitles.block.generic.place": "Block placed", + "subtitles.block.grindstone.use": "Grindstone used", + "subtitles.block.growing_plant.crop": "Plant cropped", + "subtitles.block.hanging_sign.waxed_interact_fail": "Sign wobbles", + "subtitles.block.honey_block.slide": "Sliding down a honey block", + "subtitles.block.iron_trapdoor.close": "Trapdoor closes", + "subtitles.block.iron_trapdoor.open": "Trapdoor opens", + "subtitles.block.lava.ambient": "Lava pops", + "subtitles.block.lava.extinguish": "Lava hisses", + "subtitles.block.lever.click": "Lever clicks", + "subtitles.block.note_block.note": "Note Block plays", + "subtitles.block.pale_hanging_moss.idle": "Eerie noise", + "subtitles.block.piston.move": "Piston moves", + "subtitles.block.pointed_dripstone.drip_lava": "Lava drips", + "subtitles.block.pointed_dripstone.drip_lava_into_cauldron": "Lava drips into Cauldron", + "subtitles.block.pointed_dripstone.drip_water": "Water drips", + "subtitles.block.pointed_dripstone.drip_water_into_cauldron": "Water drips into Cauldron", + "subtitles.block.pointed_dripstone.land": "Stalactite crashes down", + "subtitles.block.portal.ambient": "Portal whooshes", + "subtitles.block.portal.travel": "Portal noise fades", + "subtitles.block.portal.trigger": "Portal noise intensifies", + "subtitles.block.pressure_plate.click": "Pressure Plate clicks", + "subtitles.block.pumpkin.carve": "Shears carve", + "subtitles.block.redstone_torch.burnout": "Torch fizzes", + "subtitles.block.respawn_anchor.ambient": "Respawn Anchor whooshes", + "subtitles.block.respawn_anchor.charge": "Respawn Anchor is charged", + "subtitles.block.respawn_anchor.deplete": "Respawn Anchor depletes", + "subtitles.block.respawn_anchor.set_spawn": "Respawn Anchor sets spawn", + "subtitles.block.sculk_catalyst.bloom": "Sculk Catalyst blooms", + "subtitles.block.sculk_sensor.clicking": "Sculk Sensor clicks", + "subtitles.block.sculk_sensor.clicking_stop": "Sculk Sensor stops clicking", + "subtitles.block.sculk_shrieker.shriek": "Sculk Shrieker shrieks", + "subtitles.block.sculk.charge": "Sculk bubbles", + "subtitles.block.sculk.spread": "Sculk spreads", + "subtitles.block.shulker_box.close": "Shulker closes", + "subtitles.block.shulker_box.open": "Shulker opens", + "subtitles.block.sign.waxed_interact_fail": "Sign wobbles", + "subtitles.block.smithing_table.use": "Smithing Table used", + "subtitles.block.smoker.smoke": "Smoker smokes", + "subtitles.block.sniffer_egg.crack": "Sniffer Egg cracks", + "subtitles.block.sniffer_egg.hatch": "Sniffer Egg hatches", + "subtitles.block.sniffer_egg.plop": "Sniffer plops", + "subtitles.block.sponge.absorb": "Sponge sucks", + "subtitles.block.sweet_berry_bush.pick_berries": "Berries pop", + "subtitles.block.trapdoor.toggle": "Trapdoor creaks", + "subtitles.block.trial_spawner.about_to_spawn_item": "Ominous item prepares", + "subtitles.block.trial_spawner.ambient": "Trial Spawner crackles", + "subtitles.block.trial_spawner.ambient_charged": "Ominous crackling", + "subtitles.block.trial_spawner.ambient_ominous": "Ominous crackling", + "subtitles.block.trial_spawner.charge_activate": "Omen engulfs Trial Spawner", + "subtitles.block.trial_spawner.close_shutter": "Trial Spawner closes", + "subtitles.block.trial_spawner.detect_player": "Trial Spawner charges up", + "subtitles.block.trial_spawner.eject_item": "Trial Spawner ejects items", + "subtitles.block.trial_spawner.ominous_activate": "Omen engulfs Trial Spawner", + "subtitles.block.trial_spawner.open_shutter": "Trial Spawner opens", + "subtitles.block.trial_spawner.spawn_item": "Ominous item drops", + "subtitles.block.trial_spawner.spawn_item_begin": "Ominous item appears", + "subtitles.block.trial_spawner.spawn_mob": "Trial Spawner spawns a mob", + "subtitles.block.tripwire.attach": "Tripwire attaches", + "subtitles.block.tripwire.click": "Tripwire clicks", + "subtitles.block.tripwire.detach": "Tripwire detaches", + "subtitles.block.vault.activate": "Vault ignites", + "subtitles.block.vault.ambient": "Vault crackles", + "subtitles.block.vault.close_shutter": "Vault closes", + "subtitles.block.vault.deactivate": "Vault extinguishes", + "subtitles.block.vault.eject_item": "Vault ejects item", + "subtitles.block.vault.insert_item": "Vault unlocks", + "subtitles.block.vault.insert_item_fail": "Vault rejects item", + "subtitles.block.vault.open_shutter": "Vault opens", + "subtitles.block.vault.reject_rewarded_player": "Vault rejects player", + "subtitles.block.water.ambient": "Water flows", + "subtitles.block.wet_sponge.dries": "Sponge dries", + "subtitles.chiseled_bookshelf.insert": "Book placed", + "subtitles.chiseled_bookshelf.insert_enchanted": "Enchanted Book placed", + "subtitles.chiseled_bookshelf.take": "Book taken", + "subtitles.chiseled_bookshelf.take_enchanted": "Enchanted Book taken", + "subtitles.enchant.thorns.hit": "Thorns prick", + "subtitles.entity.allay.ambient_with_item": "Allay seeks", + "subtitles.entity.allay.ambient_without_item": "Allay yearns", + "subtitles.entity.allay.death": "Allay dies", + "subtitles.entity.allay.hurt": "Allay hurts", + "subtitles.entity.allay.item_given": "Allay chortles", + "subtitles.entity.allay.item_taken": "Allay allays", + "subtitles.entity.allay.item_thrown": "Allay tosses", + "subtitles.entity.armadillo.ambient": "Armadillo grunts", + "subtitles.entity.armadillo.brush": "Scute is brushed off", + "subtitles.entity.armadillo.death": "Armadillo dies", + "subtitles.entity.armadillo.eat": "Armadillo eats", + "subtitles.entity.armadillo.hurt": "Armadillo hurts", + "subtitles.entity.armadillo.hurt_reduced": "Armadillo shields itself", + "subtitles.entity.armadillo.land": "Armadillo lands", + "subtitles.entity.armadillo.peek": "Armadillo peeks", + "subtitles.entity.armadillo.roll": "Armadillo rolls up", + "subtitles.entity.armadillo.scute_drop": "Armadillo sheds scute", + "subtitles.entity.armadillo.unroll_finish": "Armadillo unrolls", + "subtitles.entity.armadillo.unroll_start": "Armadillo peeks", + "subtitles.entity.armor_stand.fall": "Something fell", + "subtitles.entity.arrow.hit": "Arrow hits", + "subtitles.entity.arrow.hit_player": "Player hit", + "subtitles.entity.arrow.shoot": "Arrow fired", + "subtitles.entity.axolotl.attack": "Axolotl attacks", + "subtitles.entity.axolotl.death": "Axolotl dies", + "subtitles.entity.axolotl.hurt": "Axolotl hurts", + "subtitles.entity.axolotl.idle_air": "Axolotl chirps", + "subtitles.entity.axolotl.idle_water": "Axolotl chirps", + "subtitles.entity.axolotl.splash": "Axolotl splashes", + "subtitles.entity.axolotl.swim": "Axolotl swims", + "subtitles.entity.bat.ambient": "Bat screeches", + "subtitles.entity.bat.death": "Bat dies", + "subtitles.entity.bat.hurt": "Bat hurts", + "subtitles.entity.bat.takeoff": "Bat takes off", + "subtitles.entity.bee.ambient": "Bee buzzes", + "subtitles.entity.bee.death": "Bee dies", + "subtitles.entity.bee.hurt": "Bee hurts", + "subtitles.entity.bee.loop": "Bee buzzes", + "subtitles.entity.bee.loop_aggressive": "Bee buzzes angrily", + "subtitles.entity.bee.pollinate": "Bee buzzes happily", + "subtitles.entity.bee.sting": "Bee stings", + "subtitles.entity.blaze.ambient": "Blaze breathes", + "subtitles.entity.blaze.burn": "Blaze crackles", + "subtitles.entity.blaze.death": "Blaze dies", + "subtitles.entity.blaze.hurt": "Blaze hurts", + "subtitles.entity.blaze.shoot": "Blaze shoots", + "subtitles.entity.boat.paddle_land": "Rowing", + "subtitles.entity.boat.paddle_water": "Rowing", + "subtitles.entity.bogged.ambient": "Bogged rattles", + "subtitles.entity.bogged.death": "Bogged dies", + "subtitles.entity.bogged.hurt": "Bogged hurts", + "subtitles.entity.breeze.charge": "Breeze charges", + "subtitles.entity.breeze.death": "Breeze dies", + "subtitles.entity.breeze.deflect": "Breeze deflects", + "subtitles.entity.breeze.hurt": "Breeze hurts", + "subtitles.entity.breeze.idle_air": "Breeze flies", + "subtitles.entity.breeze.idle_ground": "Breeze whirs", + "subtitles.entity.breeze.inhale": "Breeze inhales", + "subtitles.entity.breeze.jump": "Breeze jumps", + "subtitles.entity.breeze.land": "Breeze lands", + "subtitles.entity.breeze.shoot": "Breeze shoots", + "subtitles.entity.breeze.slide": "Breeze slides", + "subtitles.entity.breeze.whirl": "Breeze whirls", + "subtitles.entity.breeze.wind_burst": "Wind Charge bursts", + "subtitles.entity.camel.ambient": "Camel grunts", + "subtitles.entity.camel.dash": "Camel yeets", + "subtitles.entity.camel.dash_ready": "Camel recovers", + "subtitles.entity.camel.death": "Camel dies", + "subtitles.entity.camel.eat": "Camel eats", + "subtitles.entity.camel.hurt": "Camel hurts", + "subtitles.entity.camel.saddle": "Saddle equips", + "subtitles.entity.camel.sit": "Camel sits down", + "subtitles.entity.camel.stand": "Camel stands up", + "subtitles.entity.camel.step": "Camel steps", + "subtitles.entity.camel.step_sand": "Camel sands", + "subtitles.entity.cat.ambient": "Cat meows", + "subtitles.entity.cat.beg_for_food": "Cat begs", + "subtitles.entity.cat.death": "Cat dies", + "subtitles.entity.cat.eat": "Cat eats", + "subtitles.entity.cat.hiss": "Cat hisses", + "subtitles.entity.cat.hurt": "Cat hurts", + "subtitles.entity.cat.purr": "Cat purrs", + "subtitles.entity.chicken.ambient": "Chicken clucks", + "subtitles.entity.chicken.death": "Chicken dies", + "subtitles.entity.chicken.egg": "Chicken plops", + "subtitles.entity.chicken.hurt": "Chicken hurts", + "subtitles.entity.cod.death": "Cod dies", + "subtitles.entity.cod.flop": "Cod flops", + "subtitles.entity.cod.hurt": "Cod hurts", + "subtitles.entity.cow.ambient": "Cow moos", + "subtitles.entity.cow.death": "Cow dies", + "subtitles.entity.cow.hurt": "Cow hurts", + "subtitles.entity.cow.milk": "Cow gets milked", + "subtitles.entity.creaking.activate": "Creaking watches", + "subtitles.entity.creaking.ambient": "Creaking creaks", + "subtitles.entity.creaking.attack": "Creaking attacks", + "subtitles.entity.creaking.deactivate": "Creaking calms", + "subtitles.entity.creaking.death": "Creaking crumbles", + "subtitles.entity.creaking.freeze": "Creaking stops", + "subtitles.entity.creaking.spawn": "Creaking manifests", + "subtitles.entity.creaking.sway": "Creaking is hit", + "subtitles.entity.creaking.twitch": "Creaking twitches", + "subtitles.entity.creaking.unfreeze": "Creaking moves", + "subtitles.entity.creeper.death": "Creeper dies", + "subtitles.entity.creeper.hurt": "Creeper hurts", + "subtitles.entity.creeper.primed": "Creeper hisses", + "subtitles.entity.dolphin.ambient": "Dolphin chirps", + "subtitles.entity.dolphin.ambient_water": "Dolphin whistles", + "subtitles.entity.dolphin.attack": "Dolphin attacks", + "subtitles.entity.dolphin.death": "Dolphin dies", + "subtitles.entity.dolphin.eat": "Dolphin eats", + "subtitles.entity.dolphin.hurt": "Dolphin hurts", + "subtitles.entity.dolphin.jump": "Dolphin jumps", + "subtitles.entity.dolphin.play": "Dolphin plays", + "subtitles.entity.dolphin.splash": "Dolphin splashes", + "subtitles.entity.dolphin.swim": "Dolphin swims", + "subtitles.entity.donkey.ambient": "Donkey hee-haws", + "subtitles.entity.donkey.angry": "Donkey neighs", + "subtitles.entity.donkey.chest": "Donkey Chest equips", + "subtitles.entity.donkey.death": "Donkey dies", + "subtitles.entity.donkey.eat": "Donkey eats", + "subtitles.entity.donkey.hurt": "Donkey hurts", + "subtitles.entity.donkey.jump": "Donkey jumps", + "subtitles.entity.drowned.ambient": "Drowned gurgles", + "subtitles.entity.drowned.ambient_water": "Drowned gurgles", + "subtitles.entity.drowned.death": "Drowned dies", + "subtitles.entity.drowned.hurt": "Drowned hurts", + "subtitles.entity.drowned.shoot": "Drowned throws Trident", + "subtitles.entity.drowned.step": "Drowned steps", + "subtitles.entity.drowned.swim": "Drowned swims", + "subtitles.entity.egg.throw": "Egg flies", + "subtitles.entity.elder_guardian.ambient": "Elder Guardian moans", + "subtitles.entity.elder_guardian.ambient_land": "Elder Guardian flaps", + "subtitles.entity.elder_guardian.curse": "Elder Guardian curses", + "subtitles.entity.elder_guardian.death": "Elder Guardian dies", + "subtitles.entity.elder_guardian.flop": "Elder Guardian flops", + "subtitles.entity.elder_guardian.hurt": "Elder Guardian hurts", + "subtitles.entity.ender_dragon.ambient": "Dragon roars", + "subtitles.entity.ender_dragon.death": "Dragon dies", + "subtitles.entity.ender_dragon.flap": "Dragon flaps", + "subtitles.entity.ender_dragon.growl": "Dragon growls", + "subtitles.entity.ender_dragon.hurt": "Dragon hurts", + "subtitles.entity.ender_dragon.shoot": "Dragon shoots", + "subtitles.entity.ender_eye.death": "Eye of Ender falls", + "subtitles.entity.ender_eye.launch": "Eye of Ender shoots", + "subtitles.entity.ender_pearl.throw": "Ender Pearl flies", + "subtitles.entity.enderman.ambient": "Enderman vwoops", + "subtitles.entity.enderman.death": "Enderman dies", + "subtitles.entity.enderman.hurt": "Enderman hurts", + "subtitles.entity.enderman.scream": "Enderman screams", + "subtitles.entity.enderman.stare": "Enderman cries out", + "subtitles.entity.enderman.teleport": "Enderman teleports", + "subtitles.entity.endermite.ambient": "Endermite scuttles", + "subtitles.entity.endermite.death": "Endermite dies", + "subtitles.entity.endermite.hurt": "Endermite hurts", + "subtitles.entity.evoker_fangs.attack": "Fangs snap", + "subtitles.entity.evoker.ambient": "Evoker murmurs", + "subtitles.entity.evoker.cast_spell": "Evoker casts spell", + "subtitles.entity.evoker.celebrate": "Evoker cheers", + "subtitles.entity.evoker.death": "Evoker dies", + "subtitles.entity.evoker.hurt": "Evoker hurts", + "subtitles.entity.evoker.prepare_attack": "Evoker prepares attack", + "subtitles.entity.evoker.prepare_summon": "Evoker prepares summoning", + "subtitles.entity.evoker.prepare_wololo": "Evoker prepares charming", + "subtitles.entity.experience_orb.pickup": "Experience gained", + "subtitles.entity.firework_rocket.blast": "Firework blasts", + "subtitles.entity.firework_rocket.launch": "Firework launches", + "subtitles.entity.firework_rocket.twinkle": "Firework twinkles", + "subtitles.entity.fish.swim": "Splashes", + "subtitles.entity.fishing_bobber.retrieve": "Bobber retrieved", + "subtitles.entity.fishing_bobber.splash": "Fishing Bobber splashes", + "subtitles.entity.fishing_bobber.throw": "Bobber thrown", + "subtitles.entity.fox.aggro": "Fox angers", + "subtitles.entity.fox.ambient": "Fox squeaks", + "subtitles.entity.fox.bite": "Fox bites", + "subtitles.entity.fox.death": "Fox dies", + "subtitles.entity.fox.eat": "Fox eats", + "subtitles.entity.fox.hurt": "Fox hurts", + "subtitles.entity.fox.screech": "Fox screeches", + "subtitles.entity.fox.sleep": "Fox snores", + "subtitles.entity.fox.sniff": "Fox sniffs", + "subtitles.entity.fox.spit": "Fox spits", + "subtitles.entity.fox.teleport": "Fox teleports", + "subtitles.entity.frog.ambient": "Frog croaks", + "subtitles.entity.frog.death": "Frog dies", + "subtitles.entity.frog.eat": "Frog eats", + "subtitles.entity.frog.hurt": "Frog hurts", + "subtitles.entity.frog.lay_spawn": "Frog lays spawn", + "subtitles.entity.frog.long_jump": "Frog jumps", + "subtitles.entity.generic.big_fall": "Something fell", + "subtitles.entity.generic.burn": "Burning", + "subtitles.entity.generic.death": "Dying", + "subtitles.entity.generic.drink": "Sipping", + "subtitles.entity.generic.eat": "Eating", + "subtitles.entity.generic.explode": "Explosion", + "subtitles.entity.generic.extinguish_fire": "Fire extinguishes", + "subtitles.entity.generic.hurt": "Something hurts", + "subtitles.entity.generic.small_fall": "Something trips", + "subtitles.entity.generic.splash": "Splashing", + "subtitles.entity.generic.swim": "Swimming", + "subtitles.entity.generic.wind_burst": "Wind Charge bursts", + "subtitles.entity.ghast.ambient": "Ghast cries", + "subtitles.entity.ghast.death": "Ghast dies", + "subtitles.entity.ghast.hurt": "Ghast hurts", + "subtitles.entity.ghast.shoot": "Ghast shoots", + "subtitles.entity.glow_item_frame.add_item": "Glow Item Frame fills", + "subtitles.entity.glow_item_frame.break": "Glow Item Frame broken", + "subtitles.entity.glow_item_frame.place": "Glow Item Frame placed", + "subtitles.entity.glow_item_frame.remove_item": "Glow Item Frame empties", + "subtitles.entity.glow_item_frame.rotate_item": "Glow Item Frame clicks", + "subtitles.entity.glow_squid.ambient": "Glow Squid swims", + "subtitles.entity.glow_squid.death": "Glow Squid dies", + "subtitles.entity.glow_squid.hurt": "Glow Squid hurts", + "subtitles.entity.glow_squid.squirt": "Glow Squid shoots ink", + "subtitles.entity.goat.ambient": "Goat bleats", + "subtitles.entity.goat.death": "Goat dies", + "subtitles.entity.goat.eat": "Goat eats", + "subtitles.entity.goat.horn_break": "Goat Horn breaks off", + "subtitles.entity.goat.hurt": "Goat hurts", + "subtitles.entity.goat.long_jump": "Goat leaps", + "subtitles.entity.goat.milk": "Goat gets milked", + "subtitles.entity.goat.prepare_ram": "Goat stomps", + "subtitles.entity.goat.ram_impact": "Goat rams", + "subtitles.entity.goat.screaming.ambient": "Goat bellows", + "subtitles.entity.goat.step": "Goat steps", + "subtitles.entity.guardian.ambient": "Guardian moans", + "subtitles.entity.guardian.ambient_land": "Guardian flaps", + "subtitles.entity.guardian.attack": "Guardian shoots", + "subtitles.entity.guardian.death": "Guardian dies", + "subtitles.entity.guardian.flop": "Guardian flops", + "subtitles.entity.guardian.hurt": "Guardian hurts", + "subtitles.entity.hoglin.ambient": "Hoglin growls", + "subtitles.entity.hoglin.angry": "Hoglin growls angrily", + "subtitles.entity.hoglin.attack": "Hoglin attacks", + "subtitles.entity.hoglin.converted_to_zombified": "Hoglin converts to Zoglin", + "subtitles.entity.hoglin.death": "Hoglin dies", + "subtitles.entity.hoglin.hurt": "Hoglin hurts", + "subtitles.entity.hoglin.retreat": "Hoglin retreats", + "subtitles.entity.hoglin.step": "Hoglin steps", + "subtitles.entity.horse.ambient": "Horse neighs", + "subtitles.entity.horse.angry": "Horse neighs", + "subtitles.entity.horse.armor": "Horse armor equips", + "subtitles.entity.horse.breathe": "Horse breathes", + "subtitles.entity.horse.death": "Horse dies", + "subtitles.entity.horse.eat": "Horse eats", + "subtitles.entity.horse.gallop": "Horse gallops", + "subtitles.entity.horse.hurt": "Horse hurts", + "subtitles.entity.horse.jump": "Horse jumps", + "subtitles.entity.horse.saddle": "Saddle equips", + "subtitles.entity.husk.ambient": "Husk groans", + "subtitles.entity.husk.converted_to_zombie": "Husk converts to Zombie", + "subtitles.entity.husk.death": "Husk dies", + "subtitles.entity.husk.hurt": "Husk hurts", + "subtitles.entity.illusioner.ambient": "Illusioner murmurs", + "subtitles.entity.illusioner.cast_spell": "Illusioner casts spell", + "subtitles.entity.illusioner.death": "Illusioner dies", + "subtitles.entity.illusioner.hurt": "Illusioner hurts", + "subtitles.entity.illusioner.mirror_move": "Illusioner displaces", + "subtitles.entity.illusioner.prepare_blindness": "Illusioner prepares blindness", + "subtitles.entity.illusioner.prepare_mirror": "Illusioner prepares mirror image", + "subtitles.entity.iron_golem.attack": "Iron Golem attacks", + "subtitles.entity.iron_golem.damage": "Iron Golem breaks", + "subtitles.entity.iron_golem.death": "Iron Golem dies", + "subtitles.entity.iron_golem.hurt": "Iron Golem hurts", + "subtitles.entity.iron_golem.repair": "Iron Golem repaired", + "subtitles.entity.item_frame.add_item": "Item Frame fills", + "subtitles.entity.item_frame.break": "Item Frame broken", + "subtitles.entity.item_frame.place": "Item Frame placed", + "subtitles.entity.item_frame.remove_item": "Item Frame empties", + "subtitles.entity.item_frame.rotate_item": "Item Frame clicks", + "subtitles.entity.item.break": "Item breaks", + "subtitles.entity.item.pickup": "Item plops", + "subtitles.entity.leash_knot.break": "Leash Knot broken", + "subtitles.entity.leash_knot.place": "Leash Knot tied", + "subtitles.entity.lightning_bolt.impact": "Lightning strikes", + "subtitles.entity.lightning_bolt.thunder": "Thunder roars", + "subtitles.entity.llama.ambient": "Llama bleats", + "subtitles.entity.llama.angry": "Llama bleats angrily", + "subtitles.entity.llama.chest": "Llama Chest equips", + "subtitles.entity.llama.death": "Llama dies", + "subtitles.entity.llama.eat": "Llama eats", + "subtitles.entity.llama.hurt": "Llama hurts", + "subtitles.entity.llama.spit": "Llama spits", + "subtitles.entity.llama.step": "Llama steps", + "subtitles.entity.llama.swag": "Llama is decorated", + "subtitles.entity.magma_cube.death": "Magma Cube dies", + "subtitles.entity.magma_cube.hurt": "Magma Cube hurts", + "subtitles.entity.magma_cube.squish": "Magma Cube squishes", + "subtitles.entity.minecart.inside": "Minecart jangles", + "subtitles.entity.minecart.inside_underwater": "Minecart jangles underwater", + "subtitles.entity.minecart.riding": "Minecart rolls", + "subtitles.entity.mooshroom.convert": "Mooshroom transforms", + "subtitles.entity.mooshroom.eat": "Mooshroom eats", + "subtitles.entity.mooshroom.milk": "Mooshroom gets milked", + "subtitles.entity.mooshroom.suspicious_milk": "Mooshroom gets milked suspiciously", + "subtitles.entity.mule.ambient": "Mule hee-haws", + "subtitles.entity.mule.angry": "Mule neighs", + "subtitles.entity.mule.chest": "Mule Chest equips", + "subtitles.entity.mule.death": "Mule dies", + "subtitles.entity.mule.eat": "Mule eats", + "subtitles.entity.mule.hurt": "Mule hurts", + "subtitles.entity.mule.jump": "Mule jumps", + "subtitles.entity.painting.break": "Painting broken", + "subtitles.entity.painting.place": "Painting placed", + "subtitles.entity.panda.aggressive_ambient": "Panda huffs", + "subtitles.entity.panda.ambient": "Panda pants", + "subtitles.entity.panda.bite": "Panda bites", + "subtitles.entity.panda.cant_breed": "Panda bleats", + "subtitles.entity.panda.death": "Panda dies", + "subtitles.entity.panda.eat": "Panda eats", + "subtitles.entity.panda.hurt": "Panda hurts", + "subtitles.entity.panda.pre_sneeze": "Panda's nose tickles", + "subtitles.entity.panda.sneeze": "Panda sneezes", + "subtitles.entity.panda.step": "Panda steps", + "subtitles.entity.panda.worried_ambient": "Panda whimpers", + "subtitles.entity.parrot.ambient": "Parrot talks", + "subtitles.entity.parrot.death": "Parrot dies", + "subtitles.entity.parrot.eats": "Parrot eats", + "subtitles.entity.parrot.fly": "Parrot flutters", + "subtitles.entity.parrot.hurts": "Parrot hurts", + "subtitles.entity.parrot.imitate.blaze": "Parrot breathes", + "subtitles.entity.parrot.imitate.bogged": "Parrot rattles", + "subtitles.entity.parrot.imitate.breeze": "Parrot whirs", + "subtitles.entity.parrot.imitate.creaking": "Parrot creaks", + "subtitles.entity.parrot.imitate.creeper": "Parrot hisses", + "subtitles.entity.parrot.imitate.drowned": "Parrot gurgles", + "subtitles.entity.parrot.imitate.elder_guardian": "Parrot moans", + "subtitles.entity.parrot.imitate.ender_dragon": "Parrot roars", + "subtitles.entity.parrot.imitate.endermite": "Parrot scuttles", + "subtitles.entity.parrot.imitate.evoker": "Parrot murmurs", + "subtitles.entity.parrot.imitate.ghast": "Parrot cries", + "subtitles.entity.parrot.imitate.guardian": "Parrot moans", + "subtitles.entity.parrot.imitate.hoglin": "Parrot growls", + "subtitles.entity.parrot.imitate.husk": "Parrot groans", + "subtitles.entity.parrot.imitate.illusioner": "Parrot murmurs", + "subtitles.entity.parrot.imitate.magma_cube": "Parrot squishes", + "subtitles.entity.parrot.imitate.phantom": "Parrot screeches", + "subtitles.entity.parrot.imitate.piglin": "Parrot snorts", + "subtitles.entity.parrot.imitate.piglin_brute": "Parrot snorts", + "subtitles.entity.parrot.imitate.pillager": "Parrot murmurs", + "subtitles.entity.parrot.imitate.ravager": "Parrot grunts", + "subtitles.entity.parrot.imitate.shulker": "Parrot lurks", + "subtitles.entity.parrot.imitate.silverfish": "Parrot hisses", + "subtitles.entity.parrot.imitate.skeleton": "Parrot rattles", + "subtitles.entity.parrot.imitate.slime": "Parrot squishes", + "subtitles.entity.parrot.imitate.spider": "Parrot hisses", + "subtitles.entity.parrot.imitate.stray": "Parrot rattles", + "subtitles.entity.parrot.imitate.vex": "Parrot vexes", + "subtitles.entity.parrot.imitate.vindicator": "Parrot mutters", + "subtitles.entity.parrot.imitate.warden": "Parrot whines", + "subtitles.entity.parrot.imitate.witch": "Parrot giggles", + "subtitles.entity.parrot.imitate.wither": "Parrot angers", + "subtitles.entity.parrot.imitate.wither_skeleton": "Parrot rattles", + "subtitles.entity.parrot.imitate.zoglin": "Parrot growls", + "subtitles.entity.parrot.imitate.zombie": "Parrot groans", + "subtitles.entity.parrot.imitate.zombie_villager": "Parrot groans", + "subtitles.entity.phantom.ambient": "Phantom screeches", + "subtitles.entity.phantom.bite": "Phantom bites", + "subtitles.entity.phantom.death": "Phantom dies", + "subtitles.entity.phantom.flap": "Phantom flaps", + "subtitles.entity.phantom.hurt": "Phantom hurts", + "subtitles.entity.phantom.swoop": "Phantom swoops", + "subtitles.entity.pig.ambient": "Pig oinks", + "subtitles.entity.pig.death": "Pig dies", + "subtitles.entity.pig.hurt": "Pig hurts", + "subtitles.entity.pig.saddle": "Saddle equips", + "subtitles.entity.piglin_brute.ambient": "Piglin Brute snorts", + "subtitles.entity.piglin_brute.angry": "Piglin Brute snorts angrily", + "subtitles.entity.piglin_brute.converted_to_zombified": "Piglin Brute converts to Zombified Piglin", + "subtitles.entity.piglin_brute.death": "Piglin Brute dies", + "subtitles.entity.piglin_brute.hurt": "Piglin Brute hurts", + "subtitles.entity.piglin_brute.step": "Piglin Brute steps", + "subtitles.entity.piglin.admiring_item": "Piglin admires item", + "subtitles.entity.piglin.ambient": "Piglin snorts", + "subtitles.entity.piglin.angry": "Piglin snorts angrily", + "subtitles.entity.piglin.celebrate": "Piglin celebrates", + "subtitles.entity.piglin.converted_to_zombified": "Piglin converts to Zombified Piglin", + "subtitles.entity.piglin.death": "Piglin dies", + "subtitles.entity.piglin.hurt": "Piglin hurts", + "subtitles.entity.piglin.jealous": "Piglin snorts enviously", + "subtitles.entity.piglin.retreat": "Piglin retreats", + "subtitles.entity.piglin.step": "Piglin steps", + "subtitles.entity.pillager.ambient": "Pillager murmurs", + "subtitles.entity.pillager.celebrate": "Pillager cheers", + "subtitles.entity.pillager.death": "Pillager dies", + "subtitles.entity.pillager.hurt": "Pillager hurts", + "subtitles.entity.player.attack.crit": "Critical attack", + "subtitles.entity.player.attack.knockback": "Knockback attack", + "subtitles.entity.player.attack.strong": "Strong attack", + "subtitles.entity.player.attack.sweep": "Sweeping attack", + "subtitles.entity.player.attack.weak": "Weak attack", + "subtitles.entity.player.burp": "Burp", + "subtitles.entity.player.death": "Player dies", + "subtitles.entity.player.freeze_hurt": "Player freezes", + "subtitles.entity.player.hurt": "Player hurts", + "subtitles.entity.player.hurt_drown": "Player drowning", + "subtitles.entity.player.hurt_on_fire": "Player burns", + "subtitles.entity.player.levelup": "Player dings", + "subtitles.entity.player.teleport": "Player teleports", + "subtitles.entity.polar_bear.ambient": "Polar Bear groans", + "subtitles.entity.polar_bear.ambient_baby": "Baby Polar Bear hums", + "subtitles.entity.polar_bear.death": "Polar Bear dies", + "subtitles.entity.polar_bear.hurt": "Polar Bear hurts", + "subtitles.entity.polar_bear.warning": "Polar Bear roars", + "subtitles.entity.potion.splash": "Bottle smashes", + "subtitles.entity.potion.throw": "Bottle thrown", + "subtitles.entity.puffer_fish.blow_out": "Pufferfish deflates", + "subtitles.entity.puffer_fish.blow_up": "Pufferfish inflates", + "subtitles.entity.puffer_fish.death": "Pufferfish dies", + "subtitles.entity.puffer_fish.flop": "Pufferfish flops", + "subtitles.entity.puffer_fish.hurt": "Pufferfish hurts", + "subtitles.entity.puffer_fish.sting": "Pufferfish stings", + "subtitles.entity.rabbit.ambient": "Rabbit squeaks", + "subtitles.entity.rabbit.attack": "Rabbit attacks", + "subtitles.entity.rabbit.death": "Rabbit dies", + "subtitles.entity.rabbit.hurt": "Rabbit hurts", + "subtitles.entity.rabbit.jump": "Rabbit hops", + "subtitles.entity.ravager.ambient": "Ravager grunts", + "subtitles.entity.ravager.attack": "Ravager bites", + "subtitles.entity.ravager.celebrate": "Ravager cheers", + "subtitles.entity.ravager.death": "Ravager dies", + "subtitles.entity.ravager.hurt": "Ravager hurts", + "subtitles.entity.ravager.roar": "Ravager roars", + "subtitles.entity.ravager.step": "Ravager steps", + "subtitles.entity.ravager.stunned": "Ravager stunned", + "subtitles.entity.salmon.death": "Salmon dies", + "subtitles.entity.salmon.flop": "Salmon flops", + "subtitles.entity.salmon.hurt": "Salmon hurts", + "subtitles.entity.sheep.ambient": "Sheep baahs", + "subtitles.entity.sheep.death": "Sheep dies", + "subtitles.entity.sheep.hurt": "Sheep hurts", + "subtitles.entity.shulker_bullet.hit": "Shulker Bullet explodes", + "subtitles.entity.shulker_bullet.hurt": "Shulker Bullet breaks", + "subtitles.entity.shulker.ambient": "Shulker lurks", + "subtitles.entity.shulker.close": "Shulker closes", + "subtitles.entity.shulker.death": "Shulker dies", + "subtitles.entity.shulker.hurt": "Shulker hurts", + "subtitles.entity.shulker.open": "Shulker opens", + "subtitles.entity.shulker.shoot": "Shulker shoots", + "subtitles.entity.shulker.teleport": "Shulker teleports", + "subtitles.entity.silverfish.ambient": "Silverfish hisses", + "subtitles.entity.silverfish.death": "Silverfish dies", + "subtitles.entity.silverfish.hurt": "Silverfish hurts", + "subtitles.entity.skeleton_horse.ambient": "Skeleton Horse cries", + "subtitles.entity.skeleton_horse.death": "Skeleton Horse dies", + "subtitles.entity.skeleton_horse.hurt": "Skeleton Horse hurts", + "subtitles.entity.skeleton_horse.jump_water": "Skeleton Horse jumps", + "subtitles.entity.skeleton_horse.swim": "Skeleton Horse swims", + "subtitles.entity.skeleton.ambient": "Skeleton rattles", + "subtitles.entity.skeleton.converted_to_stray": "Skeleton converts to Stray", + "subtitles.entity.skeleton.death": "Skeleton dies", + "subtitles.entity.skeleton.hurt": "Skeleton hurts", + "subtitles.entity.skeleton.shoot": "Skeleton shoots", + "subtitles.entity.slime.attack": "Slime attacks", + "subtitles.entity.slime.death": "Slime dies", + "subtitles.entity.slime.hurt": "Slime hurts", + "subtitles.entity.slime.squish": "Slime squishes", + "subtitles.entity.sniffer.death": "Sniffer dies", + "subtitles.entity.sniffer.digging": "Sniffer digs", + "subtitles.entity.sniffer.digging_stop": "Sniffer stands up", + "subtitles.entity.sniffer.drop_seed": "Sniffer drops seed", + "subtitles.entity.sniffer.eat": "Sniffer eats", + "subtitles.entity.sniffer.egg_crack": "Sniffer Egg cracks", + "subtitles.entity.sniffer.egg_hatch": "Sniffer Egg hatches", + "subtitles.entity.sniffer.happy": "Sniffer delights", + "subtitles.entity.sniffer.hurt": "Sniffer hurts", + "subtitles.entity.sniffer.idle": "Sniffer grunts", + "subtitles.entity.sniffer.scenting": "Sniffer scents", + "subtitles.entity.sniffer.searching": "Sniffer searches", + "subtitles.entity.sniffer.sniffing": "Sniffer sniffs", + "subtitles.entity.sniffer.step": "Sniffer steps", + "subtitles.entity.snow_golem.death": "Snow Golem dies", + "subtitles.entity.snow_golem.hurt": "Snow Golem hurts", + "subtitles.entity.snowball.throw": "Snowball flies", + "subtitles.entity.spider.ambient": "Spider hisses", + "subtitles.entity.spider.death": "Spider dies", + "subtitles.entity.spider.hurt": "Spider hurts", + "subtitles.entity.squid.ambient": "Squid swims", + "subtitles.entity.squid.death": "Squid dies", + "subtitles.entity.squid.hurt": "Squid hurts", + "subtitles.entity.squid.squirt": "Squid shoots ink", + "subtitles.entity.stray.ambient": "Stray rattles", + "subtitles.entity.stray.death": "Stray dies", + "subtitles.entity.stray.hurt": "Stray hurts", + "subtitles.entity.strider.death": "Strider dies", + "subtitles.entity.strider.eat": "Strider eats", + "subtitles.entity.strider.happy": "Strider warbles", + "subtitles.entity.strider.hurt": "Strider hurts", + "subtitles.entity.strider.idle": "Strider chirps", + "subtitles.entity.strider.retreat": "Strider retreats", + "subtitles.entity.tadpole.death": "Tadpole dies", + "subtitles.entity.tadpole.flop": "Tadpole flops", + "subtitles.entity.tadpole.grow_up": "Tadpole grows up", + "subtitles.entity.tadpole.hurt": "Tadpole hurts", + "subtitles.entity.tnt.primed": "TNT fizzes", + "subtitles.entity.tropical_fish.death": "Tropical Fish dies", + "subtitles.entity.tropical_fish.flop": "Tropical Fish flops", + "subtitles.entity.tropical_fish.hurt": "Tropical Fish hurts", + "subtitles.entity.turtle.ambient_land": "Turtle chirps", + "subtitles.entity.turtle.death": "Turtle dies", + "subtitles.entity.turtle.death_baby": "Baby Turtle dies", + "subtitles.entity.turtle.egg_break": "Turtle Egg breaks", + "subtitles.entity.turtle.egg_crack": "Turtle Egg cracks", + "subtitles.entity.turtle.egg_hatch": "Turtle Egg hatches", + "subtitles.entity.turtle.hurt": "Turtle hurts", + "subtitles.entity.turtle.hurt_baby": "Baby Turtle hurts", + "subtitles.entity.turtle.lay_egg": "Turtle lays egg", + "subtitles.entity.turtle.shamble": "Turtle shambles", + "subtitles.entity.turtle.shamble_baby": "Baby Turtle shambles", + "subtitles.entity.turtle.swim": "Turtle swims", + "subtitles.entity.vex.ambient": "Vex vexes", + "subtitles.entity.vex.charge": "Vex shrieks", + "subtitles.entity.vex.death": "Vex dies", + "subtitles.entity.vex.hurt": "Vex hurts", + "subtitles.entity.villager.ambient": "Villager mumbles", + "subtitles.entity.villager.celebrate": "Villager cheers", + "subtitles.entity.villager.death": "Villager dies", + "subtitles.entity.villager.hurt": "Villager hurts", + "subtitles.entity.villager.no": "Villager disagrees", + "subtitles.entity.villager.trade": "Villager trades", + "subtitles.entity.villager.work_armorer": "Armorer works", + "subtitles.entity.villager.work_butcher": "Butcher works", + "subtitles.entity.villager.work_cartographer": "Cartographer works", + "subtitles.entity.villager.work_cleric": "Cleric works", + "subtitles.entity.villager.work_farmer": "Farmer works", + "subtitles.entity.villager.work_fisherman": "Fisherman works", + "subtitles.entity.villager.work_fletcher": "Fletcher works", + "subtitles.entity.villager.work_leatherworker": "Leatherworker works", + "subtitles.entity.villager.work_librarian": "Librarian works", + "subtitles.entity.villager.work_mason": "Mason works", + "subtitles.entity.villager.work_shepherd": "Shepherd works", + "subtitles.entity.villager.work_toolsmith": "Toolsmith works", + "subtitles.entity.villager.work_weaponsmith": "Weaponsmith works", + "subtitles.entity.villager.yes": "Villager agrees", + "subtitles.entity.vindicator.ambient": "Vindicator mutters", + "subtitles.entity.vindicator.celebrate": "Vindicator cheers", + "subtitles.entity.vindicator.death": "Vindicator dies", + "subtitles.entity.vindicator.hurt": "Vindicator hurts", + "subtitles.entity.wandering_trader.ambient": "Wandering Trader mumbles", + "subtitles.entity.wandering_trader.death": "Wandering Trader dies", + "subtitles.entity.wandering_trader.disappeared": "Wandering Trader disappears", + "subtitles.entity.wandering_trader.drink_milk": "Wandering Trader drinks milk", + "subtitles.entity.wandering_trader.drink_potion": "Wandering Trader drinks potion", + "subtitles.entity.wandering_trader.hurt": "Wandering Trader hurts", + "subtitles.entity.wandering_trader.no": "Wandering Trader disagrees", + "subtitles.entity.wandering_trader.reappeared": "Wandering Trader appears", + "subtitles.entity.wandering_trader.trade": "Wandering Trader trades", + "subtitles.entity.wandering_trader.yes": "Wandering Trader agrees", + "subtitles.entity.warden.agitated": "Warden groans angrily", + "subtitles.entity.warden.ambient": "Warden whines", + "subtitles.entity.warden.angry": "Warden rages", + "subtitles.entity.warden.attack_impact": "Warden lands hit", + "subtitles.entity.warden.death": "Warden dies", + "subtitles.entity.warden.dig": "Warden digs", + "subtitles.entity.warden.emerge": "Warden emerges", + "subtitles.entity.warden.heartbeat": "Warden's heart beats", + "subtitles.entity.warden.hurt": "Warden hurts", + "subtitles.entity.warden.listening": "Warden takes notice", + "subtitles.entity.warden.listening_angry": "Warden takes notice angrily", + "subtitles.entity.warden.nearby_close": "Warden approaches", + "subtitles.entity.warden.nearby_closer": "Warden advances", + "subtitles.entity.warden.nearby_closest": "Warden draws close", + "subtitles.entity.warden.roar": "Warden roars", + "subtitles.entity.warden.sniff": "Warden sniffs", + "subtitles.entity.warden.sonic_boom": "Warden booms", + "subtitles.entity.warden.sonic_charge": "Warden charges", + "subtitles.entity.warden.step": "Warden steps", + "subtitles.entity.warden.tendril_clicks": "Warden's tendrils click", + "subtitles.entity.wind_charge.throw": "Wind Charge flies", + "subtitles.entity.wind_charge.wind_burst": "Wind Charge bursts", + "subtitles.entity.witch.ambient": "Witch giggles", + "subtitles.entity.witch.celebrate": "Witch cheers", + "subtitles.entity.witch.death": "Witch dies", + "subtitles.entity.witch.drink": "Witch drinks", + "subtitles.entity.witch.hurt": "Witch hurts", + "subtitles.entity.witch.throw": "Witch throws", + "subtitles.entity.wither_skeleton.ambient": "Wither Skeleton rattles", + "subtitles.entity.wither_skeleton.death": "Wither Skeleton dies", + "subtitles.entity.wither_skeleton.hurt": "Wither Skeleton hurts", + "subtitles.entity.wither.ambient": "Wither angers", + "subtitles.entity.wither.death": "Wither dies", + "subtitles.entity.wither.hurt": "Wither hurts", + "subtitles.entity.wither.shoot": "Wither attacks", + "subtitles.entity.wither.spawn": "Wither released", + "subtitles.entity.wolf.ambient": "Wolf pants", + "subtitles.entity.wolf.death": "Wolf dies", + "subtitles.entity.wolf.growl": "Wolf growls", + "subtitles.entity.wolf.hurt": "Wolf hurts", + "subtitles.entity.wolf.shake": "Wolf shakes", + "subtitles.entity.zoglin.ambient": "Zoglin growls", + "subtitles.entity.zoglin.angry": "Zoglin growls angrily", + "subtitles.entity.zoglin.attack": "Zoglin attacks", + "subtitles.entity.zoglin.death": "Zoglin dies", + "subtitles.entity.zoglin.hurt": "Zoglin hurts", + "subtitles.entity.zoglin.step": "Zoglin steps", + "subtitles.entity.zombie_horse.ambient": "Zombie Horse cries", + "subtitles.entity.zombie_horse.death": "Zombie Horse dies", + "subtitles.entity.zombie_horse.hurt": "Zombie Horse hurts", + "subtitles.entity.zombie_villager.ambient": "Zombie Villager groans", + "subtitles.entity.zombie_villager.converted": "Zombie Villager vociferates", + "subtitles.entity.zombie_villager.cure": "Zombie Villager snuffles", + "subtitles.entity.zombie_villager.death": "Zombie Villager dies", + "subtitles.entity.zombie_villager.hurt": "Zombie Villager hurts", + "subtitles.entity.zombie.ambient": "Zombie groans", + "subtitles.entity.zombie.attack_wooden_door": "Door shakes", + "subtitles.entity.zombie.break_wooden_door": "Door breaks", + "subtitles.entity.zombie.converted_to_drowned": "Zombie converts to Drowned", + "subtitles.entity.zombie.death": "Zombie dies", + "subtitles.entity.zombie.destroy_egg": "Turtle Egg stomped", + "subtitles.entity.zombie.hurt": "Zombie hurts", + "subtitles.entity.zombie.infect": "Zombie infects", + "subtitles.entity.zombified_piglin.ambient": "Zombified Piglin grunts", + "subtitles.entity.zombified_piglin.angry": "Zombified Piglin grunts angrily", + "subtitles.entity.zombified_piglin.death": "Zombified Piglin dies", + "subtitles.entity.zombified_piglin.hurt": "Zombified Piglin hurts", + "subtitles.event.mob_effect.bad_omen": "Omen takes hold", + "subtitles.event.mob_effect.raid_omen": "Raid looms nearby", + "subtitles.event.mob_effect.trial_omen": "Ominous trial looms nearby", + "subtitles.event.raid.horn": "Ominous horn blares", + "subtitles.item.armor.equip": "Gear equips", + "subtitles.item.armor.equip_chain": "Chain armor jingles", + "subtitles.item.armor.equip_diamond": "Diamond armor clangs", + "subtitles.item.armor.equip_elytra": "Elytra rustle", + "subtitles.item.armor.equip_gold": "Gold armor clinks", + "subtitles.item.armor.equip_iron": "Iron armor clanks", + "subtitles.item.armor.equip_leather": "Leather armor rustles", + "subtitles.item.armor.equip_netherite": "Netherite armor clanks", + "subtitles.item.armor.equip_turtle": "Turtle Shell thunks", + "subtitles.item.armor.equip_wolf": "Wolf Armor is fastened", + "subtitles.item.armor.unequip_wolf": "Wolf Armor snips away", + "subtitles.item.axe.scrape": "Axe scrapes", + "subtitles.item.axe.strip": "Axe strips", + "subtitles.item.axe.wax_off": "Wax off", + "subtitles.item.bone_meal.use": "Bone Meal crinkles", + "subtitles.item.book.page_turn": "Page rustles", + "subtitles.item.book.put": "Book thumps", + "subtitles.item.bottle.empty": "Bottle empties", + "subtitles.item.bottle.fill": "Bottle fills", + "subtitles.item.brush.brushing.generic": "Brushing", + "subtitles.item.brush.brushing.gravel": "Brushing Gravel", + "subtitles.item.brush.brushing.gravel.complete": "Brushing Gravel completed", + "subtitles.item.brush.brushing.sand": "Brushing Sand", + "subtitles.item.brush.brushing.sand.complete": "Brushing Sand completed", + "subtitles.item.bucket.empty": "Bucket empties", + "subtitles.item.bucket.fill": "Bucket fills", + "subtitles.item.bucket.fill_axolotl": "Axolotl scooped", + "subtitles.item.bucket.fill_fish": "Fish captured", + "subtitles.item.bucket.fill_tadpole": "Tadpole captured", + "subtitles.item.bundle.drop_contents": "Bundle empties", + "subtitles.item.bundle.insert": "Item packed", + "subtitles.item.bundle.insert_fail": "Bundle full", + "subtitles.item.bundle.remove_one": "Item unpacked", + "subtitles.item.chorus_fruit.teleport": "Player teleports", + "subtitles.item.crop.plant": "Crop planted", + "subtitles.item.crossbow.charge": "Crossbow charges up", + "subtitles.item.crossbow.hit": "Arrow hits", + "subtitles.item.crossbow.load": "Crossbow loads", + "subtitles.item.crossbow.shoot": "Crossbow fires", + "subtitles.item.dye.use": "Dye stains", + "subtitles.item.elytra.flying": "Swoosh", + "subtitles.item.firecharge.use": "Fireball whooshes", + "subtitles.item.flintandsteel.use": "Flint and Steel click", + "subtitles.item.glow_ink_sac.use": "Glow Ink Sac splotches", + "subtitles.item.goat_horn.play": "Goat Horn plays", + "subtitles.item.hoe.till": "Hoe tills", + "subtitles.item.honey_bottle.drink": "Gulping", + "subtitles.item.honeycomb.wax_on": "Wax on", + "subtitles.item.ink_sac.use": "Ink Sac splotches", + "subtitles.item.lodestone_compass.lock": "Lodestone Compass locks onto Lodestone", + "subtitles.item.mace.smash_air": "Mace smashes", + "subtitles.item.mace.smash_ground": "Mace smashes", + "subtitles.item.nether_wart.plant": "Crop planted", + "subtitles.item.ominous_bottle.dispose": "Bottle breaks", + "subtitles.item.shears.shear": "Shears click", + "subtitles.item.shield.block": "Shield blocks", + "subtitles.item.shovel.flatten": "Shovel flattens", + "subtitles.item.spyglass.stop_using": "Spyglass retracts", + "subtitles.item.spyglass.use": "Spyglass expands", + "subtitles.item.totem.use": "Totem activates", + "subtitles.item.trident.hit": "Trident stabs", + "subtitles.item.trident.hit_ground": "Trident vibrates", + "subtitles.item.trident.return": "Trident returns", + "subtitles.item.trident.riptide": "Trident zooms", + "subtitles.item.trident.throw": "Trident clangs", + "subtitles.item.trident.thunder": "Trident thunder cracks", + "subtitles.item.wolf_armor.break": "Wolf Armor breaks", + "subtitles.item.wolf_armor.crack": "Wolf Armor cracks", + "subtitles.item.wolf_armor.damage": "Wolf Armor takes damage", + "subtitles.item.wolf_armor.repair": "Wolf Armor is repaired", + "subtitles.particle.soul_escape": "Soul escapes", + "subtitles.ui.cartography_table.take_result": "Map drawn", + "subtitles.ui.hud.bubble_pop": "Breath meter dropping", + "subtitles.ui.loom.take_result": "Loom used", + "subtitles.ui.stonecutter.take_result": "Stonecutter used", + "subtitles.weather.rain": "Rain falls", + "symlink_warning.message": "Loading worlds from folders with symbolic links can be unsafe if you don't know exactly what you are doing. Please visit %s to learn more.", + "symlink_warning.message.pack": "Loading packs with symbolic links can be unsafe if you don't know exactly what you are doing. Please visit %s to learn more.", + "symlink_warning.message.world": "Loading worlds from folders with symbolic links can be unsafe if you don't know exactly what you are doing. Please visit %s to learn more.", + "symlink_warning.more_info": "More Information", + "symlink_warning.title": "World folder contains symbolic links", + "symlink_warning.title.pack": "Added pack(s) contain(s) symbolic links", + "symlink_warning.title.world": "The world folder contains symbolic links", + "team.collision.always": "Always", + "team.collision.never": "Never", + "team.collision.pushOtherTeams": "Push other teams", + "team.collision.pushOwnTeam": "Push own team", + "team.notFound": "Unknown team '%s'", + "team.visibility.always": "Always", + "team.visibility.hideForOtherTeams": "Hide for other teams", + "team.visibility.hideForOwnTeam": "Hide for own team", + "team.visibility.never": "Never", + "telemetry_info.button.give_feedback": "Give Feedback", + "telemetry_info.button.privacy_statement": "Privacy Statement", + "telemetry_info.button.show_data": "View My Data", + "telemetry_info.opt_in.description": "I consent to sending optional telemetry data", + "telemetry_info.property_title": "Included Data", + "telemetry_info.screen.description": "Collecting this data helps us improve Minecraft by guiding us in directions that are relevant to our players.\nYou can also send in additional feedback to help us keep improving Minecraft.", + "telemetry_info.screen.title": "Telemetry Data Collection", + "telemetry.event.advancement_made.description": "Understanding the context behind receiving an advancement can help us better understand and improve the progression of the game.", + "telemetry.event.advancement_made.title": "Advancement Made", + "telemetry.event.game_load_times.description": "This event can help us figure out where startup performance improvements are needed by measuring the execution times of the startup phases.", + "telemetry.event.game_load_times.title": "Game Load Times", + "telemetry.event.optional": "%s (Optional)", + "telemetry.event.optional.disabled": "%s (Optional) - Disabled", + "telemetry.event.performance_metrics.description": "Knowing the overall performance profile of Minecraft helps us tune and optimize the game for a wide range of machine specifications and operating systems. \nGame version is included to help us compare the performance profile for new versions of Minecraft.", + "telemetry.event.performance_metrics.title": "Performance Metrics", + "telemetry.event.required": "%s (Required)", + "telemetry.event.world_load_times.description": "It's important for us to understand how long it takes to join a world, and how that changes over time. For example, when we add new features or do larger technical changes, we need to see what impact that had on load times.", + "telemetry.event.world_load_times.title": "World Load Times", + "telemetry.event.world_loaded.description": "Knowing how players play Minecraft (such as Game Mode, client or server modded, and game version) allows us to focus game updates to improve the areas that players care about most.\nThe World Loaded event is paired with the World Unloaded event to calculate how long the play session has lasted.", + "telemetry.event.world_loaded.title": "World Loaded", + "telemetry.event.world_unloaded.description": "This event is paired with the World Loaded event to calculate how long the world session has lasted.\nThe duration (in seconds and ticks) is measured when a world session has ended (quitting to title, disconnecting from a server).", + "telemetry.event.world_unloaded.title": "World Unloaded", + "telemetry.property.advancement_game_time.title": "Game Time (Ticks)", + "telemetry.property.advancement_id.title": "Advancement ID", + "telemetry.property.client_id.title": "Client ID", + "telemetry.property.client_modded.title": "Client Modded", + "telemetry.property.dedicated_memory_kb.title": "Dedicated Memory (kB)", + "telemetry.property.event_timestamp_utc.title": "Event Timestamp (UTC)", + "telemetry.property.frame_rate_samples.title": "Frame Rate Samples (FPS)", + "telemetry.property.game_mode.title": "Game Mode", + "telemetry.property.game_version.title": "Game Version", + "telemetry.property.launcher_name.title": "Launcher Name", + "telemetry.property.load_time_bootstrap_ms.title": "Bootstrap Time (Milliseconds)", + "telemetry.property.load_time_loading_overlay_ms.title": "Time in Loading Screen (Milliseconds)", + "telemetry.property.load_time_pre_window_ms.title": "Time Before Window Opens (Milliseconds)", + "telemetry.property.load_time_total_time_ms.title": "Total Load Time (Milliseconds)", + "telemetry.property.minecraft_session_id.title": "Minecraft Session ID", + "telemetry.property.new_world.title": "New World", + "telemetry.property.number_of_samples.title": "Sample Count", + "telemetry.property.operating_system.title": "Operating System", + "telemetry.property.opt_in.title": "Opt-In", + "telemetry.property.platform.title": "Platform", + "telemetry.property.realms_map_content.title": "Realms Map Content (Minigame Name)", + "telemetry.property.render_distance.title": "Render Distance", + "telemetry.property.render_time_samples.title": "Render Time Samples", + "telemetry.property.seconds_since_load.title": "Time Since Load (Seconds)", + "telemetry.property.server_modded.title": "Server Modded", + "telemetry.property.server_type.title": "Server Type", + "telemetry.property.ticks_since_load.title": "Time Since Load (Ticks)", + "telemetry.property.used_memory_samples.title": "Used Random Access Memory", + "telemetry.property.user_id.title": "User ID", + "telemetry.property.world_load_time_ms.title": "World Load Time (Milliseconds)", + "telemetry.property.world_session_id.title": "World Session ID", + "title.32bit.deprecation": "32-bit system detected: this may prevent you from playing in the future as a 64-bit system will be required!", + "title.32bit.deprecation.realms": "Minecraft will soon require a 64-bit system, which will prevent you from playing or using Realms on this device. You will need to manually cancel any Realms subscription.", + "title.32bit.deprecation.realms.check": "Do not show this screen again", + "title.32bit.deprecation.realms.header": "32-bit system detected", + "title.credits": "Copyright Mojang AB. Do not distribute!", + "title.multiplayer.disabled": "Multiplayer is disabled. Please check your Microsoft account settings.", + "title.multiplayer.disabled.banned.name": "You must change your name before you can play online", + "title.multiplayer.disabled.banned.permanent": "Your account is permanently suspended from online play", + "title.multiplayer.disabled.banned.temporary": "Your account is temporarily suspended from online play", + "title.multiplayer.lan": "Multiplayer (LAN)", + "title.multiplayer.other": "Multiplayer (3rd-party Server)", + "title.multiplayer.realms": "Multiplayer (Realms)", + "title.singleplayer": "Singleplayer", + "translation.test.args": "%s %s", + "translation.test.complex": "Prefix, %s%2$s again %s and %1$s lastly %s and also %1$s again!", + "translation.test.escape": "%%s %%%s %%%%s %%%%%s", + "translation.test.invalid": "hi %", + "translation.test.invalid2": "hi % s", + "translation.test.none": "Hello, world!", + "translation.test.world": "world", + "trim_material.minecraft.amethyst": "Amethyst Material", + "trim_material.minecraft.copper": "Copper Material", + "trim_material.minecraft.diamond": "Diamond Material", + "trim_material.minecraft.emerald": "Emerald Material", + "trim_material.minecraft.gold": "Gold Material", + "trim_material.minecraft.iron": "Iron Material", + "trim_material.minecraft.lapis": "Lapis Material", + "trim_material.minecraft.netherite": "Netherite Material", + "trim_material.minecraft.quartz": "Quartz Material", + "trim_material.minecraft.redstone": "Redstone Material", + "trim_material.minecraft.resin": "Resin Material", + "trim_pattern.minecraft.bolt": "Bolt Armor Trim", + "trim_pattern.minecraft.coast": "Coast Armor Trim", + "trim_pattern.minecraft.dune": "Dune Armor Trim", + "trim_pattern.minecraft.eye": "Eye Armor Trim", + "trim_pattern.minecraft.flow": "Flow Armor Trim", + "trim_pattern.minecraft.host": "Host Armor Trim", + "trim_pattern.minecraft.raiser": "Raiser Armor Trim", + "trim_pattern.minecraft.rib": "Rib Armor Trim", + "trim_pattern.minecraft.sentry": "Sentry Armor Trim", + "trim_pattern.minecraft.shaper": "Shaper Armor Trim", + "trim_pattern.minecraft.silence": "Silence Armor Trim", + "trim_pattern.minecraft.snout": "Snout Armor Trim", + "trim_pattern.minecraft.spire": "Spire Armor Trim", + "trim_pattern.minecraft.tide": "Tide Armor Trim", + "trim_pattern.minecraft.vex": "Vex Armor Trim", + "trim_pattern.minecraft.ward": "Ward Armor Trim", + "trim_pattern.minecraft.wayfinder": "Wayfinder Armor Trim", + "trim_pattern.minecraft.wild": "Wild Armor Trim", + "tutorial.bundleInsert.description": "Right Click to add items", + "tutorial.bundleInsert.title": "Use a Bundle", + "tutorial.craft_planks.description": "The recipe book can help", + "tutorial.craft_planks.title": "Craft wooden planks", + "tutorial.find_tree.description": "Punch it to collect wood", + "tutorial.find_tree.title": "Find a tree", + "tutorial.look.description": "Use your mouse to turn", + "tutorial.look.title": "Look around", + "tutorial.move.description": "Jump with %s", + "tutorial.move.title": "Move with %s, %s, %s and %s", + "tutorial.open_inventory.description": "Press %s", + "tutorial.open_inventory.title": "Open your inventory", + "tutorial.punch_tree.description": "Hold down %s", + "tutorial.punch_tree.title": "Destroy the tree", + "tutorial.socialInteractions.description": "Press %s to open", + "tutorial.socialInteractions.title": "Social Interactions", + "upgrade.minecraft.netherite_upgrade": "Netherite Upgrade" +} \ No newline at end of file diff --git a/data/pc/1.21.4/materials.json b/data/pc/1.21.4/materials.json new file mode 100644 index 000000000..e1862eb50 --- /dev/null +++ b/data/pc/1.21.4/materials.json @@ -0,0 +1,134 @@ +{ + "default": {}, + "leaves": { + "1032": 15.0 + }, + "coweb": { + "1032": 15.0 + }, + "plant": {}, + "gourd": {}, + "vine_or_glow_lichen": { + "1032": 2.0 + }, + "wool": { + "1032": 5.0 + }, + "incorrect_for_wooden_tool": { + "850": 1.0, + "851": 1.0, + "852": 1.0, + "853": 1.0 + }, + "mineable/shovel": { + "850": 1.0, + "855": 1.0, + "860": 1.0, + "865": 1.0, + "870": 1.0, + "875": 1.0 + }, + "mineable/pickaxe": { + "851": 1.0, + "856": 1.0, + "861": 1.0, + "866": 1.0, + "871": 1.0, + "876": 1.0 + }, + "mineable/axe": { + "852": 1.0, + "857": 1.0, + "862": 1.0, + "867": 1.0, + "872": 1.0, + "877": 1.0 + }, + "mineable/hoe": { + "853": 1.0, + "858": 1.0, + "863": 1.0, + "868": 1.0, + "873": 1.0, + "878": 1.0 + }, + "incorrect_for_stone_tool": { + "855": 1.0, + "856": 1.0, + "857": 1.0, + "858": 1.0 + }, + "incorrect_for_gold_tool": { + "860": 1.0, + "861": 1.0, + "862": 1.0, + "863": 1.0 + }, + "incorrect_for_iron_tool": { + "865": 1.0, + "866": 1.0, + "867": 1.0, + "868": 1.0 + }, + "incorrect_for_diamond_tool": { + "870": 1.0, + "871": 1.0, + "872": 1.0, + "873": 1.0 + }, + "incorrect_for_netherite_tool": { + "875": 1.0, + "876": 1.0, + "877": 1.0, + "878": 1.0 + }, + "plant;mineable/axe": { + "852": 1.0, + "857": 1.0, + "862": 1.0, + "867": 1.0, + "872": 1.0, + "877": 1.0 + }, + "gourd;mineable/axe": { + "852": 1.0, + "857": 1.0, + "862": 1.0, + "867": 1.0, + "872": 1.0, + "877": 1.0 + }, + "leaves;mineable/hoe": { + "1032": 15.0, + "853": 1.0, + "858": 1.0, + "863": 1.0, + "868": 1.0, + "873": 1.0, + "878": 1.0 + }, + "leaves;mineable/axe;mineable/hoe": { + "1032": 15.0, + "852": 1.0, + "857": 1.0, + "862": 1.0, + "867": 1.0, + "872": 1.0, + "877": 1.0, + "853": 1.0, + "858": 1.0, + "863": 1.0, + "868": 1.0, + "873": 1.0, + "878": 1.0 + }, + "vine_or_glow_lichen;plant;mineable/axe": { + "1032": 2.0, + "852": 1.0, + "857": 1.0, + "862": 1.0, + "867": 1.0, + "872": 1.0, + "877": 1.0 + } +} \ No newline at end of file diff --git a/data/pc/1.21.4/particles.json b/data/pc/1.21.4/particles.json new file mode 100644 index 000000000..38901f1d3 --- /dev/null +++ b/data/pc/1.21.4/particles.json @@ -0,0 +1,450 @@ +[ + { + "id": 0, + "name": "angry_villager" + }, + { + "id": 1, + "name": "block" + }, + { + "id": 2, + "name": "block_marker" + }, + { + "id": 3, + "name": "bubble" + }, + { + "id": 4, + "name": "cloud" + }, + { + "id": 5, + "name": "crit" + }, + { + "id": 6, + "name": "damage_indicator" + }, + { + "id": 7, + "name": "dragon_breath" + }, + { + "id": 8, + "name": "dripping_lava" + }, + { + "id": 9, + "name": "falling_lava" + }, + { + "id": 10, + "name": "landing_lava" + }, + { + "id": 11, + "name": "dripping_water" + }, + { + "id": 12, + "name": "falling_water" + }, + { + "id": 13, + "name": "dust" + }, + { + "id": 14, + "name": "dust_color_transition" + }, + { + "id": 15, + "name": "effect" + }, + { + "id": 16, + "name": "elder_guardian" + }, + { + "id": 17, + "name": "enchanted_hit" + }, + { + "id": 18, + "name": "enchant" + }, + { + "id": 19, + "name": "end_rod" + }, + { + "id": 20, + "name": "entity_effect" + }, + { + "id": 21, + "name": "explosion_emitter" + }, + { + "id": 22, + "name": "explosion" + }, + { + "id": 23, + "name": "gust" + }, + { + "id": 24, + "name": "small_gust" + }, + { + "id": 25, + "name": "gust_emitter_large" + }, + { + "id": 26, + "name": "gust_emitter_small" + }, + { + "id": 27, + "name": "sonic_boom" + }, + { + "id": 28, + "name": "falling_dust" + }, + { + "id": 29, + "name": "firework" + }, + { + "id": 30, + "name": "fishing" + }, + { + "id": 31, + "name": "flame" + }, + { + "id": 32, + "name": "infested" + }, + { + "id": 33, + "name": "cherry_leaves" + }, + { + "id": 34, + "name": "pale_oak_leaves" + }, + { + "id": 35, + "name": "sculk_soul" + }, + { + "id": 36, + "name": "sculk_charge" + }, + { + "id": 37, + "name": "sculk_charge_pop" + }, + { + "id": 38, + "name": "soul_fire_flame" + }, + { + "id": 39, + "name": "soul" + }, + { + "id": 40, + "name": "flash" + }, + { + "id": 41, + "name": "happy_villager" + }, + { + "id": 42, + "name": "composter" + }, + { + "id": 43, + "name": "heart" + }, + { + "id": 44, + "name": "instant_effect" + }, + { + "id": 45, + "name": "item" + }, + { + "id": 46, + "name": "vibration" + }, + { + "id": 47, + "name": "trail" + }, + { + "id": 48, + "name": "item_slime" + }, + { + "id": 49, + "name": "item_cobweb" + }, + { + "id": 50, + "name": "item_snowball" + }, + { + "id": 51, + "name": "large_smoke" + }, + { + "id": 52, + "name": "lava" + }, + { + "id": 53, + "name": "mycelium" + }, + { + "id": 54, + "name": "note" + }, + { + "id": 55, + "name": "poof" + }, + { + "id": 56, + "name": "portal" + }, + { + "id": 57, + "name": "rain" + }, + { + "id": 58, + "name": "smoke" + }, + { + "id": 59, + "name": "white_smoke" + }, + { + "id": 60, + "name": "sneeze" + }, + { + "id": 61, + "name": "spit" + }, + { + "id": 62, + "name": "squid_ink" + }, + { + "id": 63, + "name": "sweep_attack" + }, + { + "id": 64, + "name": "totem_of_undying" + }, + { + "id": 65, + "name": "underwater" + }, + { + "id": 66, + "name": "splash" + }, + { + "id": 67, + "name": "witch" + }, + { + "id": 68, + "name": "bubble_pop" + }, + { + "id": 69, + "name": "current_down" + }, + { + "id": 70, + "name": "bubble_column_up" + }, + { + "id": 71, + "name": "nautilus" + }, + { + "id": 72, + "name": "dolphin" + }, + { + "id": 73, + "name": "campfire_cosy_smoke" + }, + { + "id": 74, + "name": "campfire_signal_smoke" + }, + { + "id": 75, + "name": "dripping_honey" + }, + { + "id": 76, + "name": "falling_honey" + }, + { + "id": 77, + "name": "landing_honey" + }, + { + "id": 78, + "name": "falling_nectar" + }, + { + "id": 79, + "name": "falling_spore_blossom" + }, + { + "id": 80, + "name": "ash" + }, + { + "id": 81, + "name": "crimson_spore" + }, + { + "id": 82, + "name": "warped_spore" + }, + { + "id": 83, + "name": "spore_blossom_air" + }, + { + "id": 84, + "name": "dripping_obsidian_tear" + }, + { + "id": 85, + "name": "falling_obsidian_tear" + }, + { + "id": 86, + "name": "landing_obsidian_tear" + }, + { + "id": 87, + "name": "reverse_portal" + }, + { + "id": 88, + "name": "white_ash" + }, + { + "id": 89, + "name": "small_flame" + }, + { + "id": 90, + "name": "snowflake" + }, + { + "id": 91, + "name": "dripping_dripstone_lava" + }, + { + "id": 92, + "name": "falling_dripstone_lava" + }, + { + "id": 93, + "name": "dripping_dripstone_water" + }, + { + "id": 94, + "name": "falling_dripstone_water" + }, + { + "id": 95, + "name": "glow_squid_ink" + }, + { + "id": 96, + "name": "glow" + }, + { + "id": 97, + "name": "wax_on" + }, + { + "id": 98, + "name": "wax_off" + }, + { + "id": 99, + "name": "electric_spark" + }, + { + "id": 100, + "name": "scrape" + }, + { + "id": 101, + "name": "shriek" + }, + { + "id": 102, + "name": "egg_crack" + }, + { + "id": 103, + "name": "dust_plume" + }, + { + "id": 104, + "name": "trial_spawner_detection" + }, + { + "id": 105, + "name": "trial_spawner_detection_ominous" + }, + { + "id": 106, + "name": "vault_connection" + }, + { + "id": 107, + "name": "dust_pillar" + }, + { + "id": 108, + "name": "ominous_spawning" + }, + { + "id": 109, + "name": "raid_omen" + }, + { + "id": 110, + "name": "trial_omen" + }, + { + "id": 111, + "name": "block_crumble" + } +] \ No newline at end of file diff --git a/data/pc/1.21.4/protocol.json b/data/pc/1.21.4/protocol.json new file mode 100644 index 000000000..1f227063c --- /dev/null +++ b/data/pc/1.21.4/protocol.json @@ -0,0 +1,9533 @@ +{ + "types": { + "varint": "native", + "varlong": "native", + "optvarint": "varint", + "pstring": "native", + "buffer": "native", + "u8": "native", + "u16": "native", + "u32": "native", + "u64": "native", + "i8": "native", + "i16": "native", + "i32": "native", + "i64": "native", + "bool": "native", + "f32": "native", + "f64": "native", + "UUID": "native", + "option": "native", + "entityMetadataLoop": "native", + "topBitSetTerminatedArray": "native", + "bitfield": "native", + "bitflags": "native", + "container": "native", + "switch": "native", + "void": "native", + "array": "native", + "restBuffer": "native", + "anonymousNbt": "native", + "anonOptionalNbt": "native", + "registryEntryHolder": "native", + "registryEntryHolderSet": "native", + "ByteArray": [ + "buffer", + { + "countType": "varint" + } + ], + "string": [ + "pstring", + { + "countType": "varint" + } + ], + "vec2f": [ + "container", + [ + { + "name": "x", + "type": "f32" + }, + { + "name": "y", + "type": "f32" + } + ] + ], + "vec3f": [ + "container", + [ + { + "name": "x", + "type": "f32" + }, + { + "name": "y", + "type": "f32" + }, + { + "name": "z", + "type": "f32" + } + ] + ], + "vec4f": [ + "container", + [ + { + "name": "x", + "type": "f32" + }, + { + "name": "y", + "type": "f32" + }, + { + "name": "z", + "type": "f32" + }, + { + "name": "w", + "type": "f32" + } + ] + ], + "vec3f64": [ + "container", + [ + { + "name": "x", + "type": "f64" + }, + { + "name": "y", + "type": "f64" + }, + { + "name": "z", + "type": "f64" + } + ] + ], + "IDSet": [ + "registryEntryHolderSet", + { + "base": { + "name": "name", + "type": "string" + }, + "otherwise": { + "name": "ids", + "type": "varint" + } + } + ], + "ContainerID": "varint", + "SoundEvent": [ + "container", + [ + { + "name": "soundName", + "type": "string" + }, + { + "name": "fixedRange", + "type": [ + "option", + "f32" + ] + } + ] + ], + "RecipeDisplay": [ + "container", + [ + { + "name": "type", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "crafting_shapeless", + "1": "crafting_shaped", + "2": "furnace", + "3": "stonecutter", + "4": "smithing" + } + } + ] + }, + { + "name": "data", + "type": [ + "switch", + { + "compareTo": "type", + "fields": { + "crafting_shapeless": [ + "container", + [ + { + "name": "ingredients", + "type": [ + "array", + { + "countType": "varint", + "type": "SlotDisplay" + } + ] + }, + { + "name": "result", + "type": "SlotDisplay" + }, + { + "name": "craftingStation", + "type": "SlotDisplay" + } + ] + ], + "crafting_shaped": [ + "container", + [ + { + "name": "width", + "type": "varint" + }, + { + "name": "height", + "type": "varint" + }, + { + "name": "ingredients", + "type": [ + "array", + { + "countType": "varint", + "type": "SlotDisplay" + } + ] + }, + { + "name": "result", + "type": "SlotDisplay" + }, + { + "name": "craftingStation", + "type": "SlotDisplay" + } + ] + ], + "furnace": [ + "container", + [ + { + "name": "ingredient", + "type": "SlotDisplay" + }, + { + "name": "fuel", + "type": "SlotDisplay" + }, + { + "name": "result", + "type": "SlotDisplay" + }, + { + "name": "craftingStation", + "type": "SlotDisplay" + }, + { + "name": "duration", + "type": "varint" + }, + { + "name": "experience", + "type": "f32" + } + ] + ], + "stonecutter": [ + "container", + [ + { + "name": "ingredient", + "type": "SlotDisplay" + }, + { + "name": "result", + "type": "SlotDisplay" + }, + { + "name": "craftingStation", + "type": "SlotDisplay" + } + ] + ], + "smithing": [ + "container", + [ + { + "name": "template", + "type": "SlotDisplay" + }, + { + "name": "base", + "type": "SlotDisplay" + }, + { + "name": "addition", + "type": "SlotDisplay" + }, + { + "name": "result", + "type": "SlotDisplay" + }, + { + "name": "craftingStation", + "type": "SlotDisplay" + } + ] + ] + } + } + ] + } + ] + ], + "SlotDisplay": [ + "container", + [ + { + "name": "type", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "empty", + "1": "any_fuel", + "2": "item", + "3": "item_stack", + "4": "tag", + "5": "smithing_trim", + "6": "with_remainder", + "7": "composite" + } + } + ] + }, + { + "name": "data", + "type": [ + "switch", + { + "compareTo": "type", + "fields": { + "empty": "void", + "any_fuel": "void", + "item": "varint", + "item_stack": "Slot", + "tag": "string", + "simthing_trim": [ + "container", + [ + { + "name": "base", + "type": "SlotDisplay" + }, + { + "name": "material", + "type": "SlotDisplay" + }, + { + "name": "pattern", + "type": "SlotDisplay" + } + ] + ], + "with_remainder": [ + "container", + [ + { + "name": "input", + "type": "SlotDisplay" + }, + { + "name": "remainder", + "type": "SlotDisplay" + } + ] + ], + "composite": [ + "array", + { + "countType": "varint", + "type": "SlotDisplay" + } + ] + } + } + ] + } + ] + ], + "SlotComponentType": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "custom_data", + "1": "max_stack_size", + "2": "max_damage", + "3": "damage", + "4": "unbreakable", + "5": "custom_name", + "6": "item_name", + "7": "item_model", + "8": "lore", + "9": "rarity", + "10": "enchantments", + "11": "can_place_on", + "12": "can_break", + "13": "attribute_modifiers", + "14": "custom_model_data", + "15": "hide_additional_tooltip", + "16": "hide_tooltip", + "17": "repair_cost", + "18": "creative_slot_lock", + "19": "enchantment_glint_override", + "20": "intangible_projectile", + "21": "food", + "22": "consumable", + "23": "use_remainder", + "24": "use_cooldown", + "25": "damage_resistant", + "26": "tool", + "27": "enchantable", + "28": "equippable", + "29": "repairable", + "30": "glider", + "31": "tooltip_style", + "32": "death_protection", + "33": "stored_enchantments", + "34": "dyed_color", + "35": "map_color", + "36": "map_id", + "37": "map_decorations", + "38": "map_post_processing", + "39": "charged_projectiles", + "40": "bundle_contents", + "41": "potion_contents", + "42": "suspicious_stew_effects", + "43": "writable_book_content", + "44": "written_book_content", + "45": "trim", + "46": "debug_stick_state", + "47": "entity_data", + "48": "bucket_entity_data", + "49": "block_entity_data", + "50": "instrument", + "51": "ominous_bottle_amplifier", + "52": "jukebox_playable", + "53": "recipes", + "54": "lodestone_tracker", + "55": "firework_explosion", + "56": "fireworks", + "57": "profile", + "58": "note_block_sound", + "59": "banner_patterns", + "60": "base_color", + "61": "pot_decorations", + "62": "container", + "63": "block_state", + "64": "bees", + "65": "lock", + "66": "container_loot" + } + } + ], + "SlotComponent": [ + "container", + [ + { + "name": "type", + "type": "SlotComponentType" + }, + { + "name": "data", + "type": [ + "switch", + { + "compareTo": "type", + "fields": { + "custom_data": "anonymousNbt", + "max_stack_size": "varint", + "max_damage": "varint", + "damage": "varint", + "unbreakable": "bool", + "custom_name": "anonymousNbt", + "item_name": "anonymousNbt", + "item_model": "string", + "lore": [ + "array", + { + "countType": "varint", + "type": "anonOptionalNbt" + } + ], + "rarity": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "common", + "1": "uncommon", + "2": "rare", + "3": "epic" + } + } + ], + "enchantments": [ + "container", + [ + { + "name": "enchantments", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "id", + "type": "varint" + }, + { + "name": "level", + "type": "varint" + } + ] + ] + } + ] + }, + { + "name": "showTooltip", + "type": "bool" + } + ] + ], + "can_place_on": [ + "container", + [ + { + "name": "predicates", + "type": [ + "array", + { + "countType": "varint", + "type": "BlockPredicate" + } + ] + }, + { + "name": "showTooltip", + "type": "bool" + } + ] + ], + "can_break": [ + "container", + [ + { + "name": "predicates", + "type": [ + "array", + { + "countType": "varint", + "type": "BlockPredicate" + } + ] + }, + { + "name": "showTooltip", + "type": "bool" + } + ] + ], + "attribute_modifiers": [ + "container", + [ + { + "name": "attributes", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "typeId", + "type": "varint" + }, + { + "name": "name", + "type": "string" + }, + { + "name": "value", + "type": "f64" + }, + { + "name": "operation", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "add", + "1": "multiply_base", + "2": "multiply_total" + } + } + ] + }, + { + "name": "slot", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "any", + "1": "main_hand", + "2": "off_hand", + "3": "hand", + "4": "feet", + "5": "legs", + "6": "chest", + "7": "head", + "8": "armor", + "9": "body" + } + } + ] + } + ] + ] + } + ] + }, + { + "name": "showTooltip", + "type": "bool" + } + ] + ], + "custom_model_data": "varint", + "hide_additional_tooltip": "void", + "hide_tooltip": "void", + "repair_cost": "varint", + "creative_slot_lock": "void", + "enchantment_glint_override": "bool", + "intangible_projectile": "void", + "food": [ + "container", + [ + { + "name": "nutrition", + "type": "varint" + }, + { + "name": "saturationModifier", + "type": "f32" + }, + { + "name": "canAlwaysEat", + "type": "bool" + } + ] + ], + "consumable": [ + "container", + [ + { + "name": "consume_seconds", + "type": "f32" + }, + { + "name": "animation", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "none", + "1": "eat", + "2": "drink", + "3": "block", + "4": "bow", + "5": "spear", + "6": "crossbow", + "7": "spyglass", + "8": "toot_horn", + "9": "brush" + } + } + ] + }, + { + "name": "sound", + "type": [ + "registryEntryHolder", + { + "baseName": "soundId", + "otherwise": { + "name": "data", + "type": "SoundEvent" + } + } + ] + }, + { + "name": "makes_particles", + "type": "bool" + }, + { + "name": "effects", + "type": [ + "array", + { + "countType": "varint", + "type": "ConsumeEffect" + } + ] + } + ] + ], + "use_remainder": "Slot", + "use_cooldown": [ + "container", + [ + { + "name": "seconds", + "type": "f32" + }, + { + "name": "cooldownGroup", + "type": [ + "option", + "string" + ] + } + ] + ], + "damage_resistant": "string", + "tool": [ + "container", + [ + { + "name": "rules", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "blocks", + "type": "IDSet" + }, + { + "name": "speed", + "type": [ + "option", + "f32" + ] + }, + { + "name": "correctDropForBlocks", + "type": [ + "option", + "bool" + ] + } + ] + ] + } + ] + }, + { + "name": "defaultMiningSpeed", + "type": "f32" + }, + { + "name": "damagePerBlock", + "type": "varint" + } + ] + ], + "enchantable": "varint", + "equippable": [ + "container", + [ + { + "name": "slot", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "main_hand", + "1": "off_hand", + "2": "feet", + "3": "legs", + "4": "chest", + "5": "head", + "6": "body" + } + } + ] + }, + { + "name": "sound", + "type": [ + "registryEntryHolder", + { + "baseName": "soundId", + "otherwise": { + "name": "data", + "type": "SoundEvent" + } + } + ] + }, + { + "name": "model", + "type": [ + "option", + "string" + ] + }, + { + "name": "cameraOverlay", + "type": [ + "option", + "string" + ] + }, + { + "name": "allowedEntities", + "type": [ + "option", + "IDSet" + ] + }, + { + "name": "dispensable", + "type": "bool" + }, + { + "name": "swappable", + "type": "bool" + }, + { + "name": "damageable", + "type": "bool" + } + ] + ], + "repairable": [ + "container", + [ + { + "name": "items", + "type": "IDSet" + } + ] + ], + "tooltip_style": "string", + "death_protection": [ + "container", + [ + { + "name": "effects", + "type": [ + "array", + { + "countType": "varint", + "type": "ConsumeEffect" + } + ] + } + ] + ], + "stored_enchantments": [ + "container", + [ + { + "name": "enchantments", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "id", + "type": "varint" + }, + { + "name": "level", + "type": "varint" + } + ] + ] + } + ] + }, + { + "name": "showInTooltip", + "type": "bool" + } + ] + ], + "dyed_color": [ + "container", + [ + { + "name": "color", + "type": "varint" + }, + { + "name": "showTooltip", + "type": "bool" + } + ] + ], + "map_color": "varint", + "map_id": "varint", + "map_decorations": "anonOptionalNbt", + "map_post_processing": "varint", + "charged_projectiles": [ + "container", + [ + { + "name": "projectiles", + "type": [ + "array", + { + "countType": "varint", + "type": "Slot" + } + ] + } + ] + ], + "bundle_contents": [ + "container", + [ + { + "name": "contents", + "type": [ + "array", + { + "countType": "varint", + "type": "Slot" + } + ] + } + ] + ], + "potion_contents": [ + "container", + [ + { + "name": "potionId", + "type": [ + "option", + "varint" + ] + }, + { + "name": "customColor", + "type": [ + "option", + "varint" + ] + }, + { + "name": "customEffects", + "type": [ + "array", + { + "countType": "varint", + "type": "PotionEffect" + } + ] + }, + { + "name": "customName", + "type": "string" + } + ] + ], + "suspicious_stew_effects": [ + "container", + [ + { + "name": "effects", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "effect", + "type": "varint" + }, + { + "name": "duration", + "type": "varint" + } + ] + ] + } + ] + } + ] + ], + "writable_book_content": [ + "container", + [ + { + "name": "pages", + "type": [ + "array", + { + "countType": "varint", + "type": "BookPage" + } + ] + } + ] + ], + "written_book_content": [ + "container", + [ + { + "name": "rawTitle", + "type": "string" + }, + { + "name": "filteredTitle", + "type": [ + "option", + "string" + ] + }, + { + "name": "author", + "type": "string" + }, + { + "name": "generation", + "type": "varint" + }, + { + "name": "pages", + "type": [ + "array", + { + "countType": "varint", + "type": "BookPage" + } + ] + }, + { + "name": "resolved", + "type": "bool" + } + ] + ], + "trim": [ + "container", + [ + { + "name": "materialType", + "type": "varint" + }, + { + "anon": true, + "type": [ + "switch", + { + "compareTo": "materialType", + "fields": { + "0": [ + "container", + [ + { + "name": "assetName", + "type": "string" + }, + { + "name": "ingredientId", + "type": "varint" + }, + { + "name": "itemModelIndex", + "type": "f32" + }, + { + "name": "numberOfOverrides", + "type": "optvarint" + }, + { + "name": "override", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "armorMaterialType", + "type": "varint" + }, + { + "name": "overridenAssetName", + "type": "string" + } + ] + ] + } + ] + }, + { + "name": "description", + "type": "string" + } + ] + ] + } + } + ] + }, + { + "name": "trimPatternType", + "type": "varint" + }, + { + "anon": true, + "type": [ + "switch", + { + "compareTo": "trimPatternType", + "fields": { + "0": [ + "container", + [ + { + "name": "assetName", + "type": "string" + }, + { + "name": "templateItem", + "type": "varint" + }, + { + "name": "description", + "type": "string" + }, + { + "name": "decal", + "type": "bool" + } + ] + ] + } + } + ] + }, + { + "name": "showInTooltip", + "type": "bool" + } + ] + ], + "debug_stick_state": "anonymousNbt", + "entity_data": "anonymousNbt", + "bucket_entity_data": "anonymousNbt", + "block_entity_data": "anonymousNbt", + "instrument": [ + "container", + [ + { + "name": "instrumentType", + "type": "varint" + }, + { + "anon": true, + "type": [ + "switch", + { + "compareTo": "instrumentType", + "fields": { + "0": [ + "container", + [ + { + "name": "soundEvent", + "type": "string" + }, + { + "name": "useDuration", + "type": "f32" + }, + { + "name": "range", + "type": "f32" + } + ] + ] + } + } + ] + } + ] + ], + "ominous_bottle_amplifier": "varint", + "jukebox_playable": [ + "container", + [ + { + "name": "directMode", + "type": "bool" + }, + { + "anon": true, + "type": [ + "switch", + { + "compareTo": "directMode", + "fields": { + "true": [ + "container", + [ + { + "name": "jukeboxSongName", + "type": "string" + }, + { + "name": "jukeboxSongType", + "type": "varint" + }, + { + "anon": true, + "type": [ + "switch", + { + "compareTo": "jukeboxSongType", + "fields": { + "0": [ + "container", + [ + { + "name": "soundEvent", + "type": [ + "container", + [ + { + "name": "soundEventType", + "type": "varint" + }, + { + "anon": true, + "type": [ + "switch", + { + "compareTo": "soundEventType", + "fields": { + "0": [ + "container", + [ + { + "name": "soundName", + "type": "string" + }, + { + "name": "fixedRange", + "type": [ + "option", + "f32" + ] + } + ] + ] + } + } + ] + } + ] + ] + } + ] + ] + } + } + ] + }, + { + "name": "description", + "type": "anonymousNbt" + }, + { + "name": "duration", + "type": "f32" + }, + { + "name": "output", + "type": "varint" + } + ] + ], + "false": [ + "container", + [ + { + "name": "songLocation", + "type": "string" + } + ] + ] + } + } + ] + }, + { + "name": "showInTooltip", + "type": "bool" + } + ] + ], + "recipes": "anonymousNbt", + "lodestone_tracker": [ + "container", + [ + { + "name": "globalPosition", + "type": [ + "option", + [ + "container", + [ + { + "name": "dimension", + "type": "string" + }, + { + "name": "position", + "type": "position" + } + ] + ] + ] + }, + { + "name": "tracked", + "type": "bool" + } + ] + ], + "firework_explosion": "FireworkExplosion", + "fireworks": [ + "container", + [ + { + "name": "flightDuration", + "type": "varint" + }, + { + "name": "explosions", + "type": [ + "array", + { + "countType": "varint", + "type": "FireworkExplosion" + } + ] + } + ] + ], + "profile": [ + "container", + [ + { + "name": "hasName", + "type": "bool" + }, + { + "name": "name", + "type": "string" + }, + { + "name": "hasUniqueId", + "type": "bool" + }, + { + "name": "uniqueId", + "type": "UUID" + }, + { + "name": "properties", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "property", + "type": "string" + }, + { + "name": "value", + "type": "string" + }, + { + "name": "hasSignature", + "type": "bool" + }, + { + "name": "signature", + "type": "string" + } + ] + ] + } + ] + } + ] + ], + "note_block_sound": "string", + "banner_patterns": [ + "container", + [ + { + "name": "layers", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "patternType", + "type": "varint" + }, + { + "anon": true, + "type": [ + "switch", + { + "compareTo": "patternType", + "fields": { + "0": [ + "container", + [ + { + "name": "assetId", + "type": "string" + }, + { + "name": "translationKey", + "type": "string" + } + ] + ] + } + } + ] + }, + { + "name": "color", + "type": "varint" + } + ] + ] + } + ] + } + ] + ], + "base_color": "varint", + "pot_decorations": [ + "container", + [ + { + "name": "decorations", + "type": [ + "array", + { + "countType": "varint", + "type": "varint" + } + ] + } + ] + ], + "container": [ + "container", + [ + { + "name": "contents", + "type": [ + "array", + { + "countType": "varint", + "type": "Slot" + } + ] + } + ] + ], + "block_state": [ + "container", + [ + { + "name": "properties", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "property", + "type": "string" + }, + { + "name": "value", + "type": "string" + } + ] + ] + } + ] + } + ] + ], + "bees": [ + "container", + [ + { + "name": "bees", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "nbtData", + "type": "anonymousNbt" + }, + { + "name": "ticksInHive", + "type": "varint" + }, + { + "name": "minTicksInHive", + "type": "varint" + } + ] + ] + } + ] + } + ] + ], + "lock": "anonymousNbt", + "container_loot": "anonymousNbt" + } + } + ] + } + ] + ], + "Slot": [ + "container", + [ + { + "name": "itemCount", + "type": "varint" + }, + { + "anon": true, + "type": [ + "switch", + { + "compareTo": "itemCount", + "fields": { + "0": "void" + }, + "default": [ + "container", + [ + { + "name": "itemId", + "type": "varint" + }, + { + "name": "addedComponentCount", + "type": "varint" + }, + { + "name": "removedComponentCount", + "type": "varint" + }, + { + "name": "components", + "type": [ + "array", + { + "count": "addedComponentCount", + "type": "SlotComponent" + } + ] + }, + { + "name": "removeComponents", + "type": [ + "array", + { + "count": "removedComponentCount", + "type": [ + "container", + [ + { + "name": "type", + "type": "SlotComponentType" + } + ] + ] + } + ] + } + ] + ] + } + ] + } + ] + ], + "FireworkExplosion": [ + "container", + [ + { + "name": "shape", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "small_ball", + "1": "large_ball", + "2": "star", + "3": "creeper", + "4": "burst" + } + } + ] + }, + { + "name": "colors", + "type": [ + "array", + { + "countType": "varint", + "type": "i32" + } + ] + }, + { + "name": "fadeColors", + "type": [ + "array", + { + "countType": "varint", + "type": "i32" + } + ] + }, + { + "name": "hasTrail", + "type": "bool" + }, + { + "name": "hasTwinkle", + "type": "bool" + } + ] + ], + "BookPage": [ + "container", + [ + { + "name": "content", + "type": "string" + }, + { + "name": "filteredContent", + "type": [ + "option", + "string" + ] + } + ] + ], + "EffectDetail": [ + "container", + [ + { + "name": "amplifier", + "type": "varint" + }, + { + "name": "duration", + "type": "varint" + }, + { + "name": "ambient", + "type": "bool" + }, + { + "name": "showParticles", + "type": "bool" + }, + { + "name": "showIcon", + "type": "bool" + }, + { + "name": "hiddenEffect", + "type": [ + "option", + "EffectDetail" + ] + } + ] + ], + "PotionEffect": [ + "container", + [ + { + "name": "id", + "type": "varint" + }, + { + "name": "details", + "type": "EffectDetail" + } + ] + ], + "ConsumeEffect": [ + "container", + [ + { + "name": "type", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "apply_effects", + "1": "remove_effects", + "2": "clear_all_effects", + "3": "teleport_randomly", + "4": "play_sound" + } + } + ] + }, + { + "anon": true, + "type": [ + "switch", + { + "compareTo": "type", + "fields": { + "apply_effects": [ + "container", + [ + { + "name": "effects", + "type": [ + "array", + { + "countType": "varint", + "type": "PotionEffect" + } + ] + }, + { + "name": "probability", + "type": "f32" + } + ] + ], + "remove_effects": [ + "container", + [ + { + "name": "effects", + "type": "IDSet" + } + ] + ], + "clear_all_effects": "void", + "teleport_randomly": [ + "container", + [ + { + "name": "diameter", + "type": "f32" + } + ] + ], + "play_sound": [ + "container", + [ + { + "name": "sound", + "type": [ + "registryEntryHolder", + { + "baseName": "soundId", + "otherwise": { + "name": "data", + "type": "SoundEvent" + } + } + ] + } + ] + ] + } + } + ] + } + ] + ], + "BlockProperty": [ + "container", + [ + { + "name": "name", + "type": "string" + }, + { + "name": "isExactMatch", + "type": "bool" + }, + { + "name": "exactValue", + "type": [ + "option", + "string" + ] + }, + { + "name": "minValue", + "type": [ + "option", + "string" + ] + }, + { + "name": "maxValue", + "type": [ + "option", + "string" + ] + } + ] + ], + "BlockPredicate": [ + "container", + [ + { + "name": "blockSet", + "type": [ + "option", + [ + "registryEntryHolderSet", + { + "base": { + "name": "name", + "type": "string" + }, + "otherwise": { + "name": "blockIds", + "type": "varint" + } + } + ] + ] + }, + { + "name": "properties", + "type": [ + "option", + [ + "array", + { + "countType": "varint", + "type": "BlockProperty" + } + ] + ] + }, + { + "name": "nbt", + "type": "anonOptionalNbt" + } + ] + ], + "Particle": [ + "container", + [ + { + "name": "type", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "angry_villager", + "1": "block", + "2": "block_marker", + "3": "bubble", + "4": "cloud", + "5": "crit", + "6": "damage_indicator", + "7": "dragon_breath", + "8": "dripping_lava", + "9": "falling_lava", + "10": "landing_lava", + "11": "dripping_water", + "12": "falling_water", + "13": "dust", + "14": "dust_color_transition", + "15": "effect", + "16": "elder_guardian", + "17": "enchanted_hit", + "18": "enchant", + "19": "end_rod", + "20": "entity_effect", + "21": "explosion_emitter", + "22": "explosion", + "23": "gust", + "24": "small_gust", + "25": "gust_emitter_large", + "26": "gust_emitter_small", + "27": "sonic_boom", + "28": "falling_dust", + "29": "firework", + "30": "fishing", + "31": "flame", + "32": "infested", + "33": "cherry_leaves", + "34": "pale_oak_leaves", + "35": "sculk_soul", + "36": "sculk_charge", + "37": "sculk_charge_pop", + "38": "soul_fire_flame", + "39": "soul", + "40": "flash", + "41": "happy_villager", + "42": "composter", + "43": "heart", + "44": "instant_effect", + "45": "item", + "46": "vibration", + "47": "trail", + "48": "item_slime", + "49": "item_cobweb", + "50": "item_snowball", + "51": "large_smoke", + "52": "lava", + "53": "mycelium", + "54": "note", + "55": "poof", + "56": "portal", + "57": "rain", + "58": "smoke", + "59": "white_smoke", + "60": "sneeze", + "61": "spit", + "62": "squid_ink", + "63": "sweep_attack", + "64": "totem_of_undying", + "65": "underwater", + "66": "splash", + "67": "witch", + "68": "bubble_pop", + "69": "current_down", + "70": "bubble_column_up", + "71": "nautilus", + "72": "dolphin", + "73": "campfire_cosy_smoke", + "74": "campfire_signal_smoke", + "75": "dripping_honey", + "76": "falling_honey", + "77": "landing_honey", + "78": "falling_nectar", + "79": "falling_spore_blossom", + "80": "ash", + "81": "crimson_spore", + "82": "warped_spore", + "83": "spore_blossom_air", + "84": "dripping_obsidian_tear", + "85": "falling_obsidian_tear", + "86": "landing_obsidian_tear", + "87": "reverse_portal", + "88": "white_ash", + "89": "small_flame", + "90": "snowflake", + "91": "dripping_dripstone_lava", + "92": "falling_dripstone_lava", + "93": "dripping_dripstone_water", + "94": "falling_dripstone_water", + "95": "glow_squid_ink", + "96": "glow", + "97": "wax_on", + "98": "wax_off", + "99": "electric_spark", + "100": "scrape", + "101": "shriek", + "102": "egg_crack", + "103": "dust_plume", + "104": "trial_spawner_detected_player", + "105": "trial_spawner_detected_player_ominous", + "106": "vault_connection", + "107": "dust_pillar", + "108": "ominous_spawning", + "109": "raid_omen", + "110": "trial_omen", + "111": "block_crumble" + } + } + ] + }, + { + "name": "data", + "type": [ + "switch", + { + "compareTo": "type", + "fields": { + "block": "varint", + "block_marker": "varint", + "falling_dust": "varint", + "dust_pillar": "varint", + "block_crumble": "varint", + "dust": [ + "container", + [ + { + "name": "red", + "type": "f32" + }, + { + "name": "green", + "type": "f32" + }, + { + "name": "blue", + "type": "f32" + }, + { + "name": "scale", + "type": "f32" + } + ] + ], + "dust_color_transition": [ + "container", + [ + { + "name": "fromRed", + "type": "f32" + }, + { + "name": "fromGreen", + "type": "f32" + }, + { + "name": "fromBlue", + "type": "f32" + }, + { + "name": "scale", + "type": "f32" + }, + { + "name": "toRed", + "type": "f32" + }, + { + "name": "toGreen", + "type": "f32" + }, + { + "name": "toBlue", + "type": "f32" + } + ] + ], + "entity_effect": "i32", + "item": "Slot", + "sculk_charge": "f32", + "shriek": "varint", + "vibration": [ + "container", + [ + { + "name": "position_type", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "block", + "1": "entity" + } + } + ] + }, + { + "name": "position", + "type": [ + "switch", + { + "compareTo": "position_type", + "fields": { + "block": "position", + "entity": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "entity_eye_height", + "type": "f32" + } + ] + ] + } + } + ] + }, + { + "name": "ticks", + "type": "varint" + } + ] + ], + "trail": [ + "container", + [ + { + "name": "target", + "type": "vec3f64" + }, + { + "name": "color", + "type": "u8" + } + ] + ] + } + } + ] + } + ] + ], + "ingredient": [ + "array", + { + "countType": "varint", + "type": "Slot" + } + ], + "position": [ + "bitfield", + [ + { + "name": "x", + "size": 26, + "signed": true + }, + { + "name": "z", + "size": 26, + "signed": true + }, + { + "name": "y", + "size": 12, + "signed": true + } + ] + ], + "soundSource": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "master", + "1": "music", + "2": "record", + "3": "weather", + "4": "block", + "5": "hostile", + "6": "neutral", + "7": "player", + "8": "ambient", + "9": "voice" + } + } + ], + "packedChunkPos": [ + "container", + [ + { + "name": "z", + "type": "i32" + }, + { + "name": "x", + "type": "i32" + } + ] + ], + "previousMessages": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "id", + "type": "varint" + }, + { + "name": "signature", + "type": [ + "switch", + { + "compareTo": "id", + "fields": { + "0": [ + "buffer", + { + "count": 256 + } + ] + }, + "default": "void" + } + ] + } + ] + ] + } + ], + "entityMetadataEntry": [ + "container", + [ + { + "name": "key", + "type": "u8" + }, + { + "name": "type", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "byte", + "1": "int", + "2": "long", + "3": "float", + "4": "string", + "5": "component", + "6": "optional_component", + "7": "item_stack", + "8": "boolean", + "9": "rotations", + "10": "block_pos", + "11": "optional_block_pos", + "12": "direction", + "13": "optional_uuid", + "14": "block_state", + "15": "optional_block_state", + "16": "compound_tag", + "17": "particle", + "18": "particles", + "19": "villager_data", + "20": "optional_unsigned_int", + "21": "pose", + "22": "cat_variant", + "23": "wolf_variant", + "24": "frog_variant", + "25": "optional_global_pos", + "26": "painting_variant", + "27": "sniffer_state", + "28": "armadillo_state", + "29": "vector3", + "30": "quaternion" + } + } + ] + }, + { + "name": "value", + "type": [ + "switch", + { + "compareTo": "type", + "fields": { + "byte": "i8", + "int": "varint", + "long": "varlong", + "float": "f32", + "string": "string", + "component": "anonymousNbt", + "optional_component": [ + "option", + "anonymousNbt" + ], + "item_stack": "Slot", + "boolean": "bool", + "rotations": [ + "container", + [ + { + "name": "pitch", + "type": "f32" + }, + { + "name": "yaw", + "type": "f32" + }, + { + "name": "roll", + "type": "f32" + } + ] + ], + "block_pos": "position", + "optional_block_pos": [ + "option", + "position" + ], + "direction": "varint", + "optional_uuid": [ + "option", + "UUID" + ], + "block_state": "varint", + "optional_block_state": "optvarint", + "compound_tag": "anonymousNbt", + "particle": "Particle", + "particles": [ + "array", + { + "countType": "varint", + "type": "Particle" + } + ], + "villager_data": [ + "container", + [ + { + "name": "villagerType", + "type": "varint" + }, + { + "name": "villagerProfession", + "type": "varint" + }, + { + "name": "level", + "type": "varint" + } + ] + ], + "optional_unsigned_int": "optvarint", + "pose": "varint", + "cat_variant": "varint", + "wolf_variant": [ + "registryEntryHolder", + { + "baseName": "variantId", + "otherwise": { + "name": "variantData", + "type": "EntityMetadataWolfVariant" + } + } + ], + "frog_variant": "varint", + "optional_global_pos": [ + "option", + "string" + ], + "painting_variant": [ + "registryEntryHolder", + { + "baseName": "variantId", + "otherwise": { + "name": "variantData", + "type": "EntityMetadataPaintingVariant" + } + } + ], + "sniffer_state": "varint", + "armadillo_state": "varint", + "vector3": "vec3f", + "quaternion": "vec4f" + } + } + ] + } + ] + ], + "EntityMetadataPaintingVariant": [ + "container", + [ + { + "name": "width", + "type": "i32" + }, + { + "name": "height", + "type": "i32" + }, + { + "name": "assetId", + "type": "string" + }, + { + "name": "title", + "type": [ + "option", + "anonymousNbt" + ] + }, + { + "name": "author", + "type": [ + "option", + "anonymousNbt" + ] + } + ] + ], + "EntityMetadataWolfVariant": [ + "container", + [ + { + "name": "wildTexture", + "type": "string" + }, + { + "name": "tameTexture", + "type": "string" + }, + { + "name": "angryTexture", + "type": "string" + }, + { + "name": "biome", + "type": "IDSet" + } + ] + ], + "entityMetadata": [ + "entityMetadataLoop", + { + "endVal": 255, + "type": "entityMetadataEntry" + } + ], + "tags": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "tagName", + "type": "string" + }, + { + "name": "entries", + "type": [ + "array", + { + "countType": "varint", + "type": "varint" + } + ] + } + ] + ] + } + ], + "chunkBlockEntity": [ + "container", + [ + { + "anon": true, + "type": [ + "bitfield", + [ + { + "name": "x", + "size": 4, + "signed": false + }, + { + "name": "z", + "size": 4, + "signed": false + } + ] + ] + }, + { + "name": "y", + "type": "i16" + }, + { + "name": "type", + "type": "varint" + }, + { + "name": "nbtData", + "type": "anonOptionalNbt" + } + ] + ], + "chat_session": [ + "option", + [ + "container", + [ + { + "name": "uuid", + "type": "UUID" + }, + { + "name": "publicKey", + "type": [ + "container", + [ + { + "name": "expireTime", + "type": "i64" + }, + { + "name": "keyBytes", + "type": [ + "buffer", + { + "countType": "varint" + } + ] + }, + { + "name": "keySignature", + "type": [ + "buffer", + { + "countType": "varint" + } + ] + } + ] + ] + } + ] + ] + ], + "game_profile": [ + "container", + [ + { + "name": "name", + "type": "string" + }, + { + "name": "properties", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "key", + "type": "string" + }, + { + "name": "value", + "type": "string" + }, + { + "name": "signature", + "type": [ + "option", + "string" + ] + } + ] + ] + } + ] + } + ] + ], + "command_node": [ + "container", + [ + { + "name": "flags", + "type": [ + "bitfield", + [ + { + "name": "unused", + "size": 3, + "signed": false + }, + { + "name": "has_custom_suggestions", + "size": 1, + "signed": false + }, + { + "name": "has_redirect_node", + "size": 1, + "signed": false + }, + { + "name": "has_command", + "size": 1, + "signed": false + }, + { + "name": "command_node_type", + "size": 2, + "signed": false + } + ] + ] + }, + { + "name": "children", + "type": [ + "array", + { + "countType": "varint", + "type": "varint" + } + ] + }, + { + "name": "redirectNode", + "type": [ + "switch", + { + "compareTo": "flags/has_redirect_node", + "fields": { + "1": "varint" + }, + "default": "void" + } + ] + }, + { + "name": "extraNodeData", + "type": [ + "switch", + { + "compareTo": "flags/command_node_type", + "fields": { + "0": "void", + "1": [ + "container", + [ + { + "name": "name", + "type": "string" + } + ] + ], + "2": [ + "container", + [ + { + "name": "name", + "type": "string" + }, + { + "name": "parser", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "brigadier:bool", + "1": "brigadier:float", + "2": "brigadier:double", + "3": "brigadier:integer", + "4": "brigadier:long", + "5": "brigadier:string", + "6": "minecraft:entity", + "7": "minecraft:game_profile", + "8": "minecraft:block_pos", + "9": "minecraft:column_pos", + "10": "minecraft:vec3", + "11": "minecraft:vec2", + "12": "minecraft:block_state", + "13": "minecraft:block_predicate", + "14": "minecraft:item_stack", + "15": "minecraft:item_predicate", + "16": "minecraft:color", + "17": "minecraft:component", + "18": "minecraft:style", + "19": "minecraft:message", + "20": "minecraft:nbt", + "21": "minecraft:nbt_tag", + "22": "minecraft:nbt_path", + "23": "minecraft:objective", + "24": "minecraft:objective_criteria", + "25": "minecraft:operation", + "26": "minecraft:particle", + "27": "minecraft:angle", + "28": "minecraft:rotation", + "29": "minecraft:scoreboard_slot", + "30": "minecraft:score_holder", + "31": "minecraft:swizzle", + "32": "minecraft:team", + "33": "minecraft:item_slot", + "34": "minecraft:item_slots", + "35": "minecraft:resource_location", + "36": "minecraft:function", + "37": "minecraft:entity_anchor", + "38": "minecraft:int_range", + "39": "minecraft:float_range", + "40": "minecraft:dimension", + "41": "minecraft:gamemode", + "42": "minecraft:time", + "43": "minecraft:resource_or_tag", + "44": "minecraft:resource_or_tag_key", + "45": "minecraft:resource", + "46": "minecraft:resource_key", + "47": "minecraft:template_mirror", + "48": "minecraft:template_rotation", + "49": "minecraft:heightmap", + "50": "minecraft:loot_table", + "51": "minecraft:loot_predicate", + "52": "minecraft:loot_modifier", + "53": "minecraft:uuid" + } + } + ] + }, + { + "name": "properties", + "type": [ + "switch", + { + "compareTo": "parser", + "fields": { + "brigadier:bool": "void", + "brigadier:float": [ + "container", + [ + { + "name": "flags", + "type": [ + "bitfield", + [ + { + "name": "unused", + "size": 6, + "signed": false + }, + { + "name": "max_present", + "size": 1, + "signed": false + }, + { + "name": "min_present", + "size": 1, + "signed": false + } + ] + ] + }, + { + "name": "min", + "type": [ + "switch", + { + "compareTo": "flags/min_present", + "fields": { + "1": "f32" + }, + "default": "void" + } + ] + }, + { + "name": "max", + "type": [ + "switch", + { + "compareTo": "flags/max_present", + "fields": { + "1": "f32" + }, + "default": "void" + } + ] + } + ] + ], + "brigadier:double": [ + "container", + [ + { + "name": "flags", + "type": [ + "bitfield", + [ + { + "name": "unused", + "size": 6, + "signed": false + }, + { + "name": "max_present", + "size": 1, + "signed": false + }, + { + "name": "min_present", + "size": 1, + "signed": false + } + ] + ] + }, + { + "name": "min", + "type": [ + "switch", + { + "compareTo": "flags/min_present", + "fields": { + "1": "f64" + }, + "default": "void" + } + ] + }, + { + "name": "max", + "type": [ + "switch", + { + "compareTo": "flags/max_present", + "fields": { + "1": "f64" + }, + "default": "void" + } + ] + } + ] + ], + "brigadier:integer": [ + "container", + [ + { + "name": "flags", + "type": [ + "bitfield", + [ + { + "name": "unused", + "size": 6, + "signed": false + }, + { + "name": "max_present", + "size": 1, + "signed": false + }, + { + "name": "min_present", + "size": 1, + "signed": false + } + ] + ] + }, + { + "name": "min", + "type": [ + "switch", + { + "compareTo": "flags/min_present", + "fields": { + "1": "i32" + }, + "default": "void" + } + ] + }, + { + "name": "max", + "type": [ + "switch", + { + "compareTo": "flags/max_present", + "fields": { + "1": "i32" + }, + "default": "void" + } + ] + } + ] + ], + "brigadier:long": [ + "container", + [ + { + "name": "flags", + "type": [ + "bitfield", + [ + { + "name": "unused", + "size": 6, + "signed": false + }, + { + "name": "max_present", + "size": 1, + "signed": false + }, + { + "name": "min_present", + "size": 1, + "signed": false + } + ] + ] + }, + { + "name": "min", + "type": [ + "switch", + { + "compareTo": "flags/min_present", + "fields": { + "1": "i64" + }, + "default": "void" + } + ] + }, + { + "name": "max", + "type": [ + "switch", + { + "compareTo": "flags/max_present", + "fields": { + "1": "i64" + }, + "default": "void" + } + ] + } + ] + ], + "brigadier:string": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "SINGLE_WORD", + "1": "QUOTABLE_PHRASE", + "2": "GREEDY_PHRASE" + } + } + ], + "minecraft:entity": [ + "bitfield", + [ + { + "name": "unused", + "size": 6, + "signed": false + }, + { + "name": "onlyAllowPlayers", + "size": 1, + "signed": false + }, + { + "name": "onlyAllowEntities", + "size": 1, + "signed": false + } + ] + ], + "minecraft:game_profile": "void", + "minecraft:block_pos": "void", + "minecraft:column_pos": "void", + "minecraft:vec3": "void", + "minecraft:vec2": "void", + "minecraft:block_state": "void", + "minecraft:block_predicate": "void", + "minecraft:item_stack": "void", + "minecraft:item_predicate": "void", + "minecraft:color": "void", + "minecraft:component": "void", + "minecraft:message": "void", + "minecraft:nbt": "void", + "minecraft:nbt_path": "void", + "minecraft:objective": "void", + "minecraft:objective_criteria": "void", + "minecraft:operation": "void", + "minecraft:particle": "void", + "minecraft:angle": "void", + "minecraft:rotation": "void", + "minecraft:scoreboard_slot": "void", + "minecraft:score_holder": [ + "bitfield", + [ + { + "name": "unused", + "size": 7, + "signed": false + }, + { + "name": "allowMultiple", + "size": 1, + "signed": false + } + ] + ], + "minecraft:swizzle": "void", + "minecraft:team": "void", + "minecraft:item_slot": "void", + "minecraft:resource_location": "void", + "minecraft:function": "void", + "minecraft:entity_anchor": "void", + "minecraft:int_range": "void", + "minecraft:float_range": "void", + "minecraft:dimension": "void", + "minecraft:gamemode": "void", + "minecraft:time": [ + "container", + [ + { + "name": "min", + "type": "i32" + } + ] + ], + "minecraft:resource_or_tag": [ + "container", + [ + { + "name": "registry", + "type": "string" + } + ] + ], + "minecraft:resource_or_tag_key": [ + "container", + [ + { + "name": "registry", + "type": "string" + } + ] + ], + "minecraft:resource": [ + "container", + [ + { + "name": "registry", + "type": "string" + } + ] + ], + "minecraft:resource_key": [ + "container", + [ + { + "name": "registry", + "type": "string" + } + ] + ], + "minecraft:template_mirror": "void", + "minecraft:template_rotation": "void", + "minecraft:heightmap": "void", + "minecraft:uuid": "void" + } + } + ] + }, + { + "name": "suggestionType", + "type": [ + "switch", + { + "compareTo": "../flags/has_custom_suggestions", + "fields": { + "1": "string" + }, + "default": "void" + } + ] + } + ] + ] + } + } + ] + } + ] + ], + "packet_common_cookie_request": [ + "container", + [ + { + "name": "cookie", + "type": "string" + } + ] + ], + "packet_common_store_cookie": [ + "container", + [ + { + "name": "key", + "type": "string" + }, + { + "name": "value", + "type": "ByteArray" + } + ] + ], + "packet_common_transfer": [ + "container", + [ + { + "name": "host", + "type": "string" + }, + { + "name": "port", + "type": "varint" + } + ] + ], + "packet_common_cookie_response": [ + "container", + [ + { + "name": "key", + "type": "string" + }, + { + "name": "value", + "type": "ByteArray" + } + ] + ], + "packet_common_select_known_packs": [ + "container", + [ + { + "name": "packs", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "namespace", + "type": "string" + }, + { + "name": "id", + "type": "string" + }, + { + "name": "version", + "type": "string" + } + ] + ] + } + ] + } + ] + ], + "packet_common_custom_report_details": [ + "container", + [ + { + "name": "details", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "key", + "type": "string" + }, + { + "name": "value", + "type": "string" + } + ] + ] + } + ] + } + ] + ], + "packet_common_remove_resource_pack": [ + "container", + [ + { + "name": "uuid", + "type": [ + "option", + "UUID" + ] + } + ] + ], + "packet_common_add_resource_pack": [ + "container", + [ + { + "name": "uuid", + "type": "UUID" + }, + { + "name": "url", + "type": "string" + }, + { + "name": "hash", + "type": "string" + }, + { + "name": "forced", + "type": "bool" + }, + { + "name": "promptMessage", + "type": [ + "option", + "anonymousNbt" + ] + } + ] + ], + "ServerLinkType": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "bug_report", + "1": "community_guidelines", + "2": "support", + "3": "status", + "4": "feedback", + "5": "community", + "6": "website", + "7": "forums", + "8": "news", + "9": "announcements" + } + } + ], + "packet_common_server_links": [ + "container", + [ + { + "name": "links", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "hasKnownType", + "type": "bool" + }, + { + "name": "knownType", + "type": [ + "switch", + { + "compareTo": "hasKnownType", + "fields": { + "true": "ServerLinkType" + } + } + ] + }, + { + "name": "unknownType", + "type": [ + "switch", + { + "compareTo": "hasKnownType", + "fields": { + "false": "anonymousNbt" + } + } + ] + }, + { + "name": "link", + "type": "string" + } + ] + ] + } + ] + } + ] + ] + }, + "handshaking": { + "toClient": { + "types": { + "packet": [ + "container", + [ + { + "name": "name", + "type": [ + "mapper", + { + "type": "varint", + "mappings": {} + } + ] + }, + { + "name": "params", + "type": [ + "switch", + { + "compareTo": "name", + "fields": {} + } + ] + } + ] + ] + } + }, + "toServer": { + "types": { + "packet_set_protocol": [ + "container", + [ + { + "name": "protocolVersion", + "type": "varint" + }, + { + "name": "serverHost", + "type": "string" + }, + { + "name": "serverPort", + "type": "u16" + }, + { + "name": "nextState", + "type": "varint" + } + ] + ], + "packet_legacy_server_list_ping": [ + "container", + [ + { + "name": "payload", + "type": "u8" + } + ] + ], + "packet": [ + "container", + [ + { + "name": "name", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0x00": "set_protocol", + "0xfe": "legacy_server_list_ping" + } + } + ] + }, + { + "name": "params", + "type": [ + "switch", + { + "compareTo": "name", + "fields": { + "set_protocol": "packet_set_protocol", + "legacy_server_list_ping": "packet_legacy_server_list_ping" + } + } + ] + } + ] + ] + } + } + }, + "status": { + "toClient": { + "types": { + "packet_server_info": [ + "container", + [ + { + "name": "response", + "type": "string" + } + ] + ], + "packet_ping": [ + "container", + [ + { + "name": "time", + "type": "i64" + } + ] + ], + "packet": [ + "container", + [ + { + "name": "name", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0x00": "server_info", + "0x01": "ping" + } + } + ] + }, + { + "name": "params", + "type": [ + "switch", + { + "compareTo": "name", + "fields": { + "server_info": "packet_server_info", + "ping": "packet_ping" + } + } + ] + } + ] + ] + } + }, + "toServer": { + "types": { + "packet_ping_start": [ + "container", + [] + ], + "packet_ping": [ + "container", + [ + { + "name": "time", + "type": "i64" + } + ] + ], + "packet": [ + "container", + [ + { + "name": "name", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0x00": "ping_start", + "0x01": "ping" + } + } + ] + }, + { + "name": "params", + "type": [ + "switch", + { + "compareTo": "name", + "fields": { + "ping_start": "packet_ping_start", + "ping": "packet_ping" + } + } + ] + } + ] + ] + } + } + }, + "login": { + "toClient": { + "types": { + "packet_disconnect": [ + "container", + [ + { + "name": "reason", + "type": "string" + } + ] + ], + "packet_encryption_begin": [ + "container", + [ + { + "name": "serverId", + "type": "string" + }, + { + "name": "publicKey", + "type": [ + "buffer", + { + "countType": "varint" + } + ] + }, + { + "name": "verifyToken", + "type": [ + "buffer", + { + "countType": "varint" + } + ] + }, + { + "name": "shouldAuthenticate", + "type": "bool" + } + ] + ], + "packet_success": [ + "container", + [ + { + "name": "uuid", + "type": "UUID" + }, + { + "name": "username", + "type": "string" + }, + { + "name": "properties", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "name", + "type": "string" + }, + { + "name": "value", + "type": "string" + }, + { + "name": "signature", + "type": [ + "option", + "string" + ] + } + ] + ] + } + ] + } + ] + ], + "packet_compress": [ + "container", + [ + { + "name": "threshold", + "type": "varint" + } + ] + ], + "packet_login_plugin_request": [ + "container", + [ + { + "name": "messageId", + "type": "varint" + }, + { + "name": "channel", + "type": "string" + }, + { + "name": "data", + "type": "restBuffer" + } + ] + ], + "packet": [ + "container", + [ + { + "name": "name", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0x00": "disconnect", + "0x01": "encryption_begin", + "0x02": "success", + "0x03": "compress", + "0x04": "login_plugin_request", + "0x05": "cookie_request" + } + } + ] + }, + { + "name": "params", + "type": [ + "switch", + { + "compareTo": "name", + "fields": { + "disconnect": "packet_disconnect", + "encryption_begin": "packet_encryption_begin", + "success": "packet_success", + "compress": "packet_compress", + "login_plugin_request": "packet_login_plugin_request", + "cookie_request": "packet_common_cookie_request" + } + } + ] + } + ] + ] + } + }, + "toServer": { + "types": { + "packet_login_start": [ + "container", + [ + { + "name": "username", + "type": "string" + }, + { + "name": "playerUUID", + "type": "UUID" + } + ] + ], + "packet_encryption_begin": [ + "container", + [ + { + "name": "sharedSecret", + "type": [ + "buffer", + { + "countType": "varint" + } + ] + }, + { + "name": "verifyToken", + "type": [ + "buffer", + { + "countType": "varint" + } + ] + } + ] + ], + "packet_login_plugin_response": [ + "container", + [ + { + "name": "messageId", + "type": "varint" + }, + { + "name": "data", + "type": [ + "option", + "restBuffer" + ] + } + ] + ], + "packet_login_acknowledged": [ + "container", + [] + ], + "packet": [ + "container", + [ + { + "name": "name", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0x00": "login_start", + "0x01": "encryption_begin", + "0x02": "login_plugin_response", + "0x03": "login_acknowledged", + "0x04": "cookie_response" + } + } + ] + }, + { + "name": "params", + "type": [ + "switch", + { + "compareTo": "name", + "fields": { + "login_start": "packet_login_start", + "encryption_begin": "packet_encryption_begin", + "login_plugin_response": "packet_login_plugin_response", + "login_acknowledged": "packet_login_acknowledged", + "cookie_response": "packet_common_cookie_response" + } + } + ] + } + ] + ] + } + } + }, + "configuration": { + "toClient": { + "types": { + "packet_custom_payload": [ + "container", + [ + { + "name": "channel", + "type": "string" + }, + { + "name": "data", + "type": "restBuffer" + } + ] + ], + "packet_disconnect": [ + "container", + [ + { + "name": "reason", + "type": "anonymousNbt" + } + ] + ], + "packet_finish_configuration": [ + "container", + [] + ], + "packet_keep_alive": [ + "container", + [ + { + "name": "keepAliveId", + "type": "i64" + } + ] + ], + "packet_ping": [ + "container", + [ + { + "name": "id", + "type": "i32" + } + ] + ], + "packet_reset_chat": [ + "container", + [] + ], + "packet_registry_data": [ + "container", + [ + { + "name": "id", + "type": "string" + }, + { + "name": "entries", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "key", + "type": "string" + }, + { + "name": "value", + "type": [ + "option", + "anonymousNbt" + ] + } + ] + ] + } + ] + } + ] + ], + "packet_feature_flags": [ + "container", + [ + { + "name": "features", + "type": [ + "array", + { + "countType": "varint", + "type": "string" + } + ] + } + ] + ], + "packet_tags": [ + "container", + [ + { + "name": "tags", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "tagType", + "type": "string" + }, + { + "name": "tags", + "type": "tags" + } + ] + ] + } + ] + } + ] + ], + "packet": [ + "container", + [ + { + "name": "name", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0x00": "cookie_request", + "0x01": "custom_payload", + "0x02": "disconnect", + "0x03": "finish_configuration", + "0x04": "keep_alive", + "0x05": "ping", + "0x06": "reset_chat", + "0x07": "registry_data", + "0x08": "remove_resource_pack", + "0x09": "add_resource_pack", + "0x0a": "store_cookie", + "0x0b": "transfer", + "0x0c": "feature_flags", + "0x0d": "tags", + "0x0e": "select_known_packs", + "0x0f": "custom_report_details", + "0x10": "server_links" + } + } + ] + }, + { + "name": "params", + "type": [ + "switch", + { + "compareTo": "name", + "fields": { + "cookie_request": "packet_common_cookie_request", + "custom_payload": "packet_custom_payload", + "disconnect": "packet_disconnect", + "finish_configuration": "packet_finish_configuration", + "keep_alive": "packet_keep_alive", + "ping": "packet_ping", + "reset_chat": "packet_reset_chat", + "registry_data": "packet_registry_data", + "remove_resource_pack": "packet_common_remove_resource_pack", + "add_resource_pack": "packet_common_add_resource_pack", + "store_cookie": "packet_common_store_cookie", + "transfer": "packet_common_transfer", + "feature_flags": "packet_feature_flags", + "tags": "packet_tags", + "select_known_packs": "packet_common_select_known_packs", + "custom_report_details": "packet_common_custom_report_details", + "server_links": "packet_common_server_links" + } + } + ] + } + ] + ] + } + }, + "toServer": { + "types": { + "packet_settings": [ + "container", + [ + { + "name": "locale", + "type": "string" + }, + { + "name": "viewDistance", + "type": "i8" + }, + { + "name": "chatFlags", + "type": "varint" + }, + { + "name": "chatColors", + "type": "bool" + }, + { + "name": "skinParts", + "type": "u8" + }, + { + "name": "mainHand", + "type": "varint" + }, + { + "name": "enableTextFiltering", + "type": "bool" + }, + { + "name": "enableServerListing", + "type": "bool" + }, + { + "name": "particles", + "type": "varint" + } + ] + ], + "packet_custom_payload": [ + "container", + [ + { + "name": "channel", + "type": "string" + }, + { + "name": "data", + "type": "restBuffer" + } + ] + ], + "packet_finish_configuration": [ + "container", + [] + ], + "packet_keep_alive": [ + "container", + [ + { + "name": "keepAliveId", + "type": "i64" + } + ] + ], + "packet_pong": [ + "container", + [ + { + "name": "id", + "type": "i32" + } + ] + ], + "packet_resource_pack_receive": [ + "container", + [ + { + "name": "uuid", + "type": "UUID" + }, + { + "name": "result", + "type": "varint" + } + ] + ], + "packet": [ + "container", + [ + { + "name": "name", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0x00": "settings", + "0x01": "cookie_response", + "0x02": "custom_payload", + "0x03": "finish_configuration", + "0x04": "keep_alive", + "0x05": "pong", + "0x06": "resource_pack_receive", + "0x07": "select_known_packs", + "0x08": "custom_report_details", + "0x09": "server_links" + } + } + ] + }, + { + "name": "params", + "type": [ + "switch", + { + "compareTo": "name", + "fields": { + "settings": "packet_settings", + "cookie_response": "packet_common_cookie_response", + "custom_payload": "packet_custom_payload", + "finish_configuration": "packet_finish_configuration", + "keep_alive": "packet_keep_alive", + "pong": "packet_pong", + "resource_pack_receive": "packet_resource_pack_receive", + "select_known_packs": "packet_common_select_known_packs", + "custom_report_details": "packet_common_custom_report_details", + "server_links": "packet_common_server_links" + } + } + ] + } + ] + ] + } + } + }, + "play": { + "toClient": { + "types": { + "SpawnInfo": [ + "container", + [ + { + "name": "dimension", + "type": "varint" + }, + { + "name": "name", + "type": "string" + }, + { + "name": "hashedSeed", + "type": "i64" + }, + { + "name": "gamemode", + "type": [ + "mapper", + { + "type": "i8", + "mappings": { + "0": "survival", + "1": "creative", + "2": "adventure", + "3": "spectator" + } + } + ] + }, + { + "name": "previousGamemode", + "type": "u8" + }, + { + "name": "isDebug", + "type": "bool" + }, + { + "name": "isFlat", + "type": "bool" + }, + { + "name": "death", + "type": [ + "option", + [ + "container", + [ + { + "name": "dimensionName", + "type": "string" + }, + { + "name": "location", + "type": "position" + } + ] + ] + ] + }, + { + "name": "portalCooldown", + "type": "varint" + }, + { + "name": "seaLevel", + "type": "varint" + } + ] + ], + "packet_spawn_entity": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "objectUUID", + "type": "UUID" + }, + { + "name": "type", + "type": "varint" + }, + { + "name": "x", + "type": "f64" + }, + { + "name": "y", + "type": "f64" + }, + { + "name": "z", + "type": "f64" + }, + { + "name": "pitch", + "type": "i8" + }, + { + "name": "yaw", + "type": "i8" + }, + { + "name": "headPitch", + "type": "i8" + }, + { + "name": "objectData", + "type": "varint" + }, + { + "name": "velocityX", + "type": "i16" + }, + { + "name": "velocityY", + "type": "i16" + }, + { + "name": "velocityZ", + "type": "i16" + } + ] + ], + "packet_spawn_entity_experience_orb": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "x", + "type": "f64" + }, + { + "name": "y", + "type": "f64" + }, + { + "name": "z", + "type": "f64" + }, + { + "name": "count", + "type": "i16" + } + ] + ], + "packet_animation": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "animation", + "type": "u8" + } + ] + ], + "packet_statistics": [ + "container", + [ + { + "name": "entries", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "categoryId", + "type": "varint" + }, + { + "name": "statisticId", + "type": "varint" + }, + { + "name": "value", + "type": "varint" + } + ] + ] + } + ] + } + ] + ], + "packet_acknowledge_player_digging": [ + "container", + [ + { + "name": "sequenceId", + "type": "varint" + } + ] + ], + "packet_block_break_animation": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "location", + "type": "position" + }, + { + "name": "destroyStage", + "type": "i8" + } + ] + ], + "packet_tile_entity_data": [ + "container", + [ + { + "name": "location", + "type": "position" + }, + { + "name": "action", + "type": "varint" + }, + { + "name": "nbtData", + "type": "anonOptionalNbt" + } + ] + ], + "packet_block_action": [ + "container", + [ + { + "name": "location", + "type": "position" + }, + { + "name": "byte1", + "type": "u8" + }, + { + "name": "byte2", + "type": "u8" + }, + { + "name": "blockId", + "type": "varint" + } + ] + ], + "packet_block_change": [ + "container", + [ + { + "name": "location", + "type": "position" + }, + { + "name": "type", + "type": "varint" + } + ] + ], + "packet_boss_bar": [ + "container", + [ + { + "name": "entityUUID", + "type": "UUID" + }, + { + "name": "action", + "type": "varint" + }, + { + "name": "title", + "type": [ + "switch", + { + "compareTo": "action", + "fields": { + "0": "anonymousNbt", + "3": "anonymousNbt" + }, + "default": "void" + } + ] + }, + { + "name": "health", + "type": [ + "switch", + { + "compareTo": "action", + "fields": { + "0": "f32", + "2": "f32" + }, + "default": "void" + } + ] + }, + { + "name": "color", + "type": [ + "switch", + { + "compareTo": "action", + "fields": { + "0": "varint", + "4": "varint" + }, + "default": "void" + } + ] + }, + { + "name": "dividers", + "type": [ + "switch", + { + "compareTo": "action", + "fields": { + "0": "varint", + "4": "varint" + }, + "default": "void" + } + ] + }, + { + "name": "flags", + "type": [ + "switch", + { + "compareTo": "action", + "fields": { + "0": "u8", + "5": "u8" + }, + "default": "void" + } + ] + } + ] + ], + "packet_difficulty": [ + "container", + [ + { + "name": "difficulty", + "type": "u8" + }, + { + "name": "difficultyLocked", + "type": "bool" + } + ] + ], + "packet_chunk_batch_finished": [ + "container", + [ + { + "name": "batchSize", + "type": "varint" + } + ] + ], + "packet_chunk_batch_start": [ + "container", + [] + ], + "packet_chunk_biomes": [ + "container", + [ + { + "name": "biomes", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "position", + "type": "packedChunkPos" + }, + { + "name": "data", + "type": "ByteArray" + } + ] + ] + } + ] + } + ] + ], + "packet_clear_titles": [ + "container", + [ + { + "name": "reset", + "type": "bool" + } + ] + ], + "packet_tab_complete": [ + "container", + [ + { + "name": "transactionId", + "type": "varint" + }, + { + "name": "start", + "type": "varint" + }, + { + "name": "length", + "type": "varint" + }, + { + "name": "matches", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "match", + "type": "string" + }, + { + "name": "tooltip", + "type": [ + "option", + "anonymousNbt" + ] + } + ] + ] + } + ] + } + ] + ], + "packet_declare_commands": [ + "container", + [ + { + "name": "nodes", + "type": [ + "array", + { + "countType": "varint", + "type": "command_node" + } + ] + }, + { + "name": "rootIndex", + "type": "varint" + } + ] + ], + "packet_close_window": [ + "container", + [ + { + "name": "windowId", + "type": "ContainerID" + } + ] + ], + "packet_window_items": [ + "container", + [ + { + "name": "windowId", + "type": "ContainerID" + }, + { + "name": "stateId", + "type": "varint" + }, + { + "name": "items", + "type": [ + "array", + { + "countType": "varint", + "type": "Slot" + } + ] + }, + { + "name": "carriedItem", + "type": "Slot" + } + ] + ], + "packet_craft_progress_bar": [ + "container", + [ + { + "name": "windowId", + "type": "ContainerID" + }, + { + "name": "property", + "type": "i16" + }, + { + "name": "value", + "type": "i16" + } + ] + ], + "packet_set_slot": [ + "container", + [ + { + "name": "windowId", + "type": "ContainerID" + }, + { + "name": "stateId", + "type": "varint" + }, + { + "name": "slot", + "type": "i16" + }, + { + "name": "item", + "type": "Slot" + } + ] + ], + "packet_set_cooldown": [ + "container", + [ + { + "name": "cooldownGroup", + "type": "string" + }, + { + "name": "cooldownTicks", + "type": "varint" + } + ] + ], + "packet_chat_suggestions": [ + "container", + [ + { + "name": "action", + "type": "varint" + }, + { + "name": "entries", + "type": [ + "array", + { + "countType": "varint", + "type": "string" + } + ] + } + ] + ], + "packet_custom_payload": [ + "container", + [ + { + "name": "channel", + "type": "string" + }, + { + "name": "data", + "type": "restBuffer" + } + ] + ], + "packet_damage_event": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "sourceTypeId", + "type": "varint" + }, + { + "name": "sourceCauseId", + "type": "varint" + }, + { + "name": "sourceDirectId", + "type": "varint" + }, + { + "name": "sourcePosition", + "type": [ + "option", + "vec3f64" + ] + } + ] + ], + "packet_debug_sample": [ + "container", + [ + { + "name": "sample", + "type": [ + "array", + { + "countType": "varint", + "type": "i64" + } + ] + }, + { + "name": "type", + "type": "varint" + } + ] + ], + "packet_hide_message": [ + "container", + [ + { + "name": "id", + "type": "varint" + }, + { + "name": "signature", + "type": [ + "switch", + { + "compareTo": "id", + "fields": { + "0": [ + "buffer", + { + "count": 256 + } + ] + }, + "default": "void" + } + ] + } + ] + ], + "packet_kick_disconnect": [ + "container", + [ + { + "name": "reason", + "type": "anonymousNbt" + } + ] + ], + "ChatTypeParameterType": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "content", + "1": "sender", + "2": "target" + } + } + ], + "ChatType": [ + "container", + [ + { + "name": "translationKey", + "type": "string" + }, + { + "name": "parameters", + "type": [ + "array", + { + "countType": "varint", + "type": "ChatTypeParameterType" + } + ] + }, + { + "name": "style", + "type": "anonymousNbt" + } + ] + ], + "ChatTypes": [ + "container", + [ + { + "name": "registryIndex", + "type": "varint" + }, + { + "anon": true, + "type": [ + "switch", + { + "compareTo": "registryIndex", + "fields": { + "0": [ + "container", + [ + { + "name": "chat", + "type": "ChatType" + }, + { + "name": "narration", + "type": "ChatType" + } + ] + ] + }, + "default": "void" + } + ] + } + ] + ], + "packet_profileless_chat": [ + "container", + [ + { + "name": "message", + "type": "anonymousNbt" + }, + { + "name": "type", + "type": "ChatTypes" + }, + { + "name": "name", + "type": "anonymousNbt" + }, + { + "name": "target", + "type": [ + "option", + "anonymousNbt" + ] + } + ] + ], + "packet_entity_status": [ + "container", + [ + { + "name": "entityId", + "type": "i32" + }, + { + "name": "entityStatus", + "type": "i8" + } + ] + ], + "packet_sync_entity_position": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "x", + "type": "f64" + }, + { + "name": "y", + "type": "f64" + }, + { + "name": "z", + "type": "f64" + }, + { + "name": "dx", + "type": "f64" + }, + { + "name": "dy", + "type": "f64" + }, + { + "name": "dz", + "type": "f64" + }, + { + "name": "yaw", + "type": "f32" + }, + { + "name": "pitch", + "type": "f32" + }, + { + "name": "onGround", + "type": "bool" + } + ] + ], + "packet_explosion": [ + "container", + [ + { + "name": "center", + "type": "vec3f" + }, + { + "name": "playerKnockback", + "type": [ + "option", + "vec3f" + ] + }, + { + "name": "explosionParticle", + "type": "Particle" + }, + { + "name": "soundId", + "type": "varint" + }, + { + "anon": true, + "type": [ + "switch", + { + "compareTo": "soundId", + "fields": { + "0": [ + "container", + [ + { + "name": "soundName", + "type": "string" + }, + { + "name": "range", + "type": [ + "option", + "f32" + ] + } + ] + ] + }, + "default": [ + "container", + [] + ] + } + ] + } + ] + ], + "packet_unload_chunk": [ + "container", + [ + { + "name": "chunkZ", + "type": "i32" + }, + { + "name": "chunkX", + "type": "i32" + } + ] + ], + "packet_game_state_change": [ + "container", + [ + { + "name": "reason", + "type": "u8" + }, + { + "name": "gameMode", + "type": "f32" + } + ] + ], + "packet_open_horse_window": [ + "container", + [ + { + "name": "windowId", + "type": "ContainerID" + }, + { + "name": "nbSlots", + "type": "varint" + }, + { + "name": "entityId", + "type": "i32" + } + ] + ], + "packet_hurt_animation": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "yaw", + "type": "f32" + } + ] + ], + "packet_initialize_world_border": [ + "container", + [ + { + "name": "x", + "type": "f64" + }, + { + "name": "z", + "type": "f64" + }, + { + "name": "oldDiameter", + "type": "f64" + }, + { + "name": "newDiameter", + "type": "f64" + }, + { + "name": "speed", + "type": "varint" + }, + { + "name": "portalTeleportBoundary", + "type": "varint" + }, + { + "name": "warningBlocks", + "type": "varint" + }, + { + "name": "warningTime", + "type": "varint" + } + ] + ], + "packet_keep_alive": [ + "container", + [ + { + "name": "keepAliveId", + "type": "i64" + } + ] + ], + "packet_map_chunk": [ + "container", + [ + { + "name": "x", + "type": "i32" + }, + { + "name": "z", + "type": "i32" + }, + { + "name": "heightmaps", + "type": "anonymousNbt" + }, + { + "name": "chunkData", + "type": [ + "buffer", + { + "countType": "varint" + } + ] + }, + { + "name": "blockEntities", + "type": [ + "array", + { + "countType": "varint", + "type": "chunkBlockEntity" + } + ] + }, + { + "name": "skyLightMask", + "type": [ + "array", + { + "countType": "varint", + "type": "i64" + } + ] + }, + { + "name": "blockLightMask", + "type": [ + "array", + { + "countType": "varint", + "type": "i64" + } + ] + }, + { + "name": "emptySkyLightMask", + "type": [ + "array", + { + "countType": "varint", + "type": "i64" + } + ] + }, + { + "name": "emptyBlockLightMask", + "type": [ + "array", + { + "countType": "varint", + "type": "i64" + } + ] + }, + { + "name": "skyLight", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "array", + { + "countType": "varint", + "type": "u8" + } + ] + } + ] + }, + { + "name": "blockLight", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "array", + { + "countType": "varint", + "type": "u8" + } + ] + } + ] + } + ] + ], + "packet_world_event": [ + "container", + [ + { + "name": "effectId", + "type": "i32" + }, + { + "name": "location", + "type": "position" + }, + { + "name": "data", + "type": "i32" + }, + { + "name": "global", + "type": "bool" + } + ] + ], + "packet_world_particles": [ + "container", + [ + { + "name": "longDistance", + "type": "bool" + }, + { + "name": "alwaysShow", + "type": "bool" + }, + { + "name": "x", + "type": "f64" + }, + { + "name": "y", + "type": "f64" + }, + { + "name": "z", + "type": "f64" + }, + { + "name": "offsetX", + "type": "f32" + }, + { + "name": "offsetY", + "type": "f32" + }, + { + "name": "offsetZ", + "type": "f32" + }, + { + "name": "velocityOffset", + "type": "f32" + }, + { + "name": "amount", + "type": "i32" + }, + { + "name": "particle", + "type": "Particle" + } + ] + ], + "packet_update_light": [ + "container", + [ + { + "name": "chunkX", + "type": "varint" + }, + { + "name": "chunkZ", + "type": "varint" + }, + { + "name": "skyLightMask", + "type": [ + "array", + { + "countType": "varint", + "type": "i64" + } + ] + }, + { + "name": "blockLightMask", + "type": [ + "array", + { + "countType": "varint", + "type": "i64" + } + ] + }, + { + "name": "emptySkyLightMask", + "type": [ + "array", + { + "countType": "varint", + "type": "i64" + } + ] + }, + { + "name": "emptyBlockLightMask", + "type": [ + "array", + { + "countType": "varint", + "type": "i64" + } + ] + }, + { + "name": "skyLight", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "array", + { + "countType": "varint", + "type": "u8" + } + ] + } + ] + }, + { + "name": "blockLight", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "array", + { + "countType": "varint", + "type": "u8" + } + ] + } + ] + } + ] + ], + "packet_login": [ + "container", + [ + { + "name": "entityId", + "type": "i32" + }, + { + "name": "isHardcore", + "type": "bool" + }, + { + "name": "worldNames", + "type": [ + "array", + { + "countType": "varint", + "type": "string" + } + ] + }, + { + "name": "maxPlayers", + "type": "varint" + }, + { + "name": "viewDistance", + "type": "varint" + }, + { + "name": "simulationDistance", + "type": "varint" + }, + { + "name": "reducedDebugInfo", + "type": "bool" + }, + { + "name": "enableRespawnScreen", + "type": "bool" + }, + { + "name": "doLimitedCrafting", + "type": "bool" + }, + { + "name": "worldState", + "type": "SpawnInfo" + }, + { + "name": "enforcesSecureChat", + "type": "bool" + } + ] + ], + "packet_map": [ + "container", + [ + { + "name": "itemDamage", + "type": "varint" + }, + { + "name": "scale", + "type": "i8" + }, + { + "name": "locked", + "type": "bool" + }, + { + "name": "icons", + "type": [ + "option", + [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "type", + "type": "varint" + }, + { + "name": "x", + "type": "i8" + }, + { + "name": "z", + "type": "i8" + }, + { + "name": "direction", + "type": "u8" + }, + { + "name": "displayName", + "type": [ + "option", + "anonymousNbt" + ] + } + ] + ] + } + ] + ] + }, + { + "name": "columns", + "type": "u8" + }, + { + "name": "rows", + "type": [ + "switch", + { + "compareTo": "columns", + "fields": { + "0": "void" + }, + "default": "u8" + } + ] + }, + { + "name": "x", + "type": [ + "switch", + { + "compareTo": "columns", + "fields": { + "0": "void" + }, + "default": "u8" + } + ] + }, + { + "name": "y", + "type": [ + "switch", + { + "compareTo": "columns", + "fields": { + "0": "void" + }, + "default": "u8" + } + ] + }, + { + "name": "data", + "type": [ + "switch", + { + "compareTo": "columns", + "fields": { + "0": "void" + }, + "default": [ + "buffer", + { + "countType": "varint" + } + ] + } + ] + } + ] + ], + "packet_trade_list": [ + "container", + [ + { + "name": "windowId", + "type": "ContainerID" + }, + { + "name": "trades", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "inputItem1", + "type": [ + "container", + [ + { + "name": "itemId", + "type": "varint" + }, + { + "name": "itemCount", + "type": "varint" + }, + { + "name": "addedComponentCount", + "type": "varint" + }, + { + "name": "components", + "type": [ + "array", + { + "count": "addedComponentCount", + "type": "SlotComponent" + } + ] + } + ] + ] + }, + { + "name": "outputItem", + "type": "Slot" + }, + { + "name": "inputItem2", + "type": [ + "option", + [ + "container", + [ + { + "name": "itemId", + "type": "varint" + }, + { + "name": "itemCount", + "type": "varint" + }, + { + "name": "addedComponentCount", + "type": "varint" + }, + { + "name": "components", + "type": [ + "array", + { + "count": "addedComponentCount", + "type": "SlotComponent" + } + ] + } + ] + ] + ] + }, + { + "name": "tradeDisabled", + "type": "bool" + }, + { + "name": "nbTradeUses", + "type": "i32" + }, + { + "name": "maximumNbTradeUses", + "type": "i32" + }, + { + "name": "xp", + "type": "i32" + }, + { + "name": "specialPrice", + "type": "i32" + }, + { + "name": "priceMultiplier", + "type": "f32" + }, + { + "name": "demand", + "type": "i32" + } + ] + ] + } + ] + }, + { + "name": "villagerLevel", + "type": "varint" + }, + { + "name": "experience", + "type": "varint" + }, + { + "name": "isRegularVillager", + "type": "bool" + }, + { + "name": "canRestock", + "type": "bool" + } + ] + ], + "packet_rel_entity_move": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "dX", + "type": "i16" + }, + { + "name": "dY", + "type": "i16" + }, + { + "name": "dZ", + "type": "i16" + }, + { + "name": "onGround", + "type": "bool" + } + ] + ], + "packet_entity_move_look": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "dX", + "type": "i16" + }, + { + "name": "dY", + "type": "i16" + }, + { + "name": "dZ", + "type": "i16" + }, + { + "name": "yaw", + "type": "i8" + }, + { + "name": "pitch", + "type": "i8" + }, + { + "name": "onGround", + "type": "bool" + } + ] + ], + "packet_move_minecart": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "steps", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "position", + "type": "vec3f" + }, + { + "name": "movement", + "type": "vec3f" + }, + { + "name": "yaw", + "type": "f32" + }, + { + "name": "pitch", + "type": "f32" + }, + { + "name": "weight", + "type": "f32" + } + ] + ] + } + ] + } + ] + ], + "packet_entity_look": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "yaw", + "type": "i8" + }, + { + "name": "pitch", + "type": "i8" + }, + { + "name": "onGround", + "type": "bool" + } + ] + ], + "packet_vehicle_move": [ + "container", + [ + { + "name": "x", + "type": "f64" + }, + { + "name": "y", + "type": "f64" + }, + { + "name": "z", + "type": "f64" + }, + { + "name": "yaw", + "type": "f32" + }, + { + "name": "pitch", + "type": "f32" + } + ] + ], + "packet_open_book": [ + "container", + [ + { + "name": "hand", + "type": "varint" + } + ] + ], + "packet_open_window": [ + "container", + [ + { + "name": "windowId", + "type": "varint" + }, + { + "name": "inventoryType", + "type": "varint" + }, + { + "name": "windowTitle", + "type": "anonymousNbt" + } + ] + ], + "packet_open_sign_entity": [ + "container", + [ + { + "name": "location", + "type": "position" + }, + { + "name": "isFrontText", + "type": "bool" + } + ] + ], + "packet_ping": [ + "container", + [ + { + "name": "id", + "type": "i32" + } + ] + ], + "packet_ping_response": [ + "container", + [ + { + "name": "id", + "type": "i64" + } + ] + ], + "packet_craft_recipe_response": [ + "container", + [ + { + "name": "windowId", + "type": "ContainerID" + }, + { + "name": "recipeDisplay", + "type": "RecipeDisplay" + } + ] + ], + "packet_abilities": [ + "container", + [ + { + "name": "flags", + "type": "i8" + }, + { + "name": "flyingSpeed", + "type": "f32" + }, + { + "name": "walkingSpeed", + "type": "f32" + } + ] + ], + "packet_player_chat": [ + "container", + [ + { + "name": "senderUuid", + "type": "UUID" + }, + { + "name": "index", + "type": "varint" + }, + { + "name": "signature", + "type": [ + "option", + [ + "buffer", + { + "count": 256 + } + ] + ] + }, + { + "name": "plainMessage", + "type": "string" + }, + { + "name": "timestamp", + "type": "i64" + }, + { + "name": "salt", + "type": "i64" + }, + { + "name": "previousMessages", + "type": "previousMessages" + }, + { + "name": "unsignedChatContent", + "type": [ + "option", + "anonymousNbt" + ] + }, + { + "name": "filterType", + "type": "varint" + }, + { + "name": "filterTypeMask", + "type": [ + "switch", + { + "compareTo": "filterType", + "fields": { + "2": [ + "array", + { + "countType": "varint", + "type": "i64" + } + ] + }, + "default": "void" + } + ] + }, + { + "name": "type", + "type": "ChatTypes" + }, + { + "name": "networkName", + "type": "anonymousNbt" + }, + { + "name": "networkTargetName", + "type": [ + "option", + "anonymousNbt" + ] + } + ] + ], + "packet_end_combat_event": [ + "container", + [ + { + "name": "duration", + "type": "varint" + } + ] + ], + "packet_enter_combat_event": [ + "container", + [] + ], + "packet_death_combat_event": [ + "container", + [ + { + "name": "playerId", + "type": "varint" + }, + { + "name": "message", + "type": "anonymousNbt" + } + ] + ], + "packet_player_remove": [ + "container", + [ + { + "name": "players", + "type": [ + "array", + { + "countType": "varint", + "type": "UUID" + } + ] + } + ] + ], + "packet_player_info": [ + "container", + [ + { + "name": "action", + "type": [ + "bitflags", + { + "type": "u8", + "flags": [ + "add_player", + "initialize_chat", + "update_game_mode", + "update_listed", + "update_latency", + "update_display_name", + "update_hat", + "update_priority" + ] + } + ] + }, + { + "name": "data", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "uuid", + "type": "UUID" + }, + { + "name": "player", + "type": [ + "switch", + { + "compareTo": "../action/add_player", + "fields": { + "true": "game_profile" + }, + "default": "void" + } + ] + }, + { + "name": "chatSession", + "type": [ + "switch", + { + "compareTo": "../action/initialize_chat", + "fields": { + "true": "chat_session" + }, + "default": "void" + } + ] + }, + { + "name": "gamemode", + "type": [ + "switch", + { + "compareTo": "../action/update_game_mode", + "fields": { + "true": "varint" + }, + "default": "void" + } + ] + }, + { + "name": "listed", + "type": [ + "switch", + { + "compareTo": "../action/update_listed", + "fields": { + "true": "varint" + }, + "default": "void" + } + ] + }, + { + "name": "latency", + "type": [ + "switch", + { + "compareTo": "../action/update_latency", + "fields": { + "true": "varint" + }, + "default": "void" + } + ] + }, + { + "name": "displayName", + "type": [ + "switch", + { + "compareTo": "../action/update_display_name", + "fields": { + "true": "anonOptionalNbt" + }, + "default": "void" + } + ] + }, + { + "name": "listPriority", + "type": [ + "switch", + { + "compareTo": "../action/update_priority", + "fields": { + "true": "varint" + }, + "default": "void" + } + ] + }, + { + "name": "showHat", + "type": [ + "switch", + { + "compareTo": "../action/update_hat", + "fields": { + "true": "bool" + }, + "default": "void" + } + ] + } + ] + ] + } + ] + } + ] + ], + "packet_face_player": [ + "container", + [ + { + "name": "feet_eyes", + "type": "varint" + }, + { + "name": "x", + "type": "f64" + }, + { + "name": "y", + "type": "f64" + }, + { + "name": "z", + "type": "f64" + }, + { + "name": "isEntity", + "type": "bool" + }, + { + "name": "entityId", + "type": [ + "switch", + { + "compareTo": "isEntity", + "fields": { + "true": "varint" + }, + "default": "void" + } + ] + }, + { + "name": "entity_feet_eyes", + "type": [ + "switch", + { + "compareTo": "isEntity", + "fields": { + "true": "varint" + }, + "default": "void" + } + ] + } + ] + ], + "PositionUpdateRelatives": [ + "bitflags", + { + "type": "u32", + "flags": [ + "x", + "y", + "z", + "yaw", + "pitch", + "dx", + "dy", + "dz", + "yawDelta" + ] + } + ], + "packet_position": [ + "container", + [ + { + "name": "teleportId", + "type": "varint" + }, + { + "name": "x", + "type": "f64" + }, + { + "name": "y", + "type": "f64" + }, + { + "name": "z", + "type": "f64" + }, + { + "name": "dx", + "type": "f64" + }, + { + "name": "dy", + "type": "f64" + }, + { + "name": "dz", + "type": "f64" + }, + { + "name": "yaw", + "type": "f32" + }, + { + "name": "pitch", + "type": "f32" + }, + { + "name": "flags", + "type": "PositionUpdateRelatives" + } + ] + ], + "packet_player_rotation": [ + "container", + [ + { + "name": "yaw", + "type": "f32" + }, + { + "name": "pitch", + "type": "f32" + } + ] + ], + "packet_recipe_book_add": [ + "container", + [ + { + "name": "entries", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "recipe", + "type": [ + "container", + [ + { + "name": "displayId", + "type": "varint" + }, + { + "name": "display", + "type": "RecipeDisplay" + }, + { + "name": "group", + "type": "optvarint" + }, + { + "name": "category", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "crafting_building_blocks", + "1": "crafting_redstone", + "2": "crafting_equipment", + "3": "crafting_misc", + "4": "furnace_food", + "5": "furnace_blocks", + "6": "furnace_misc", + "7": "blast_furnace_blocks", + "8": "blast_furnace_misc", + "9": "smoker_food", + "10": "stonecutter", + "11": "smithing", + "12": "campfire" + } + } + ] + }, + { + "name": "craftingRequirements", + "type": [ + "option", + [ + "array", + { + "countType": "varint", + "type": "IDSet" + } + ] + ] + } + ] + ] + }, + { + "name": "flags", + "type": [ + "bitflags", + { + "type": "u8", + "flags": [ + "notification", + "highlight" + ] + } + ] + } + ] + ] + } + ] + }, + { + "name": "replace", + "type": "bool" + } + ] + ], + "packet_recipe_book_remove": [ + "container", + [ + { + "name": "recipeIds", + "type": [ + "array", + { + "countType": "varint", + "type": "varint" + } + ] + } + ] + ], + "packet_recipe_book_settings": [ + "container", + [ + { + "name": "craftingGuiOpen", + "type": "bool" + }, + { + "name": "craftingFilteringCraftable", + "type": "bool" + }, + { + "name": "smeltingGuiOpen", + "type": "bool" + }, + { + "name": "smeltingFilteringCraftable", + "type": "bool" + }, + { + "name": "blastGuiOpen", + "type": "bool" + }, + { + "name": "blastFilteringCraftable", + "type": "bool" + }, + { + "name": "smokerGuiOpen", + "type": "bool" + }, + { + "name": "smokerFilteringCraftable", + "type": "bool" + } + ] + ], + "packet_entity_destroy": [ + "container", + [ + { + "name": "entityIds", + "type": [ + "array", + { + "countType": "varint", + "type": "varint" + } + ] + } + ] + ], + "packet_remove_entity_effect": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "effectId", + "type": "varint" + } + ] + ], + "packet_reset_score": [ + "container", + [ + { + "name": "entity_name", + "type": "string" + }, + { + "name": "objective_name", + "type": [ + "option", + "string" + ] + } + ] + ], + "packet_respawn": [ + "container", + [ + { + "name": "worldState", + "type": "SpawnInfo" + }, + { + "name": "copyMetadata", + "type": "u8" + } + ] + ], + "packet_entity_head_rotation": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "headYaw", + "type": "i8" + } + ] + ], + "packet_multi_block_change": [ + "container", + [ + { + "name": "chunkCoordinates", + "type": [ + "bitfield", + [ + { + "name": "x", + "size": 22, + "signed": true + }, + { + "name": "z", + "size": 22, + "signed": true + }, + { + "name": "y", + "size": 20, + "signed": true + } + ] + ] + }, + { + "name": "records", + "type": [ + "array", + { + "countType": "varint", + "type": "varint" + } + ] + } + ] + ], + "packet_select_advancement_tab": [ + "container", + [ + { + "name": "id", + "type": [ + "option", + "string" + ] + } + ] + ], + "packet_server_data": [ + "container", + [ + { + "name": "motd", + "type": "anonymousNbt" + }, + { + "name": "iconBytes", + "type": [ + "option", + "ByteArray" + ] + } + ] + ], + "packet_action_bar": [ + "container", + [ + { + "name": "text", + "type": "anonymousNbt" + } + ] + ], + "packet_world_border_center": [ + "container", + [ + { + "name": "x", + "type": "f64" + }, + { + "name": "z", + "type": "f64" + } + ] + ], + "packet_world_border_lerp_size": [ + "container", + [ + { + "name": "oldDiameter", + "type": "f64" + }, + { + "name": "newDiameter", + "type": "f64" + }, + { + "name": "speed", + "type": "varint" + } + ] + ], + "packet_world_border_size": [ + "container", + [ + { + "name": "diameter", + "type": "f64" + } + ] + ], + "packet_world_border_warning_delay": [ + "container", + [ + { + "name": "warningTime", + "type": "varint" + } + ] + ], + "packet_world_border_warning_reach": [ + "container", + [ + { + "name": "warningBlocks", + "type": "varint" + } + ] + ], + "packet_camera": [ + "container", + [ + { + "name": "cameraId", + "type": "varint" + } + ] + ], + "packet_update_view_position": [ + "container", + [ + { + "name": "chunkX", + "type": "varint" + }, + { + "name": "chunkZ", + "type": "varint" + } + ] + ], + "packet_update_view_distance": [ + "container", + [ + { + "name": "viewDistance", + "type": "varint" + } + ] + ], + "packet_set_cursor_item": [ + "container", + [ + { + "name": "contents", + "type": [ + "option", + "Slot" + ] + } + ] + ], + "packet_spawn_position": [ + "container", + [ + { + "name": "location", + "type": "position" + }, + { + "name": "angle", + "type": "f32" + } + ] + ], + "packet_scoreboard_display_objective": [ + "container", + [ + { + "name": "position", + "type": "varint" + }, + { + "name": "name", + "type": "string" + } + ] + ], + "packet_entity_metadata": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "metadata", + "type": "entityMetadata" + } + ] + ], + "packet_attach_entity": [ + "container", + [ + { + "name": "entityId", + "type": "i32" + }, + { + "name": "vehicleId", + "type": "i32" + } + ] + ], + "packet_entity_velocity": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "velocityX", + "type": "i16" + }, + { + "name": "velocityY", + "type": "i16" + }, + { + "name": "velocityZ", + "type": "i16" + } + ] + ], + "packet_entity_equipment": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "equipments", + "type": [ + "topBitSetTerminatedArray", + { + "type": [ + "container", + [ + { + "name": "slot", + "type": "i8" + }, + { + "name": "item", + "type": "Slot" + } + ] + ] + } + ] + } + ] + ], + "packet_experience": [ + "container", + [ + { + "name": "experienceBar", + "type": "f32" + }, + { + "name": "level", + "type": "varint" + }, + { + "name": "totalExperience", + "type": "varint" + } + ] + ], + "packet_update_health": [ + "container", + [ + { + "name": "health", + "type": "f32" + }, + { + "name": "food", + "type": "varint" + }, + { + "name": "foodSaturation", + "type": "f32" + } + ] + ], + "packet_held_item_slot": [ + "container", + [ + { + "name": "slot", + "type": "varint" + } + ] + ], + "packet_scoreboard_objective": [ + "container", + [ + { + "name": "name", + "type": "string" + }, + { + "name": "action", + "type": "i8" + }, + { + "name": "displayText", + "type": [ + "switch", + { + "compareTo": "action", + "fields": { + "0": "anonymousNbt", + "2": "anonymousNbt" + }, + "default": "void" + } + ] + }, + { + "name": "type", + "type": [ + "switch", + { + "compareTo": "action", + "fields": { + "0": "varint", + "2": "varint" + }, + "default": "void" + } + ] + }, + { + "name": "number_format", + "type": [ + "switch", + { + "compareTo": "action", + "fields": { + "0": [ + "option", + "varint" + ], + "2": [ + "option", + "varint" + ] + }, + "default": "void" + } + ] + }, + { + "name": "styling", + "type": [ + "switch", + { + "compareTo": "action", + "fields": { + "0": [ + "switch", + { + "compareTo": "number_format", + "fields": { + "1": "anonymousNbt", + "2": "anonymousNbt" + }, + "default": "void" + } + ], + "2": [ + "switch", + { + "compareTo": "number_format", + "fields": { + "1": "anonymousNbt", + "2": "anonymousNbt" + }, + "default": "void" + } + ] + }, + "default": "void" + } + ] + } + ] + ], + "packet_set_passengers": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "passengers", + "type": [ + "array", + { + "countType": "varint", + "type": "varint" + } + ] + } + ] + ], + "packet_set_player_inventory": [ + "container", + [ + { + "name": "slotId", + "type": "varint" + }, + { + "name": "contents", + "type": [ + "option", + "Slot" + ] + } + ] + ], + "packet_teams": [ + "container", + [ + { + "name": "team", + "type": "string" + }, + { + "name": "mode", + "type": "i8" + }, + { + "name": "name", + "type": [ + "switch", + { + "compareTo": "mode", + "fields": { + "0": "anonymousNbt", + "2": "anonymousNbt" + }, + "default": "void" + } + ] + }, + { + "name": "friendlyFire", + "type": [ + "switch", + { + "compareTo": "mode", + "fields": { + "0": "i8", + "2": "i8" + }, + "default": "void" + } + ] + }, + { + "name": "nameTagVisibility", + "type": [ + "switch", + { + "compareTo": "mode", + "fields": { + "0": "string", + "2": "string" + }, + "default": "void" + } + ] + }, + { + "name": "collisionRule", + "type": [ + "switch", + { + "compareTo": "mode", + "fields": { + "0": "string", + "2": "string" + }, + "default": "void" + } + ] + }, + { + "name": "formatting", + "type": [ + "switch", + { + "compareTo": "mode", + "fields": { + "0": "varint", + "2": "varint" + }, + "default": "void" + } + ] + }, + { + "name": "prefix", + "type": [ + "switch", + { + "compareTo": "mode", + "fields": { + "0": "anonymousNbt", + "2": "anonymousNbt" + }, + "default": "void" + } + ] + }, + { + "name": "suffix", + "type": [ + "switch", + { + "compareTo": "mode", + "fields": { + "0": "anonymousNbt", + "2": "anonymousNbt" + }, + "default": "void" + } + ] + }, + { + "name": "players", + "type": [ + "switch", + { + "compareTo": "mode", + "fields": { + "0": [ + "array", + { + "countType": "varint", + "type": "string" + } + ], + "3": [ + "array", + { + "countType": "varint", + "type": "string" + } + ], + "4": [ + "array", + { + "countType": "varint", + "type": "string" + } + ] + }, + "default": "void" + } + ] + } + ] + ], + "packet_scoreboard_score": [ + "container", + [ + { + "name": "itemName", + "type": "string" + }, + { + "name": "scoreName", + "type": "string" + }, + { + "name": "value", + "type": "varint" + }, + { + "name": "display_name", + "type": [ + "option", + "anonymousNbt" + ] + }, + { + "name": "number_format", + "type": [ + "option", + "varint" + ] + }, + { + "name": "styling", + "type": [ + "switch", + { + "compareTo": "number_format", + "fields": { + "1": "anonymousNbt", + "2": "anonymousNbt" + }, + "default": "void" + } + ] + } + ] + ], + "packet_simulation_distance": [ + "container", + [ + { + "name": "distance", + "type": "varint" + } + ] + ], + "packet_set_title_subtitle": [ + "container", + [ + { + "name": "text", + "type": "anonymousNbt" + } + ] + ], + "packet_update_time": [ + "container", + [ + { + "name": "age", + "type": "i64" + }, + { + "name": "time", + "type": "i64" + }, + { + "name": "tickDayTime", + "type": "bool" + } + ] + ], + "packet_set_title_text": [ + "container", + [ + { + "name": "text", + "type": "anonymousNbt" + } + ] + ], + "packet_set_title_time": [ + "container", + [ + { + "name": "fadeIn", + "type": "i32" + }, + { + "name": "stay", + "type": "i32" + }, + { + "name": "fadeOut", + "type": "i32" + } + ] + ], + "packet_entity_sound_effect": [ + "container", + [ + { + "name": "soundId", + "type": "varint" + }, + { + "name": "soundEvent", + "type": [ + "switch", + { + "compareTo": "soundId", + "fields": { + "0": [ + "container", + [ + { + "name": "resource", + "type": "string" + }, + { + "name": "range", + "type": [ + "option", + "f32" + ] + } + ] + ] + }, + "default": "void" + } + ] + }, + { + "name": "soundCategory", + "type": "soundSource" + }, + { + "name": "entityId", + "type": "varint" + }, + { + "name": "volume", + "type": "f32" + }, + { + "name": "pitch", + "type": "f32" + }, + { + "name": "seed", + "type": "i64" + } + ] + ], + "packet_sound_effect": [ + "container", + [ + { + "name": "soundId", + "type": "varint" + }, + { + "name": "soundEvent", + "type": [ + "switch", + { + "compareTo": "soundId", + "fields": { + "0": [ + "container", + [ + { + "name": "resource", + "type": "string" + }, + { + "name": "range", + "type": [ + "option", + "f32" + ] + } + ] + ] + }, + "default": "void" + } + ] + }, + { + "name": "soundCategory", + "type": "soundSource" + }, + { + "name": "x", + "type": "i32" + }, + { + "name": "y", + "type": "i32" + }, + { + "name": "z", + "type": "i32" + }, + { + "name": "volume", + "type": "f32" + }, + { + "name": "pitch", + "type": "f32" + }, + { + "name": "seed", + "type": "i64" + } + ] + ], + "packet_start_configuration": [ + "container", + [] + ], + "packet_stop_sound": [ + "container", + [ + { + "name": "flags", + "type": "i8" + }, + { + "name": "source", + "type": [ + "switch", + { + "compareTo": "flags", + "fields": { + "1": "varint", + "3": "varint" + }, + "default": "void" + } + ] + }, + { + "name": "sound", + "type": [ + "switch", + { + "compareTo": "flags", + "fields": { + "2": "string", + "3": "string" + }, + "default": "void" + } + ] + } + ] + ], + "packet_system_chat": [ + "container", + [ + { + "name": "content", + "type": "anonymousNbt" + }, + { + "name": "isActionBar", + "type": "bool" + } + ] + ], + "packet_playerlist_header": [ + "container", + [ + { + "name": "header", + "type": "anonymousNbt" + }, + { + "name": "footer", + "type": "anonymousNbt" + } + ] + ], + "packet_nbt_query_response": [ + "container", + [ + { + "name": "transactionId", + "type": "varint" + }, + { + "name": "nbt", + "type": "anonOptionalNbt" + } + ] + ], + "packet_collect": [ + "container", + [ + { + "name": "collectedEntityId", + "type": "varint" + }, + { + "name": "collectorEntityId", + "type": "varint" + }, + { + "name": "pickupItemCount", + "type": "varint" + } + ] + ], + "packet_entity_teleport": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "x", + "type": "f64" + }, + { + "name": "y", + "type": "f64" + }, + { + "name": "z", + "type": "f64" + }, + { + "name": "yaw", + "type": "i8" + }, + { + "name": "pitch", + "type": "i8" + }, + { + "name": "onGround", + "type": "bool" + } + ] + ], + "packet_set_ticking_state": [ + "container", + [ + { + "name": "tick_rate", + "type": "f32" + }, + { + "name": "is_frozen", + "type": "bool" + } + ] + ], + "packet_step_tick": [ + "container", + [ + { + "name": "tick_steps", + "type": "varint" + } + ] + ], + "packet_advancements": [ + "container", + [ + { + "name": "reset", + "type": "bool" + }, + { + "name": "advancementMapping", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "key", + "type": "string" + }, + { + "name": "value", + "type": [ + "container", + [ + { + "name": "parentId", + "type": [ + "option", + "string" + ] + }, + { + "name": "displayData", + "type": [ + "option", + [ + "container", + [ + { + "name": "title", + "type": "anonymousNbt" + }, + { + "name": "description", + "type": "anonymousNbt" + }, + { + "name": "icon", + "type": "Slot" + }, + { + "name": "frameType", + "type": "varint" + }, + { + "name": "flags", + "type": [ + "bitfield", + [ + { + "name": "unused", + "size": 29, + "signed": false + }, + { + "name": "hidden", + "size": 1, + "signed": false + }, + { + "name": "show_toast", + "size": 1, + "signed": false + }, + { + "name": "has_background_texture", + "size": 1, + "signed": false + } + ] + ] + }, + { + "name": "backgroundTexture", + "type": [ + "switch", + { + "compareTo": "flags/has_background_texture", + "fields": { + "1": "string" + }, + "default": "void" + } + ] + }, + { + "name": "xCord", + "type": "f32" + }, + { + "name": "yCord", + "type": "f32" + } + ] + ] + ] + }, + { + "name": "requirements", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "array", + { + "countType": "varint", + "type": "string" + } + ] + } + ] + }, + { + "name": "sendsTelemtryData", + "type": "bool" + } + ] + ] + } + ] + ] + } + ] + }, + { + "name": "identifiers", + "type": [ + "array", + { + "countType": "varint", + "type": "string" + } + ] + }, + { + "name": "progressMapping", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "key", + "type": "string" + }, + { + "name": "value", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "criterionIdentifier", + "type": "string" + }, + { + "name": "criterionProgress", + "type": [ + "option", + "i64" + ] + } + ] + ] + } + ] + } + ] + ] + } + ] + } + ] + ], + "packet_entity_update_attributes": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "properties", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "key", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "generic.armor", + "1": "generic.armor_toughness", + "2": "generic.attack_damage", + "3": "generic.attack_knockback", + "4": "generic.attack_speed", + "5": "player.block_break_speed", + "6": "player.block_interaction_range", + "7": "player.entity_interaction_range", + "8": "generic.fall_damage_multiplier", + "9": "generic.flying_speed", + "10": "generic.follow_range", + "11": "generic.gravity", + "12": "generic.jump_strength", + "13": "generic.knockback_resistance", + "14": "generic.luck", + "15": "generic.max_absorption", + "16": "generic.max_health", + "17": "generic.movement_speed", + "18": "generic.safe_fall_distance", + "19": "generic.scale", + "20": "zombie.spawn_reinforcements", + "21": "generic.step_height" + } + } + ] + }, + { + "name": "value", + "type": "f64" + }, + { + "name": "modifiers", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "uuid", + "type": "string" + }, + { + "name": "amount", + "type": "f64" + }, + { + "name": "operation", + "type": "i8" + } + ] + ] + } + ] + } + ] + ] + } + ] + } + ] + ], + "packet_entity_effect": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "effectId", + "type": "varint" + }, + { + "name": "amplifier", + "type": "varint" + }, + { + "name": "duration", + "type": "varint" + }, + { + "name": "flags", + "type": "u8" + } + ] + ], + "packet_declare_recipes": [ + "container", + [ + { + "name": "recipes", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "name", + "type": "string" + }, + { + "name": "items", + "type": [ + "array", + { + "countType": "varint", + "type": "varint" + } + ] + } + ] + ] + } + ] + }, + { + "name": "stoneCutterRecipes", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "input", + "type": "IDSet" + }, + { + "name": "slotDisplay", + "type": "SlotDisplay" + } + ] + ] + } + ] + } + ] + ], + "packet_tags": [ + "container", + [ + { + "name": "tags", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "tagType", + "type": "string" + }, + { + "name": "tags", + "type": "tags" + } + ] + ] + } + ] + } + ] + ], + "packet_set_projectile_power": [ + "container", + [ + { + "name": "id", + "type": "varint" + }, + { + "name": "accelerationPower", + "type": "f64" + } + ] + ], + "packet": [ + "container", + [ + { + "name": "name", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0x00": "bundle_delimiter", + "0x01": "spawn_entity", + "0x02": "spawn_entity_experience_orb", + "0x03": "animation", + "0x04": "statistics", + "0x05": "acknowledge_player_digging", + "0x06": "block_break_animation", + "0x07": "tile_entity_data", + "0x08": "block_action", + "0x09": "block_change", + "0x0a": "boss_bar", + "0x0b": "difficulty", + "0x0c": "chunk_batch_finished", + "0x0d": "chunk_batch_start", + "0x0e": "chunk_biomes", + "0x0f": "clear_titles", + "0x10": "tab_complete", + "0x11": "declare_commands", + "0x12": "close_window", + "0x13": "window_items", + "0x14": "craft_progress_bar", + "0x15": "set_slot", + "0x16": "cookie_request", + "0x17": "set_cooldown", + "0x18": "chat_suggestions", + "0x19": "custom_payload", + "0x1a": "damage_event", + "0x1b": "debug_sample", + "0x1c": "hide_message", + "0x1d": "kick_disconnect", + "0x1e": "profileless_chat", + "0x1f": "entity_status", + "0x20": "sync_entity_position", + "0x21": "explosion", + "0x22": "unload_chunk", + "0x23": "game_state_change", + "0x24": "open_horse_window", + "0x25": "hurt_animation", + "0x26": "initialize_world_border", + "0x27": "keep_alive", + "0x28": "map_chunk", + "0x29": "world_event", + "0x2a": "world_particles", + "0x2b": "update_light", + "0x2c": "login", + "0x2d": "map", + "0x2e": "trade_list", + "0x2f": "rel_entity_move", + "0x30": "entity_move_look", + "0x31": "move_minecart", + "0x32": "entity_look", + "0x33": "vehicle_move", + "0x34": "open_book", + "0x35": "open_window", + "0x36": "open_sign_entity", + "0x37": "ping", + "0x38": "ping_response", + "0x39": "craft_recipe_response", + "0x3a": "abilities", + "0x3b": "player_chat", + "0x3c": "end_combat_event", + "0x3d": "enter_combat_event", + "0x3e": "death_combat_event", + "0x3f": "player_remove", + "0x40": "player_info", + "0x41": "face_player", + "0x42": "position", + "0x43": "player_rotation", + "0x44": "recipe_book_add", + "0x45": "recipe_book_remove", + "0x46": "recipe_book_settings", + "0x47": "entity_destroy", + "0x48": "remove_entity_effect", + "0x49": "reset_score", + "0x4a": "remove_resource_pack", + "0x4b": "add_resource_pack", + "0x4c": "respawn", + "0x4d": "entity_head_rotation", + "0x4e": "multi_block_change", + "0x4f": "select_advancement_tab", + "0x50": "server_data", + "0x51": "action_bar", + "0x52": "world_border_center", + "0x53": "world_border_lerp_size", + "0x54": "world_border_size", + "0x55": "world_border_warning_delay", + "0x56": "world_border_warning_reach", + "0x57": "camera", + "0x58": "update_view_position", + "0x59": "update_view_distance", + "0x5a": "set_cursor_item", + "0x5b": "spawn_position", + "0x5c": "scoreboard_display_objective", + "0x5d": "entity_metadata", + "0x5e": "attach_entity", + "0x5f": "entity_velocity", + "0x60": "entity_equipment", + "0x61": "experience", + "0x62": "update_health", + "0x63": "held_item_slot", + "0x64": "scoreboard_objective", + "0x65": "set_passengers", + "0x66": "set_player_inventory", + "0x67": "teams", + "0x68": "scoreboard_score", + "0x69": "simulation_distance", + "0x6a": "set_title_subtitle", + "0x6b": "update_time", + "0x6c": "set_title_text", + "0x6d": "set_title_time", + "0x6e": "entity_sound_effect", + "0x6f": "sound_effect", + "0x70": "start_configuration", + "0x71": "stop_sound", + "0x72": "store_cookie", + "0x73": "system_chat", + "0x74": "playerlist_header", + "0x75": "nbt_query_response", + "0x76": "collect", + "0x77": "entity_teleport", + "0x78": "set_ticking_state", + "0x79": "step_tick", + "0x7a": "transfer", + "0x7b": "advancements", + "0x7c": "entity_update_attributes", + "0x7d": "entity_effect", + "0x7e": "declare_recipes", + "0x7f": "tags", + "0x80": "set_projectile_power", + "0x81": "custom_report_details", + "0x82": "server_links" + } + } + ] + }, + { + "name": "params", + "type": [ + "switch", + { + "compareTo": "name", + "fields": { + "bundle_delimiter": "void", + "spawn_entity": "packet_spawn_entity", + "spawn_entity_experience_orb": "packet_spawn_entity_experience_orb", + "animation": "packet_animation", + "statistics": "packet_statistics", + "acknowledge_player_digging": "packet_acknowledge_player_digging", + "block_break_animation": "packet_block_break_animation", + "tile_entity_data": "packet_tile_entity_data", + "block_action": "packet_block_action", + "block_change": "packet_block_change", + "boss_bar": "packet_boss_bar", + "difficulty": "packet_difficulty", + "chunk_batch_finished": "packet_chunk_batch_finished", + "chunk_batch_start": "packet_chunk_batch_start", + "chunk_biomes": "packet_chunk_biomes", + "clear_titles": "packet_clear_titles", + "tab_complete": "packet_tab_complete", + "declare_commands": "packet_declare_commands", + "close_window": "packet_close_window", + "window_items": "packet_window_items", + "craft_progress_bar": "packet_craft_progress_bar", + "set_slot": "packet_set_slot", + "cookie_request": "packet_common_cookie_request", + "set_cooldown": "packet_set_cooldown", + "chat_suggestions": "packet_chat_suggestions", + "custom_payload": "packet_custom_payload", + "damage_event": "packet_damage_event", + "debug_sample": "packet_debug_sample", + "hide_message": "packet_hide_message", + "kick_disconnect": "packet_kick_disconnect", + "profileless_chat": "packet_profileless_chat", + "entity_status": "packet_entity_status", + "sync_entity_position": "packet_sync_entity_position", + "explosion": "packet_explosion", + "unload_chunk": "packet_unload_chunk", + "game_state_change": "packet_game_state_change", + "open_horse_window": "packet_open_horse_window", + "hurt_animation": "packet_hurt_animation", + "initialize_world_border": "packet_initialize_world_border", + "keep_alive": "packet_keep_alive", + "map_chunk": "packet_map_chunk", + "world_event": "packet_world_event", + "world_particles": "packet_world_particles", + "update_light": "packet_update_light", + "login": "packet_login", + "map": "packet_map", + "trade_list": "packet_trade_list", + "rel_entity_move": "packet_rel_entity_move", + "entity_move_look": "packet_entity_move_look", + "move_minecart": "packet_move_minecart", + "entity_look": "packet_entity_look", + "vehicle_move": "packet_vehicle_move", + "open_book": "packet_open_book", + "open_window": "packet_open_window", + "open_sign_entity": "packet_open_sign_entity", + "ping": "packet_ping", + "ping_response": "packet_ping_response", + "craft_recipe_response": "packet_craft_recipe_response", + "abilities": "packet_abilities", + "player_chat": "packet_player_chat", + "end_combat_event": "packet_end_combat_event", + "enter_combat_event": "packet_enter_combat_event", + "death_combat_event": "packet_death_combat_event", + "player_remove": "packet_player_remove", + "player_info": "packet_player_info", + "face_player": "packet_face_player", + "position": "packet_position", + "player_rotation": "packet_player_rotation", + "recipe_book_add": "packet_recipe_book_add", + "recipe_book_remove": "packet_recipe_book_remove", + "recipe_book_settings": "packet_recipe_book_settings", + "entity_destroy": "packet_entity_destroy", + "remove_entity_effect": "packet_remove_entity_effect", + "reset_score": "packet_reset_score", + "remove_resource_pack": "packet_common_remove_resource_pack", + "add_resource_pack": "packet_common_add_resource_pack", + "respawn": "packet_respawn", + "entity_head_rotation": "packet_entity_head_rotation", + "multi_block_change": "packet_multi_block_change", + "select_advancement_tab": "packet_select_advancement_tab", + "server_data": "packet_server_data", + "action_bar": "packet_action_bar", + "world_border_center": "packet_world_border_center", + "world_border_lerp_size": "packet_world_border_lerp_size", + "world_border_size": "packet_world_border_size", + "world_border_warning_delay": "packet_world_border_warning_delay", + "world_border_warning_reach": "packet_world_border_warning_reach", + "camera": "packet_camera", + "update_view_position": "packet_update_view_position", + "update_view_distance": "packet_update_view_distance", + "set_cursor_item": "packet_set_cursor_item", + "held_item_slot": "packet_held_item_slot", + "spawn_position": "packet_spawn_position", + "scoreboard_display_objective": "packet_scoreboard_display_objective", + "entity_metadata": "packet_entity_metadata", + "attach_entity": "packet_attach_entity", + "entity_velocity": "packet_entity_velocity", + "entity_equipment": "packet_entity_equipment", + "experience": "packet_experience", + "update_health": "packet_update_health", + "scoreboard_objective": "packet_scoreboard_objective", + "set_passengers": "packet_set_passengers", + "set_player_inventory": "packet_set_player_inventory", + "teams": "packet_teams", + "scoreboard_score": "packet_scoreboard_score", + "simulation_distance": "packet_simulation_distance", + "set_title_subtitle": "packet_set_title_subtitle", + "update_time": "packet_update_time", + "set_title_text": "packet_set_title_text", + "set_title_time": "packet_set_title_time", + "entity_sound_effect": "packet_entity_sound_effect", + "sound_effect": "packet_sound_effect", + "start_configuration": "packet_start_configuration", + "stop_sound": "packet_stop_sound", + "store_cookie": "packet_common_store_cookie", + "system_chat": "packet_system_chat", + "playerlist_header": "packet_playerlist_header", + "nbt_query_response": "packet_nbt_query_response", + "collect": "packet_collect", + "entity_teleport": "packet_entity_teleport", + "set_ticking_state": "packet_set_ticking_state", + "step_tick": "packet_step_tick", + "transfer": "packet_common_transfer", + "advancements": "packet_advancements", + "entity_update_attributes": "packet_entity_update_attributes", + "entity_effect": "packet_entity_effect", + "declare_recipes": "packet_declare_recipes", + "tags": "packet_tags", + "set_projectile_power": "packet_set_projectile_power", + "custom_report_details": "packet_common_custom_report_details", + "server_links": "packet_common_server_links" + } + } + ] + } + ] + ] + } + }, + "toServer": { + "types": { + "packet_teleport_confirm": [ + "container", + [ + { + "name": "teleportId", + "type": "varint" + } + ] + ], + "packet_query_block_nbt": [ + "container", + [ + { + "name": "transactionId", + "type": "varint" + }, + { + "name": "location", + "type": "position" + } + ] + ], + "packet_select_bundle_item": [ + "container", + [ + { + "name": "slotId", + "type": "varint" + }, + { + "name": "selectedItemIndex", + "type": "varint" + } + ] + ], + "packet_set_difficulty": [ + "container", + [ + { + "name": "newDifficulty", + "type": "u8" + } + ] + ], + "packet_message_acknowledgement": [ + "container", + [ + { + "name": "count", + "type": "varint" + } + ] + ], + "packet_chat_command": [ + "container", + [ + { + "name": "command", + "type": "string" + } + ] + ], + "packet_chat_command_signed": [ + "container", + [ + { + "name": "command", + "type": "string" + }, + { + "name": "timestamp", + "type": "i64" + }, + { + "name": "salt", + "type": "i64" + }, + { + "name": "argumentSignatures", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "argumentName", + "type": "string" + }, + { + "name": "signature", + "type": [ + "buffer", + { + "count": 256 + } + ] + } + ] + ] + } + ] + }, + { + "name": "messageCount", + "type": "varint" + }, + { + "name": "acknowledged", + "type": [ + "buffer", + { + "count": 3 + } + ] + } + ] + ], + "packet_chat_message": [ + "container", + [ + { + "name": "message", + "type": "string" + }, + { + "name": "timestamp", + "type": "i64" + }, + { + "name": "salt", + "type": "i64" + }, + { + "name": "signature", + "type": [ + "option", + [ + "buffer", + { + "count": 256 + } + ] + ] + }, + { + "name": "offset", + "type": "varint" + }, + { + "name": "acknowledged", + "type": [ + "buffer", + { + "count": 3 + } + ] + } + ] + ], + "packet_chat_session_update": [ + "container", + [ + { + "name": "sessionUUID", + "type": "UUID" + }, + { + "name": "expireTime", + "type": "i64" + }, + { + "name": "publicKey", + "type": "ByteArray" + }, + { + "name": "signature", + "type": "ByteArray" + } + ] + ], + "packet_chunk_batch_received": [ + "container", + [ + { + "name": "chunksPerTick", + "type": "f32" + } + ] + ], + "packet_client_command": [ + "container", + [ + { + "name": "actionId", + "type": "varint" + } + ] + ], + "packet_tick_end": [ + "container", + [] + ], + "packet_settings": [ + "container", + [ + { + "name": "locale", + "type": "string" + }, + { + "name": "viewDistance", + "type": "i8" + }, + { + "name": "chatFlags", + "type": "varint" + }, + { + "name": "chatColors", + "type": "bool" + }, + { + "name": "skinParts", + "type": "u8" + }, + { + "name": "mainHand", + "type": "varint" + }, + { + "name": "enableTextFiltering", + "type": "bool" + }, + { + "name": "enableServerListing", + "type": "bool" + }, + { + "name": "particleStatus", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0": "all", + "1": "decreased", + "2": "minimal" + } + } + ] + } + ] + ], + "packet_tab_complete": [ + "container", + [ + { + "name": "transactionId", + "type": "varint" + }, + { + "name": "text", + "type": "string" + } + ] + ], + "packet_configuration_acknowledged": [ + "container", + [] + ], + "packet_enchant_item": [ + "container", + [ + { + "name": "windowId", + "type": "ContainerID" + }, + { + "name": "enchantment", + "type": "i8" + } + ] + ], + "packet_window_click": [ + "container", + [ + { + "name": "windowId", + "type": "ContainerID" + }, + { + "name": "stateId", + "type": "varint" + }, + { + "name": "slot", + "type": "i16" + }, + { + "name": "mouseButton", + "type": "i8" + }, + { + "name": "mode", + "type": "varint" + }, + { + "name": "changedSlots", + "type": [ + "array", + { + "countType": "varint", + "type": [ + "container", + [ + { + "name": "location", + "type": "i16" + }, + { + "name": "item", + "type": "Slot" + } + ] + ] + } + ] + }, + { + "name": "cursorItem", + "type": "Slot" + } + ] + ], + "packet_close_window": [ + "container", + [ + { + "name": "windowId", + "type": "ContainerID" + } + ] + ], + "packet_set_slot_state": [ + "container", + [ + { + "name": "slot_id", + "type": "varint" + }, + { + "name": "window_id", + "type": "ContainerID" + }, + { + "name": "state", + "type": "bool" + } + ] + ], + "packet_custom_payload": [ + "container", + [ + { + "name": "channel", + "type": "string" + }, + { + "name": "data", + "type": "restBuffer" + } + ] + ], + "packet_debug_sample_subscription": [ + "container", + [ + { + "name": "type", + "type": "varint" + } + ] + ], + "packet_edit_book": [ + "container", + [ + { + "name": "hand", + "type": "varint" + }, + { + "name": "pages", + "type": [ + "array", + { + "countType": "varint", + "type": "string" + } + ] + }, + { + "name": "title", + "type": [ + "option", + "string" + ] + } + ] + ], + "packet_query_entity_nbt": [ + "container", + [ + { + "name": "transactionId", + "type": "varint" + }, + { + "name": "entityId", + "type": "varint" + } + ] + ], + "packet_use_entity": [ + "container", + [ + { + "name": "target", + "type": "varint" + }, + { + "name": "mouse", + "type": "varint" + }, + { + "name": "x", + "type": [ + "switch", + { + "compareTo": "mouse", + "fields": { + "2": "f32" + }, + "default": "void" + } + ] + }, + { + "name": "y", + "type": [ + "switch", + { + "compareTo": "mouse", + "fields": { + "2": "f32" + }, + "default": "void" + } + ] + }, + { + "name": "z", + "type": [ + "switch", + { + "compareTo": "mouse", + "fields": { + "2": "f32" + }, + "default": "void" + } + ] + }, + { + "name": "hand", + "type": [ + "switch", + { + "compareTo": "mouse", + "fields": { + "0": "varint", + "2": "varint" + }, + "default": "void" + } + ] + }, + { + "name": "sneaking", + "type": "bool" + } + ] + ], + "packet_generate_structure": [ + "container", + [ + { + "name": "location", + "type": "position" + }, + { + "name": "levels", + "type": "varint" + }, + { + "name": "keepJigsaws", + "type": "bool" + } + ] + ], + "packet_keep_alive": [ + "container", + [ + { + "name": "keepAliveId", + "type": "i64" + } + ] + ], + "packet_lock_difficulty": [ + "container", + [ + { + "name": "locked", + "type": "bool" + } + ] + ], + "MovementFlags": [ + "bitflags", + { + "type": "u8", + "flags": [ + "onGround", + "hasHorizontalCollision" + ] + } + ], + "packet_position": [ + "container", + [ + { + "name": "x", + "type": "f64" + }, + { + "name": "y", + "type": "f64" + }, + { + "name": "z", + "type": "f64" + }, + { + "name": "flags", + "type": "MovementFlags" + } + ] + ], + "packet_position_look": [ + "container", + [ + { + "name": "x", + "type": "f64" + }, + { + "name": "y", + "type": "f64" + }, + { + "name": "z", + "type": "f64" + }, + { + "name": "yaw", + "type": "f32" + }, + { + "name": "pitch", + "type": "f32" + }, + { + "name": "flags", + "type": "MovementFlags" + } + ] + ], + "packet_look": [ + "container", + [ + { + "name": "yaw", + "type": "f32" + }, + { + "name": "pitch", + "type": "f32" + }, + { + "name": "flags", + "type": "MovementFlags" + } + ] + ], + "packet_flying": [ + "container", + [ + { + "name": "flags", + "type": "MovementFlags" + } + ] + ], + "packet_vehicle_move": [ + "container", + [ + { + "name": "x", + "type": "f64" + }, + { + "name": "y", + "type": "f64" + }, + { + "name": "z", + "type": "f64" + }, + { + "name": "yaw", + "type": "f32" + }, + { + "name": "pitch", + "type": "f32" + }, + { + "name": "onGround", + "type": "bool" + } + ] + ], + "packet_steer_boat": [ + "container", + [ + { + "name": "leftPaddle", + "type": "bool" + }, + { + "name": "rightPaddle", + "type": "bool" + } + ] + ], + "packet_pick_item_from_block": [ + "container", + [ + { + "name": "position", + "type": "position" + }, + { + "name": "includeData", + "type": "bool" + } + ] + ], + "packet_pick_item_from_entity": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "includeData", + "type": "bool" + } + ] + ], + "packet_ping_request": [ + "container", + [ + { + "name": "id", + "type": "i64" + } + ] + ], + "packet_craft_recipe_request": [ + "container", + [ + { + "name": "windowId", + "type": "ContainerID" + }, + { + "name": "recipeId", + "type": "varint" + }, + { + "name": "makeAll", + "type": "bool" + } + ] + ], + "packet_abilities": [ + "container", + [ + { + "name": "flags", + "type": "i8" + } + ] + ], + "packet_block_dig": [ + "container", + [ + { + "name": "status", + "type": "varint" + }, + { + "name": "location", + "type": "position" + }, + { + "name": "face", + "type": "i8" + }, + { + "name": "sequence", + "type": "varint" + } + ] + ], + "packet_entity_action": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "actionId", + "type": "varint" + }, + { + "name": "jumpBoost", + "type": "varint" + } + ] + ], + "packet_player_input": [ + "container", + [ + { + "name": "inputs", + "type": [ + "bitflags", + { + "type": "u8", + "flags": [ + "forward", + "backward", + "left", + "right", + "jump", + "shift", + "sprint" + ] + } + ] + } + ] + ], + "packet_player_loaded": [ + "container", + [] + ], + "packet_pong": [ + "container", + [ + { + "name": "id", + "type": "i32" + } + ] + ], + "packet_recipe_book": [ + "container", + [ + { + "name": "bookId", + "type": "varint" + }, + { + "name": "bookOpen", + "type": "bool" + }, + { + "name": "filterActive", + "type": "bool" + } + ] + ], + "packet_displayed_recipe": [ + "container", + [ + { + "name": "recipeId", + "type": "varint" + } + ] + ], + "packet_name_item": [ + "container", + [ + { + "name": "name", + "type": "string" + } + ] + ], + "packet_resource_pack_receive": [ + "container", + [ + { + "name": "uuid", + "type": "UUID" + }, + { + "name": "result", + "type": "varint" + } + ] + ], + "packet_advancement_tab": [ + "container", + [ + { + "name": "action", + "type": "varint" + }, + { + "name": "tabId", + "type": [ + "switch", + { + "compareTo": "action", + "fields": { + "0": "string", + "1": "void" + } + } + ] + } + ] + ], + "packet_select_trade": [ + "container", + [ + { + "name": "slot", + "type": "varint" + } + ] + ], + "packet_set_beacon_effect": [ + "container", + [ + { + "name": "primary_effect", + "type": [ + "option", + "varint" + ] + }, + { + "name": "secondary_effect", + "type": [ + "option", + "varint" + ] + } + ] + ], + "packet_held_item_slot": [ + "container", + [ + { + "name": "slotId", + "type": "i16" + } + ] + ], + "packet_update_command_block": [ + "container", + [ + { + "name": "location", + "type": "position" + }, + { + "name": "command", + "type": "string" + }, + { + "name": "mode", + "type": "varint" + }, + { + "name": "flags", + "type": "u8" + } + ] + ], + "packet_update_command_block_minecart": [ + "container", + [ + { + "name": "entityId", + "type": "varint" + }, + { + "name": "command", + "type": "string" + }, + { + "name": "track_output", + "type": "bool" + } + ] + ], + "packet_set_creative_slot": [ + "container", + [ + { + "name": "slot", + "type": "i16" + }, + { + "name": "item", + "type": "Slot" + } + ] + ], + "packet_update_jigsaw_block": [ + "container", + [ + { + "name": "location", + "type": "position" + }, + { + "name": "name", + "type": "string" + }, + { + "name": "target", + "type": "string" + }, + { + "name": "pool", + "type": "string" + }, + { + "name": "finalState", + "type": "string" + }, + { + "name": "jointType", + "type": "string" + }, + { + "name": "selection_priority", + "type": "varint" + }, + { + "name": "placement_priority", + "type": "varint" + } + ] + ], + "packet_update_structure_block": [ + "container", + [ + { + "name": "location", + "type": "position" + }, + { + "name": "action", + "type": "varint" + }, + { + "name": "mode", + "type": "varint" + }, + { + "name": "name", + "type": "string" + }, + { + "name": "offset_x", + "type": "i8" + }, + { + "name": "offset_y", + "type": "i8" + }, + { + "name": "offset_z", + "type": "i8" + }, + { + "name": "size_x", + "type": "i8" + }, + { + "name": "size_y", + "type": "i8" + }, + { + "name": "size_z", + "type": "i8" + }, + { + "name": "mirror", + "type": "varint" + }, + { + "name": "rotation", + "type": "varint" + }, + { + "name": "metadata", + "type": "string" + }, + { + "name": "integrity", + "type": "f32" + }, + { + "name": "seed", + "type": "varint" + }, + { + "name": "flags", + "type": "u8" + } + ] + ], + "packet_update_sign": [ + "container", + [ + { + "name": "location", + "type": "position" + }, + { + "name": "isFrontText", + "type": "bool" + }, + { + "name": "text1", + "type": "string" + }, + { + "name": "text2", + "type": "string" + }, + { + "name": "text3", + "type": "string" + }, + { + "name": "text4", + "type": "string" + } + ] + ], + "packet_arm_animation": [ + "container", + [ + { + "name": "hand", + "type": "varint" + } + ] + ], + "packet_spectate": [ + "container", + [ + { + "name": "target", + "type": "UUID" + } + ] + ], + "packet_block_place": [ + "container", + [ + { + "name": "hand", + "type": "varint" + }, + { + "name": "location", + "type": "position" + }, + { + "name": "direction", + "type": "varint" + }, + { + "name": "cursorX", + "type": "f32" + }, + { + "name": "cursorY", + "type": "f32" + }, + { + "name": "cursorZ", + "type": "f32" + }, + { + "name": "insideBlock", + "type": "bool" + }, + { + "name": "worldBorderHit", + "type": "bool" + }, + { + "name": "sequence", + "type": "varint" + } + ] + ], + "packet_use_item": [ + "container", + [ + { + "name": "hand", + "type": "varint" + }, + { + "name": "sequence", + "type": "varint" + }, + { + "name": "rotation", + "type": "vec2f" + } + ] + ], + "packet": [ + "container", + [ + { + "name": "name", + "type": [ + "mapper", + { + "type": "varint", + "mappings": { + "0x00": "teleport_confirm", + "0x01": "query_block_nbt", + "0x02": "select_bundle_item", + "0x03": "set_difficulty", + "0x04": "message_acknowledgement", + "0x05": "chat_command", + "0x06": "chat_command_signed", + "0x07": "chat_message", + "0x08": "chat_session_update", + "0x09": "chunk_batch_received", + "0x0a": "client_command", + "0x0b": "tick_end", + "0x0c": "settings", + "0x0d": "tab_complete", + "0x0e": "configuration_acknowledged", + "0x0f": "enchant_item", + "0x10": "window_click", + "0x11": "close_window", + "0x12": "set_slot_state", + "0x13": "cookie_response", + "0x14": "custom_payload", + "0x15": "debug_sample_subscription", + "0x16": "edit_book", + "0x17": "query_entity_nbt", + "0x18": "use_entity", + "0x19": "generate_structure", + "0x1a": "keep_alive", + "0x1b": "lock_difficulty", + "0x1c": "position", + "0x1d": "position_look", + "0x1e": "look", + "0x1f": "flying", + "0x20": "vehicle_move", + "0x21": "steer_boat", + "0x22": "pick_item_from_block", + "0x23": "pick_item_from_entity", + "0x24": "ping_request", + "0x25": "craft_recipe_request", + "0x26": "abilities", + "0x27": "block_dig", + "0x28": "entity_action", + "0x29": "player_input", + "0x2a": "player_loaded", + "0x2b": "pong", + "0x2c": "recipe_book", + "0x2d": "displayed_recipe", + "0x2e": "name_item", + "0x2f": "resource_pack_receive", + "0x30": "advancement_tab", + "0x31": "select_trade", + "0x32": "set_beacon_effect", + "0x33": "held_item_slot", + "0x34": "update_command_block", + "0x35": "update_command_block_minecart", + "0x36": "set_creative_slot", + "0x37": "update_jigsaw_block", + "0x38": "update_structure_block", + "0x39": "update_sign", + "0x3a": "arm_animation", + "0x3b": "spectate", + "0x3c": "block_place", + "0x3d": "use_item" + } + } + ] + }, + { + "name": "params", + "type": [ + "switch", + { + "compareTo": "name", + "fields": { + "teleport_confirm": "packet_teleport_confirm", + "query_block_nbt": "packet_query_block_nbt", + "select_bundle_item": "packet_select_bundle_item", + "set_difficulty": "packet_set_difficulty", + "message_acknowledgement": "packet_message_acknowledgement", + "chat_command": "packet_chat_command", + "chat_command_signed": "packet_chat_command_signed", + "chat_message": "packet_chat_message", + "chat_session_update": "packet_chat_session_update", + "chunk_batch_received": "packet_chunk_batch_received", + "client_command": "packet_client_command", + "tick_end": "packet_tick_end", + "settings": "packet_settings", + "tab_complete": "packet_tab_complete", + "configuration_acknowledged": "packet_configuration_acknowledged", + "enchant_item": "packet_enchant_item", + "window_click": "packet_window_click", + "close_window": "packet_close_window", + "set_slot_state": "packet_set_slot_state", + "cookie_response": "packet_common_cookie_response", + "custom_payload": "packet_custom_payload", + "edit_book": "packet_edit_book", + "query_entity_nbt": "packet_query_entity_nbt", + "use_entity": "packet_use_entity", + "generate_structure": "packet_generate_structure", + "keep_alive": "packet_keep_alive", + "lock_difficulty": "packet_lock_difficulty", + "position": "packet_position", + "position_look": "packet_position_look", + "look": "packet_look", + "flying": "packet_flying", + "vehicle_move": "packet_vehicle_move", + "steer_boat": "packet_steer_boat", + "pick_item_from_block": "packet_pick_item_from_block", + "pick_item_from_entity": "packet_pick_item_from_entity", + "ping_request": "packet_ping_request", + "craft_recipe_request": "packet_craft_recipe_request", + "abilities": "packet_abilities", + "block_dig": "packet_block_dig", + "entity_action": "packet_entity_action", + "player_input": "packet_player_input", + "player_loaded": "packet_player_loaded", + "pong": "packet_pong", + "recipe_book": "packet_recipe_book", + "displayed_recipe": "packet_displayed_recipe", + "name_item": "packet_name_item", + "resource_pack_receive": "packet_resource_pack_receive", + "advancement_tab": "packet_advancement_tab", + "select_trade": "packet_select_trade", + "set_beacon_effect": "packet_set_beacon_effect", + "held_item_slot": "packet_held_item_slot", + "update_command_block": "packet_update_command_block", + "update_command_block_minecart": "packet_update_command_block_minecart", + "set_creative_slot": "packet_set_creative_slot", + "update_jigsaw_block": "packet_update_jigsaw_block", + "update_structure_block": "packet_update_structure_block", + "update_sign": "packet_update_sign", + "arm_animation": "packet_arm_animation", + "spectate": "packet_spectate", + "block_place": "packet_block_place", + "use_item": "packet_use_item" + } + } + ] + } + ] + ] + } + } + } +} \ No newline at end of file diff --git a/data/pc/1.21.4/recipes.json b/data/pc/1.21.4/recipes.json new file mode 100644 index 000000000..6b3e2b405 --- /dev/null +++ b/data/pc/1.21.4/recipes.json @@ -0,0 +1,29693 @@ +{ + "811": [ + { + "inShape": [ + [ + 40, + null, + 40 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 811, + "count": 1 + } + } + ], + "740": [ + { + "inShape": [ + [ + 40, + 40 + ], + [ + 40, + 40 + ], + [ + 40, + 40 + ] + ], + "result": { + "id": 740, + "count": 3 + } + } + ], + "329": [ + { + "inShape": [ + [ + 40, + 879, + 40 + ], + [ + 40, + 879, + 40 + ] + ], + "result": { + "id": 329, + "count": 3 + } + } + ], + "781": [ + { + "inShape": [ + [ + 879, + 40, + 879 + ], + [ + 879, + 40, + 879 + ] + ], + "result": { + "id": 781, + "count": 1 + } + } + ], + "933": [ + { + "inShape": [ + [ + 371, + null, + 371 + ], + [ + 152, + 152, + 152 + ], + [ + 152, + 152, + 152 + ] + ], + "result": { + "id": 933, + "count": 6 + } + } + ], + "727": [ + { + "inShape": [ + [ + 40, + 40 + ] + ], + "result": { + "id": 727, + "count": 1 + } + } + ], + "921": [ + { + "inShape": [ + [ + 40, + 40, + 40 + ], + [ + 40, + 40, + 40 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 921, + "count": 3 + } + } + ], + "268": [ + { + "inShape": [ + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 268, + "count": 6 + } + } + ], + "409": [ + { + "inShape": [ + [ + 40, + null, + null + ], + [ + 40, + 40, + null + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 409, + "count": 4 + } + } + ], + "761": [ + { + "inShape": [ + [ + 40, + 40, + 40 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 761, + "count": 2 + } + } + ], + "175": [ + { + "inShape": [ + [ + 138, + 138 + ], + [ + 138, + 138 + ] + ], + "result": { + "id": 175, + "count": 3 + } + } + ], + "792": [ + { + "inShape": [ + [ + 842, + 879, + 842 + ], + [ + 842, + 681, + 842 + ], + [ + 842, + 879, + 842 + ] + ], + "result": { + "id": 792, + "count": 6 + } + } + ], + "88": [ + { + "inShape": [ + [ + 840, + 840 + ], + [ + 840, + 840 + ] + ], + "result": { + "id": 88, + "count": 1 + } + } + ], + "671": [ + { + "inShape": [ + [ + 6, + 6, + 6 + ] + ], + "result": { + "id": 671, + "count": 6 + } + } + ], + "654": [ + { + "inShape": [ + [ + 6, + null, + null + ], + [ + 6, + 6, + null + ], + [ + 6, + 6, + 6 + ] + ], + "result": { + "id": 654, + "count": 4 + } + } + ], + "430": [ + { + "inShape": [ + [ + 6, + 6, + 6 + ], + [ + 6, + 6, + 6 + ] + ], + "result": { + "id": 430, + "count": 6 + } + } + ], + "442": [ + { + "inShape": [ + [ + 90, + 90, + 90 + ], + [ + null, + 842, + null + ], + [ + 842, + 842, + 842 + ] + ], + "result": { + "id": 442, + "count": 1 + } + } + ], + "1175": [ + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + null, + 879, + null + ], + [ + 879, + 278, + 879 + ] + ], + "result": { + "id": 1175, + "count": 1 + } + } + ], + "833": [ + { + "inShape": [ + [ + 911 + ], + [ + 879 + ], + [ + 882 + ] + ], + "result": { + "id": 833, + "count": 4 + } + } + ], + "745": [ + { + "inShape": [ + [ + 45, + 45 + ], + [ + 45, + 45 + ], + [ + 45, + 45 + ] + ], + "result": { + "id": 745, + "count": 3 + } + } + ], + "334": [ + { + "inShape": [ + [ + 45, + 879, + 45 + ], + [ + 45, + 879, + 45 + ] + ], + "result": { + "id": 334, + "count": 3 + } + } + ], + "786": [ + { + "inShape": [ + [ + 879, + 45, + 879 + ], + [ + 879, + 45, + 879 + ] + ], + "result": { + "id": 786, + "count": 1 + } + } + ], + "938": [ + { + "inShape": [ + [ + 371, + null, + 371 + ], + [ + 170, + 170, + 170 + ], + [ + 170, + 170, + 170 + ] + ], + "result": { + "id": 938, + "count": 6 + } + } + ], + "48": [ + { + "inShape": [ + [ + 273 + ], + [ + 273 + ] + ], + "result": { + "id": 48, + "count": 1 + } + } + ], + "274": [ + { + "inShape": [ + [ + 48, + 48, + 48 + ] + ], + "result": { + "id": 274, + "count": 6 + } + } + ], + "415": [ + { + "inShape": [ + [ + 48, + null, + null + ], + [ + 48, + 48, + null + ], + [ + 48, + 48, + 48 + ] + ], + "result": { + "id": 415, + "count": 4 + } + } + ], + "732": [ + { + "inShape": [ + [ + 45, + 45 + ] + ], + "result": { + "id": 732, + "count": 1 + } + } + ], + "821": [ + { + "inShape": [ + [ + 45, + null, + 45 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 821, + "count": 1 + } + } + ], + "926": [ + { + "inShape": [ + [ + 45, + 45, + 45 + ], + [ + 45, + 45, + 45 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 926, + "count": 3 + } + } + ], + "273": [ + { + "inShape": [ + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 273, + "count": 6 + } + } + ], + "414": [ + { + "inShape": [ + [ + 45, + null, + null + ], + [ + 45, + 45, + null + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 414, + "count": 4 + } + } + ], + "766": [ + { + "inShape": [ + [ + 45, + 45, + 45 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 766, + "count": 2 + } + } + ], + "1258": [ + { + "inShape": [ + [ + 43, + 271, + 43 + ], + [ + 43, + null, + 43 + ], + [ + 43, + 271, + 43 + ] + ], + "result": { + "id": 1258, + "count": 1 + } + }, + { + "inShape": [ + [ + 41, + 269, + 41 + ], + [ + 41, + null, + 41 + ], + [ + 41, + 269, + 41 + ] + ], + "result": { + "id": 1258, + "count": 1 + } + }, + { + "inShape": [ + [ + 45, + 273, + 45 + ], + [ + 45, + null, + 45 + ], + [ + 45, + 273, + 45 + ] + ], + "result": { + "id": 1258, + "count": 1 + } + }, + { + "inShape": [ + [ + 44, + 272, + 44 + ], + [ + 44, + null, + 44 + ], + [ + 44, + 272, + 44 + ] + ], + "result": { + "id": 1258, + "count": 1 + } + }, + { + "inShape": [ + [ + 47, + 276, + 47 + ], + [ + 47, + null, + 47 + ], + [ + 47, + 276, + 47 + ] + ], + "result": { + "id": 1258, + "count": 1 + } + }, + { + "inShape": [ + [ + 46, + 275, + 46 + ], + [ + 46, + null, + 46 + ], + [ + 46, + 275, + 46 + ] + ], + "result": { + "id": 1258, + "count": 1 + } + }, + { + "inShape": [ + [ + 42, + 270, + 42 + ], + [ + 42, + null, + 42 + ], + [ + 42, + 270, + 42 + ] + ], + "result": { + "id": 1258, + "count": 1 + } + }, + { + "inShape": [ + [ + 40, + 268, + 40 + ], + [ + 40, + null, + 40 + ], + [ + 40, + 268, + 40 + ] + ], + "result": { + "id": 1258, + "count": 1 + } + }, + { + "inShape": [ + [ + 39, + 267, + 39 + ], + [ + 39, + null, + 39 + ], + [ + 39, + 267, + 39 + ] + ], + "result": { + "id": 1258, + "count": 1 + } + }, + { + "inShape": [ + [ + 38, + 266, + 38 + ], + [ + 38, + null, + 38 + ], + [ + 38, + 266, + 38 + ] + ], + "result": { + "id": 1258, + "count": 1 + } + }, + { + "inShape": [ + [ + 37, + 265, + 37 + ], + [ + 37, + null, + 37 + ], + [ + 37, + 265, + 37 + ] + ], + "result": { + "id": 1258, + "count": 1 + } + }, + { + "inShape": [ + [ + 36, + 264, + 36 + ], + [ + 36, + null, + 36 + ], + [ + 36, + 264, + 36 + ] + ], + "result": { + "id": 1258, + "count": 1 + } + } + ], + "419": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 1161, + 195 + ], + [ + 303, + 303, + 303 + ] + ], + "result": { + "id": 419, + "count": 1 + } + } + ], + "1276": [ + { + "inShape": [ + [ + 43, + 43, + 43 + ], + [ + 1274, + 1274, + 1274 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1276, + "count": 1 + } + }, + { + "inShape": [ + [ + 41, + 41, + 41 + ], + [ + 1274, + 1274, + 1274 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1276, + "count": 1 + } + }, + { + "inShape": [ + [ + 45, + 45, + 45 + ], + [ + 1274, + 1274, + 1274 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1276, + "count": 1 + } + }, + { + "inShape": [ + [ + 44, + 44, + 44 + ], + [ + 1274, + 1274, + 1274 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1276, + "count": 1 + } + }, + { + "inShape": [ + [ + 47, + 47, + 47 + ], + [ + 1274, + 1274, + 1274 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1276, + "count": 1 + } + }, + { + "inShape": [ + [ + 46, + 46, + 46 + ], + [ + 1274, + 1274, + 1274 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1276, + "count": 1 + } + }, + { + "inShape": [ + [ + 42, + 42, + 42 + ], + [ + 1274, + 1274, + 1274 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1276, + "count": 1 + } + }, + { + "inShape": [ + [ + 40, + 40, + 40 + ], + [ + 1274, + 1274, + 1274 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1276, + "count": 1 + } + }, + { + "inShape": [ + [ + 39, + 39, + 39 + ], + [ + 1274, + 1274, + 1274 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1276, + "count": 1 + } + }, + { + "inShape": [ + [ + 38, + 38, + 38 + ], + [ + 1274, + 1274, + 1274 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1276, + "count": 1 + } + }, + { + "inShape": [ + [ + 37, + 37, + 37 + ], + [ + 1274, + 1274, + 1274 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1276, + "count": 1 + } + }, + { + "inShape": [ + [ + 36, + 36, + 36 + ], + [ + 1274, + 1274, + 1274 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1276, + "count": 1 + } + } + ], + "807": [ + { + "inShape": [ + [ + 38, + null, + 38 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 807, + "count": 1 + } + } + ], + "738": [ + { + "inShape": [ + [ + 38, + 38 + ], + [ + 38, + 38 + ], + [ + 38, + 38 + ] + ], + "result": { + "id": 738, + "count": 3 + } + } + ], + "327": [ + { + "inShape": [ + [ + 38, + 879, + 38 + ], + [ + 38, + 879, + 38 + ] + ], + "result": { + "id": 327, + "count": 3 + } + } + ], + "779": [ + { + "inShape": [ + [ + 879, + 38, + 879 + ], + [ + 879, + 38, + 879 + ] + ], + "result": { + "id": 779, + "count": 1 + } + } + ], + "931": [ + { + "inShape": [ + [ + 371, + null, + 371 + ], + [ + 150, + 150, + 150 + ], + [ + 150, + 150, + 150 + ] + ], + "result": { + "id": 931, + "count": 6 + } + } + ], + "725": [ + { + "inShape": [ + [ + 38, + 38 + ] + ], + "result": { + "id": 725, + "count": 1 + } + } + ], + "919": [ + { + "inShape": [ + [ + 38, + 38, + 38 + ], + [ + 38, + 38, + 38 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 919, + "count": 3 + } + } + ], + "266": [ + { + "inShape": [ + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 266, + "count": 6 + } + } + ], + "407": [ + { + "inShape": [ + [ + 38, + null, + null + ], + [ + 38, + 38, + null + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 407, + "count": 4 + } + } + ], + "759": [ + { + "inShape": [ + [ + 38, + 38, + 38 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 759, + "count": 2 + } + } + ], + "173": [ + { + "inShape": [ + [ + 136, + 136 + ], + [ + 136, + 136 + ] + ], + "result": { + "id": 173, + "count": 3 + } + } + ], + "1200": [ + { + "inShape": [ + [ + 224, + 224, + 224 + ], + [ + 224, + 224, + 224 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1200, + "count": 1 + } + } + ], + "1028": [ + { + "inShape": [ + [ + 224, + 224, + 224 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1028, + "count": 1 + } + }, + { + "inShape": [ + [ + 224, + 224, + 224 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1028, + "count": 1 + } + }, + { + "inShape": [ + [ + 224, + 224, + 224 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1028, + "count": 1 + } + }, + { + "inShape": [ + [ + 224, + 224, + 224 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1028, + "count": 1 + } + }, + { + "inShape": [ + [ + 224, + 224, + 224 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1028, + "count": 1 + } + }, + { + "inShape": [ + [ + 224, + 224, + 224 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1028, + "count": 1 + } + }, + { + "inShape": [ + [ + 224, + 224, + 224 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1028, + "count": 1 + } + }, + { + "inShape": [ + [ + 224, + 224, + 224 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1028, + "count": 1 + } + }, + { + "inShape": [ + [ + 224, + 224, + 224 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1028, + "count": 1 + } + }, + { + "inShape": [ + [ + 224, + 224, + 224 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1028, + "count": 1 + } + }, + { + "inShape": [ + [ + 224, + 224, + 224 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1028, + "count": 1 + } + }, + { + "inShape": [ + [ + 224, + 224, + 224 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1028, + "count": 1 + } + }, + { + "ingredients": [ + 1008, + 1024 + ], + "result": { + "id": 1028, + "count": 1 + } + } + ], + "484": [ + { + "inShape": [ + [ + 224, + 224 + ] + ], + "result": { + "id": 484, + "count": 3 + } + }, + { + "ingredients": [ + 1008, + 480 + ], + "result": { + "id": 484, + "count": 1 + } + } + ], + "509": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 1008, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 509, + "count": 8 + } + } + ], + "525": [ + { + "inShape": [ + [ + 509, + 509, + 509 + ], + [ + 509, + 509, + 509 + ] + ], + "result": { + "id": 525, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 1008, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 525, + "count": 8 + } + } + ], + "465": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 1008, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 465, + "count": 8 + } + } + ], + "1282": [ + { + "inShape": [ + [ + 1281, + 1281, + 1281 + ] + ], + "result": { + "id": 1282, + "count": 6 + } + } + ], + "1283": [ + { + "inShape": [ + [ + 1281, + null, + null + ], + [ + 1281, + 1281, + null + ], + [ + 1281, + 1281, + 1281 + ] + ], + "result": { + "id": 1283, + "count": 4 + } + } + ], + "435": [ + { + "inShape": [ + [ + 1281, + 1281, + 1281 + ], + [ + 1281, + 1281, + 1281 + ] + ], + "result": { + "id": 435, + "count": 6 + } + } + ], + "1260": [ + { + "inShape": [ + [ + 842, + 842, + 842 + ], + [ + 842, + 316, + 842 + ], + [ + 297, + 297, + 297 + ] + ], + "result": { + "id": 1260, + "count": 1 + } + } + ], + "1196": [ + { + "inShape": [ + [ + 220, + 220, + 220 + ], + [ + 220, + 220, + 220 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1196, + "count": 1 + } + } + ], + "1024": [ + { + "inShape": [ + [ + 220, + 220, + 220 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1024, + "count": 1 + } + }, + { + "inShape": [ + [ + 220, + 220, + 220 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1024, + "count": 1 + } + }, + { + "inShape": [ + [ + 220, + 220, + 220 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1024, + "count": 1 + } + }, + { + "inShape": [ + [ + 220, + 220, + 220 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1024, + "count": 1 + } + }, + { + "inShape": [ + [ + 220, + 220, + 220 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1024, + "count": 1 + } + }, + { + "inShape": [ + [ + 220, + 220, + 220 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1024, + "count": 1 + } + }, + { + "inShape": [ + [ + 220, + 220, + 220 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1024, + "count": 1 + } + }, + { + "inShape": [ + [ + 220, + 220, + 220 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1024, + "count": 1 + } + }, + { + "inShape": [ + [ + 220, + 220, + 220 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1024, + "count": 1 + } + }, + { + "inShape": [ + [ + 220, + 220, + 220 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1024, + "count": 1 + } + }, + { + "inShape": [ + [ + 220, + 220, + 220 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1024, + "count": 1 + } + }, + { + "inShape": [ + [ + 220, + 220, + 220 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1024, + "count": 1 + } + }, + { + "ingredients": [ + 1004, + 1028 + ], + "result": { + "id": 1024, + "count": 1 + } + } + ], + "480": [ + { + "inShape": [ + [ + 220, + 220 + ] + ], + "result": { + "id": 480, + "count": 3 + } + }, + { + "ingredients": [ + 1004, + 484 + ], + "result": { + "id": 480, + "count": 1 + } + } + ], + "505": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 1004, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 505, + "count": 8 + } + } + ], + "521": [ + { + "inShape": [ + [ + 505, + 505, + 505 + ], + [ + 505, + 505, + 505 + ] + ], + "result": { + "id": 521, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 1004, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 521, + "count": 8 + } + } + ], + "461": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 1004, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 461, + "count": 8 + } + } + ], + "1340": [ + { + "inShape": [ + [ + 836, + 1340, + 836 + ], + [ + 836, + 114, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1340, + "count": 2 + } + }, + { + "inShape": [ + [ + 836, + 1340, + 836 + ], + [ + 836, + 91, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1340, + "count": 2 + } + } + ], + "543": [ + { + "inShape": [ + [ + 1009, + 1009, + 1009 + ], + [ + 1009, + 1009, + 1009 + ], + [ + 1009, + 1009, + 1009 + ] + ], + "result": { + "id": 543, + "count": 1 + } + } + ], + "299": [ + { + "inShape": [ + [ + 43, + 43, + 43 + ], + [ + 958, + 958, + 958 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 299, + "count": 1 + } + }, + { + "inShape": [ + [ + 41, + 41, + 41 + ], + [ + 958, + 958, + 958 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 299, + "count": 1 + } + }, + { + "inShape": [ + [ + 45, + 45, + 45 + ], + [ + 958, + 958, + 958 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 299, + "count": 1 + } + }, + { + "inShape": [ + [ + 44, + 44, + 44 + ], + [ + 958, + 958, + 958 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 299, + "count": 1 + } + }, + { + "inShape": [ + [ + 47, + 47, + 47 + ], + [ + 958, + 958, + 958 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 299, + "count": 1 + } + }, + { + "inShape": [ + [ + 46, + 46, + 46 + ], + [ + 958, + 958, + 958 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 299, + "count": 1 + } + }, + { + "inShape": [ + [ + 42, + 42, + 42 + ], + [ + 958, + 958, + 958 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 299, + "count": 1 + } + }, + { + "inShape": [ + [ + 40, + 40, + 40 + ], + [ + 958, + 958, + 958 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 299, + "count": 1 + } + }, + { + "inShape": [ + [ + 39, + 39, + 39 + ], + [ + 958, + 958, + 958 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 299, + "count": 1 + } + }, + { + "inShape": [ + [ + 38, + 38, + 38 + ], + [ + 958, + 958, + 958 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 299, + "count": 1 + } + }, + { + "inShape": [ + [ + 37, + 37, + 37 + ], + [ + 958, + 958, + 958 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 299, + "count": 1 + } + }, + { + "inShape": [ + [ + 36, + 36, + 36 + ], + [ + 958, + 958, + 958 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 299, + "count": 1 + } + } + ], + "832": [ + { + "inShape": [ + [ + null, + 879, + 881 + ], + [ + 879, + null, + 881 + ], + [ + null, + 879, + 881 + ] + ], + "result": { + "id": 832, + "count": 1 + } + } + ], + "830": [ + { + "inShape": [ + [ + 43, + null, + 43 + ], + [ + null, + 43, + null + ] + ], + "result": { + "id": 830, + "count": 4 + } + }, + { + "inShape": [ + [ + 41, + null, + 41 + ], + [ + null, + 41, + null + ] + ], + "result": { + "id": 830, + "count": 4 + } + }, + { + "inShape": [ + [ + 45, + null, + 45 + ], + [ + null, + 45, + null + ] + ], + "result": { + "id": 830, + "count": 4 + } + }, + { + "inShape": [ + [ + 44, + null, + 44 + ], + [ + null, + 44, + null + ] + ], + "result": { + "id": 830, + "count": 4 + } + }, + { + "inShape": [ + [ + 47, + null, + 47 + ], + [ + null, + 47, + null + ] + ], + "result": { + "id": 830, + "count": 4 + } + }, + { + "inShape": [ + [ + 46, + null, + 46 + ], + [ + null, + 46, + null + ] + ], + "result": { + "id": 830, + "count": 4 + } + }, + { + "inShape": [ + [ + 42, + null, + 42 + ], + [ + null, + 42, + null + ] + ], + "result": { + "id": 830, + "count": 4 + } + }, + { + "inShape": [ + [ + 40, + null, + 40 + ], + [ + null, + 40, + null + ] + ], + "result": { + "id": 830, + "count": 4 + } + }, + { + "inShape": [ + [ + 39, + null, + 39 + ], + [ + null, + 39, + null + ] + ], + "result": { + "id": 830, + "count": 4 + } + }, + { + "inShape": [ + [ + 38, + null, + 38 + ], + [ + null, + 38, + null + ] + ], + "result": { + "id": 830, + "count": 4 + } + }, + { + "inShape": [ + [ + 37, + null, + 37 + ], + [ + null, + 37, + null + ] + ], + "result": { + "id": 830, + "count": 4 + } + }, + { + "inShape": [ + [ + 36, + null, + 36 + ], + [ + null, + 36, + null + ] + ], + "result": { + "id": 830, + "count": 4 + } + } + ], + "886": [ + { + "inShape": [ + [ + 885, + 885, + 885 + ] + ], + "result": { + "id": 886, + "count": 1 + } + } + ], + "1053": [ + { + "inShape": [ + [ + null, + 1043, + null + ], + [ + 9, + 9, + 9 + ] + ], + "result": { + "id": 1053, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 1043, + null + ], + [ + 1281, + 1281, + 1281 + ] + ], + "result": { + "id": 1053, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 1043, + null + ], + [ + 35, + 35, + 35 + ] + ], + "result": { + "id": 1053, + "count": 1 + } + } + ], + "283": [ + { + "inShape": [ + [ + 298, + 298, + 298 + ] + ], + "result": { + "id": 283, + "count": 6 + } + } + ], + "383": [ + { + "inShape": [ + [ + 298, + null, + null + ], + [ + 298, + 298, + null + ], + [ + 298, + 298, + 298 + ] + ], + "result": { + "id": 383, + "count": 4 + } + } + ], + "422": [ + { + "inShape": [ + [ + 298, + 298, + 298 + ], + [ + 298, + 298, + 298 + ] + ], + "result": { + "id": 422, + "count": 6 + } + } + ], + "298": [ + { + "inShape": [ + [ + 954, + 954 + ], + [ + 954, + 954 + ] + ], + "result": { + "id": 298, + "count": 1 + } + } + ], + "1197": [ + { + "inShape": [ + [ + 221, + 221, + 221 + ], + [ + 221, + 221, + 221 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1197, + "count": 1 + } + } + ], + "1025": [ + { + "inShape": [ + [ + 221, + 221, + 221 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1025, + "count": 1 + } + }, + { + "inShape": [ + [ + 221, + 221, + 221 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1025, + "count": 1 + } + }, + { + "inShape": [ + [ + 221, + 221, + 221 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1025, + "count": 1 + } + }, + { + "inShape": [ + [ + 221, + 221, + 221 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1025, + "count": 1 + } + }, + { + "inShape": [ + [ + 221, + 221, + 221 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1025, + "count": 1 + } + }, + { + "inShape": [ + [ + 221, + 221, + 221 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1025, + "count": 1 + } + }, + { + "inShape": [ + [ + 221, + 221, + 221 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1025, + "count": 1 + } + }, + { + "inShape": [ + [ + 221, + 221, + 221 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1025, + "count": 1 + } + }, + { + "inShape": [ + [ + 221, + 221, + 221 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1025, + "count": 1 + } + }, + { + "inShape": [ + [ + 221, + 221, + 221 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1025, + "count": 1 + } + }, + { + "inShape": [ + [ + 221, + 221, + 221 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1025, + "count": 1 + } + }, + { + "inShape": [ + [ + 221, + 221, + 221 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1025, + "count": 1 + } + }, + { + "ingredients": [ + 1005, + 1028 + ], + "result": { + "id": 1025, + "count": 1 + } + } + ], + "481": [ + { + "inShape": [ + [ + 221, + 221 + ] + ], + "result": { + "id": 481, + "count": 3 + } + }, + { + "ingredients": [ + 1005, + 484 + ], + "result": { + "id": 481, + "count": 1 + } + } + ], + "506": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 1005, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 506, + "count": 8 + } + } + ], + "522": [ + { + "inShape": [ + [ + 506, + 506, + 506 + ], + [ + 506, + 506, + 506 + ] + ], + "result": { + "id": 522, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 1005, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 522, + "count": 8 + } + } + ], + "462": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 1005, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 462, + "count": 8 + } + } + ], + "1321": [ + { + "inShape": [ + [ + 882 + ], + [ + 844 + ], + [ + 879 + ] + ], + "result": { + "id": 1321, + "count": 1 + } + } + ], + "941": [ + { + "inShape": [ + [ + 842, + null, + 842 + ], + [ + null, + 842, + null + ] + ], + "result": { + "id": 941, + "count": 1 + } + } + ], + "963": [ + { + "inShape": [ + [ + 881 + ], + [ + 946 + ] + ], + "result": { + "id": 963, + "count": 1 + } + } + ], + "1012": [ + { + "inShape": [ + [ + 947, + 947, + 947 + ], + [ + 1011, + 960, + 1011 + ], + [ + 885, + 885, + 885 + ] + ], + "result": { + "id": 1012, + "count": 1 + } + } + ], + "699": [ + { + "inShape": [ + [ + null, + 840, + null + ], + [ + 840, + 698, + 840 + ] + ], + "result": { + "id": 699, + "count": 1 + } + } + ], + "1271": [ + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 169, + 169, + 169 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 181, + 181, + 181 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 158, + 158, + 158 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 146, + 146, + 146 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 168, + 168, + 168 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 180, + 180, + 180 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 157, + 157, + 157 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 145, + 145, + 145 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 166, + 166, + 166 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 155, + 155, + 155 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 177, + 177, + 177 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 140, + 140, + 140 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 164, + 164, + 164 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 153, + 153, + 153 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 176, + 176, + 176 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 139, + 139, + 139 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 167, + 167, + 167 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 156, + 156, + 156 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 179, + 179, + 179 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 142, + 142, + 142 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 160, + 160, + 160 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 149, + 149, + 149 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 172, + 172, + 172 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 135, + 135, + 135 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 162, + 162, + 162 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 151, + 151, + 151 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 174, + 174, + 174 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 137, + 137, + 137 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 161, + 161, + 161 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 150, + 150, + 150 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 173, + 173, + 173 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 136, + 136, + 136 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 163, + 163, + 163 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 152, + 152, + 152 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 175, + 175, + 175 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 138, + 138, + 138 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 159, + 159, + 159 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 148, + 148, + 148 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 171, + 171, + 171 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 134, + 134, + 134 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 165, + 165, + 165 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 154, + 154, + 154 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 835, + 879 + ], + [ + 178, + 178, + 178 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 834, + 879 + ], + [ + 141, + 141, + 141 + ] + ], + "result": { + "id": 1271, + "count": 1 + } + } + ], + "1294": [ + { + "inShape": [ + [ + 881 + ], + [ + 1274 + ] + ], + "result": { + "id": 1294, + "count": 1 + } + } + ], + "799": [ + { + "inShape": [ + [ + 980, + null + ], + [ + null, + 1148 + ] + ], + "result": { + "id": 799, + "count": 1 + } + } + ], + "1261": [ + { + "inShape": [ + [ + 957, + 957 + ], + [ + 43, + 43 + ], + [ + 43, + 43 + ] + ], + "result": { + "id": 1261, + "count": 1 + } + }, + { + "inShape": [ + [ + 957, + 957 + ], + [ + 41, + 41 + ], + [ + 41, + 41 + ] + ], + "result": { + "id": 1261, + "count": 1 + } + }, + { + "inShape": [ + [ + 957, + 957 + ], + [ + 45, + 45 + ], + [ + 45, + 45 + ] + ], + "result": { + "id": 1261, + "count": 1 + } + }, + { + "inShape": [ + [ + 957, + 957 + ], + [ + 44, + 44 + ], + [ + 44, + 44 + ] + ], + "result": { + "id": 1261, + "count": 1 + } + }, + { + "inShape": [ + [ + 957, + 957 + ], + [ + 47, + 47 + ], + [ + 47, + 47 + ] + ], + "result": { + "id": 1261, + "count": 1 + } + }, + { + "inShape": [ + [ + 957, + 957 + ], + [ + 46, + 46 + ], + [ + 46, + 46 + ] + ], + "result": { + "id": 1261, + "count": 1 + } + }, + { + "inShape": [ + [ + 957, + 957 + ], + [ + 42, + 42 + ], + [ + 42, + 42 + ] + ], + "result": { + "id": 1261, + "count": 1 + } + }, + { + "inShape": [ + [ + 957, + 957 + ], + [ + 40, + 40 + ], + [ + 40, + 40 + ] + ], + "result": { + "id": 1261, + "count": 1 + } + }, + { + "inShape": [ + [ + 957, + 957 + ], + [ + 39, + 39 + ], + [ + 39, + 39 + ] + ], + "result": { + "id": 1261, + "count": 1 + } + }, + { + "inShape": [ + [ + 957, + 957 + ], + [ + 38, + 38 + ], + [ + 38, + 38 + ] + ], + "result": { + "id": 1261, + "count": 1 + } + }, + { + "inShape": [ + [ + 957, + 957 + ], + [ + 37, + 37 + ], + [ + 37, + 37 + ] + ], + "result": { + "id": 1261, + "count": 1 + } + }, + { + "inShape": [ + [ + 957, + 957 + ], + [ + 36, + 36 + ], + [ + 36, + 36 + ] + ], + "result": { + "id": 1261, + "count": 1 + } + } + ], + "1054": [ + { + "inShape": [ + [ + 842, + null, + 842 + ], + [ + 842, + null, + 842 + ], + [ + 842, + 842, + 842 + ] + ], + "result": { + "id": 1054, + "count": 1 + } + } + ], + "371": [ + { + "inShape": [ + [ + 1217 + ], + [ + 842 + ], + [ + 1217 + ] + ], + "result": { + "id": 371, + "count": 1 + } + } + ], + "813": [ + { + "inShape": [ + [ + 41, + null, + 41 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 813, + "count": 1 + } + } + ], + "741": [ + { + "inShape": [ + [ + 41, + 41 + ], + [ + 41, + 41 + ], + [ + 41, + 41 + ] + ], + "result": { + "id": 741, + "count": 3 + } + } + ], + "330": [ + { + "inShape": [ + [ + 41, + 879, + 41 + ], + [ + 41, + 879, + 41 + ] + ], + "result": { + "id": 330, + "count": 3 + } + } + ], + "782": [ + { + "inShape": [ + [ + 879, + 41, + 879 + ], + [ + 879, + 41, + 879 + ] + ], + "result": { + "id": 782, + "count": 1 + } + } + ], + "934": [ + { + "inShape": [ + [ + 371, + null, + 371 + ], + [ + 153, + 153, + 153 + ], + [ + 153, + 153, + 153 + ] + ], + "result": { + "id": 934, + "count": 6 + } + } + ], + "728": [ + { + "inShape": [ + [ + 41, + 41 + ] + ], + "result": { + "id": 728, + "count": 1 + } + } + ], + "922": [ + { + "inShape": [ + [ + 41, + 41, + 41 + ], + [ + 41, + 41, + 41 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 922, + "count": 3 + } + } + ], + "269": [ + { + "inShape": [ + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 269, + "count": 6 + } + } + ], + "410": [ + { + "inShape": [ + [ + 41, + null, + null + ], + [ + 41, + 41, + null + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 410, + "count": 4 + } + } + ], + "762": [ + { + "inShape": [ + [ + 41, + 41, + 41 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 762, + "count": 2 + } + } + ], + "176": [ + { + "inShape": [ + [ + 139, + 139 + ], + [ + 139, + 139 + ] + ], + "result": { + "id": 176, + "count": 3 + } + } + ], + "313": [ + { + "inShape": [ + [ + 43, + 43, + 43 + ], + [ + 43, + null, + 43 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 313, + "count": 1 + } + }, + { + "inShape": [ + [ + 41, + 41, + 41 + ], + [ + 41, + null, + 41 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 313, + "count": 1 + } + }, + { + "inShape": [ + [ + 45, + 45, + 45 + ], + [ + 45, + null, + 45 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 313, + "count": 1 + } + }, + { + "inShape": [ + [ + 44, + 44, + 44 + ], + [ + 44, + null, + 44 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 313, + "count": 1 + } + }, + { + "inShape": [ + [ + 47, + 47, + 47 + ], + [ + 47, + null, + 47 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 313, + "count": 1 + } + }, + { + "inShape": [ + [ + 46, + 46, + 46 + ], + [ + 46, + null, + 46 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 313, + "count": 1 + } + }, + { + "inShape": [ + [ + 42, + 42, + 42 + ], + [ + 42, + null, + 42 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 313, + "count": 1 + } + }, + { + "inShape": [ + [ + 40, + 40, + 40 + ], + [ + 40, + null, + 40 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 313, + "count": 1 + } + }, + { + "inShape": [ + [ + 39, + 39, + 39 + ], + [ + 39, + null, + 39 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 313, + "count": 1 + } + }, + { + "inShape": [ + [ + 38, + 38, + 38 + ], + [ + 38, + null, + 38 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 313, + "count": 1 + } + }, + { + "inShape": [ + [ + 37, + 37, + 37 + ], + [ + 37, + null, + 37 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 313, + "count": 1 + } + }, + { + "inShape": [ + [ + 36, + 36, + 36 + ], + [ + 36, + null, + 36 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 313, + "count": 1 + } + } + ], + "300": [ + { + "inShape": [ + [ + 43, + 43, + 43 + ], + [ + 271, + 271, + 271 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 300, + "count": 1 + } + }, + { + "inShape": [ + [ + 41, + 41, + 41 + ], + [ + 269, + 269, + 269 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 300, + "count": 1 + } + }, + { + "inShape": [ + [ + 45, + 45, + 45 + ], + [ + 273, + 273, + 273 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 300, + "count": 1 + } + }, + { + "inShape": [ + [ + 44, + 44, + 44 + ], + [ + 272, + 272, + 272 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 300, + "count": 1 + } + }, + { + "inShape": [ + [ + 47, + 47, + 47 + ], + [ + 276, + 276, + 276 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 300, + "count": 1 + } + }, + { + "inShape": [ + [ + 46, + 46, + 46 + ], + [ + 275, + 275, + 275 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 300, + "count": 1 + } + }, + { + "inShape": [ + [ + 42, + 42, + 42 + ], + [ + 270, + 270, + 270 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 300, + "count": 1 + } + }, + { + "inShape": [ + [ + 40, + 40, + 40 + ], + [ + 268, + 268, + 268 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 300, + "count": 1 + } + }, + { + "inShape": [ + [ + 39, + 39, + 39 + ], + [ + 267, + 267, + 267 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 300, + "count": 1 + } + }, + { + "inShape": [ + [ + 38, + 38, + 38 + ], + [ + 266, + 266, + 266 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 300, + "count": 1 + } + }, + { + "inShape": [ + [ + 37, + 37, + 37 + ], + [ + 265, + 265, + 265 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 300, + "count": 1 + } + }, + { + "inShape": [ + [ + 36, + 36, + 36 + ], + [ + 264, + 264, + 264 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 300, + "count": 1 + } + } + ], + "98": [ + { + "inShape": [ + [ + 110 + ], + [ + 110 + ] + ], + "result": { + "id": 98, + "count": 1 + } + } + ], + "365": [ + { + "inShape": [ + [ + 675 + ], + [ + 675 + ] + ], + "result": { + "id": 365, + "count": 1 + } + } + ], + "390": [ + { + "inShape": [ + [ + 286 + ], + [ + 286 + ] + ], + "result": { + "id": 390, + "count": 1 + } + } + ], + "1288": [ + { + "inShape": [ + [ + 1286 + ], + [ + 1286 + ] + ], + "result": { + "id": 1288, + "count": 1 + } + } + ], + "445": [ + { + "inShape": [ + [ + 287 + ], + [ + 287 + ] + ], + "result": { + "id": 445, + "count": 1 + } + } + ], + "534": [ + { + "inShape": [ + [ + 288 + ], + [ + 288 + ] + ], + "result": { + "id": 534, + "count": 1 + } + } + ], + "199": [ + { + "inShape": [ + [ + 279 + ], + [ + 279 + ] + ], + "result": { + "id": 199, + "count": 1 + } + } + ], + "358": [ + { + "inShape": [ + [ + 284 + ], + [ + 284 + ] + ], + "result": { + "id": 358, + "count": 1 + } + } + ], + "16": [ + { + "inShape": [ + [ + 13 + ], + [ + 13 + ] + ], + "result": { + "id": 16, + "count": 1 + } + } + ], + "25": [ + { + "inShape": [ + [ + 22 + ], + [ + 22 + ] + ], + "result": { + "id": 25, + "count": 1 + } + } + ], + "323": [ + { + "inShape": [ + [ + 955, + 955 + ], + [ + 955, + 955 + ] + ], + "result": { + "id": 323, + "count": 1 + } + } + ], + "981": [ + { + "inShape": [ + [ + null, + 846, + null + ], + [ + 846, + 680, + 846 + ], + [ + null, + 846, + null + ] + ], + "result": { + "id": 981, + "count": 1 + } + } + ], + "83": [ + { + "inShape": [ + [ + 834, + 834, + 834 + ], + [ + 834, + 834, + 834 + ], + [ + 834, + 834, + 834 + ] + ], + "result": { + "id": 83, + "count": 1 + } + } + ], + "29": [ + { + "inShape": [ + [ + 28, + 63 + ], + [ + 63, + 28 + ] + ], + "result": { + "id": 29, + "count": 4 + } + } + ], + "1325": [ + { + "inShape": [ + [ + 836, + 1325, + 836 + ], + [ + 836, + 35, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1325, + "count": 2 + } + } + ], + "675": [ + { + "inShape": [ + [ + 9, + 9, + 9 + ] + ], + "result": { + "id": 675, + "count": 6 + } + } + ], + "658": [ + { + "inShape": [ + [ + 9, + null, + null + ], + [ + 9, + 9, + null + ], + [ + 9, + 9, + 9 + ] + ], + "result": { + "id": 658, + "count": 4 + } + } + ], + "438": [ + { + "inShape": [ + [ + 9, + 9, + 9 + ], + [ + 9, + 9, + 9 + ] + ], + "result": { + "id": 438, + "count": 6 + } + } + ], + "282": [ + { + "inShape": [ + [ + 35, + 35, + 35 + ] + ], + "result": { + "id": 282, + "count": 6 + } + } + ], + "318": [ + { + "inShape": [ + [ + 35, + null, + null + ], + [ + 35, + 35, + null + ], + [ + 35, + 35, + 35 + ] + ], + "result": { + "id": 318, + "count": 4 + } + } + ], + "420": [ + { + "inShape": [ + [ + 35, + 35, + 35 + ], + [ + 35, + 35, + 35 + ] + ], + "result": { + "id": 420, + "count": 6 + } + } + ], + "684": [ + { + "inShape": [ + [ + null, + 681, + null + ], + [ + 681, + 839, + 681 + ], + [ + 1, + 1, + 1 + ] + ], + "result": { + "id": 684, + "count": 1 + } + } + ], + "961": [ + { + "inShape": [ + [ + null, + 842, + null + ], + [ + 842, + 680, + 842 + ], + [ + null, + 842, + null + ] + ], + "result": { + "id": 961, + "count": 1 + } + } + ], + "1257": [ + { + "inShape": [ + [ + 271, + null, + 271 + ], + [ + 271, + null, + 271 + ], + [ + 271, + 271, + 271 + ] + ], + "result": { + "id": 1257, + "count": 1 + } + }, + { + "inShape": [ + [ + 269, + null, + 269 + ], + [ + 269, + null, + 269 + ], + [ + 269, + 269, + 269 + ] + ], + "result": { + "id": 1257, + "count": 1 + } + }, + { + "inShape": [ + [ + 273, + null, + 273 + ], + [ + 273, + null, + 273 + ], + [ + 273, + 273, + 273 + ] + ], + "result": { + "id": 1257, + "count": 1 + } + }, + { + "inShape": [ + [ + 272, + null, + 272 + ], + [ + 272, + null, + 272 + ], + [ + 272, + 272, + 272 + ] + ], + "result": { + "id": 1257, + "count": 1 + } + }, + { + "inShape": [ + [ + 276, + null, + 276 + ], + [ + 276, + null, + 276 + ], + [ + 276, + 276, + 276 + ] + ], + "result": { + "id": 1257, + "count": 1 + } + }, + { + "inShape": [ + [ + 275, + null, + 275 + ], + [ + 275, + null, + 275 + ], + [ + 275, + 275, + 275 + ] + ], + "result": { + "id": 1257, + "count": 1 + } + }, + { + "inShape": [ + [ + 270, + null, + 270 + ], + [ + 270, + null, + 270 + ], + [ + 270, + 270, + 270 + ] + ], + "result": { + "id": 1257, + "count": 1 + } + }, + { + "inShape": [ + [ + 268, + null, + 268 + ], + [ + 268, + null, + 268 + ], + [ + 268, + 268, + 268 + ] + ], + "result": { + "id": 1257, + "count": 1 + } + }, + { + "inShape": [ + [ + 267, + null, + 267 + ], + [ + 267, + null, + 267 + ], + [ + 267, + 267, + 267 + ] + ], + "result": { + "id": 1257, + "count": 1 + } + }, + { + "inShape": [ + [ + 266, + null, + 266 + ], + [ + 266, + null, + 266 + ], + [ + 266, + 266, + 266 + ] + ], + "result": { + "id": 1257, + "count": 1 + } + }, + { + "inShape": [ + [ + 265, + null, + 265 + ], + [ + 265, + null, + 265 + ], + [ + 265, + 265, + 265 + ] + ], + "result": { + "id": 1257, + "count": 1 + } + }, + { + "inShape": [ + [ + 264, + null, + 264 + ], + [ + 264, + null, + 264 + ], + [ + 264, + 264, + 264 + ] + ], + "result": { + "id": 1257, + "count": 1 + } + } + ], + "643": [ + { + "inShape": [ + [ + 1241, + 1241, + 1241 + ], + [ + 1241, + 1242, + 1241 + ], + [ + 1241, + 1241, + 1241 + ] + ], + "result": { + "id": 643, + "count": 1 + } + } + ], + "1029": [ + { + "inShape": [ + [ + 885, + 992, + 885 + ] + ], + "result": { + "id": 1029, + "count": 8 + } + } + ], + "91": [ + { + "inShape": [ + [ + 844, + 844, + 844 + ], + [ + 844, + 844, + 844 + ], + [ + 844, + 844, + 844 + ] + ], + "result": { + "id": 91, + "count": 1 + } + } + ], + "1372": [ + { + "inShape": [ + [ + null, + 91, + null + ], + [ + 91, + 1043, + 91 + ], + [ + null, + 680, + null + ] + ], + "result": { + "id": 1372, + "count": 4 + } + } + ], + "748": [ + { + "inShape": [ + [ + 844, + 844 + ], + [ + 844, + 844 + ], + [ + 844, + 844 + ] + ], + "result": { + "id": 748, + "count": 3 + } + } + ], + "1364": [ + { + "inShape": [ + [ + null, + 91, + null + ], + [ + 91, + null, + 91 + ], + [ + null, + 91, + null + ] + ], + "result": { + "id": 1364, + "count": 4 + } + } + ], + "769": [ + { + "inShape": [ + [ + 844, + 844, + 844 + ], + [ + 844, + 844, + 844 + ] + ], + "result": { + "id": 769, + "count": 2 + } + } + ], + "1030": [ + { + "inShape": [ + [ + 842, + 842, + 842 + ], + [ + 842, + 314, + 842 + ], + [ + 680, + 692, + 680 + ] + ], + "result": { + "id": 1030, + "count": 1 + } + } + ], + "314": [ + { + "inShape": [ + [ + 43, + 43 + ], + [ + 43, + 43 + ] + ], + "result": { + "id": 314, + "count": 1 + } + }, + { + "inShape": [ + [ + 41, + 41 + ], + [ + 41, + 41 + ] + ], + "result": { + "id": 314, + "count": 1 + } + }, + { + "inShape": [ + [ + 45, + 45 + ], + [ + 45, + 45 + ] + ], + "result": { + "id": 314, + "count": 1 + } + }, + { + "inShape": [ + [ + 44, + 44 + ], + [ + 44, + 44 + ] + ], + "result": { + "id": 314, + "count": 1 + } + }, + { + "inShape": [ + [ + 47, + 47 + ], + [ + 47, + 47 + ] + ], + "result": { + "id": 314, + "count": 1 + } + }, + { + "inShape": [ + [ + 46, + 46 + ], + [ + 46, + 46 + ] + ], + "result": { + "id": 314, + "count": 1 + } + }, + { + "inShape": [ + [ + 42, + 42 + ], + [ + 42, + 42 + ] + ], + "result": { + "id": 314, + "count": 1 + } + }, + { + "inShape": [ + [ + 40, + 40 + ], + [ + 40, + 40 + ] + ], + "result": { + "id": 314, + "count": 1 + } + }, + { + "inShape": [ + [ + 39, + 39 + ], + [ + 39, + 39 + ] + ], + "result": { + "id": 314, + "count": 1 + } + }, + { + "inShape": [ + [ + 38, + 38 + ], + [ + 38, + 38 + ] + ], + "result": { + "id": 314, + "count": 1 + } + }, + { + "inShape": [ + [ + 37, + 37 + ], + [ + 37, + 37 + ] + ], + "result": { + "id": 314, + "count": 1 + } + }, + { + "inShape": [ + [ + 36, + 36 + ], + [ + 36, + 36 + ] + ], + "result": { + "id": 314, + "count": 1 + } + } + ], + "746": [ + { + "inShape": [ + [ + 46, + 46 + ], + [ + 46, + 46 + ], + [ + 46, + 46 + ] + ], + "result": { + "id": 746, + "count": 3 + } + } + ], + "335": [ + { + "inShape": [ + [ + 46, + 879, + 46 + ], + [ + 46, + 879, + 46 + ] + ], + "result": { + "id": 335, + "count": 3 + } + } + ], + "787": [ + { + "inShape": [ + [ + 879, + 46, + 879 + ], + [ + 879, + 46, + 879 + ] + ], + "result": { + "id": 787, + "count": 1 + } + } + ], + "939": [ + { + "inShape": [ + [ + 371, + null, + 371 + ], + [ + 157, + 157, + 157 + ], + [ + 157, + 157, + 157 + ] + ], + "result": { + "id": 939, + "count": 6 + } + } + ], + "180": [ + { + "inShape": [ + [ + 145, + 145 + ], + [ + 145, + 145 + ] + ], + "result": { + "id": 180, + "count": 3 + } + } + ], + "733": [ + { + "inShape": [ + [ + 46, + 46 + ] + ], + "result": { + "id": 733, + "count": 1 + } + } + ], + "927": [ + { + "inShape": [ + [ + 46, + 46, + 46 + ], + [ + 46, + 46, + 46 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 927, + "count": 3 + } + } + ], + "275": [ + { + "inShape": [ + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 275, + "count": 6 + } + } + ], + "416": [ + { + "inShape": [ + [ + 46, + null, + null + ], + [ + 46, + 46, + null + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 416, + "count": 4 + } + } + ], + "767": [ + { + "inShape": [ + [ + 46, + 46, + 46 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 767, + "count": 2 + } + } + ], + "1243": [ + { + "inShape": [ + [ + 879, + 842, + 879 + ], + [ + 881, + 700, + 881 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1243, + "count": 1 + } + } + ], + "102": [ + { + "inShape": [ + [ + 91, + 91 + ], + [ + 91, + 91 + ] + ], + "result": { + "id": 102, + "count": 4 + } + } + ], + "110": [ + { + "inShape": [ + [ + 102, + 102, + 102 + ] + ], + "result": { + "id": 110, + "count": 6 + } + } + ], + "106": [ + { + "inShape": [ + [ + 102, + null, + null + ], + [ + 102, + 102, + null + ], + [ + 102, + 102, + 102 + ] + ], + "result": { + "id": 106, + "count": 4 + } + } + ], + "535": [ + { + "inShape": [ + [ + 533, + 533 + ], + [ + 533, + 533 + ] + ], + "result": { + "id": 535, + "count": 4 + } + } + ], + "289": [ + { + "inShape": [ + [ + 535, + 535, + 535 + ] + ], + "result": { + "id": 289, + "count": 6 + } + } + ], + "200": [ + { + "inShape": [ + [ + 198, + 198 + ], + [ + 198, + 198 + ] + ], + "result": { + "id": 200, + "count": 4 + } + } + ], + "280": [ + { + "inShape": [ + [ + 200, + 200, + 200 + ] + ], + "result": { + "id": 280, + "count": 6 + } + } + ], + "1194": [ + { + "inShape": [ + [ + 218, + 218, + 218 + ], + [ + 218, + 218, + 218 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1194, + "count": 1 + } + } + ], + "1022": [ + { + "inShape": [ + [ + 218, + 218, + 218 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1022, + "count": 1 + } + }, + { + "inShape": [ + [ + 218, + 218, + 218 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1022, + "count": 1 + } + }, + { + "inShape": [ + [ + 218, + 218, + 218 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1022, + "count": 1 + } + }, + { + "inShape": [ + [ + 218, + 218, + 218 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1022, + "count": 1 + } + }, + { + "inShape": [ + [ + 218, + 218, + 218 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1022, + "count": 1 + } + }, + { + "inShape": [ + [ + 218, + 218, + 218 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1022, + "count": 1 + } + }, + { + "inShape": [ + [ + 218, + 218, + 218 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1022, + "count": 1 + } + }, + { + "inShape": [ + [ + 218, + 218, + 218 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1022, + "count": 1 + } + }, + { + "inShape": [ + [ + 218, + 218, + 218 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1022, + "count": 1 + } + }, + { + "inShape": [ + [ + 218, + 218, + 218 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1022, + "count": 1 + } + }, + { + "inShape": [ + [ + 218, + 218, + 218 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1022, + "count": 1 + } + }, + { + "inShape": [ + [ + 218, + 218, + 218 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1022, + "count": 1 + } + }, + { + "ingredients": [ + 1002, + 1028 + ], + "result": { + "id": 1022, + "count": 1 + } + } + ], + "478": [ + { + "inShape": [ + [ + 218, + 218 + ] + ], + "result": { + "id": 478, + "count": 3 + } + }, + { + "ingredients": [ + 1002, + 484 + ], + "result": { + "id": 478, + "count": 1 + } + } + ], + "503": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 1002, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 503, + "count": 8 + } + } + ], + "519": [ + { + "inShape": [ + [ + 503, + 503, + 503 + ], + [ + 503, + 503, + 503 + ] + ], + "result": { + "id": 519, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 1002, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 519, + "count": 8 + } + } + ], + "459": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 1002, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 459, + "count": 8 + } + } + ], + "815": [ + { + "inShape": [ + [ + 42, + null, + 42 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 815, + "count": 1 + } + } + ], + "742": [ + { + "inShape": [ + [ + 42, + 42 + ], + [ + 42, + 42 + ], + [ + 42, + 42 + ] + ], + "result": { + "id": 742, + "count": 3 + } + } + ], + "331": [ + { + "inShape": [ + [ + 42, + 879, + 42 + ], + [ + 42, + 879, + 42 + ] + ], + "result": { + "id": 331, + "count": 3 + } + } + ], + "783": [ + { + "inShape": [ + [ + 879, + 42, + 879 + ], + [ + 879, + 42, + 879 + ] + ], + "result": { + "id": 783, + "count": 1 + } + } + ], + "935": [ + { + "inShape": [ + [ + 371, + null, + 371 + ], + [ + 154, + 154, + 154 + ], + [ + 154, + 154, + 154 + ] + ], + "result": { + "id": 935, + "count": 6 + } + } + ], + "729": [ + { + "inShape": [ + [ + 42, + 42 + ] + ], + "result": { + "id": 729, + "count": 1 + } + } + ], + "923": [ + { + "inShape": [ + [ + 42, + 42, + 42 + ], + [ + 42, + 42, + 42 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 923, + "count": 3 + } + } + ], + "270": [ + { + "inShape": [ + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 270, + "count": 6 + } + } + ], + "411": [ + { + "inShape": [ + [ + 42, + null, + null + ], + [ + 42, + 42, + null + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 411, + "count": 4 + } + } + ], + "763": [ + { + "inShape": [ + [ + 42, + 42, + 42 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 763, + "count": 2 + } + } + ], + "178": [ + { + "inShape": [ + [ + 141, + 141 + ], + [ + 141, + 141 + ] + ], + "result": { + "id": 178, + "count": 3 + } + } + ], + "528": [ + { + "inShape": [ + [ + 1168, + 1168, + 1168 + ], + [ + 1168, + 1008, + 1168 + ], + [ + 1168, + 1168, + 1168 + ] + ], + "result": { + "id": 528, + "count": 1 + } + } + ], + "293": [ + { + "inShape": [ + [ + 528, + 528, + 528 + ] + ], + "result": { + "id": 293, + "count": 6 + } + } + ], + "531": [ + { + "inShape": [ + [ + 528, + null, + null + ], + [ + 528, + 528, + null + ], + [ + 528, + 528, + 528 + ] + ], + "result": { + "id": 531, + "count": 4 + } + } + ], + "697": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 839, + 839, + 839 + ], + [ + 271, + 271, + 271 + ] + ], + "result": { + "id": 697, + "count": 1 + } + }, + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 839, + 839, + 839 + ], + [ + 269, + 269, + 269 + ] + ], + "result": { + "id": 697, + "count": 1 + } + }, + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 839, + 839, + 839 + ], + [ + 273, + 273, + 273 + ] + ], + "result": { + "id": 697, + "count": 1 + } + }, + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 839, + 839, + 839 + ], + [ + 272, + 272, + 272 + ] + ], + "result": { + "id": 697, + "count": 1 + } + }, + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 839, + 839, + 839 + ], + [ + 276, + 276, + 276 + ] + ], + "result": { + "id": 697, + "count": 1 + } + }, + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 839, + 839, + 839 + ], + [ + 275, + 275, + 275 + ] + ], + "result": { + "id": 697, + "count": 1 + } + }, + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 839, + 839, + 839 + ], + [ + 270, + 270, + 270 + ] + ], + "result": { + "id": 697, + "count": 1 + } + }, + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 839, + 839, + 839 + ], + [ + 268, + 268, + 268 + ] + ], + "result": { + "id": 697, + "count": 1 + } + }, + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 839, + 839, + 839 + ], + [ + 267, + 267, + 267 + ] + ], + "result": { + "id": 697, + "count": 1 + } + }, + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 839, + 839, + 839 + ], + [ + 266, + 266, + 266 + ] + ], + "result": { + "id": 697, + "count": 1 + } + }, + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 839, + 839, + 839 + ], + [ + 265, + 265, + 265 + ] + ], + "result": { + "id": 697, + "count": 1 + } + }, + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 839, + 839, + 839 + ], + [ + 264, + 264, + 264 + ] + ], + "result": { + "id": 697, + "count": 1 + } + } + ], + "301": [ + { + "inShape": [ + [ + null, + 954, + null + ], + [ + 954, + null, + 954 + ], + [ + null, + 954, + null + ] + ], + "result": { + "id": 301, + "count": 1 + } + } + ], + "677": [ + { + "inShape": [ + [ + 361, + 361, + 361 + ] + ], + "result": { + "id": 677, + "count": 6 + } + } + ], + "660": [ + { + "inShape": [ + [ + 361, + null, + null + ], + [ + 361, + 361, + null + ], + [ + 361, + 361, + 361 + ] + ], + "result": { + "id": 660, + "count": 4 + } + } + ], + "440": [ + { + "inShape": [ + [ + 361, + 361, + 361 + ], + [ + 361, + 361, + 361 + ] + ], + "result": { + "id": 440, + "count": 6 + } + } + ], + "361": [ + { + "inShape": [ + [ + 10, + 10 + ], + [ + 10, + 10 + ] + ], + "result": { + "id": 361, + "count": 4 + } + } + ], + "678": [ + { + "inShape": [ + [ + 363, + 363, + 363 + ] + ], + "result": { + "id": 678, + "count": 6 + } + } + ], + "661": [ + { + "inShape": [ + [ + 363, + null, + null + ], + [ + 363, + 363, + null + ], + [ + 363, + 363, + 363 + ] + ], + "result": { + "id": 661, + "count": 4 + } + } + ], + "441": [ + { + "inShape": [ + [ + 363, + 363, + 363 + ], + [ + 363, + 363, + 363 + ] + ], + "result": { + "id": 441, + "count": 6 + } + } + ], + "363": [ + { + "inShape": [ + [ + 361, + 361 + ], + [ + 361, + 361 + ] + ], + "result": { + "id": 363, + "count": 4 + } + } + ], + "790": [ + { + "inShape": [ + [ + 842, + null, + 842 + ], + [ + 842, + 719, + 842 + ], + [ + 842, + 680, + 842 + ] + ], + "result": { + "id": 790, + "count": 6 + } + } + ], + "872": [ + { + "inShape": [ + [ + 836, + 836 + ], + [ + 836, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 872, + "count": 1 + } + } + ], + "93": [ + { + "inShape": [ + [ + 836, + 836, + 836 + ], + [ + 836, + 836, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 93, + "count": 1 + } + } + ], + "902": [ + { + "inShape": [ + [ + 836, + null, + 836 + ], + [ + 836, + null, + 836 + ] + ], + "result": { + "id": 902, + "count": 1 + } + } + ], + "900": [ + { + "inShape": [ + [ + 836, + null, + 836 + ], + [ + 836, + 836, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 900, + "count": 1 + } + } + ], + "899": [ + { + "inShape": [ + [ + 836, + 836, + 836 + ], + [ + 836, + null, + 836 + ] + ], + "result": { + "id": 899, + "count": 1 + } + } + ], + "873": [ + { + "inShape": [ + [ + 836, + 836 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 873, + "count": 1 + } + } + ], + "901": [ + { + "inShape": [ + [ + 836, + 836, + 836 + ], + [ + 836, + null, + 836 + ], + [ + 836, + null, + 836 + ] + ], + "result": { + "id": 901, + "count": 1 + } + } + ], + "871": [ + { + "inShape": [ + [ + 836, + 836, + 836 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 871, + "count": 1 + } + } + ], + "870": [ + { + "inShape": [ + [ + 836 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 870, + "count": 1 + } + } + ], + "869": [ + { + "inShape": [ + [ + 836 + ], + [ + 836 + ], + [ + 879 + ] + ], + "result": { + "id": 869, + "count": 1 + } + } + ], + "4": [ + { + "inShape": [ + [ + 35, + 839 + ], + [ + 839, + 35 + ] + ], + "result": { + "id": 4, + "count": 2 + } + } + ], + "674": [ + { + "inShape": [ + [ + 4, + 4, + 4 + ] + ], + "result": { + "id": 674, + "count": 6 + } + } + ], + "657": [ + { + "inShape": [ + [ + 4, + null, + null + ], + [ + 4, + 4, + null + ], + [ + 4, + 4, + 4 + ] + ], + "result": { + "id": 657, + "count": 4 + } + } + ], + "434": [ + { + "inShape": [ + [ + 4, + 4, + 4 + ], + [ + 4, + 4, + 4 + ] + ], + "result": { + "id": 434, + "count": 6 + } + } + ], + "691": [ + { + "inShape": [ + [ + 35, + 35, + 35 + ], + [ + 35, + 832, + 35 + ], + [ + 35, + 680, + 35 + ] + ], + "result": { + "id": 691, + "count": 1 + } + } + ], + "956": [ + { + "inShape": [ + [ + 1034, + 1034, + 1034 + ], + [ + 1034, + 1034, + 1034 + ], + [ + 1034, + 1034, + 1034 + ] + ], + "result": { + "id": 956, + "count": 1 + } + } + ], + "26": [ + { + "inShape": [ + [ + 1315, + 1315 + ], + [ + 1315, + 1315 + ] + ], + "result": { + "id": 26, + "count": 1 + } + } + ], + "692": [ + { + "inShape": [ + [ + 35, + 35, + 35 + ], + [ + 35, + null, + 35 + ], + [ + 35, + 680, + 35 + ] + ], + "result": { + "id": 692, + "count": 1 + } + } + ], + "1324": [ + { + "inShape": [ + [ + 836, + 1324, + 836 + ], + [ + 836, + 198, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1324, + "count": 2 + } + } + ], + "404": [ + { + "inShape": [ + [ + 837, + 837, + 837 + ], + [ + 837, + 837, + 837 + ], + [ + 837, + 837, + 837 + ] + ], + "result": { + "id": 404, + "count": 1 + } + } + ], + "397": [ + { + "inShape": [ + [ + null, + 958, + null + ], + [ + 836, + 303, + 836 + ], + [ + 303, + 303, + 303 + ] + ], + "result": { + "id": 397, + "count": 1 + } + } + ], + "1201": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 1055, + 195 + ], + [ + 195, + 1044, + 195 + ] + ], + "result": { + "id": 1201, + "count": 1 + } + } + ], + "305": [ + { + "inShape": [ + [ + 1043 + ], + [ + 1203 + ] + ], + "result": { + "id": 305, + "count": 4 + } + } + ], + "667": [ + { + "inShape": [ + [ + 400, + 400, + 400 + ] + ], + "result": { + "id": 667, + "count": 6 + } + } + ], + "649": [ + { + "inShape": [ + [ + 400, + null, + null + ], + [ + 400, + 400, + null + ], + [ + 400, + 400, + 400 + ] + ], + "result": { + "id": 649, + "count": 4 + } + } + ], + "433": [ + { + "inShape": [ + [ + 400, + 400, + 400 + ], + [ + 400, + 400, + 400 + ] + ], + "result": { + "id": 433, + "count": 6 + } + } + ], + "400": [ + { + "inShape": [ + [ + 399, + 399 + ], + [ + 399, + 399 + ] + ], + "result": { + "id": 400, + "count": 4 + } + } + ], + "403": [ + { + "inShape": [ + [ + 303, + 303, + 303 + ], + [ + 303, + 1055, + 303 + ], + [ + 303, + 303, + 303 + ] + ], + "result": { + "id": 403, + "count": 1 + } + } + ], + "99": [ + { + "inShape": [ + [ + 111 + ], + [ + 111 + ] + ], + "result": { + "id": 99, + "count": 1 + } + } + ], + "1373": [ + { + "inShape": [ + [ + null, + 95, + null + ], + [ + 95, + 1043, + 95 + ], + [ + null, + 680, + null + ] + ], + "result": { + "id": 1373, + "count": 4 + } + } + ], + "1365": [ + { + "inShape": [ + [ + null, + 95, + null + ], + [ + 95, + null, + 95 + ], + [ + null, + 95, + null + ] + ], + "result": { + "id": 1365, + "count": 4 + } + } + ], + "103": [ + { + "inShape": [ + [ + 95, + 95 + ], + [ + 95, + 95 + ] + ], + "result": { + "id": 103, + "count": 4 + } + } + ], + "111": [ + { + "inShape": [ + [ + 103, + 103, + 103 + ] + ], + "result": { + "id": 111, + "count": 6 + } + } + ], + "107": [ + { + "inShape": [ + [ + 103, + null, + null + ], + [ + 103, + 103, + null + ], + [ + 103, + 103, + 103 + ] + ], + "result": { + "id": 107, + "count": 4 + } + } + ], + "1328": [ + { + "inShape": [ + [ + 836, + 1328, + 836 + ], + [ + 836, + 399, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1328, + "count": 2 + } + } + ], + "980": [ + { + "inShape": [ + [ + null, + null, + 879 + ], + [ + null, + 879, + 881 + ], + [ + 879, + null, + 881 + ] + ], + "result": { + "id": 980, + "count": 1 + } + } + ], + "1262": [ + { + "inShape": [ + [ + 911, + 911 + ], + [ + 43, + 43 + ], + [ + 43, + 43 + ] + ], + "result": { + "id": 1262, + "count": 1 + } + }, + { + "inShape": [ + [ + 911, + 911 + ], + [ + 41, + 41 + ], + [ + 41, + 41 + ] + ], + "result": { + "id": 1262, + "count": 1 + } + }, + { + "inShape": [ + [ + 911, + 911 + ], + [ + 45, + 45 + ], + [ + 45, + 45 + ] + ], + "result": { + "id": 1262, + "count": 1 + } + }, + { + "inShape": [ + [ + 911, + 911 + ], + [ + 44, + 44 + ], + [ + 44, + 44 + ] + ], + "result": { + "id": 1262, + "count": 1 + } + }, + { + "inShape": [ + [ + 911, + 911 + ], + [ + 47, + 47 + ], + [ + 47, + 47 + ] + ], + "result": { + "id": 1262, + "count": 1 + } + }, + { + "inShape": [ + [ + 911, + 911 + ], + [ + 46, + 46 + ], + [ + 46, + 46 + ] + ], + "result": { + "id": 1262, + "count": 1 + } + }, + { + "inShape": [ + [ + 911, + 911 + ], + [ + 42, + 42 + ], + [ + 42, + 42 + ] + ], + "result": { + "id": 1262, + "count": 1 + } + }, + { + "inShape": [ + [ + 911, + 911 + ], + [ + 40, + 40 + ], + [ + 40, + 40 + ] + ], + "result": { + "id": 1262, + "count": 1 + } + }, + { + "inShape": [ + [ + 911, + 911 + ], + [ + 39, + 39 + ], + [ + 39, + 39 + ] + ], + "result": { + "id": 1262, + "count": 1 + } + }, + { + "inShape": [ + [ + 911, + 911 + ], + [ + 38, + 38 + ], + [ + 38, + 38 + ] + ], + "result": { + "id": 1262, + "count": 1 + } + }, + { + "inShape": [ + [ + 911, + 911 + ], + [ + 37, + 37 + ], + [ + 37, + 37 + ] + ], + "result": { + "id": 1262, + "count": 1 + } + }, + { + "inShape": [ + [ + 911, + 911 + ], + [ + 36, + 36 + ], + [ + 36, + 36 + ] + ], + "result": { + "id": 1262, + "count": 1 + } + } + ], + "1339": [ + { + "inShape": [ + [ + 836, + 1339, + 836 + ], + [ + 836, + 1143, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1339, + "count": 2 + } + } + ], + "1147": [ + { + "inShape": [ + [ + 954, + null, + 954 + ], + [ + null, + 954, + null + ] + ], + "result": { + "id": 1147, + "count": 1 + } + } + ], + "316": [ + { + "inShape": [ + [ + 9, + 9, + 9 + ], + [ + 9, + null, + 9 + ], + [ + 9, + 9, + 9 + ] + ], + "result": { + "id": 316, + "count": 1 + } + }, + { + "inShape": [ + [ + 1281, + 1281, + 1281 + ], + [ + 1281, + null, + 1281 + ], + [ + 1281, + 1281, + 1281 + ] + ], + "result": { + "id": 316, + "count": 1 + } + }, + { + "inShape": [ + [ + 35, + 35, + 35 + ], + [ + 35, + null, + 35 + ], + [ + 35, + 35, + 35 + ] + ], + "result": { + "id": 316, + "count": 1 + } + } + ], + "1047": [ + { + "inShape": [ + [ + 195, + null, + 195 + ], + [ + null, + 195, + null + ] + ], + "result": { + "id": 1047, + "count": 3 + } + } + ], + "372": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 372, + "count": 16 + } + } + ], + "1056": [ + { + "inShape": [ + [ + 1045, + 1045, + 1045 + ], + [ + 1045, + 1033, + 1045 + ], + [ + 1045, + 1045, + 1045 + ] + ], + "result": { + "id": 1056, + "count": 1 + } + } + ], + "347": [ + { + "inShape": [ + [ + 983, + 983 + ], + [ + 983, + 983 + ] + ], + "result": { + "id": 347, + "count": 1 + } + } + ], + "92": [ + { + "inShape": [ + [ + 846, + 846, + 846 + ], + [ + 846, + 846, + 846 + ], + [ + 846, + 846, + 846 + ] + ], + "result": { + "id": 92, + "count": 1 + } + } + ], + "846": [ + { + "inShape": [ + [ + 1045, + 1045, + 1045 + ], + [ + 1045, + 1045, + 1045 + ], + [ + 1045, + 1045, + 1045 + ] + ], + "result": { + "id": 846, + "count": 1 + } + }, + { + "ingredients": [ + 92 + ], + "result": { + "id": 846, + "count": 9 + } + } + ], + "915": [ + { + "inShape": [ + [ + 846, + 846, + 846 + ], + [ + 846, + 831, + 846 + ], + [ + 846, + 846, + 846 + ] + ], + "result": { + "id": 915, + "count": 1 + } + } + ], + "862": [ + { + "inShape": [ + [ + 846, + 846 + ], + [ + 846, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 862, + "count": 1 + } + } + ], + "906": [ + { + "inShape": [ + [ + 846, + null, + 846 + ], + [ + 846, + null, + 846 + ] + ], + "result": { + "id": 906, + "count": 1 + } + } + ], + "1153": [ + { + "inShape": [ + [ + 1045, + 1045, + 1045 + ], + [ + 1045, + 1148, + 1045 + ], + [ + 1045, + 1045, + 1045 + ] + ], + "result": { + "id": 1153, + "count": 1 + } + } + ], + "904": [ + { + "inShape": [ + [ + 846, + null, + 846 + ], + [ + 846, + 846, + 846 + ], + [ + 846, + 846, + 846 + ] + ], + "result": { + "id": 904, + "count": 1 + } + } + ], + "903": [ + { + "inShape": [ + [ + 846, + 846, + 846 + ], + [ + 846, + null, + 846 + ] + ], + "result": { + "id": 903, + "count": 1 + } + } + ], + "863": [ + { + "inShape": [ + [ + 846, + 846 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 863, + "count": 1 + } + } + ], + "905": [ + { + "inShape": [ + [ + 846, + 846, + 846 + ], + [ + 846, + null, + 846 + ], + [ + 846, + null, + 846 + ] + ], + "result": { + "id": 905, + "count": 1 + } + } + ], + "861": [ + { + "inShape": [ + [ + 846, + 846, + 846 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 861, + "count": 1 + } + } + ], + "860": [ + { + "inShape": [ + [ + 846 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 860, + "count": 1 + } + } + ], + "859": [ + { + "inShape": [ + [ + 846 + ], + [ + 846 + ], + [ + 879 + ] + ], + "result": { + "id": 859, + "count": 1 + } + } + ], + "670": [ + { + "inShape": [ + [ + 2, + 2, + 2 + ] + ], + "result": { + "id": 670, + "count": 6 + } + } + ], + "653": [ + { + "inShape": [ + [ + 2, + null, + null + ], + [ + 2, + 2, + null + ], + [ + 2, + 2, + 2 + ] + ], + "result": { + "id": 653, + "count": 4 + } + } + ], + "426": [ + { + "inShape": [ + [ + 2, + 2, + 2 + ], + [ + 2, + 2, + 2 + ] + ], + "result": { + "id": 426, + "count": 6 + } + } + ], + "1192": [ + { + "inShape": [ + [ + 216, + 216, + 216 + ], + [ + 216, + 216, + 216 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1192, + "count": 1 + } + } + ], + "1020": [ + { + "inShape": [ + [ + 216, + 216, + 216 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1020, + "count": 1 + } + }, + { + "inShape": [ + [ + 216, + 216, + 216 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1020, + "count": 1 + } + }, + { + "inShape": [ + [ + 216, + 216, + 216 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1020, + "count": 1 + } + }, + { + "inShape": [ + [ + 216, + 216, + 216 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1020, + "count": 1 + } + }, + { + "inShape": [ + [ + 216, + 216, + 216 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1020, + "count": 1 + } + }, + { + "inShape": [ + [ + 216, + 216, + 216 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1020, + "count": 1 + } + }, + { + "inShape": [ + [ + 216, + 216, + 216 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1020, + "count": 1 + } + }, + { + "inShape": [ + [ + 216, + 216, + 216 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1020, + "count": 1 + } + }, + { + "inShape": [ + [ + 216, + 216, + 216 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1020, + "count": 1 + } + }, + { + "inShape": [ + [ + 216, + 216, + 216 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1020, + "count": 1 + } + }, + { + "inShape": [ + [ + 216, + 216, + 216 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1020, + "count": 1 + } + }, + { + "inShape": [ + [ + 216, + 216, + 216 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1020, + "count": 1 + } + }, + { + "ingredients": [ + 1000, + 1028 + ], + "result": { + "id": 1020, + "count": 1 + } + } + ], + "476": [ + { + "inShape": [ + [ + 216, + 216 + ] + ], + "result": { + "id": 476, + "count": 3 + } + }, + { + "ingredients": [ + 1000, + 484 + ], + "result": { + "id": 476, + "count": 1 + } + } + ], + "501": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 1000, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 501, + "count": 8 + } + } + ], + "517": [ + { + "inShape": [ + [ + 501, + 501, + 501 + ], + [ + 501, + 501, + 501 + ] + ], + "result": { + "id": 517, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 1000, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 517, + "count": 8 + } + } + ], + "457": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 1000, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 457, + "count": 8 + } + } + ], + "1198": [ + { + "inShape": [ + [ + 222, + 222, + 222 + ], + [ + 222, + 222, + 222 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1198, + "count": 1 + } + } + ], + "1026": [ + { + "inShape": [ + [ + 222, + 222, + 222 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1026, + "count": 1 + } + }, + { + "inShape": [ + [ + 222, + 222, + 222 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1026, + "count": 1 + } + }, + { + "inShape": [ + [ + 222, + 222, + 222 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1026, + "count": 1 + } + }, + { + "inShape": [ + [ + 222, + 222, + 222 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1026, + "count": 1 + } + }, + { + "inShape": [ + [ + 222, + 222, + 222 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1026, + "count": 1 + } + }, + { + "inShape": [ + [ + 222, + 222, + 222 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1026, + "count": 1 + } + }, + { + "inShape": [ + [ + 222, + 222, + 222 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1026, + "count": 1 + } + }, + { + "inShape": [ + [ + 222, + 222, + 222 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1026, + "count": 1 + } + }, + { + "inShape": [ + [ + 222, + 222, + 222 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1026, + "count": 1 + } + }, + { + "inShape": [ + [ + 222, + 222, + 222 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1026, + "count": 1 + } + }, + { + "inShape": [ + [ + 222, + 222, + 222 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1026, + "count": 1 + } + }, + { + "inShape": [ + [ + 222, + 222, + 222 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1026, + "count": 1 + } + }, + { + "ingredients": [ + 1006, + 1028 + ], + "result": { + "id": 1026, + "count": 1 + } + } + ], + "482": [ + { + "inShape": [ + [ + 222, + 222 + ] + ], + "result": { + "id": 482, + "count": 3 + } + }, + { + "ingredients": [ + 1006, + 484 + ], + "result": { + "id": 482, + "count": 1 + } + } + ], + "507": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 1006, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 507, + "count": 8 + } + } + ], + "523": [ + { + "inShape": [ + [ + 507, + 507, + 507 + ], + [ + 507, + 507, + 507 + ] + ], + "result": { + "id": 523, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 1006, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 523, + "count": 8 + } + } + ], + "463": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 1006, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 463, + "count": 8 + } + } + ], + "1263": [ + { + "inShape": [ + [ + 879, + 277, + 879 + ], + [ + 43, + null, + 43 + ] + ], + "result": { + "id": 1263, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 277, + 879 + ], + [ + 41, + null, + 41 + ] + ], + "result": { + "id": 1263, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 277, + 879 + ], + [ + 45, + null, + 45 + ] + ], + "result": { + "id": 1263, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 277, + 879 + ], + [ + 44, + null, + 44 + ] + ], + "result": { + "id": 1263, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 277, + 879 + ], + [ + 47, + null, + 47 + ] + ], + "result": { + "id": 1263, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 277, + 879 + ], + [ + 46, + null, + 46 + ] + ], + "result": { + "id": 1263, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 277, + 879 + ], + [ + 42, + null, + 42 + ] + ], + "result": { + "id": 1263, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 277, + 879 + ], + [ + 40, + null, + 40 + ] + ], + "result": { + "id": 1263, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 277, + 879 + ], + [ + 39, + null, + 39 + ] + ], + "result": { + "id": 1263, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 277, + 879 + ], + [ + 38, + null, + 38 + ] + ], + "result": { + "id": 1263, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 277, + 879 + ], + [ + 37, + null, + 37 + ] + ], + "result": { + "id": 1263, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 277, + 879 + ], + [ + 36, + null, + 36 + ] + ], + "result": { + "id": 1263, + "count": 1 + } + } + ], + "722": [ + { + "inShape": [ + [ + 842, + 842 + ] + ], + "result": { + "id": 722, + "count": 1 + } + } + ], + "688": [ + { + "inShape": [ + [ + 1277, + 1277 + ], + [ + 1277, + 1277 + ] + ], + "result": { + "id": 688, + "count": 1 + } + } + ], + "1278": [ + { + "inShape": [ + [ + 1274, + 1274 + ], + [ + 1274, + 1274 + ] + ], + "result": { + "id": 1278, + "count": 1 + } + } + ], + "690": [ + { + "inShape": [ + [ + 842, + null, + 842 + ], + [ + 842, + 313, + 842 + ], + [ + null, + 842, + null + ] + ], + "result": { + "id": 690, + "count": 1 + } + } + ], + "1338": [ + { + "inShape": [ + [ + 836, + 1338, + 836 + ], + [ + 836, + 485, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1338, + "count": 2 + } + } + ], + "867": [ + { + "inShape": [ + [ + 842, + 842 + ], + [ + 842, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 867, + "count": 1 + } + } + ], + "370": [ + { + "inShape": [ + [ + 842, + 842, + 842 + ], + [ + 842, + 842, + 842 + ] + ], + "result": { + "id": 370, + "count": 16 + } + } + ], + "90": [ + { + "inShape": [ + [ + 842, + 842, + 842 + ], + [ + 842, + 842, + 842 + ], + [ + 842, + 842, + 842 + ] + ], + "result": { + "id": 90, + "count": 1 + } + } + ], + "898": [ + { + "inShape": [ + [ + 842, + null, + 842 + ], + [ + 842, + null, + 842 + ] + ], + "result": { + "id": 898, + "count": 1 + } + } + ], + "896": [ + { + "inShape": [ + [ + 842, + null, + 842 + ], + [ + 842, + 842, + 842 + ], + [ + 842, + 842, + 842 + ] + ], + "result": { + "id": 896, + "count": 1 + } + } + ], + "735": [ + { + "inShape": [ + [ + 842, + 842 + ], + [ + 842, + 842 + ], + [ + 842, + 842 + ] + ], + "result": { + "id": 735, + "count": 3 + } + } + ], + "895": [ + { + "inShape": [ + [ + 842, + 842, + 842 + ], + [ + 842, + null, + 842 + ] + ], + "result": { + "id": 895, + "count": 1 + } + } + ], + "868": [ + { + "inShape": [ + [ + 842, + 842 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 868, + "count": 1 + } + } + ], + "842": [ + { + "inShape": [ + [ + 1217, + 1217, + 1217 + ], + [ + 1217, + 1217, + 1217 + ], + [ + 1217, + 1217, + 1217 + ] + ], + "result": { + "id": 842, + "count": 1 + } + }, + { + "ingredients": [ + 90 + ], + "result": { + "id": 842, + "count": 9 + } + } + ], + "897": [ + { + "inShape": [ + [ + 842, + 842, + 842 + ], + [ + 842, + null, + 842 + ], + [ + 842, + null, + 842 + ] + ], + "result": { + "id": 897, + "count": 1 + } + } + ], + "866": [ + { + "inShape": [ + [ + 842, + 842, + 842 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 866, + "count": 1 + } + } + ], + "865": [ + { + "inShape": [ + [ + 842 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 865, + "count": 1 + } + } + ], + "864": [ + { + "inShape": [ + [ + 842 + ], + [ + 842 + ], + [ + 879 + ] + ], + "result": { + "id": 864, + "count": 1 + } + } + ], + "756": [ + { + "inShape": [ + [ + 842, + 842 + ], + [ + 842, + 842 + ] + ], + "result": { + "id": 756, + "count": 1 + } + } + ], + "1145": [ + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 946, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 1145, + "count": 1 + } + } + ], + "339": [ + { + "inShape": [ + [ + 338 + ], + [ + 304 + ] + ], + "result": { + "id": 339, + "count": 1 + } + } + ], + "324": [ + { + "inShape": [ + [ + 43, + 43, + 43 + ], + [ + 43, + 836, + 43 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 324, + "count": 1 + } + }, + { + "inShape": [ + [ + 41, + 41, + 41 + ], + [ + 41, + 836, + 41 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 324, + "count": 1 + } + }, + { + "inShape": [ + [ + 45, + 45, + 45 + ], + [ + 45, + 836, + 45 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 324, + "count": 1 + } + }, + { + "inShape": [ + [ + 44, + 44, + 44 + ], + [ + 44, + 836, + 44 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 324, + "count": 1 + } + }, + { + "inShape": [ + [ + 47, + 47, + 47 + ], + [ + 47, + 836, + 47 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 324, + "count": 1 + } + }, + { + "inShape": [ + [ + 46, + 46, + 46 + ], + [ + 46, + 836, + 46 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 324, + "count": 1 + } + }, + { + "inShape": [ + [ + 42, + 42, + 42 + ], + [ + 42, + 836, + 42 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 324, + "count": 1 + } + }, + { + "inShape": [ + [ + 40, + 40, + 40 + ], + [ + 40, + 836, + 40 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 324, + "count": 1 + } + }, + { + "inShape": [ + [ + 39, + 39, + 39 + ], + [ + 39, + 836, + 39 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 324, + "count": 1 + } + }, + { + "inShape": [ + [ + 38, + 38, + 38 + ], + [ + 38, + 836, + 38 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 324, + "count": 1 + } + }, + { + "inShape": [ + [ + 37, + 37, + 37 + ], + [ + 37, + 836, + 37 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 324, + "count": 1 + } + }, + { + "inShape": [ + [ + 36, + 36, + 36 + ], + [ + 36, + 836, + 36 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 324, + "count": 1 + } + } + ], + "809": [ + { + "inShape": [ + [ + 39, + null, + 39 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 809, + "count": 1 + } + } + ], + "739": [ + { + "inShape": [ + [ + 39, + 39 + ], + [ + 39, + 39 + ], + [ + 39, + 39 + ] + ], + "result": { + "id": 739, + "count": 3 + } + } + ], + "328": [ + { + "inShape": [ + [ + 39, + 879, + 39 + ], + [ + 39, + 879, + 39 + ] + ], + "result": { + "id": 328, + "count": 3 + } + } + ], + "780": [ + { + "inShape": [ + [ + 879, + 39, + 879 + ], + [ + 879, + 39, + 879 + ] + ], + "result": { + "id": 780, + "count": 1 + } + } + ], + "932": [ + { + "inShape": [ + [ + 371, + null, + 371 + ], + [ + 151, + 151, + 151 + ], + [ + 151, + 151, + 151 + ] + ], + "result": { + "id": 932, + "count": 6 + } + } + ], + "726": [ + { + "inShape": [ + [ + 39, + 39 + ] + ], + "result": { + "id": 726, + "count": 1 + } + } + ], + "920": [ + { + "inShape": [ + [ + 39, + 39, + 39 + ], + [ + 39, + 39, + 39 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 920, + "count": 3 + } + } + ], + "267": [ + { + "inShape": [ + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 267, + "count": 6 + } + } + ], + "408": [ + { + "inShape": [ + [ + 39, + null, + null + ], + [ + 39, + 39, + null + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 408, + "count": 4 + } + } + ], + "760": [ + { + "inShape": [ + [ + 39, + 39, + 39 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 760, + "count": 2 + } + } + ], + "174": [ + { + "inShape": [ + [ + 137, + 137 + ], + [ + 137, + 137 + ] + ], + "result": { + "id": 174, + "count": 3 + } + } + ], + "317": [ + { + "inShape": [ + [ + 879, + null, + 879 + ], + [ + 879, + 879, + 879 + ], + [ + 879, + null, + 879 + ] + ], + "result": { + "id": 317, + "count": 3 + } + } + ], + "1267": [ + { + "inShape": [ + [ + 1217, + 1217, + 1217 + ], + [ + 1217, + 304, + 1217 + ], + [ + 1217, + 1217, + 1217 + ] + ], + "result": { + "id": 1267, + "count": 1 + } + } + ], + "197": [ + { + "inShape": [ + [ + 838, + 838, + 838 + ], + [ + 838, + 838, + 838 + ], + [ + 838, + 838, + 838 + ] + ], + "result": { + "id": 197, + "count": 1 + } + } + ], + "1180": [ + { + "inShape": [ + [ + 881, + 881, + null + ], + [ + 881, + 959, + null + ], + [ + null, + null, + 881 + ] + ], + "result": { + "id": 1180, + "count": 2 + } + } + ], + "946": [ + { + "inShape": [ + [ + 1174, + 1174 + ], + [ + 1174, + 1174 + ] + ], + "result": { + "id": 946, + "count": 1 + } + } + ], + "890": [ + { + "inShape": [ + [ + 946, + null, + 946 + ], + [ + 946, + null, + 946 + ] + ], + "result": { + "id": 890, + "count": 1 + } + } + ], + "888": [ + { + "inShape": [ + [ + 946, + null, + 946 + ], + [ + 946, + 946, + 946 + ], + [ + 946, + 946, + 946 + ] + ], + "result": { + "id": 888, + "count": 1 + } + } + ], + "887": [ + { + "inShape": [ + [ + 946, + 946, + 946 + ], + [ + 946, + null, + 946 + ] + ], + "result": { + "id": 887, + "count": 1 + } + } + ], + "1179": [ + { + "inShape": [ + [ + 946, + null, + 946 + ], + [ + 946, + 946, + 946 + ], + [ + 946, + null, + 946 + ] + ], + "result": { + "id": 1179, + "count": 1 + } + } + ], + "889": [ + { + "inShape": [ + [ + 946, + 946, + 946 + ], + [ + 946, + null, + 946 + ], + [ + 946, + null, + 946 + ] + ], + "result": { + "id": 889, + "count": 1 + } + } + ], + "693": [ + { + "inShape": [ + [ + 271, + 271, + 271 + ], + [ + null, + 299, + null + ], + [ + null, + 271, + null + ] + ], + "result": { + "id": 693, + "count": 1 + } + }, + { + "inShape": [ + [ + 269, + 269, + 269 + ], + [ + null, + 299, + null + ], + [ + null, + 269, + null + ] + ], + "result": { + "id": 693, + "count": 1 + } + }, + { + "inShape": [ + [ + 273, + 273, + 273 + ], + [ + null, + 299, + null + ], + [ + null, + 273, + null + ] + ], + "result": { + "id": 693, + "count": 1 + } + }, + { + "inShape": [ + [ + 272, + 272, + 272 + ], + [ + null, + 299, + null + ], + [ + null, + 272, + null + ] + ], + "result": { + "id": 693, + "count": 1 + } + }, + { + "inShape": [ + [ + 276, + 276, + 276 + ], + [ + null, + 299, + null + ], + [ + null, + 276, + null + ] + ], + "result": { + "id": 693, + "count": 1 + } + }, + { + "inShape": [ + [ + 275, + 275, + 275 + ], + [ + null, + 299, + null + ], + [ + null, + 275, + null + ] + ], + "result": { + "id": 693, + "count": 1 + } + }, + { + "inShape": [ + [ + 270, + 270, + 270 + ], + [ + null, + 299, + null + ], + [ + null, + 270, + null + ] + ], + "result": { + "id": 693, + "count": 1 + } + }, + { + "inShape": [ + [ + 268, + 268, + 268 + ], + [ + null, + 299, + null + ], + [ + null, + 268, + null + ] + ], + "result": { + "id": 693, + "count": 1 + } + }, + { + "inShape": [ + [ + 267, + 267, + 267 + ], + [ + null, + 299, + null + ], + [ + null, + 267, + null + ] + ], + "result": { + "id": 693, + "count": 1 + } + }, + { + "inShape": [ + [ + 266, + 266, + 266 + ], + [ + null, + 299, + null + ], + [ + null, + 266, + null + ] + ], + "result": { + "id": 693, + "count": 1 + } + }, + { + "inShape": [ + [ + 265, + 265, + 265 + ], + [ + null, + 299, + null + ], + [ + null, + 265, + null + ] + ], + "result": { + "id": 693, + "count": 1 + } + }, + { + "inShape": [ + [ + 264, + 264, + 264 + ], + [ + null, + 299, + null + ], + [ + null, + 264, + null + ] + ], + "result": { + "id": 693, + "count": 1 + } + } + ], + "695": [ + { + "inShape": [ + [ + 879 + ], + [ + 35 + ] + ], + "result": { + "id": 695, + "count": 1 + } + } + ], + "1188": [ + { + "inShape": [ + [ + 212, + 212, + 212 + ], + [ + 212, + 212, + 212 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1188, + "count": 1 + } + } + ], + "1016": [ + { + "inShape": [ + [ + 212, + 212, + 212 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1016, + "count": 1 + } + }, + { + "inShape": [ + [ + 212, + 212, + 212 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1016, + "count": 1 + } + }, + { + "inShape": [ + [ + 212, + 212, + 212 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1016, + "count": 1 + } + }, + { + "inShape": [ + [ + 212, + 212, + 212 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1016, + "count": 1 + } + }, + { + "inShape": [ + [ + 212, + 212, + 212 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1016, + "count": 1 + } + }, + { + "inShape": [ + [ + 212, + 212, + 212 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1016, + "count": 1 + } + }, + { + "inShape": [ + [ + 212, + 212, + 212 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1016, + "count": 1 + } + }, + { + "inShape": [ + [ + 212, + 212, + 212 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1016, + "count": 1 + } + }, + { + "inShape": [ + [ + 212, + 212, + 212 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1016, + "count": 1 + } + }, + { + "inShape": [ + [ + 212, + 212, + 212 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1016, + "count": 1 + } + }, + { + "inShape": [ + [ + 212, + 212, + 212 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1016, + "count": 1 + } + }, + { + "inShape": [ + [ + 212, + 212, + 212 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1016, + "count": 1 + } + }, + { + "ingredients": [ + 996, + 1028 + ], + "result": { + "id": 1016, + "count": 1 + } + } + ], + "472": [ + { + "inShape": [ + [ + 212, + 212 + ] + ], + "result": { + "id": 472, + "count": 3 + } + }, + { + "ingredients": [ + 996, + 484 + ], + "result": { + "id": 472, + "count": 1 + } + } + ], + "497": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 996, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 497, + "count": 8 + } + } + ], + "513": [ + { + "inShape": [ + [ + 497, + 497, + 497 + ], + [ + 497, + 497, + 497 + ] + ], + "result": { + "id": 513, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 996, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 513, + "count": 8 + } + } + ], + "453": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 996, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 453, + "count": 8 + } + } + ], + "1193": [ + { + "inShape": [ + [ + 217, + 217, + 217 + ], + [ + 217, + 217, + 217 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1193, + "count": 1 + } + } + ], + "1021": [ + { + "inShape": [ + [ + 217, + 217, + 217 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1021, + "count": 1 + } + }, + { + "inShape": [ + [ + 217, + 217, + 217 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1021, + "count": 1 + } + }, + { + "inShape": [ + [ + 217, + 217, + 217 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1021, + "count": 1 + } + }, + { + "inShape": [ + [ + 217, + 217, + 217 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1021, + "count": 1 + } + }, + { + "inShape": [ + [ + 217, + 217, + 217 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1021, + "count": 1 + } + }, + { + "inShape": [ + [ + 217, + 217, + 217 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1021, + "count": 1 + } + }, + { + "inShape": [ + [ + 217, + 217, + 217 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1021, + "count": 1 + } + }, + { + "inShape": [ + [ + 217, + 217, + 217 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1021, + "count": 1 + } + }, + { + "inShape": [ + [ + 217, + 217, + 217 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1021, + "count": 1 + } + }, + { + "inShape": [ + [ + 217, + 217, + 217 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1021, + "count": 1 + } + }, + { + "inShape": [ + [ + 217, + 217, + 217 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1021, + "count": 1 + } + }, + { + "inShape": [ + [ + 217, + 217, + 217 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1021, + "count": 1 + } + }, + { + "ingredients": [ + 1001, + 1028 + ], + "result": { + "id": 1021, + "count": 1 + } + } + ], + "477": [ + { + "inShape": [ + [ + 217, + 217 + ] + ], + "result": { + "id": 477, + "count": 3 + } + }, + { + "ingredients": [ + 1001, + 484 + ], + "result": { + "id": 477, + "count": 1 + } + } + ], + "502": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 1001, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 502, + "count": 8 + } + } + ], + "518": [ + { + "inShape": [ + [ + 502, + 502, + 502 + ], + [ + 502, + 502, + 502 + ] + ], + "result": { + "id": 518, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 1001, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 518, + "count": 8 + } + } + ], + "458": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 1001, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 458, + "count": 8 + } + } + ], + "721": [ + { + "inShape": [ + [ + 846, + 846 + ] + ], + "result": { + "id": 721, + "count": 1 + } + } + ], + "696": [ + { + "inShape": [ + [ + 844 + ], + [ + 844 + ], + [ + 844 + ] + ], + "result": { + "id": 696, + "count": 1 + } + } + ], + "1190": [ + { + "inShape": [ + [ + 214, + 214, + 214 + ], + [ + 214, + 214, + 214 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1190, + "count": 1 + } + } + ], + "1018": [ + { + "inShape": [ + [ + 214, + 214, + 214 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1018, + "count": 1 + } + }, + { + "inShape": [ + [ + 214, + 214, + 214 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1018, + "count": 1 + } + }, + { + "inShape": [ + [ + 214, + 214, + 214 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1018, + "count": 1 + } + }, + { + "inShape": [ + [ + 214, + 214, + 214 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1018, + "count": 1 + } + }, + { + "inShape": [ + [ + 214, + 214, + 214 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1018, + "count": 1 + } + }, + { + "inShape": [ + [ + 214, + 214, + 214 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1018, + "count": 1 + } + }, + { + "inShape": [ + [ + 214, + 214, + 214 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1018, + "count": 1 + } + }, + { + "inShape": [ + [ + 214, + 214, + 214 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1018, + "count": 1 + } + }, + { + "inShape": [ + [ + 214, + 214, + 214 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1018, + "count": 1 + } + }, + { + "inShape": [ + [ + 214, + 214, + 214 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1018, + "count": 1 + } + }, + { + "inShape": [ + [ + 214, + 214, + 214 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1018, + "count": 1 + } + }, + { + "inShape": [ + [ + 214, + 214, + 214 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1018, + "count": 1 + } + }, + { + "ingredients": [ + 998, + 1028 + ], + "result": { + "id": 1018, + "count": 1 + } + } + ], + "474": [ + { + "inShape": [ + [ + 214, + 214 + ] + ], + "result": { + "id": 474, + "count": 3 + } + }, + { + "ingredients": [ + 998, + 484 + ], + "result": { + "id": 474, + "count": 1 + } + } + ], + "499": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 998, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 499, + "count": 8 + } + } + ], + "515": [ + { + "inShape": [ + [ + 499, + 499, + 499 + ], + [ + 499, + 499, + 499 + ] + ], + "result": { + "id": 515, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 998, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 515, + "count": 8 + } + } + ], + "455": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 998, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 455, + "count": 8 + } + } + ], + "1279": [ + { + "inShape": [ + [ + 358, + 358, + 358 + ], + [ + 358, + 847, + 358 + ], + [ + 358, + 358, + 358 + ] + ], + "result": { + "id": 1279, + "count": 1 + } + } + ], + "1245": [ + { + "inShape": [ + [ + 881, + 881 + ], + [ + 43, + 43 + ] + ], + "result": { + "id": 1245, + "count": 1 + } + }, + { + "inShape": [ + [ + 881, + 881 + ], + [ + 41, + 41 + ] + ], + "result": { + "id": 1245, + "count": 1 + } + }, + { + "inShape": [ + [ + 881, + 881 + ], + [ + 45, + 45 + ] + ], + "result": { + "id": 1245, + "count": 1 + } + }, + { + "inShape": [ + [ + 881, + 881 + ], + [ + 44, + 44 + ] + ], + "result": { + "id": 1245, + "count": 1 + } + }, + { + "inShape": [ + [ + 881, + 881 + ], + [ + 47, + 47 + ] + ], + "result": { + "id": 1245, + "count": 1 + } + }, + { + "inShape": [ + [ + 881, + 881 + ], + [ + 46, + 46 + ] + ], + "result": { + "id": 1245, + "count": 1 + } + }, + { + "inShape": [ + [ + 881, + 881 + ], + [ + 42, + 42 + ] + ], + "result": { + "id": 1245, + "count": 1 + } + }, + { + "inShape": [ + [ + 881, + 881 + ], + [ + 40, + 40 + ] + ], + "result": { + "id": 1245, + "count": 1 + } + }, + { + "inShape": [ + [ + 881, + 881 + ], + [ + 39, + 39 + ] + ], + "result": { + "id": 1245, + "count": 1 + } + }, + { + "inShape": [ + [ + 881, + 881 + ], + [ + 38, + 38 + ] + ], + "result": { + "id": 1245, + "count": 1 + } + }, + { + "inShape": [ + [ + 881, + 881 + ], + [ + 37, + 37 + ] + ], + "result": { + "id": 1245, + "count": 1 + } + }, + { + "inShape": [ + [ + 881, + 881 + ], + [ + 36, + 36 + ] + ], + "result": { + "id": 1245, + "count": 1 + } + } + ], + "1144": [ + { + "inShape": [ + [ + 87 + ], + [ + 1143 + ] + ], + "result": { + "id": 1144, + "count": 1 + } + } + ], + "1187": [ + { + "inShape": [ + [ + 211, + 211, + 211 + ], + [ + 211, + 211, + 211 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1187, + "count": 1 + } + } + ], + "1015": [ + { + "inShape": [ + [ + 211, + 211, + 211 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1015, + "count": 1 + } + }, + { + "inShape": [ + [ + 211, + 211, + 211 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1015, + "count": 1 + } + }, + { + "inShape": [ + [ + 211, + 211, + 211 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1015, + "count": 1 + } + }, + { + "inShape": [ + [ + 211, + 211, + 211 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1015, + "count": 1 + } + }, + { + "inShape": [ + [ + 211, + 211, + 211 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1015, + "count": 1 + } + }, + { + "inShape": [ + [ + 211, + 211, + 211 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1015, + "count": 1 + } + }, + { + "inShape": [ + [ + 211, + 211, + 211 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1015, + "count": 1 + } + }, + { + "inShape": [ + [ + 211, + 211, + 211 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1015, + "count": 1 + } + }, + { + "inShape": [ + [ + 211, + 211, + 211 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1015, + "count": 1 + } + }, + { + "inShape": [ + [ + 211, + 211, + 211 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1015, + "count": 1 + } + }, + { + "inShape": [ + [ + 211, + 211, + 211 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1015, + "count": 1 + } + }, + { + "inShape": [ + [ + 211, + 211, + 211 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1015, + "count": 1 + } + }, + { + "ingredients": [ + 995, + 1028 + ], + "result": { + "id": 1015, + "count": 1 + } + } + ], + "471": [ + { + "inShape": [ + [ + 211, + 211 + ] + ], + "result": { + "id": 471, + "count": 3 + } + }, + { + "ingredients": [ + 995, + 484 + ], + "result": { + "id": 471, + "count": 1 + } + } + ], + "496": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 995, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 496, + "count": 8 + } + } + ], + "512": [ + { + "inShape": [ + [ + 496, + 496, + 496 + ], + [ + 496, + 496, + 496 + ] + ], + "result": { + "id": 512, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 995, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 512, + "count": 8 + } + } + ], + "452": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 995, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 452, + "count": 8 + } + } + ], + "539": [ + { + "inShape": [ + [ + 1052, + 1052 + ], + [ + 1052, + 1052 + ] + ], + "result": { + "id": 539, + "count": 1 + } + } + ], + "819": [ + { + "inShape": [ + [ + 44, + null, + 44 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 819, + "count": 1 + } + } + ], + "744": [ + { + "inShape": [ + [ + 44, + 44 + ], + [ + 44, + 44 + ], + [ + 44, + 44 + ] + ], + "result": { + "id": 744, + "count": 3 + } + } + ], + "333": [ + { + "inShape": [ + [ + 44, + 879, + 44 + ], + [ + 44, + 879, + 44 + ] + ], + "result": { + "id": 333, + "count": 3 + } + } + ], + "785": [ + { + "inShape": [ + [ + 879, + 44, + 879 + ], + [ + 879, + 44, + 879 + ] + ], + "result": { + "id": 785, + "count": 1 + } + } + ], + "937": [ + { + "inShape": [ + [ + 371, + null, + 371 + ], + [ + 156, + 156, + 156 + ], + [ + 156, + 156, + 156 + ] + ], + "result": { + "id": 937, + "count": 6 + } + } + ], + "731": [ + { + "inShape": [ + [ + 44, + 44 + ] + ], + "result": { + "id": 731, + "count": 1 + } + } + ], + "925": [ + { + "inShape": [ + [ + 44, + 44, + 44 + ], + [ + 44, + 44, + 44 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 925, + "count": 3 + } + } + ], + "272": [ + { + "inShape": [ + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 272, + "count": 6 + } + } + ], + "413": [ + { + "inShape": [ + [ + 44, + null, + null + ], + [ + 44, + 44, + null + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 413, + "count": 4 + } + } + ], + "765": [ + { + "inShape": [ + [ + 44, + 44, + 44 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 765, + "count": 2 + } + } + ], + "179": [ + { + "inShape": [ + [ + 142, + 142 + ], + [ + 142, + 142 + ] + ], + "result": { + "id": 179, + "count": 3 + } + } + ], + "1152": [ + { + "inShape": [ + [ + 957, + 957, + 957 + ], + [ + 957, + 961, + 957 + ], + [ + 957, + 957, + 957 + ] + ], + "result": { + "id": 1152, + "count": 1 + } + } + ], + "0": [ + { + "inShape": [ + [ + 957, + 957, + 957 + ], + [ + 957, + 1031, + 957 + ], + [ + 957, + 957, + 957 + ] + ], + "result": { + "id": 0, + "count": 0 + } + } + ], + "794": [ + { + "inShape": [ + [ + 842, + null, + 842 + ], + [ + 842, + 842, + 842 + ] + ], + "result": { + "id": 794, + "count": 1 + } + } + ], + "255": [ + { + "inShape": [ + [ + 256, + 256 + ] + ], + "result": { + "id": 255, + "count": 3 + } + } + ], + "666": [ + { + "inShape": [ + [ + 302, + 302, + 302 + ] + ], + "result": { + "id": 666, + "count": 6 + } + } + ], + "648": [ + { + "inShape": [ + [ + 302, + null, + null + ], + [ + 302, + 302, + null + ], + [ + 302, + 302, + 302 + ] + ], + "result": { + "id": 648, + "count": 4 + } + } + ], + "421": [ + { + "inShape": [ + [ + 302, + 302, + 302 + ], + [ + 302, + 302, + 302 + ] + ], + "result": { + "id": 421, + "count": 6 + } + } + ], + "664": [ + { + "inShape": [ + [ + 356, + 356, + 356 + ] + ], + "result": { + "id": 664, + "count": 6 + } + } + ], + "646": [ + { + "inShape": [ + [ + 356, + null, + null + ], + [ + 356, + 356, + null + ], + [ + 356, + 356, + 356 + ] + ], + "result": { + "id": 646, + "count": 4 + } + } + ], + "425": [ + { + "inShape": [ + [ + 356, + 356, + 356 + ], + [ + 356, + 356, + 356 + ] + ], + "result": { + "id": 425, + "count": 6 + } + } + ], + "285": [ + { + "inShape": [ + [ + 360, + 360, + 360 + ] + ], + "result": { + "id": 285, + "count": 6 + } + } + ], + "385": [ + { + "inShape": [ + [ + 360, + null, + null + ], + [ + 360, + 360, + null + ], + [ + 360, + 360, + 360 + ] + ], + "result": { + "id": 385, + "count": 4 + } + } + ], + "428": [ + { + "inShape": [ + [ + 360, + 360, + 360 + ], + [ + 360, + 360, + 360 + ] + ], + "result": { + "id": 428, + "count": 6 + } + } + ], + "360": [ + { + "inShape": [ + [ + 359, + 359 + ], + [ + 359, + 359 + ] + ], + "result": { + "id": 360, + "count": 4 + } + } + ], + "391": [ + { + "inShape": [ + [ + 388, + 1166, + 388 + ], + [ + 388, + 1166, + 388 + ] + ], + "result": { + "id": 391, + "count": 6 + } + } + ], + "286": [ + { + "inShape": [ + [ + 388, + 388, + 388 + ] + ], + "result": { + "id": 286, + "count": 6 + } + } + ], + "392": [ + { + "inShape": [ + [ + 388, + null, + null + ], + [ + 388, + 388, + null + ], + [ + 388, + 388, + 388 + ] + ], + "result": { + "id": 392, + "count": 4 + } + } + ], + "429": [ + { + "inShape": [ + [ + 388, + 388, + 388 + ], + [ + 388, + 388, + 388 + ] + ], + "result": { + "id": 429, + "count": 6 + } + } + ], + "388": [ + { + "inShape": [ + [ + 1166, + 1166 + ], + [ + 1166, + 1166 + ] + ], + "result": { + "id": 388, + "count": 1 + } + } + ], + "94": [ + { + "inShape": [ + [ + 847, + 847, + 847 + ], + [ + 847, + 847, + 847 + ], + [ + 847, + 847, + 847 + ] + ], + "result": { + "id": 94, + "count": 1 + } + } + ], + "1322": [ + { + "inShape": [ + [ + 836, + 1322, + 836 + ], + [ + 836, + 340, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1322, + "count": 2 + } + } + ], + "704": [ + { + "inShape": [ + [ + 43, + 43, + 43 + ], + [ + 43, + 680, + 43 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 704, + "count": 1 + } + }, + { + "inShape": [ + [ + 41, + 41, + 41 + ], + [ + 41, + 680, + 41 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 704, + "count": 1 + } + }, + { + "inShape": [ + [ + 45, + 45, + 45 + ], + [ + 45, + 680, + 45 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 704, + "count": 1 + } + }, + { + "inShape": [ + [ + 44, + 44, + 44 + ], + [ + 44, + 680, + 44 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 704, + "count": 1 + } + }, + { + "inShape": [ + [ + 47, + 47, + 47 + ], + [ + 47, + 680, + 47 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 704, + "count": 1 + } + }, + { + "inShape": [ + [ + 46, + 46, + 46 + ], + [ + 46, + 680, + 46 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 704, + "count": 1 + } + }, + { + "inShape": [ + [ + 42, + 42, + 42 + ], + [ + 42, + 680, + 42 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 704, + "count": 1 + } + }, + { + "inShape": [ + [ + 40, + 40, + 40 + ], + [ + 40, + 680, + 40 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 704, + "count": 1 + } + }, + { + "inShape": [ + [ + 39, + 39, + 39 + ], + [ + 39, + 680, + 39 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 704, + "count": 1 + } + }, + { + "inShape": [ + [ + 38, + 38, + 38 + ], + [ + 38, + 680, + 38 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 704, + "count": 1 + } + }, + { + "inShape": [ + [ + 37, + 37, + 37 + ], + [ + 37, + 680, + 37 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 704, + "count": 1 + } + }, + { + "inShape": [ + [ + 36, + 36, + 36 + ], + [ + 36, + 680, + 36 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 704, + "count": 1 + } + } + ], + "803": [ + { + "inShape": [ + [ + 36, + null, + 36 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 803, + "count": 1 + } + } + ], + "736": [ + { + "inShape": [ + [ + 36, + 36 + ], + [ + 36, + 36 + ], + [ + 36, + 36 + ] + ], + "result": { + "id": 736, + "count": 3 + } + } + ], + "325": [ + { + "inShape": [ + [ + 36, + 879, + 36 + ], + [ + 36, + 879, + 36 + ] + ], + "result": { + "id": 325, + "count": 3 + } + } + ], + "777": [ + { + "inShape": [ + [ + 879, + 36, + 879 + ], + [ + 879, + 36, + 879 + ] + ], + "result": { + "id": 777, + "count": 1 + } + } + ], + "929": [ + { + "inShape": [ + [ + 371, + null, + 371 + ], + [ + 148, + 148, + 148 + ], + [ + 148, + 148, + 148 + ] + ], + "result": { + "id": 929, + "count": 6 + } + } + ], + "723": [ + { + "inShape": [ + [ + 36, + 36 + ] + ], + "result": { + "id": 723, + "count": 1 + } + } + ], + "917": [ + { + "inShape": [ + [ + 36, + 36, + 36 + ], + [ + 36, + 36, + 36 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 917, + "count": 3 + } + } + ], + "264": [ + { + "inShape": [ + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 264, + "count": 6 + } + } + ], + "405": [ + { + "inShape": [ + [ + 36, + null, + null + ], + [ + 36, + 36, + null + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 405, + "count": 4 + } + } + ], + "757": [ + { + "inShape": [ + [ + 36, + 36, + 36 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 757, + "count": 2 + } + } + ], + "171": [ + { + "inShape": [ + [ + 134, + 134 + ], + [ + 134, + 134 + ] + ], + "result": { + "id": 171, + "count": 3 + } + } + ], + "689": [ + { + "inShape": [ + [ + 35, + 35, + 35 + ], + [ + 680, + 680, + 839 + ], + [ + 35, + 35, + 35 + ] + ], + "result": { + "id": 689, + "count": 1 + } + } + ], + "1186": [ + { + "inShape": [ + [ + 210, + 210, + 210 + ], + [ + 210, + 210, + 210 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1186, + "count": 1 + } + } + ], + "1014": [ + { + "inShape": [ + [ + 210, + 210, + 210 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1014, + "count": 1 + } + }, + { + "inShape": [ + [ + 210, + 210, + 210 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1014, + "count": 1 + } + }, + { + "inShape": [ + [ + 210, + 210, + 210 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1014, + "count": 1 + } + }, + { + "inShape": [ + [ + 210, + 210, + 210 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1014, + "count": 1 + } + }, + { + "inShape": [ + [ + 210, + 210, + 210 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1014, + "count": 1 + } + }, + { + "inShape": [ + [ + 210, + 210, + 210 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1014, + "count": 1 + } + }, + { + "inShape": [ + [ + 210, + 210, + 210 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1014, + "count": 1 + } + }, + { + "inShape": [ + [ + 210, + 210, + 210 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1014, + "count": 1 + } + }, + { + "inShape": [ + [ + 210, + 210, + 210 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1014, + "count": 1 + } + }, + { + "inShape": [ + [ + 210, + 210, + 210 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1014, + "count": 1 + } + }, + { + "inShape": [ + [ + 210, + 210, + 210 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1014, + "count": 1 + } + }, + { + "inShape": [ + [ + 210, + 210, + 210 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1014, + "count": 1 + } + }, + { + "ingredients": [ + 994, + 1028 + ], + "result": { + "id": 1014, + "count": 1 + } + } + ], + "470": [ + { + "inShape": [ + [ + 210, + 210 + ] + ], + "result": { + "id": 470, + "count": 3 + } + }, + { + "ingredients": [ + 994, + 484 + ], + "result": { + "id": 470, + "count": 1 + } + } + ], + "495": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 994, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 495, + "count": 8 + } + } + ], + "511": [ + { + "inShape": [ + [ + 495, + 495, + 495 + ], + [ + 495, + 495, + 495 + ] + ], + "result": { + "id": 511, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 994, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 511, + "count": 8 + } + } + ], + "451": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 994, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 451, + "count": 8 + } + } + ], + "101": [ + { + "inShape": [ + [ + 113 + ], + [ + 113 + ] + ], + "result": { + "id": 101, + "count": 1 + } + } + ], + "1375": [ + { + "inShape": [ + [ + null, + 97, + null + ], + [ + 97, + 1043, + 97 + ], + [ + null, + 680, + null + ] + ], + "result": { + "id": 1375, + "count": 4 + } + } + ], + "1367": [ + { + "inShape": [ + [ + null, + 97, + null + ], + [ + 97, + null, + 97 + ], + [ + null, + 97, + null + ] + ], + "result": { + "id": 1367, + "count": 4 + } + } + ], + "105": [ + { + "inShape": [ + [ + 97, + 97 + ], + [ + 97, + 97 + ] + ], + "result": { + "id": 105, + "count": 4 + } + } + ], + "113": [ + { + "inShape": [ + [ + 105, + 105, + 105 + ] + ], + "result": { + "id": 113, + "count": 6 + } + } + ], + "109": [ + { + "inShape": [ + [ + 105, + null, + null + ], + [ + 105, + 105, + null + ], + [ + 105, + 105, + 105 + ] + ], + "result": { + "id": 109, + "count": 4 + } + } + ], + "914": [ + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 224, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 223, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 222, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 221, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 220, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 219, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 218, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 217, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 216, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 215, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 214, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 213, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 212, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 211, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 210, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + }, + { + "inShape": [ + [ + 879, + 879, + 879 + ], + [ + 879, + 209, + 879 + ], + [ + 879, + 879, + 879 + ] + ], + "result": { + "id": 914, + "count": 1 + } + } + ], + "257": [ + { + "inShape": [ + [ + 259, + 259 + ] + ], + "result": { + "id": 257, + "count": 3 + } + } + ], + "817": [ + { + "inShape": [ + [ + 43, + null, + 43 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 817, + "count": 1 + } + } + ], + "743": [ + { + "inShape": [ + [ + 43, + 43 + ], + [ + 43, + 43 + ], + [ + 43, + 43 + ] + ], + "result": { + "id": 743, + "count": 3 + } + } + ], + "332": [ + { + "inShape": [ + [ + 43, + 879, + 43 + ], + [ + 43, + 879, + 43 + ] + ], + "result": { + "id": 332, + "count": 3 + } + } + ], + "784": [ + { + "inShape": [ + [ + 879, + 43, + 879 + ], + [ + 879, + 43, + 879 + ] + ], + "result": { + "id": 784, + "count": 1 + } + } + ], + "936": [ + { + "inShape": [ + [ + 371, + null, + 371 + ], + [ + 155, + 155, + 155 + ], + [ + 155, + 155, + 155 + ] + ], + "result": { + "id": 936, + "count": 6 + } + } + ], + "730": [ + { + "inShape": [ + [ + 43, + 43 + ] + ], + "result": { + "id": 730, + "count": 1 + } + } + ], + "924": [ + { + "inShape": [ + [ + 43, + 43, + 43 + ], + [ + 43, + 43, + 43 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 924, + "count": 3 + } + } + ], + "271": [ + { + "inShape": [ + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 271, + "count": 6 + } + } + ], + "412": [ + { + "inShape": [ + [ + 43, + null, + null + ], + [ + 43, + 43, + null + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 412, + "count": 4 + } + } + ], + "764": [ + { + "inShape": [ + [ + 43, + 43, + 43 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 764, + "count": 2 + } + } + ], + "177": [ + { + "inShape": [ + [ + 140, + 140 + ], + [ + 140, + 140 + ] + ], + "result": { + "id": 177, + "count": 3 + } + } + ], + "957": [ + { + "inShape": [ + [ + 252, + 252, + 252 + ] + ], + "result": { + "id": 957, + "count": 3 + } + } + ], + "1191": [ + { + "inShape": [ + [ + 215, + 215, + 215 + ], + [ + 215, + 215, + 215 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1191, + "count": 1 + } + } + ], + "1019": [ + { + "inShape": [ + [ + 215, + 215, + 215 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1019, + "count": 1 + } + }, + { + "inShape": [ + [ + 215, + 215, + 215 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1019, + "count": 1 + } + }, + { + "inShape": [ + [ + 215, + 215, + 215 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1019, + "count": 1 + } + }, + { + "inShape": [ + [ + 215, + 215, + 215 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1019, + "count": 1 + } + }, + { + "inShape": [ + [ + 215, + 215, + 215 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1019, + "count": 1 + } + }, + { + "inShape": [ + [ + 215, + 215, + 215 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1019, + "count": 1 + } + }, + { + "inShape": [ + [ + 215, + 215, + 215 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1019, + "count": 1 + } + }, + { + "inShape": [ + [ + 215, + 215, + 215 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1019, + "count": 1 + } + }, + { + "inShape": [ + [ + 215, + 215, + 215 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1019, + "count": 1 + } + }, + { + "inShape": [ + [ + 215, + 215, + 215 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1019, + "count": 1 + } + }, + { + "inShape": [ + [ + 215, + 215, + 215 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1019, + "count": 1 + } + }, + { + "inShape": [ + [ + 215, + 215, + 215 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1019, + "count": 1 + } + }, + { + "ingredients": [ + 999, + 1028 + ], + "result": { + "id": 1019, + "count": 1 + } + } + ], + "475": [ + { + "inShape": [ + [ + 215, + 215 + ] + ], + "result": { + "id": 475, + "count": 3 + } + }, + { + "ingredients": [ + 999, + 484 + ], + "result": { + "id": 475, + "count": 1 + } + } + ], + "500": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 999, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 500, + "count": 8 + } + } + ], + "516": [ + { + "inShape": [ + [ + 500, + 500, + 500 + ], + [ + 500, + 500, + 500 + ] + ], + "result": { + "id": 516, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 999, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 516, + "count": 8 + } + } + ], + "456": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 999, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 456, + "count": 8 + } + } + ], + "685": [ + { + "inShape": [ + [ + 43, + 43, + 43 + ], + [ + 35, + 842, + 35 + ], + [ + 35, + 680, + 35 + ] + ], + "result": { + "id": 685, + "count": 1 + } + }, + { + "inShape": [ + [ + 41, + 41, + 41 + ], + [ + 35, + 842, + 35 + ], + [ + 35, + 680, + 35 + ] + ], + "result": { + "id": 685, + "count": 1 + } + }, + { + "inShape": [ + [ + 45, + 45, + 45 + ], + [ + 35, + 842, + 35 + ], + [ + 35, + 680, + 35 + ] + ], + "result": { + "id": 685, + "count": 1 + } + }, + { + "inShape": [ + [ + 44, + 44, + 44 + ], + [ + 35, + 842, + 35 + ], + [ + 35, + 680, + 35 + ] + ], + "result": { + "id": 685, + "count": 1 + } + }, + { + "inShape": [ + [ + 47, + 47, + 47 + ], + [ + 35, + 842, + 35 + ], + [ + 35, + 680, + 35 + ] + ], + "result": { + "id": 685, + "count": 1 + } + }, + { + "inShape": [ + [ + 46, + 46, + 46 + ], + [ + 35, + 842, + 35 + ], + [ + 35, + 680, + 35 + ] + ], + "result": { + "id": 685, + "count": 1 + } + }, + { + "inShape": [ + [ + 42, + 42, + 42 + ], + [ + 35, + 842, + 35 + ], + [ + 35, + 680, + 35 + ] + ], + "result": { + "id": 685, + "count": 1 + } + }, + { + "inShape": [ + [ + 40, + 40, + 40 + ], + [ + 35, + 842, + 35 + ], + [ + 35, + 680, + 35 + ] + ], + "result": { + "id": 685, + "count": 1 + } + }, + { + "inShape": [ + [ + 39, + 39, + 39 + ], + [ + 35, + 842, + 35 + ], + [ + 35, + 680, + 35 + ] + ], + "result": { + "id": 685, + "count": 1 + } + }, + { + "inShape": [ + [ + 38, + 38, + 38 + ], + [ + 35, + 842, + 35 + ], + [ + 35, + 680, + 35 + ] + ], + "result": { + "id": 685, + "count": 1 + } + }, + { + "inShape": [ + [ + 37, + 37, + 37 + ], + [ + 35, + 842, + 35 + ], + [ + 35, + 680, + 35 + ] + ], + "result": { + "id": 685, + "count": 1 + } + }, + { + "inShape": [ + [ + 36, + 36, + 36 + ], + [ + 35, + 842, + 35 + ], + [ + 35, + 680, + 35 + ] + ], + "result": { + "id": 685, + "count": 1 + } + } + ], + "7": [ + { + "inShape": [ + [ + 6, + 6 + ], + [ + 6, + 6 + ] + ], + "result": { + "id": 7, + "count": 4 + } + } + ], + "673": [ + { + "inShape": [ + [ + 7, + 7, + 7 + ] + ], + "result": { + "id": 673, + "count": 6 + } + } + ], + "656": [ + { + "inShape": [ + [ + 7, + null, + null + ], + [ + 7, + 7, + null + ], + [ + 7, + 7, + 7 + ] + ], + "result": { + "id": 656, + "count": 4 + } + } + ], + "344": [ + { + "inShape": [ + [ + 343, + 343 + ], + [ + 343, + 343 + ] + ], + "result": { + "id": 344, + "count": 4 + } + } + ], + "1285": [ + { + "inShape": [ + [ + 1281, + 1281 + ], + [ + 1281, + 1281 + ] + ], + "result": { + "id": 1285, + "count": 4 + } + } + ], + "1290": [ + { + "inShape": [ + [ + 1289, + 1289, + 1289 + ] + ], + "result": { + "id": 1290, + "count": 6 + } + } + ], + "1291": [ + { + "inShape": [ + [ + 1289, + null, + null + ], + [ + 1289, + 1289, + null + ], + [ + 1289, + 1289, + 1289 + ] + ], + "result": { + "id": 1291, + "count": 4 + } + } + ], + "437": [ + { + "inShape": [ + [ + 1289, + 1289, + 1289 + ], + [ + 1289, + 1289, + 1289 + ] + ], + "result": { + "id": 437, + "count": 6 + } + } + ], + "1289": [ + { + "inShape": [ + [ + 1285, + 1285 + ], + [ + 1285, + 1285 + ] + ], + "result": { + "id": 1289, + "count": 4 + } + } + ], + "720": [ + { + "inShape": [ + [ + 1285, + 1285 + ] + ], + "result": { + "id": 720, + "count": 1 + } + } + ], + "1286": [ + { + "inShape": [ + [ + 1285, + 1285, + 1285 + ] + ], + "result": { + "id": 1286, + "count": 6 + } + } + ], + "1287": [ + { + "inShape": [ + [ + 1285, + null, + null + ], + [ + 1285, + 1285, + null + ], + [ + 1285, + 1285, + 1285 + ] + ], + "result": { + "id": 1287, + "count": 4 + } + } + ], + "436": [ + { + "inShape": [ + [ + 1285, + 1285, + 1285 + ], + [ + 1285, + 1285, + 1285 + ] + ], + "result": { + "id": 436, + "count": 6 + } + } + ], + "10": [ + { + "inShape": [ + [ + 9, + 9 + ], + [ + 9, + 9 + ] + ], + "result": { + "id": 10, + "count": 4 + } + } + ], + "676": [ + { + "inShape": [ + [ + 10, + 10, + 10 + ] + ], + "result": { + "id": 676, + "count": 6 + } + } + ], + "659": [ + { + "inShape": [ + [ + 10, + null, + null + ], + [ + 10, + 10, + null + ], + [ + 10, + 10, + 10 + ] + ], + "result": { + "id": 659, + "count": 4 + } + } + ], + "439": [ + { + "inShape": [ + [ + 10, + 10, + 10 + ], + [ + 10, + 10, + 10 + ] + ], + "result": { + "id": 439, + "count": 6 + } + } + ], + "5": [ + { + "inShape": [ + [ + 4, + 4 + ], + [ + 4, + 4 + ] + ], + "result": { + "id": 5, + "count": 4 + } + } + ], + "665": [ + { + "inShape": [ + [ + 5, + 5, + 5 + ] + ], + "result": { + "id": 665, + "count": 6 + } + } + ], + "647": [ + { + "inShape": [ + [ + 5, + null, + null + ], + [ + 5, + 5, + null + ], + [ + 5, + 5, + 5 + ] + ], + "result": { + "id": 647, + "count": 4 + } + } + ], + "3": [ + { + "inShape": [ + [ + 2, + 2 + ], + [ + 2, + 2 + ] + ], + "result": { + "id": 3, + "count": 4 + } + } + ], + "662": [ + { + "inShape": [ + [ + 3, + 3, + 3 + ] + ], + "result": { + "id": 662, + "count": 6 + } + } + ], + "644": [ + { + "inShape": [ + [ + 3, + null, + null + ], + [ + 3, + 3, + null + ], + [ + 3, + 3, + 3 + ] + ], + "result": { + "id": 644, + "count": 4 + } + } + ], + "17": [ + { + "inShape": [ + [ + 12, + 12 + ], + [ + 12, + 12 + ] + ], + "result": { + "id": 17, + "count": 4 + } + } + ], + "18": [ + { + "inShape": [ + [ + 17, + 17, + 17 + ] + ], + "result": { + "id": 18, + "count": 6 + } + } + ], + "19": [ + { + "inShape": [ + [ + 17, + null, + null + ], + [ + 17, + 17, + null + ], + [ + 17, + 17, + 17 + ] + ], + "result": { + "id": 19, + "count": 4 + } + } + ], + "20": [ + { + "inShape": [ + [ + 17, + 17, + 17 + ], + [ + 17, + 17, + 17 + ] + ], + "result": { + "id": 20, + "count": 6 + } + } + ], + "789": [ + { + "inShape": [ + [ + 846, + null, + 846 + ], + [ + 846, + 879, + 846 + ], + [ + 846, + 680, + 846 + ] + ], + "result": { + "id": 789, + "count": 6 + } + } + ], + "526": [ + { + "inShape": [ + [ + 1168, + 1168 + ], + [ + 1168, + 1168 + ] + ], + "result": { + "id": 526, + "count": 1 + } + } + ], + "292": [ + { + "inShape": [ + [ + 527, + 527, + 527 + ] + ], + "result": { + "id": 292, + "count": 6 + } + } + ], + "530": [ + { + "inShape": [ + [ + 527, + null, + null + ], + [ + 527, + 527, + null + ], + [ + 527, + 527, + 527 + ] + ], + "result": { + "id": 530, + "count": 4 + } + } + ], + "291": [ + { + "inShape": [ + [ + 526, + 526, + 526 + ] + ], + "result": { + "id": 291, + "count": 6 + } + } + ], + "529": [ + { + "inShape": [ + [ + 526, + null, + null + ], + [ + 526, + 526, + null + ], + [ + 526, + 526, + 526 + ] + ], + "result": { + "id": 529, + "count": 4 + } + } + ], + "423": [ + { + "inShape": [ + [ + 526, + 526, + 526 + ], + [ + 526, + 526, + 526 + ] + ], + "result": { + "id": 423, + "count": 6 + } + } + ], + "1195": [ + { + "inShape": [ + [ + 219, + 219, + 219 + ], + [ + 219, + 219, + 219 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1195, + "count": 1 + } + } + ], + "1023": [ + { + "inShape": [ + [ + 219, + 219, + 219 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1023, + "count": 1 + } + }, + { + "inShape": [ + [ + 219, + 219, + 219 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1023, + "count": 1 + } + }, + { + "inShape": [ + [ + 219, + 219, + 219 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1023, + "count": 1 + } + }, + { + "inShape": [ + [ + 219, + 219, + 219 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1023, + "count": 1 + } + }, + { + "inShape": [ + [ + 219, + 219, + 219 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1023, + "count": 1 + } + }, + { + "inShape": [ + [ + 219, + 219, + 219 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1023, + "count": 1 + } + }, + { + "inShape": [ + [ + 219, + 219, + 219 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1023, + "count": 1 + } + }, + { + "inShape": [ + [ + 219, + 219, + 219 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1023, + "count": 1 + } + }, + { + "inShape": [ + [ + 219, + 219, + 219 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1023, + "count": 1 + } + }, + { + "inShape": [ + [ + 219, + 219, + 219 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1023, + "count": 1 + } + }, + { + "inShape": [ + [ + 219, + 219, + 219 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1023, + "count": 1 + } + }, + { + "inShape": [ + [ + 219, + 219, + 219 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1023, + "count": 1 + } + }, + { + "ingredients": [ + 1003, + 1028 + ], + "result": { + "id": 1023, + "count": 1 + } + } + ], + "479": [ + { + "inShape": [ + [ + 219, + 219 + ] + ], + "result": { + "id": 479, + "count": 3 + } + }, + { + "ingredients": [ + 1003, + 484 + ], + "result": { + "id": 479, + "count": 1 + } + } + ], + "504": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 1003, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 504, + "count": 8 + } + } + ], + "520": [ + { + "inShape": [ + [ + 504, + 504, + 504 + ], + [ + 504, + 504, + 504 + ] + ], + "result": { + "id": 520, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 1003, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 520, + "count": 8 + } + } + ], + "460": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 1003, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 460, + "count": 8 + } + } + ], + "308": [ + { + "inShape": [ + [ + 1203, + 1203 + ], + [ + 1203, + 1203 + ] + ], + "result": { + "id": 308, + "count": 4 + } + } + ], + "309": [ + { + "inShape": [ + [ + 290 + ], + [ + 290 + ] + ], + "result": { + "id": 309, + "count": 1 + } + } + ], + "290": [ + { + "inShape": [ + [ + 309, + 309, + 309 + ] + ], + "result": { + "id": 290, + "count": 6 + } + }, + { + "inShape": [ + [ + 308, + 308, + 308 + ] + ], + "result": { + "id": 290, + "count": 6 + } + } + ], + "310": [ + { + "inShape": [ + [ + 309, + null, + null + ], + [ + 309, + 309, + null + ], + [ + 309, + 309, + 309 + ] + ], + "result": { + "id": 310, + "count": 4 + } + }, + { + "inShape": [ + [ + 308, + null, + null + ], + [ + 308, + 308, + null + ], + [ + 308, + 308, + 308 + ] + ], + "result": { + "id": 310, + "count": 4 + } + } + ], + "446": [ + { + "inShape": [ + [ + 839, + 839 + ], + [ + 839, + 839 + ] + ], + "result": { + "id": 446, + "count": 1 + } + } + ], + "447": [ + { + "inShape": [ + [ + 446, + 446 + ], + [ + 446, + 446 + ] + ], + "result": { + "id": 447, + "count": 4 + } + } + ], + "448": [ + { + "inShape": [ + [ + 446 + ], + [ + 446 + ] + ], + "result": { + "id": 448, + "count": 2 + } + } + ], + "287": [ + { + "inShape": [ + [ + 448, + 448, + 448 + ] + ], + "result": { + "id": 287, + "count": 6 + } + }, + { + "inShape": [ + [ + 446, + 446, + 446 + ] + ], + "result": { + "id": 287, + "count": 6 + } + }, + { + "inShape": [ + [ + 445, + 445, + 445 + ] + ], + "result": { + "id": 287, + "count": 6 + } + } + ], + "449": [ + { + "inShape": [ + [ + 448, + null, + null + ], + [ + 448, + 448, + null + ], + [ + 448, + 448, + 448 + ] + ], + "result": { + "id": 449, + "count": 4 + } + }, + { + "inShape": [ + [ + 446, + null, + null + ], + [ + 446, + 446, + null + ], + [ + 446, + 446, + 446 + ] + ], + "result": { + "id": 449, + "count": 4 + } + }, + { + "inShape": [ + [ + 445, + null, + null + ], + [ + 445, + 445, + null + ], + [ + 445, + 445, + 445 + ] + ], + "result": { + "id": 449, + "count": 4 + } + } + ], + "791": [ + { + "inShape": [ + [ + 842, + null, + 842 + ], + [ + 842, + 879, + 842 + ], + [ + 842, + null, + 842 + ] + ], + "result": { + "id": 791, + "count": 16 + } + } + ], + "1337": [ + { + "inShape": [ + [ + 836, + 1337, + 836 + ], + [ + 836, + 485, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1337, + "count": 2 + } + } + ], + "85": [ + { + "inShape": [ + [ + 843, + 843, + 843 + ], + [ + 843, + 843, + 843 + ], + [ + 843, + 843, + 843 + ] + ], + "result": { + "id": 85, + "count": 1 + } + } + ], + "86": [ + { + "inShape": [ + [ + 845, + 845, + 845 + ], + [ + 845, + 845, + 845 + ], + [ + 845, + 845, + 845 + ] + ], + "result": { + "id": 86, + "count": 1 + } + } + ], + "84": [ + { + "inShape": [ + [ + 841, + 841, + 841 + ], + [ + 841, + 841, + 841 + ], + [ + 841, + 841, + 841 + ] + ], + "result": { + "id": 84, + "count": 1 + } + } + ], + "962": [ + { + "inShape": [ + [ + 1320, + 1320, + 1320 + ], + [ + 1320, + 961, + 1320 + ], + [ + 1320, + 1320, + 1320 + ] + ], + "result": { + "id": 962, + "count": 1 + } + } + ], + "1199": [ + { + "inShape": [ + [ + 223, + 223, + 223 + ], + [ + 223, + 223, + 223 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1199, + "count": 1 + } + } + ], + "1027": [ + { + "inShape": [ + [ + 223, + 223, + 223 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1027, + "count": 1 + } + }, + { + "inShape": [ + [ + 223, + 223, + 223 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1027, + "count": 1 + } + }, + { + "inShape": [ + [ + 223, + 223, + 223 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1027, + "count": 1 + } + }, + { + "inShape": [ + [ + 223, + 223, + 223 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1027, + "count": 1 + } + }, + { + "inShape": [ + [ + 223, + 223, + 223 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1027, + "count": 1 + } + }, + { + "inShape": [ + [ + 223, + 223, + 223 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1027, + "count": 1 + } + }, + { + "inShape": [ + [ + 223, + 223, + 223 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1027, + "count": 1 + } + }, + { + "inShape": [ + [ + 223, + 223, + 223 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1027, + "count": 1 + } + }, + { + "inShape": [ + [ + 223, + 223, + 223 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1027, + "count": 1 + } + }, + { + "inShape": [ + [ + 223, + 223, + 223 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1027, + "count": 1 + } + }, + { + "inShape": [ + [ + 223, + 223, + 223 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1027, + "count": 1 + } + }, + { + "inShape": [ + [ + 223, + 223, + 223 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1027, + "count": 1 + } + }, + { + "ingredients": [ + 1007, + 1028 + ], + "result": { + "id": 1027, + "count": 1 + } + } + ], + "483": [ + { + "inShape": [ + [ + 223, + 223 + ] + ], + "result": { + "id": 483, + "count": 3 + } + }, + { + "ingredients": [ + 1007, + 484 + ], + "result": { + "id": 483, + "count": 1 + } + } + ], + "672": [ + { + "inShape": [ + [ + 542, + 542, + 542 + ] + ], + "result": { + "id": 672, + "count": 6 + } + } + ], + "655": [ + { + "inShape": [ + [ + 542, + null, + null + ], + [ + 542, + 542, + null + ], + [ + 542, + 542, + 542 + ] + ], + "result": { + "id": 655, + "count": 4 + } + } + ], + "431": [ + { + "inShape": [ + [ + 542, + 542, + 542 + ], + [ + 542, + 542, + 542 + ] + ], + "result": { + "id": 431, + "count": 6 + } + } + ], + "542": [ + { + "inShape": [ + [ + 1166, + 1046 + ], + [ + 1046, + 1166 + ] + ], + "result": { + "id": 542, + "count": 1 + } + } + ], + "533": [ + { + "inShape": [ + [ + 62, + 62 + ], + [ + 62, + 62 + ] + ], + "result": { + "id": 533, + "count": 1 + } + } + ], + "288": [ + { + "inShape": [ + [ + 534, + 534, + 534 + ] + ], + "result": { + "id": 288, + "count": 6 + } + }, + { + "inShape": [ + [ + 533, + 533, + 533 + ] + ], + "result": { + "id": 288, + "count": 6 + } + } + ], + "536": [ + { + "inShape": [ + [ + 535, + null, + null + ], + [ + 535, + 535, + null + ], + [ + 535, + 535, + 535 + ] + ], + "result": { + "id": 536, + "count": 4 + } + }, + { + "inShape": [ + [ + 534, + null, + null + ], + [ + 534, + 534, + null + ], + [ + 534, + 534, + 534 + ] + ], + "result": { + "id": 536, + "count": 4 + } + }, + { + "inShape": [ + [ + 533, + null, + null + ], + [ + 533, + 533, + null + ], + [ + 533, + 533, + 533 + ] + ], + "result": { + "id": 536, + "count": 4 + } + } + ], + "424": [ + { + "inShape": [ + [ + 533, + 533, + 533 + ], + [ + 533, + 533, + 533 + ] + ], + "result": { + "id": 424, + "count": 6 + } + } + ], + "508": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 1007, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 508, + "count": 8 + } + } + ], + "524": [ + { + "inShape": [ + [ + 508, + 508, + 508 + ], + [ + 508, + 508, + 508 + ] + ], + "result": { + "id": 524, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 1007, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 524, + "count": 8 + } + } + ], + "464": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 1007, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 464, + "count": 8 + } + } + ], + "682": [ + { + "inShape": [ + [ + 680, + 680, + 680 + ], + [ + 680, + 680, + 680 + ], + [ + 680, + 680, + 680 + ] + ], + "result": { + "id": 682, + "count": 1 + } + } + ], + "703": [ + { + "inShape": [ + [ + null, + 680, + null + ], + [ + 680, + 347, + 680 + ], + [ + null, + 680, + null + ] + ], + "result": { + "id": 703, + "count": 1 + } + } + ], + "681": [ + { + "inShape": [ + [ + 680 + ], + [ + 879 + ] + ], + "result": { + "id": 681, + "count": 1 + } + } + ], + "683": [ + { + "inShape": [ + [ + 681, + 680, + 681 + ], + [ + 1, + 1, + 1 + ] + ], + "result": { + "id": 683, + "count": 1 + } + } + ], + "1293": [ + { + "inShape": [ + [ + 1280, + 1280, + 1280 + ], + [ + 347, + 347, + 347 + ], + [ + 1280, + 1280, + 1280 + ] + ], + "result": { + "id": 1293, + "count": 1 + } + } + ], + "1332": [ + { + "inShape": [ + [ + 836, + 1332, + 836 + ], + [ + 836, + 340, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1332, + "count": 2 + } + } + ], + "198": [ + { + "inShape": [ + [ + 59, + 59 + ], + [ + 59, + 59 + ] + ], + "result": { + "id": 198, + "count": 1 + } + } + ], + "279": [ + { + "inShape": [ + [ + 199, + 199, + 199 + ] + ], + "result": { + "id": 279, + "count": 6 + } + }, + { + "inShape": [ + [ + 198, + 198, + 198 + ] + ], + "result": { + "id": 279, + "count": 6 + } + } + ], + "402": [ + { + "inShape": [ + [ + 200, + null, + null + ], + [ + 200, + 200, + null + ], + [ + 200, + 200, + 200 + ] + ], + "result": { + "id": 402, + "count": 4 + } + }, + { + "inShape": [ + [ + 199, + null, + null + ], + [ + 199, + 199, + null + ], + [ + 199, + 199, + 199 + ] + ], + "result": { + "id": 402, + "count": 4 + } + }, + { + "inShape": [ + [ + 198, + null, + null + ], + [ + 198, + 198, + null + ], + [ + 198, + 198, + 198 + ] + ], + "result": { + "id": 402, + "count": 4 + } + } + ], + "432": [ + { + "inShape": [ + [ + 198, + 198, + 198 + ], + [ + 198, + 198, + 198 + ] + ], + "result": { + "id": 432, + "count": 6 + } + } + ], + "679": [ + { + "inShape": [ + [ + 263, + 881, + 263 + ], + [ + 263, + null, + 263 + ], + [ + 263, + null, + 263 + ] + ], + "result": { + "id": 679, + "count": 6 + } + } + ], + "532": [ + { + "inShape": [ + [ + 1168, + 1169, + 1168 + ], + [ + 1169, + 1169, + 1169 + ], + [ + 1168, + 1169, + 1168 + ] + ], + "result": { + "id": 532, + "count": 1 + } + } + ], + "1323": [ + { + "inShape": [ + [ + 836, + 1323, + 836 + ], + [ + 836, + 35, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1323, + "count": 2 + } + } + ], + "1335": [ + { + "inShape": [ + [ + 836, + 1335, + 836 + ], + [ + 836, + 485, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1335, + "count": 2 + } + } + ], + "1032": [ + { + "inShape": [ + [ + null, + 842 + ], + [ + 842, + null + ] + ], + "result": { + "id": 1032, + "count": 1 + } + } + ], + "1214": [ + { + "inShape": [ + [ + 43, + 842, + 43 + ], + [ + 43, + 43, + 43 + ], + [ + null, + 43, + null + ] + ], + "result": { + "id": 1214, + "count": 1 + } + }, + { + "inShape": [ + [ + 41, + 842, + 41 + ], + [ + 41, + 41, + 41 + ], + [ + null, + 41, + null + ] + ], + "result": { + "id": 1214, + "count": 1 + } + }, + { + "inShape": [ + [ + 45, + 842, + 45 + ], + [ + 45, + 45, + 45 + ], + [ + null, + 45, + null + ] + ], + "result": { + "id": 1214, + "count": 1 + } + }, + { + "inShape": [ + [ + 44, + 842, + 44 + ], + [ + 44, + 44, + 44 + ], + [ + null, + 44, + null + ] + ], + "result": { + "id": 1214, + "count": 1 + } + }, + { + "inShape": [ + [ + 47, + 842, + 47 + ], + [ + 47, + 47, + 47 + ], + [ + null, + 47, + null + ] + ], + "result": { + "id": 1214, + "count": 1 + } + }, + { + "inShape": [ + [ + 46, + 842, + 46 + ], + [ + 46, + 46, + 46 + ], + [ + null, + 46, + null + ] + ], + "result": { + "id": 1214, + "count": 1 + } + }, + { + "inShape": [ + [ + 42, + 842, + 42 + ], + [ + 42, + 42, + 42 + ], + [ + null, + 42, + null + ] + ], + "result": { + "id": 1214, + "count": 1 + } + }, + { + "inShape": [ + [ + 40, + 842, + 40 + ], + [ + 40, + 40, + 40 + ], + [ + null, + 40, + null + ] + ], + "result": { + "id": 1214, + "count": 1 + } + }, + { + "inShape": [ + [ + 39, + 842, + 39 + ], + [ + 39, + 39, + 39 + ], + [ + null, + 39, + null + ] + ], + "result": { + "id": 1214, + "count": 1 + } + }, + { + "inShape": [ + [ + 38, + 842, + 38 + ], + [ + 38, + 38, + 38 + ], + [ + null, + 38, + null + ] + ], + "result": { + "id": 1214, + "count": 1 + } + }, + { + "inShape": [ + [ + 37, + 842, + 37 + ], + [ + 37, + 37, + 37 + ], + [ + null, + 37, + null + ] + ], + "result": { + "id": 1214, + "count": 1 + } + }, + { + "inShape": [ + [ + 36, + 842, + 36 + ], + [ + 36, + 36, + 36 + ], + [ + null, + 36, + null + ] + ], + "result": { + "id": 1214, + "count": 1 + } + } + ], + "545": [ + { + "inShape": [ + [ + 1216 + ], + [ + 313 + ], + [ + 1216 + ] + ], + "result": { + "id": 545, + "count": 1 + } + } + ], + "1336": [ + { + "inShape": [ + [ + 836, + 1336, + 836 + ], + [ + 836, + 9, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1336, + "count": 2 + } + } + ], + "687": [ + { + "inShape": [ + [ + 959, + 959, + 959 + ], + [ + 959, + 959, + 959 + ], + [ + 959, + 959, + 959 + ] + ], + "result": { + "id": 687, + "count": 1 + } + } + ], + "1264": [ + { + "inShape": [ + [ + 842, + 842 + ], + [ + 43, + 43 + ], + [ + 43, + 43 + ] + ], + "result": { + "id": 1264, + "count": 1 + } + }, + { + "inShape": [ + [ + 842, + 842 + ], + [ + 41, + 41 + ], + [ + 41, + 41 + ] + ], + "result": { + "id": 1264, + "count": 1 + } + }, + { + "inShape": [ + [ + 842, + 842 + ], + [ + 45, + 45 + ], + [ + 45, + 45 + ] + ], + "result": { + "id": 1264, + "count": 1 + } + }, + { + "inShape": [ + [ + 842, + 842 + ], + [ + 44, + 44 + ], + [ + 44, + 44 + ] + ], + "result": { + "id": 1264, + "count": 1 + } + }, + { + "inShape": [ + [ + 842, + 842 + ], + [ + 47, + 47 + ], + [ + 47, + 47 + ] + ], + "result": { + "id": 1264, + "count": 1 + } + }, + { + "inShape": [ + [ + 842, + 842 + ], + [ + 46, + 46 + ], + [ + 46, + 46 + ] + ], + "result": { + "id": 1264, + "count": 1 + } + }, + { + "inShape": [ + [ + 842, + 842 + ], + [ + 42, + 42 + ], + [ + 42, + 42 + ] + ], + "result": { + "id": 1264, + "count": 1 + } + }, + { + "inShape": [ + [ + 842, + 842 + ], + [ + 40, + 40 + ], + [ + 40, + 40 + ] + ], + "result": { + "id": 1264, + "count": 1 + } + }, + { + "inShape": [ + [ + 842, + 842 + ], + [ + 39, + 39 + ], + [ + 39, + 39 + ] + ], + "result": { + "id": 1264, + "count": 1 + } + }, + { + "inShape": [ + [ + 842, + 842 + ], + [ + 38, + 38 + ], + [ + 38, + 38 + ] + ], + "result": { + "id": 1264, + "count": 1 + } + }, + { + "inShape": [ + [ + 842, + 842 + ], + [ + 37, + 37 + ], + [ + 37, + 37 + ] + ], + "result": { + "id": 1264, + "count": 1 + } + }, + { + "inShape": [ + [ + 842, + 842 + ], + [ + 36, + 36 + ], + [ + 36, + 36 + ] + ], + "result": { + "id": 1264, + "count": 1 + } + } + ], + "1259": [ + { + "inShape": [ + [ + null, + 169, + null + ], + [ + 169, + 316, + 169 + ], + [ + null, + 169, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 181, + null + ], + [ + 181, + 316, + 181 + ], + [ + null, + 181, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 158, + null + ], + [ + 158, + 316, + 158 + ], + [ + null, + 158, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 146, + null + ], + [ + 146, + 316, + 146 + ], + [ + null, + 146, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 168, + null + ], + [ + 168, + 316, + 168 + ], + [ + null, + 168, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 180, + null + ], + [ + 180, + 316, + 180 + ], + [ + null, + 180, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 157, + null + ], + [ + 157, + 316, + 157 + ], + [ + null, + 157, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 145, + null + ], + [ + 145, + 316, + 145 + ], + [ + null, + 145, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 166, + null + ], + [ + 166, + 316, + 166 + ], + [ + null, + 166, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 155, + null + ], + [ + 155, + 316, + 155 + ], + [ + null, + 155, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 177, + null + ], + [ + 177, + 316, + 177 + ], + [ + null, + 177, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 140, + null + ], + [ + 140, + 316, + 140 + ], + [ + null, + 140, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 164, + null + ], + [ + 164, + 316, + 164 + ], + [ + null, + 164, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 153, + null + ], + [ + 153, + 316, + 153 + ], + [ + null, + 153, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 176, + null + ], + [ + 176, + 316, + 176 + ], + [ + null, + 176, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 139, + null + ], + [ + 139, + 316, + 139 + ], + [ + null, + 139, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 167, + null + ], + [ + 167, + 316, + 167 + ], + [ + null, + 167, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 156, + null + ], + [ + 156, + 316, + 156 + ], + [ + null, + 156, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 179, + null + ], + [ + 179, + 316, + 179 + ], + [ + null, + 179, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 142, + null + ], + [ + 142, + 316, + 142 + ], + [ + null, + 142, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 160, + null + ], + [ + 160, + 316, + 160 + ], + [ + null, + 160, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 149, + null + ], + [ + 149, + 316, + 149 + ], + [ + null, + 149, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 172, + null + ], + [ + 172, + 316, + 172 + ], + [ + null, + 172, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 135, + null + ], + [ + 135, + 316, + 135 + ], + [ + null, + 135, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 162, + null + ], + [ + 162, + 316, + 162 + ], + [ + null, + 162, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 151, + null + ], + [ + 151, + 316, + 151 + ], + [ + null, + 151, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 174, + null + ], + [ + 174, + 316, + 174 + ], + [ + null, + 174, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 137, + null + ], + [ + 137, + 316, + 137 + ], + [ + null, + 137, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 161, + null + ], + [ + 161, + 316, + 161 + ], + [ + null, + 161, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 150, + null + ], + [ + 150, + 316, + 150 + ], + [ + null, + 150, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 173, + null + ], + [ + 173, + 316, + 173 + ], + [ + null, + 173, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 136, + null + ], + [ + 136, + 316, + 136 + ], + [ + null, + 136, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 163, + null + ], + [ + 163, + 316, + 163 + ], + [ + null, + 163, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 152, + null + ], + [ + 152, + 316, + 152 + ], + [ + null, + 152, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 175, + null + ], + [ + 175, + 316, + 175 + ], + [ + null, + 175, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 138, + null + ], + [ + 138, + 316, + 138 + ], + [ + null, + 138, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 159, + null + ], + [ + 159, + 316, + 159 + ], + [ + null, + 159, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 148, + null + ], + [ + 148, + 316, + 148 + ], + [ + null, + 148, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 171, + null + ], + [ + 171, + 316, + 171 + ], + [ + null, + 171, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 134, + null + ], + [ + 134, + 316, + 134 + ], + [ + null, + 134, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 165, + null + ], + [ + 165, + 316, + 165 + ], + [ + null, + 165, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 154, + null + ], + [ + 154, + 316, + 154 + ], + [ + null, + 154, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 178, + null + ], + [ + 178, + 316, + 178 + ], + [ + null, + 178, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 141, + null + ], + [ + 141, + 316, + 141 + ], + [ + null, + 141, + null + ] + ], + "result": { + "id": 1259, + "count": 1 + } + } + ], + "669": [ + { + "inShape": [ + [ + 294, + 294, + 294 + ] + ], + "result": { + "id": 669, + "count": 6 + } + } + ], + "652": [ + { + "inShape": [ + [ + 294, + null, + null + ], + [ + 294, + 294, + null + ], + [ + 294, + 294, + 294 + ] + ], + "result": { + "id": 652, + "count": 4 + } + } + ], + "663": [ + { + "inShape": [ + [ + 295, + 295, + 295 + ] + ], + "result": { + "id": 663, + "count": 6 + } + } + ], + "645": [ + { + "inShape": [ + [ + 295, + null, + null + ], + [ + 295, + 295, + null + ], + [ + 295, + 295, + 295 + ] + ], + "result": { + "id": 645, + "count": 4 + } + } + ], + "668": [ + { + "inShape": [ + [ + 296, + 296, + 296 + ] + ], + "result": { + "id": 668, + "count": 6 + } + } + ], + "651": [ + { + "inShape": [ + [ + 296, + null, + null + ], + [ + 296, + 296, + null + ], + [ + 296, + 296, + 296 + ] + ], + "result": { + "id": 651, + "count": 4 + } + } + ], + "278": [ + { + "inShape": [ + [ + 297, + 297, + 297 + ] + ], + "result": { + "id": 278, + "count": 6 + } + } + ], + "1331": [ + { + "inShape": [ + [ + 836, + 1331, + 836 + ], + [ + 836, + 1281, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1331, + "count": 2 + } + } + ], + "319": [ + { + "inShape": [ + [ + 321, + 321, + 321 + ] + ], + "result": { + "id": 319, + "count": 6 + } + } + ], + "321": [ + { + "inShape": [ + [ + 945, + 945 + ], + [ + 945, + 945 + ] + ], + "result": { + "id": 321, + "count": 1 + } + } + ], + "1272": [ + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 169, + 169, + 169 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 181, + 181, + 181 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 158, + 158, + 158 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 146, + 146, + 146 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 168, + 168, + 168 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 180, + 180, + 180 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 157, + 157, + 157 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 145, + 145, + 145 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 166, + 166, + 166 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 155, + 155, + 155 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 177, + 177, + 177 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 140, + 140, + 140 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 164, + 164, + 164 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 153, + 153, + 153 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 176, + 176, + 176 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 139, + 139, + 139 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 167, + 167, + 167 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 156, + 156, + 156 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 179, + 179, + 179 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 142, + 142, + 142 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 160, + 160, + 160 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 149, + 149, + 149 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 172, + 172, + 172 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 135, + 135, + 135 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 162, + 162, + 162 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 151, + 151, + 151 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 174, + 174, + 174 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 137, + 137, + 137 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 161, + 161, + 161 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 150, + 150, + 150 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 173, + 173, + 173 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 136, + 136, + 136 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 163, + 163, + 163 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 152, + 152, + 152 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 175, + 175, + 175 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 138, + 138, + 138 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 159, + 159, + 159 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 148, + 148, + 148 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 171, + 171, + 171 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 134, + 134, + 134 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 165, + 165, + 165 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 154, + 154, + 154 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 342, + 879 + ], + [ + 178, + 178, + 178 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + }, + { + "inShape": [ + [ + null, + 879, + null + ], + [ + 879, + 341, + 879 + ], + [ + 141, + 141, + 141 + ] + ], + "result": { + "id": 1272, + "count": 1 + } + } + ], + "1268": [ + { + "inShape": [ + [ + 1217, + 1217, + 1217 + ], + [ + 1217, + 346, + 1217 + ], + [ + 1217, + 1217, + 1217 + ] + ], + "result": { + "id": 1268, + "count": 1 + } + } + ], + "346": [ + { + "inShape": [ + [ + 835 + ], + [ + 879 + ], + [ + 342 + ] + ], + "result": { + "id": 346, + "count": 4 + } + }, + { + "inShape": [ + [ + 834 + ], + [ + 879 + ], + [ + 341 + ] + ], + "result": { + "id": 346, + "count": 4 + } + } + ], + "1211": [ + { + "inShape": [ + [ + null, + 983, + null + ], + [ + 983, + 833, + 983 + ], + [ + null, + 983, + null + ] + ], + "result": { + "id": 1211, + "count": 2 + } + } + ], + "1333": [ + { + "inShape": [ + [ + 836, + 1333, + 836 + ], + [ + 836, + 308, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1333, + "count": 2 + } + } + ], + "805": [ + { + "inShape": [ + [ + 37, + null, + 37 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 805, + "count": 1 + } + } + ], + "737": [ + { + "inShape": [ + [ + 37, + 37 + ], + [ + 37, + 37 + ], + [ + 37, + 37 + ] + ], + "result": { + "id": 737, + "count": 3 + } + } + ], + "326": [ + { + "inShape": [ + [ + 37, + 879, + 37 + ], + [ + 37, + 879, + 37 + ] + ], + "result": { + "id": 326, + "count": 3 + } + } + ], + "778": [ + { + "inShape": [ + [ + 879, + 37, + 879 + ], + [ + 879, + 37, + 879 + ] + ], + "result": { + "id": 778, + "count": 1 + } + } + ], + "930": [ + { + "inShape": [ + [ + 371, + null, + 371 + ], + [ + 149, + 149, + 149 + ], + [ + 149, + 149, + 149 + ] + ], + "result": { + "id": 930, + "count": 6 + } + } + ], + "724": [ + { + "inShape": [ + [ + 37, + 37 + ] + ], + "result": { + "id": 724, + "count": 1 + } + } + ], + "918": [ + { + "inShape": [ + [ + 37, + 37, + 37 + ], + [ + 37, + 37, + 37 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 918, + "count": 3 + } + } + ], + "265": [ + { + "inShape": [ + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 265, + "count": 6 + } + } + ], + "406": [ + { + "inShape": [ + [ + 37, + null, + null + ], + [ + 37, + 37, + null + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 406, + "count": 4 + } + } + ], + "758": [ + { + "inShape": [ + [ + 37, + 37, + 37 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 758, + "count": 2 + } + } + ], + "172": [ + { + "inShape": [ + [ + 135, + 135 + ], + [ + 135, + 135 + ] + ], + "result": { + "id": 172, + "count": 3 + } + } + ], + "982": [ + { + "inShape": [ + [ + 840 + ], + [ + 844 + ], + [ + 844 + ] + ], + "result": { + "id": 982, + "count": 1 + } + } + ], + "879": [ + { + "inShape": [ + [ + 43 + ], + [ + 43 + ] + ], + "result": { + "id": 879, + "count": 4 + } + }, + { + "inShape": [ + [ + 41 + ], + [ + 41 + ] + ], + "result": { + "id": 879, + "count": 4 + } + }, + { + "inShape": [ + [ + 45 + ], + [ + 45 + ] + ], + "result": { + "id": 879, + "count": 4 + } + }, + { + "inShape": [ + [ + 44 + ], + [ + 44 + ] + ], + "result": { + "id": 879, + "count": 4 + } + }, + { + "inShape": [ + [ + 47 + ], + [ + 47 + ] + ], + "result": { + "id": 879, + "count": 4 + } + }, + { + "inShape": [ + [ + 46 + ], + [ + 46 + ] + ], + "result": { + "id": 879, + "count": 4 + } + }, + { + "inShape": [ + [ + 42 + ], + [ + 42 + ] + ], + "result": { + "id": 879, + "count": 4 + } + }, + { + "inShape": [ + [ + 40 + ], + [ + 40 + ] + ], + "result": { + "id": 879, + "count": 4 + } + }, + { + "inShape": [ + [ + 39 + ], + [ + 39 + ] + ], + "result": { + "id": 879, + "count": 4 + } + }, + { + "inShape": [ + [ + 38 + ], + [ + 38 + ] + ], + "result": { + "id": 879, + "count": 4 + } + }, + { + "inShape": [ + [ + 37 + ], + [ + 37 + ] + ], + "result": { + "id": 879, + "count": 4 + } + }, + { + "inShape": [ + [ + 36 + ], + [ + 36 + ] + ], + "result": { + "id": 879, + "count": 4 + } + }, + { + "inShape": [ + [ + 263 + ], + [ + 263 + ] + ], + "result": { + "id": 879, + "count": 1 + } + } + ], + "686": [ + { + "inShape": [ + [ + 959 + ], + [ + 685 + ] + ], + "result": { + "id": 686, + "count": 1 + } + } + ], + "857": [ + { + "inShape": [ + [ + 9, + 9 + ], + [ + 9, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 857, + "count": 1 + } + }, + { + "inShape": [ + [ + 1281, + 1281 + ], + [ + 1281, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 857, + "count": 1 + } + }, + { + "inShape": [ + [ + 35, + 35 + ], + [ + 35, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 857, + "count": 1 + } + } + ], + "284": [ + { + "inShape": [ + [ + 355, + 355, + 355 + ] + ], + "result": { + "id": 284, + "count": 6 + } + } + ], + "384": [ + { + "inShape": [ + [ + 355, + null, + null + ], + [ + 355, + 355, + null + ], + [ + 355, + 355, + 355 + ] + ], + "result": { + "id": 384, + "count": 4 + } + } + ], + "427": [ + { + "inShape": [ + [ + 355, + 355, + 355 + ], + [ + 355, + 355, + 355 + ] + ], + "result": { + "id": 427, + "count": 6 + } + } + ], + "355": [ + { + "inShape": [ + [ + 1, + 1 + ], + [ + 1, + 1 + ] + ], + "result": { + "id": 355, + "count": 4 + } + } + ], + "858": [ + { + "inShape": [ + [ + 9, + 9 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 858, + "count": 1 + } + }, + { + "inShape": [ + [ + 1281, + 1281 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 858, + "count": 1 + } + }, + { + "inShape": [ + [ + 35, + 35 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 858, + "count": 1 + } + } + ], + "856": [ + { + "inShape": [ + [ + 9, + 9, + 9 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 856, + "count": 1 + } + }, + { + "inShape": [ + [ + 1281, + 1281, + 1281 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 856, + "count": 1 + } + }, + { + "inShape": [ + [ + 35, + 35, + 35 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 856, + "count": 1 + } + } + ], + "719": [ + { + "inShape": [ + [ + 1, + 1 + ] + ], + "result": { + "id": 719, + "count": 1 + } + } + ], + "855": [ + { + "inShape": [ + [ + 9 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 855, + "count": 1 + } + }, + { + "inShape": [ + [ + 1281 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 855, + "count": 1 + } + }, + { + "inShape": [ + [ + 35 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 855, + "count": 1 + } + } + ], + "277": [ + { + "inShape": [ + [ + 1, + 1, + 1 + ] + ], + "result": { + "id": 277, + "count": 6 + } + } + ], + "650": [ + { + "inShape": [ + [ + 1, + null, + null + ], + [ + 1, + 1, + null + ], + [ + 1, + 1, + 1 + ] + ], + "result": { + "id": 650, + "count": 4 + } + } + ], + "854": [ + { + "inShape": [ + [ + 9 + ], + [ + 9 + ], + [ + 879 + ] + ], + "result": { + "id": 854, + "count": 1 + } + }, + { + "inShape": [ + [ + 1281 + ], + [ + 1281 + ], + [ + 879 + ] + ], + "result": { + "id": 854, + "count": 1 + } + }, + { + "inShape": [ + [ + 35 + ], + [ + 35 + ], + [ + 879 + ] + ], + "result": { + "id": 854, + "count": 1 + } + } + ], + "1265": [ + { + "inShape": [ + [ + null, + 842, + null + ], + [ + 1, + 1, + 1 + ] + ], + "result": { + "id": 1265, + "count": 1 + } + } + ], + "163": [ + { + "inShape": [ + [ + 152, + 152 + ], + [ + 152, + 152 + ] + ], + "result": { + "id": 163, + "count": 3 + } + } + ], + "161": [ + { + "inShape": [ + [ + 150, + 150 + ], + [ + 150, + 150 + ] + ], + "result": { + "id": 161, + "count": 3 + } + } + ], + "164": [ + { + "inShape": [ + [ + 153, + 153 + ], + [ + 153, + 153 + ] + ], + "result": { + "id": 164, + "count": 3 + } + } + ], + "168": [ + { + "inShape": [ + [ + 157, + 157 + ], + [ + 157, + 157 + ] + ], + "result": { + "id": 168, + "count": 3 + } + } + ], + "165": [ + { + "inShape": [ + [ + 154, + 154 + ], + [ + 154, + 154 + ] + ], + "result": { + "id": 165, + "count": 3 + } + } + ], + "162": [ + { + "inShape": [ + [ + 151, + 151 + ], + [ + 151, + 151 + ] + ], + "result": { + "id": 162, + "count": 3 + } + } + ], + "167": [ + { + "inShape": [ + [ + 156, + 156 + ], + [ + 156, + 156 + ] + ], + "result": { + "id": 167, + "count": 3 + } + } + ], + "159": [ + { + "inShape": [ + [ + 148, + 148 + ], + [ + 148, + 148 + ] + ], + "result": { + "id": 159, + "count": 3 + } + } + ], + "166": [ + { + "inShape": [ + [ + 155, + 155 + ], + [ + 155, + 155 + ] + ], + "result": { + "id": 166, + "count": 3 + } + } + ], + "160": [ + { + "inShape": [ + [ + 149, + 149 + ], + [ + 149, + 149 + ] + ], + "result": { + "id": 160, + "count": 3 + } + } + ], + "169": [ + { + "inShape": [ + [ + 158, + 158 + ], + [ + 158, + 158 + ] + ], + "result": { + "id": 169, + "count": 3 + } + } + ], + "694": [ + { + "inShape": [ + [ + null, + 680, + null + ], + [ + 680, + 468, + 680 + ], + [ + null, + 680, + null + ] + ], + "result": { + "id": 694, + "count": 1 + } + } + ], + "1330": [ + { + "inShape": [ + [ + 836, + 1330, + 836 + ], + [ + 836, + 526, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1330, + "count": 2 + } + } + ], + "196": [ + { + "inShape": [ + [ + null, + 840, + null + ], + [ + 840, + 195, + 840 + ], + [ + null, + 840, + null + ] + ], + "result": { + "id": 196, + "count": 2 + } + } + ], + "702": [ + { + "inShape": [ + [ + 883, + 62, + 883 + ], + [ + 62, + 883, + 62 + ], + [ + 883, + 62, + 883 + ] + ], + "result": { + "id": 702, + "count": 1 + } + }, + { + "inShape": [ + [ + 883, + 59, + 883 + ], + [ + 59, + 883, + 59 + ], + [ + 883, + 59, + 883 + ] + ], + "result": { + "id": 702, + "count": 1 + } + } + ], + "304": [ + { + "inShape": [ + [ + 835 + ], + [ + 879 + ] + ], + "result": { + "id": 304, + "count": 4 + } + }, + { + "inShape": [ + [ + 834 + ], + [ + 879 + ] + ], + "result": { + "id": 304, + "count": 4 + } + } + ], + "700": [ + { + "inShape": [ + [ + 842 + ], + [ + 879 + ], + [ + 43 + ] + ], + "result": { + "id": 700, + "count": 2 + } + }, + { + "inShape": [ + [ + 842 + ], + [ + 879 + ], + [ + 41 + ] + ], + "result": { + "id": 700, + "count": 2 + } + }, + { + "inShape": [ + [ + 842 + ], + [ + 879 + ], + [ + 45 + ] + ], + "result": { + "id": 700, + "count": 2 + } + }, + { + "inShape": [ + [ + 842 + ], + [ + 879 + ], + [ + 44 + ] + ], + "result": { + "id": 700, + "count": 2 + } + }, + { + "inShape": [ + [ + 842 + ], + [ + 879 + ], + [ + 47 + ] + ], + "result": { + "id": 700, + "count": 2 + } + }, + { + "inShape": [ + [ + 842 + ], + [ + 879 + ], + [ + 46 + ] + ], + "result": { + "id": 700, + "count": 2 + } + }, + { + "inShape": [ + [ + 842 + ], + [ + 879 + ], + [ + 42 + ] + ], + "result": { + "id": 700, + "count": 2 + } + }, + { + "inShape": [ + [ + 842 + ], + [ + 879 + ], + [ + 40 + ] + ], + "result": { + "id": 700, + "count": 2 + } + }, + { + "inShape": [ + [ + 842 + ], + [ + 879 + ], + [ + 39 + ] + ], + "result": { + "id": 700, + "count": 2 + } + }, + { + "inShape": [ + [ + 842 + ], + [ + 879 + ], + [ + 38 + ] + ], + "result": { + "id": 700, + "count": 2 + } + }, + { + "inShape": [ + [ + 842 + ], + [ + 879 + ], + [ + 37 + ] + ], + "result": { + "id": 700, + "count": 2 + } + }, + { + "inShape": [ + [ + 842 + ], + [ + 879 + ], + [ + 36 + ] + ], + "result": { + "id": 700, + "count": 2 + } + } + ], + "22": [ + { + "inShape": [ + [ + 21, + 21, + 21 + ] + ], + "result": { + "id": 22, + "count": 6 + } + } + ], + "23": [ + { + "inShape": [ + [ + 21, + null, + null + ], + [ + 21, + 21, + null + ], + [ + 21, + 21, + 21 + ] + ], + "result": { + "id": 23, + "count": 4 + } + } + ], + "24": [ + { + "inShape": [ + [ + 21, + 21, + 21 + ], + [ + 21, + 21, + 21 + ] + ], + "result": { + "id": 24, + "count": 6 + } + } + ], + "21": [ + { + "inShape": [ + [ + 17, + 17 + ], + [ + 17, + 17 + ] + ], + "result": { + "id": 21, + "count": 4 + } + } + ], + "13": [ + { + "inShape": [ + [ + 12, + 12, + 12 + ] + ], + "result": { + "id": 13, + "count": 6 + } + } + ], + "14": [ + { + "inShape": [ + [ + 12, + null, + null + ], + [ + 12, + 12, + null + ], + [ + 12, + 12, + 12 + ] + ], + "result": { + "id": 14, + "count": 4 + } + } + ], + "15": [ + { + "inShape": [ + [ + 12, + 12, + 12 + ], + [ + 12, + 12, + 12 + ] + ], + "result": { + "id": 15, + "count": 6 + } + } + ], + "825": [ + { + "inShape": [ + [ + 826, + 826, + 826 + ], + [ + 826, + null, + 826 + ] + ], + "result": { + "id": 825, + "count": 1 + } + } + ], + "1329": [ + { + "inShape": [ + [ + 836, + 1329, + 836 + ], + [ + 836, + 35, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1329, + "count": 2 + } + } + ], + "1327": [ + { + "inShape": [ + [ + 836, + 1327, + 836 + ], + [ + 836, + 9, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1327, + "count": 2 + } + } + ], + "747": [ + { + "inShape": [ + [ + 47, + 47 + ], + [ + 47, + 47 + ], + [ + 47, + 47 + ] + ], + "result": { + "id": 747, + "count": 3 + } + } + ], + "336": [ + { + "inShape": [ + [ + 47, + 879, + 47 + ], + [ + 47, + 879, + 47 + ] + ], + "result": { + "id": 336, + "count": 3 + } + } + ], + "788": [ + { + "inShape": [ + [ + 879, + 47, + 879 + ], + [ + 879, + 47, + 879 + ] + ], + "result": { + "id": 788, + "count": 1 + } + } + ], + "800": [ + { + "inShape": [ + [ + 980, + null + ], + [ + null, + 246 + ] + ], + "result": { + "id": 800, + "count": 1 + } + } + ], + "940": [ + { + "inShape": [ + [ + 371, + null, + 371 + ], + [ + 158, + 158, + 158 + ], + [ + 158, + 158, + 158 + ] + ], + "result": { + "id": 940, + "count": 6 + } + } + ], + "181": [ + { + "inShape": [ + [ + 146, + 146 + ], + [ + 146, + 146 + ] + ], + "result": { + "id": 181, + "count": 3 + } + } + ], + "734": [ + { + "inShape": [ + [ + 47, + 47 + ] + ], + "result": { + "id": 734, + "count": 1 + } + } + ], + "928": [ + { + "inShape": [ + [ + 47, + 47, + 47 + ], + [ + 47, + 47, + 47 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 928, + "count": 3 + } + } + ], + "276": [ + { + "inShape": [ + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 276, + "count": 6 + } + } + ], + "417": [ + { + "inShape": [ + [ + 47, + null, + null + ], + [ + 47, + 47, + null + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 417, + "count": 4 + } + } + ], + "768": [ + { + "inShape": [ + [ + 47, + 47, + 47 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 768, + "count": 2 + } + } + ], + "118": [ + { + "inShape": [ + [ + 130 + ], + [ + 130 + ] + ], + "result": { + "id": 118, + "count": 1 + } + }, + { + "ingredients": [ + 98, + 1274 + ], + "result": { + "id": 118, + "count": 1 + } + } + ], + "1376": [ + { + "inShape": [ + [ + null, + 114, + null + ], + [ + 114, + 1043, + 114 + ], + [ + null, + 680, + null + ] + ], + "result": { + "id": 1376, + "count": 4 + } + }, + { + "ingredients": [ + 1372, + 1274 + ], + "result": { + "id": 1376, + "count": 1 + } + } + ], + "1368": [ + { + "inShape": [ + [ + null, + 114, + null + ], + [ + 114, + null, + 114 + ], + [ + null, + 114, + null + ] + ], + "result": { + "id": 1368, + "count": 4 + } + }, + { + "ingredients": [ + 1364, + 1274 + ], + "result": { + "id": 1368, + "count": 1 + } + } + ], + "122": [ + { + "inShape": [ + [ + 114, + 114 + ], + [ + 114, + 114 + ] + ], + "result": { + "id": 122, + "count": 4 + } + }, + { + "ingredients": [ + 102, + 1274 + ], + "result": { + "id": 122, + "count": 1 + } + } + ], + "130": [ + { + "inShape": [ + [ + 122, + 122, + 122 + ] + ], + "result": { + "id": 130, + "count": 6 + } + }, + { + "ingredients": [ + 110, + 1274 + ], + "result": { + "id": 130, + "count": 1 + } + } + ], + "126": [ + { + "inShape": [ + [ + 122, + null, + null + ], + [ + 122, + 122, + null + ], + [ + 122, + 122, + 122 + ] + ], + "result": { + "id": 126, + "count": 4 + } + }, + { + "ingredients": [ + 106, + 1274 + ], + "result": { + "id": 126, + "count": 1 + } + } + ], + "119": [ + { + "inShape": [ + [ + 131 + ], + [ + 131 + ] + ], + "result": { + "id": 119, + "count": 1 + } + }, + { + "ingredients": [ + 99, + 1274 + ], + "result": { + "id": 119, + "count": 1 + } + } + ], + "1377": [ + { + "inShape": [ + [ + null, + 115, + null + ], + [ + 115, + 1043, + 115 + ], + [ + null, + 680, + null + ] + ], + "result": { + "id": 1377, + "count": 4 + } + }, + { + "ingredients": [ + 1373, + 1274 + ], + "result": { + "id": 1377, + "count": 1 + } + } + ], + "1369": [ + { + "inShape": [ + [ + null, + 115, + null + ], + [ + 115, + null, + 115 + ], + [ + null, + 115, + null + ] + ], + "result": { + "id": 1369, + "count": 4 + } + }, + { + "ingredients": [ + 1365, + 1274 + ], + "result": { + "id": 1369, + "count": 1 + } + } + ], + "123": [ + { + "inShape": [ + [ + 115, + 115 + ], + [ + 115, + 115 + ] + ], + "result": { + "id": 123, + "count": 4 + } + }, + { + "ingredients": [ + 103, + 1274 + ], + "result": { + "id": 123, + "count": 1 + } + } + ], + "131": [ + { + "inShape": [ + [ + 123, + 123, + 123 + ] + ], + "result": { + "id": 131, + "count": 6 + } + }, + { + "ingredients": [ + 111, + 1274 + ], + "result": { + "id": 131, + "count": 1 + } + } + ], + "127": [ + { + "inShape": [ + [ + 123, + null, + null + ], + [ + 123, + 123, + null + ], + [ + 123, + 123, + 123 + ] + ], + "result": { + "id": 127, + "count": 4 + } + }, + { + "ingredients": [ + 107, + 1274 + ], + "result": { + "id": 127, + "count": 1 + } + } + ], + "121": [ + { + "inShape": [ + [ + 133 + ], + [ + 133 + ] + ], + "result": { + "id": 121, + "count": 1 + } + }, + { + "ingredients": [ + 101, + 1274 + ], + "result": { + "id": 121, + "count": 1 + } + } + ], + "1379": [ + { + "inShape": [ + [ + null, + 117, + null + ], + [ + 117, + 1043, + 117 + ], + [ + null, + 680, + null + ] + ], + "result": { + "id": 1379, + "count": 4 + } + }, + { + "ingredients": [ + 1375, + 1274 + ], + "result": { + "id": 1379, + "count": 1 + } + } + ], + "1371": [ + { + "inShape": [ + [ + null, + 117, + null + ], + [ + 117, + null, + 117 + ], + [ + null, + 117, + null + ] + ], + "result": { + "id": 1371, + "count": 4 + } + }, + { + "ingredients": [ + 1367, + 1274 + ], + "result": { + "id": 1371, + "count": 1 + } + } + ], + "125": [ + { + "inShape": [ + [ + 117, + 117 + ], + [ + 117, + 117 + ] + ], + "result": { + "id": 125, + "count": 4 + } + }, + { + "ingredients": [ + 105, + 1274 + ], + "result": { + "id": 125, + "count": 1 + } + } + ], + "133": [ + { + "inShape": [ + [ + 125, + 125, + 125 + ] + ], + "result": { + "id": 133, + "count": 6 + } + }, + { + "ingredients": [ + 113, + 1274 + ], + "result": { + "id": 133, + "count": 1 + } + } + ], + "129": [ + { + "inShape": [ + [ + 125, + null, + null + ], + [ + 125, + 125, + null + ], + [ + 125, + 125, + 125 + ] + ], + "result": { + "id": 129, + "count": 4 + } + }, + { + "ingredients": [ + 109, + 1274 + ], + "result": { + "id": 129, + "count": 1 + } + } + ], + "120": [ + { + "inShape": [ + [ + 132 + ], + [ + 132 + ] + ], + "result": { + "id": 120, + "count": 1 + } + }, + { + "ingredients": [ + 100, + 1274 + ], + "result": { + "id": 120, + "count": 1 + } + } + ], + "1378": [ + { + "inShape": [ + [ + null, + 116, + null + ], + [ + 116, + 1043, + 116 + ], + [ + null, + 680, + null + ] + ], + "result": { + "id": 1378, + "count": 4 + } + }, + { + "ingredients": [ + 1374, + 1274 + ], + "result": { + "id": 1378, + "count": 1 + } + } + ], + "1370": [ + { + "inShape": [ + [ + null, + 116, + null + ], + [ + 116, + null, + 116 + ], + [ + null, + 116, + null + ] + ], + "result": { + "id": 1370, + "count": 4 + } + }, + { + "ingredients": [ + 1366, + 1274 + ], + "result": { + "id": 1370, + "count": 1 + } + } + ], + "124": [ + { + "inShape": [ + [ + 116, + 116 + ], + [ + 116, + 116 + ] + ], + "result": { + "id": 124, + "count": 4 + } + }, + { + "ingredients": [ + 104, + 1274 + ], + "result": { + "id": 124, + "count": 1 + } + } + ], + "132": [ + { + "inShape": [ + [ + 124, + 124, + 124 + ] + ], + "result": { + "id": 132, + "count": 6 + } + }, + { + "ingredients": [ + 112, + 1274 + ], + "result": { + "id": 132, + "count": 1 + } + } + ], + "128": [ + { + "inShape": [ + [ + 124, + null, + null + ], + [ + 124, + 124, + null + ], + [ + 124, + 124, + 124 + ] + ], + "result": { + "id": 128, + "count": 4 + } + }, + { + "ingredients": [ + 108, + 1274 + ], + "result": { + "id": 128, + "count": 1 + } + } + ], + "1334": [ + { + "inShape": [ + [ + 836, + 1334, + 836 + ], + [ + 836, + 485, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1334, + "count": 2 + } + } + ], + "100": [ + { + "inShape": [ + [ + 112 + ], + [ + 112 + ] + ], + "result": { + "id": 100, + "count": 1 + } + } + ], + "1374": [ + { + "inShape": [ + [ + null, + 96, + null + ], + [ + 96, + 1043, + 96 + ], + [ + null, + 680, + null + ] + ], + "result": { + "id": 1374, + "count": 4 + } + } + ], + "1366": [ + { + "inShape": [ + [ + null, + 96, + null + ], + [ + 96, + null, + 96 + ], + [ + null, + 96, + null + ] + ], + "result": { + "id": 1366, + "count": 4 + } + } + ], + "104": [ + { + "inShape": [ + [ + 96, + 96 + ], + [ + 96, + 96 + ] + ], + "result": { + "id": 104, + "count": 4 + } + } + ], + "112": [ + { + "inShape": [ + [ + 104, + 104, + 104 + ] + ], + "result": { + "id": 112, + "count": 6 + } + } + ], + "108": [ + { + "inShape": [ + [ + 104, + null, + null + ], + [ + 104, + 104, + null + ], + [ + 104, + 104, + 104 + ] + ], + "result": { + "id": 108, + "count": 4 + } + } + ], + "1185": [ + { + "inShape": [ + [ + 209, + 209, + 209 + ], + [ + 209, + 209, + 209 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1185, + "count": 1 + } + } + ], + "1013": [ + { + "inShape": [ + [ + 209, + 209, + 209 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1013, + "count": 1 + } + }, + { + "inShape": [ + [ + 209, + 209, + 209 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1013, + "count": 1 + } + }, + { + "inShape": [ + [ + 209, + 209, + 209 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1013, + "count": 1 + } + }, + { + "inShape": [ + [ + 209, + 209, + 209 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1013, + "count": 1 + } + }, + { + "inShape": [ + [ + 209, + 209, + 209 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1013, + "count": 1 + } + }, + { + "inShape": [ + [ + 209, + 209, + 209 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1013, + "count": 1 + } + }, + { + "inShape": [ + [ + 209, + 209, + 209 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1013, + "count": 1 + } + }, + { + "inShape": [ + [ + 209, + 209, + 209 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1013, + "count": 1 + } + }, + { + "inShape": [ + [ + 209, + 209, + 209 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1013, + "count": 1 + } + }, + { + "inShape": [ + [ + 209, + 209, + 209 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1013, + "count": 1 + } + }, + { + "inShape": [ + [ + 209, + 209, + 209 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1013, + "count": 1 + } + }, + { + "inShape": [ + [ + 209, + 209, + 209 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1013, + "count": 1 + } + }, + { + "ingredients": [ + 993, + 1028 + ], + "result": { + "id": 1013, + "count": 1 + } + } + ], + "469": [ + { + "inShape": [ + [ + 209, + 209 + ] + ], + "result": { + "id": 469, + "count": 3 + } + }, + { + "ingredients": [ + 993, + 484 + ], + "result": { + "id": 469, + "count": 1 + } + } + ], + "494": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 993, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 494, + "count": 8 + } + } + ], + "510": [ + { + "inShape": [ + [ + 494, + 494, + 494 + ], + [ + 494, + 494, + 494 + ] + ], + "result": { + "id": 510, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 993, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 510, + "count": 8 + } + } + ], + "450": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 993, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 450, + "count": 8 + } + } + ], + "209": [ + { + "inShape": [ + [ + 881, + 881 + ], + [ + 881, + 881 + ] + ], + "result": { + "id": 209, + "count": 1 + } + }, + { + "ingredients": [ + 993, + 224 + ], + "result": { + "id": 209, + "count": 1 + } + } + ], + "1326": [ + { + "inShape": [ + [ + 836, + 1326, + 836 + ], + [ + 836, + 302, + 836 + ], + [ + 836, + 836, + 836 + ] + ], + "result": { + "id": 1326, + "count": 2 + } + } + ], + "828": [ + { + "inShape": [ + [ + 827, + null, + null + ], + [ + 827, + 827, + 827 + ], + [ + 827, + null, + 827 + ] + ], + "result": { + "id": 828, + "count": 1 + } + } + ], + "852": [ + { + "inShape": [ + [ + 43, + 43 + ], + [ + 43, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 852, + "count": 1 + } + }, + { + "inShape": [ + [ + 41, + 41 + ], + [ + 41, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 852, + "count": 1 + } + }, + { + "inShape": [ + [ + 45, + 45 + ], + [ + 45, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 852, + "count": 1 + } + }, + { + "inShape": [ + [ + 44, + 44 + ], + [ + 44, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 852, + "count": 1 + } + }, + { + "inShape": [ + [ + 47, + 47 + ], + [ + 47, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 852, + "count": 1 + } + }, + { + "inShape": [ + [ + 46, + 46 + ], + [ + 46, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 852, + "count": 1 + } + }, + { + "inShape": [ + [ + 42, + 42 + ], + [ + 42, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 852, + "count": 1 + } + }, + { + "inShape": [ + [ + 40, + 40 + ], + [ + 40, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 852, + "count": 1 + } + }, + { + "inShape": [ + [ + 39, + 39 + ], + [ + 39, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 852, + "count": 1 + } + }, + { + "inShape": [ + [ + 38, + 38 + ], + [ + 38, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 852, + "count": 1 + } + }, + { + "inShape": [ + [ + 37, + 37 + ], + [ + 37, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 852, + "count": 1 + } + }, + { + "inShape": [ + [ + 36, + 36 + ], + [ + 36, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 852, + "count": 1 + } + } + ], + "853": [ + { + "inShape": [ + [ + 43, + 43 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 853, + "count": 1 + } + }, + { + "inShape": [ + [ + 41, + 41 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 853, + "count": 1 + } + }, + { + "inShape": [ + [ + 45, + 45 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 853, + "count": 1 + } + }, + { + "inShape": [ + [ + 44, + 44 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 853, + "count": 1 + } + }, + { + "inShape": [ + [ + 47, + 47 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 853, + "count": 1 + } + }, + { + "inShape": [ + [ + 46, + 46 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 853, + "count": 1 + } + }, + { + "inShape": [ + [ + 42, + 42 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 853, + "count": 1 + } + }, + { + "inShape": [ + [ + 40, + 40 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 853, + "count": 1 + } + }, + { + "inShape": [ + [ + 39, + 39 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 853, + "count": 1 + } + }, + { + "inShape": [ + [ + 38, + 38 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 853, + "count": 1 + } + }, + { + "inShape": [ + [ + 37, + 37 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 853, + "count": 1 + } + }, + { + "inShape": [ + [ + 36, + 36 + ], + [ + null, + 879 + ], + [ + null, + 879 + ] + ], + "result": { + "id": 853, + "count": 1 + } + } + ], + "851": [ + { + "inShape": [ + [ + 43, + 43, + 43 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 851, + "count": 1 + } + }, + { + "inShape": [ + [ + 41, + 41, + 41 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 851, + "count": 1 + } + }, + { + "inShape": [ + [ + 45, + 45, + 45 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 851, + "count": 1 + } + }, + { + "inShape": [ + [ + 44, + 44, + 44 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 851, + "count": 1 + } + }, + { + "inShape": [ + [ + 47, + 47, + 47 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 851, + "count": 1 + } + }, + { + "inShape": [ + [ + 46, + 46, + 46 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 851, + "count": 1 + } + }, + { + "inShape": [ + [ + 42, + 42, + 42 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 851, + "count": 1 + } + }, + { + "inShape": [ + [ + 40, + 40, + 40 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 851, + "count": 1 + } + }, + { + "inShape": [ + [ + 39, + 39, + 39 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 851, + "count": 1 + } + }, + { + "inShape": [ + [ + 38, + 38, + 38 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 851, + "count": 1 + } + }, + { + "inShape": [ + [ + 37, + 37, + 37 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 851, + "count": 1 + } + }, + { + "inShape": [ + [ + 36, + 36, + 36 + ], + [ + null, + 879, + null + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 851, + "count": 1 + } + } + ], + "850": [ + { + "inShape": [ + [ + 43 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 850, + "count": 1 + } + }, + { + "inShape": [ + [ + 41 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 850, + "count": 1 + } + }, + { + "inShape": [ + [ + 45 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 850, + "count": 1 + } + }, + { + "inShape": [ + [ + 44 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 850, + "count": 1 + } + }, + { + "inShape": [ + [ + 47 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 850, + "count": 1 + } + }, + { + "inShape": [ + [ + 46 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 850, + "count": 1 + } + }, + { + "inShape": [ + [ + 42 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 850, + "count": 1 + } + }, + { + "inShape": [ + [ + 40 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 850, + "count": 1 + } + }, + { + "inShape": [ + [ + 39 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 850, + "count": 1 + } + }, + { + "inShape": [ + [ + 38 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 850, + "count": 1 + } + }, + { + "inShape": [ + [ + 37 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 850, + "count": 1 + } + }, + { + "inShape": [ + [ + 36 + ], + [ + 879 + ], + [ + 879 + ] + ], + "result": { + "id": 850, + "count": 1 + } + } + ], + "849": [ + { + "inShape": [ + [ + 43 + ], + [ + 43 + ], + [ + 879 + ] + ], + "result": { + "id": 849, + "count": 1 + } + }, + { + "inShape": [ + [ + 41 + ], + [ + 41 + ], + [ + 879 + ] + ], + "result": { + "id": 849, + "count": 1 + } + }, + { + "inShape": [ + [ + 45 + ], + [ + 45 + ], + [ + 879 + ] + ], + "result": { + "id": 849, + "count": 1 + } + }, + { + "inShape": [ + [ + 44 + ], + [ + 44 + ], + [ + 879 + ] + ], + "result": { + "id": 849, + "count": 1 + } + }, + { + "inShape": [ + [ + 47 + ], + [ + 47 + ], + [ + 879 + ] + ], + "result": { + "id": 849, + "count": 1 + } + }, + { + "inShape": [ + [ + 46 + ], + [ + 46 + ], + [ + 879 + ] + ], + "result": { + "id": 849, + "count": 1 + } + }, + { + "inShape": [ + [ + 42 + ], + [ + 42 + ], + [ + 879 + ] + ], + "result": { + "id": 849, + "count": 1 + } + }, + { + "inShape": [ + [ + 40 + ], + [ + 40 + ], + [ + 879 + ] + ], + "result": { + "id": 849, + "count": 1 + } + }, + { + "inShape": [ + [ + 39 + ], + [ + 39 + ], + [ + 879 + ] + ], + "result": { + "id": 849, + "count": 1 + } + }, + { + "inShape": [ + [ + 38 + ], + [ + 38 + ], + [ + 879 + ] + ], + "result": { + "id": 849, + "count": 1 + } + }, + { + "inShape": [ + [ + 37 + ], + [ + 37 + ], + [ + 879 + ] + ], + "result": { + "id": 849, + "count": 1 + } + }, + { + "inShape": [ + [ + 36 + ], + [ + 36 + ], + [ + 879 + ] + ], + "result": { + "id": 849, + "count": 1 + } + } + ], + "1189": [ + { + "inShape": [ + [ + 213, + 213, + 213 + ], + [ + 213, + 213, + 213 + ], + [ + null, + 879, + null + ] + ], + "result": { + "id": 1189, + "count": 1 + } + } + ], + "1017": [ + { + "inShape": [ + [ + 213, + 213, + 213 + ], + [ + 43, + 43, + 43 + ] + ], + "result": { + "id": 1017, + "count": 1 + } + }, + { + "inShape": [ + [ + 213, + 213, + 213 + ], + [ + 41, + 41, + 41 + ] + ], + "result": { + "id": 1017, + "count": 1 + } + }, + { + "inShape": [ + [ + 213, + 213, + 213 + ], + [ + 45, + 45, + 45 + ] + ], + "result": { + "id": 1017, + "count": 1 + } + }, + { + "inShape": [ + [ + 213, + 213, + 213 + ], + [ + 44, + 44, + 44 + ] + ], + "result": { + "id": 1017, + "count": 1 + } + }, + { + "inShape": [ + [ + 213, + 213, + 213 + ], + [ + 47, + 47, + 47 + ] + ], + "result": { + "id": 1017, + "count": 1 + } + }, + { + "inShape": [ + [ + 213, + 213, + 213 + ], + [ + 46, + 46, + 46 + ] + ], + "result": { + "id": 1017, + "count": 1 + } + }, + { + "inShape": [ + [ + 213, + 213, + 213 + ], + [ + 42, + 42, + 42 + ] + ], + "result": { + "id": 1017, + "count": 1 + } + }, + { + "inShape": [ + [ + 213, + 213, + 213 + ], + [ + 40, + 40, + 40 + ] + ], + "result": { + "id": 1017, + "count": 1 + } + }, + { + "inShape": [ + [ + 213, + 213, + 213 + ], + [ + 39, + 39, + 39 + ] + ], + "result": { + "id": 1017, + "count": 1 + } + }, + { + "inShape": [ + [ + 213, + 213, + 213 + ], + [ + 38, + 38, + 38 + ] + ], + "result": { + "id": 1017, + "count": 1 + } + }, + { + "inShape": [ + [ + 213, + 213, + 213 + ], + [ + 37, + 37, + 37 + ] + ], + "result": { + "id": 1017, + "count": 1 + } + }, + { + "inShape": [ + [ + 213, + 213, + 213 + ], + [ + 36, + 36, + 36 + ] + ], + "result": { + "id": 1017, + "count": 1 + } + }, + { + "ingredients": [ + 997, + 1028 + ], + "result": { + "id": 1017, + "count": 1 + } + } + ], + "473": [ + { + "inShape": [ + [ + 213, + 213 + ] + ], + "result": { + "id": 473, + "count": 3 + } + }, + { + "ingredients": [ + 997, + 484 + ], + "result": { + "id": 473, + "count": 1 + } + } + ], + "498": [ + { + "inShape": [ + [ + 195, + 195, + 195 + ], + [ + 195, + 997, + 195 + ], + [ + 195, + 195, + 195 + ] + ], + "result": { + "id": 498, + "count": 8 + } + } + ], + "514": [ + { + "inShape": [ + [ + 498, + 498, + 498 + ], + [ + 498, + 498, + 498 + ] + ], + "result": { + "id": 514, + "count": 16 + } + }, + { + "inShape": [ + [ + 372, + 372, + 372 + ], + [ + 372, + 997, + 372 + ], + [ + 372, + 372, + 372 + ] + ], + "result": { + "id": 514, + "count": 8 + } + } + ], + "454": [ + { + "inShape": [ + [ + 485, + 485, + 485 + ], + [ + 485, + 997, + 485 + ], + [ + 485, + 485, + 485 + ] + ], + "result": { + "id": 454, + "count": 8 + } + } + ], + "1034": [ + { + "ingredients": [ + 956 + ], + "result": { + "id": 1034, + "count": 9 + } + } + ], + "2": [ + { + "ingredients": [ + 4, + 839 + ], + "result": { + "id": 2, + "count": 1 + } + } + ], + "1035": [ + { + "ingredients": [ + 337 + ], + "result": { + "id": 1035, + "count": 4 + } + } + ], + "1036": [ + { + "ingredients": [ + 1033 + ], + "result": { + "id": 1036, + "count": 1 + } + } + ], + "6": [ + { + "ingredients": [ + 4, + 35 + ], + "result": { + "id": 6, + "count": 2 + } + } + ], + "527": [ + { + "ingredients": [ + 1168, + 1168, + 1168, + 1168, + 1168, + 1168, + 1168, + 1168, + 1168 + ], + "result": { + "id": 527, + "count": 1 + } + } + ], + "1045": [ + { + "ingredients": [ + 846 + ], + "result": { + "id": 1045, + "count": 9 + } + } + ], + "1050": [ + { + "ingredients": [ + 1049, + 243, + 1011 + ], + "result": { + "id": 1050, + "count": 1 + } + } + ], + "1051": [ + { + "ingredients": [ + 1043 + ], + "result": { + "id": 1051, + "count": 2 + } + } + ], + "1052": [ + { + "ingredients": [ + 1051, + 959 + ], + "result": { + "id": 1052, + "count": 1 + } + } + ], + "540": [ + { + "ingredients": [ + 1046, + 1046, + 1046, + 1046, + 1046, + 1046, + 1046, + 1046, + 1046 + ], + "result": { + "id": 540, + "count": 1 + } + } + ], + "1055": [ + { + "ingredients": [ + 1042, + 1051 + ], + "result": { + "id": 1055, + "count": 1 + } + } + ], + "36": [ + { + "ingredients": [ + 134 + ], + "result": { + "id": 36, + "count": 4 + } + } + ], + "37": [ + { + "ingredients": [ + 135 + ], + "result": { + "id": 37, + "count": 4 + } + } + ], + "38": [ + { + "ingredients": [ + 136 + ], + "result": { + "id": 38, + "count": 4 + } + } + ], + "39": [ + { + "ingredients": [ + 137 + ], + "result": { + "id": 39, + "count": 4 + } + } + ], + "40": [ + { + "ingredients": [ + 138 + ], + "result": { + "id": 40, + "count": 4 + } + } + ], + "41": [ + { + "ingredients": [ + 139 + ], + "result": { + "id": 41, + "count": 4 + } + } + ], + "42": [ + { + "ingredients": [ + 141 + ], + "result": { + "id": 42, + "count": 4 + } + } + ], + "43": [ + { + "ingredients": [ + 140 + ], + "result": { + "id": 43, + "count": 4 + } + } + ], + "44": [ + { + "ingredients": [ + 142 + ], + "result": { + "id": 44, + "count": 4 + } + } + ], + "45": [ + { + "ingredients": [ + 147 + ], + "result": { + "id": 45, + "count": 2 + } + } + ], + "46": [ + { + "ingredients": [ + 145 + ], + "result": { + "id": 46, + "count": 4 + } + } + ], + "47": [ + { + "ingredients": [ + 146 + ], + "result": { + "id": 47, + "count": 4 + } + } + ], + "594": [ + { + "ingredients": [ + 993, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 594, + "count": 8 + } + } + ], + "595": [ + { + "ingredients": [ + 994, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 595, + "count": 8 + } + } + ], + "596": [ + { + "ingredients": [ + 995, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 596, + "count": 8 + } + } + ], + "597": [ + { + "ingredients": [ + 996, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 597, + "count": 8 + } + } + ], + "598": [ + { + "ingredients": [ + 997, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 598, + "count": 8 + } + } + ], + "599": [ + { + "ingredients": [ + 998, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 599, + "count": 8 + } + } + ], + "600": [ + { + "ingredients": [ + 999, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 600, + "count": 8 + } + } + ], + "601": [ + { + "ingredients": [ + 1000, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 601, + "count": 8 + } + } + ], + "602": [ + { + "ingredients": [ + 1001, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 602, + "count": 8 + } + } + ], + "603": [ + { + "ingredients": [ + 1002, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 603, + "count": 8 + } + } + ], + "604": [ + { + "ingredients": [ + 1003, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 604, + "count": 8 + } + } + ], + "605": [ + { + "ingredients": [ + 1004, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 605, + "count": 8 + } + } + ], + "606": [ + { + "ingredients": [ + 1005, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 606, + "count": 8 + } + } + ], + "607": [ + { + "ingredients": [ + 1006, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 607, + "count": 8 + } + } + ], + "608": [ + { + "ingredients": [ + 1007, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 608, + "count": 8 + } + } + ], + "609": [ + { + "ingredients": [ + 1008, + 59, + 59, + 59, + 59, + 63, + 63, + 63, + 63 + ], + "result": { + "id": 609, + "count": 8 + } + } + ], + "1139": [ + { + "ingredients": [ + 883, + 1051, + 834 + ], + "result": { + "id": 1139, + "count": 3 + } + } + ], + "1140": [ + { + "ingredients": [ + 1143 + ], + "result": { + "id": 1140, + "count": 4 + } + } + ], + "1141": [ + { + "ingredients": [ + 958, + 990, + 882 + ], + "result": { + "id": 1141, + "count": 1 + } + } + ], + "1146": [ + { + "ingredients": [ + 1145, + 991 + ], + "result": { + "id": 1146, + "count": 1 + } + } + ], + "114": [ + { + "ingredients": [ + 91, + 1274 + ], + "result": { + "id": 114, + "count": 1 + } + } + ], + "115": [ + { + "ingredients": [ + 95, + 1274 + ], + "result": { + "id": 115, + "count": 1 + } + } + ], + "116": [ + { + "ingredients": [ + 96, + 1274 + ], + "result": { + "id": 116, + "count": 1 + } + } + ], + "117": [ + { + "ingredients": [ + 97, + 1274 + ], + "result": { + "id": 117, + "count": 1 + } + } + ], + "642": [ + { + "ingredients": [ + 486, + 486, + 486, + 486, + 486, + 486, + 486, + 486, + 486 + ], + "result": { + "id": 642, + "count": 1 + } + } + ], + "1162": [ + { + "ingredients": [ + 337, + 1011, + 960 + ], + "result": { + "id": 1162, + "count": 1 + } + } + ], + "1163": [ + { + "ingredients": [ + 883, + 957 + ], + "result": { + "id": 1163, + "count": 3 + } + } + ], + "1172": [ + { + "ingredients": [ + 1150, + 1171, + 830, + 1148, + 243 + ], + "result": { + "id": 1172, + "count": 1 + } + }, + { + "ingredients": [ + 1150, + 1171, + 830, + 1148, + 244 + ], + "result": { + "id": 1172, + "count": 1 + } + } + ], + "144": [ + { + "ingredients": [ + 32, + 143 + ], + "result": { + "id": 144, + "count": 1 + } + } + ], + "147": [ + { + "ingredients": [ + 263, + 263, + 263, + 263, + 263, + 263, + 263, + 263, + 263 + ], + "result": { + "id": 147, + "count": 1 + } + } + ], + "680": [ + { + "ingredients": [ + 682 + ], + "result": { + "id": 680, + "count": 9 + } + } + ], + "1208": [ + { + "ingredients": [ + 830, + 1206, + 1206, + 1206, + 1206, + 1206, + 1206 + ], + "result": { + "id": 1208, + "count": 1 + } + } + ], + "701": [ + { + "ingredients": [ + 313, + 700 + ], + "result": { + "id": 701, + "count": 1 + } + } + ], + "1217": [ + { + "ingredients": [ + 842 + ], + "result": { + "id": 1217, + "count": 9 + } + } + ], + "705": [ + { + "ingredients": [ + 1 + ], + "result": { + "id": 705, + "count": 1 + } + } + ], + "706": [ + { + "ingredients": [ + 1285 + ], + "result": { + "id": 706, + "count": 1 + } + } + ], + "707": [ + { + "ingredients": [ + 36 + ], + "result": { + "id": 707, + "count": 1 + } + } + ], + "708": [ + { + "ingredients": [ + 37 + ], + "result": { + "id": 708, + "count": 1 + } + } + ], + "709": [ + { + "ingredients": [ + 38 + ], + "result": { + "id": 709, + "count": 1 + } + } + ], + "710": [ + { + "ingredients": [ + 39 + ], + "result": { + "id": 710, + "count": 1 + } + } + ], + "711": [ + { + "ingredients": [ + 40 + ], + "result": { + "id": 711, + "count": 1 + } + } + ], + "712": [ + { + "ingredients": [ + 41 + ], + "result": { + "id": 712, + "count": 1 + } + } + ], + "713": [ + { + "ingredients": [ + 42 + ], + "result": { + "id": 713, + "count": 1 + } + } + ], + "714": [ + { + "ingredients": [ + 43 + ], + "result": { + "id": 714, + "count": 1 + } + } + ], + "715": [ + { + "ingredients": [ + 44 + ], + "result": { + "id": 715, + "count": 1 + } + } + ], + "716": [ + { + "ingredients": [ + 45 + ], + "result": { + "id": 716, + "count": 1 + } + } + ], + "717": [ + { + "ingredients": [ + 46 + ], + "result": { + "id": 717, + "count": 1 + } + } + ], + "718": [ + { + "ingredients": [ + 47 + ], + "result": { + "id": 718, + "count": 1 + } + } + ], + "1236": [ + { + "ingredients": [ + 1239, + 1239, + 1239, + 1239, + 1239, + 1239, + 1239, + 1239, + 1239 + ], + "result": { + "id": 1236, + "count": 1 + } + } + ], + "210": [ + { + "ingredients": [ + 994, + 224 + ], + "result": { + "id": 210, + "count": 1 + } + } + ], + "1244": [ + { + "ingredients": [ + 830, + 243, + 244, + 230 + ], + "result": { + "id": 1244, + "count": 1 + } + }, + { + "ingredients": [ + 830, + 243, + 244, + 231 + ], + "result": { + "id": 1244, + "count": 1 + } + }, + { + "ingredients": [ + 830, + 243, + 244, + 229 + ], + "result": { + "id": 1244, + "count": 1 + } + }, + { + "ingredients": [ + 830, + 243, + 244, + 237 + ], + "result": { + "id": 1244, + "count": 1 + } + }, + { + "ingredients": [ + 830, + 243, + 244, + 225 + ], + "result": { + "id": 1244, + "count": 1 + } + }, + { + "ingredients": [ + 830, + 243, + 244, + 238 + ], + "result": { + "id": 1244, + "count": 1 + } + }, + { + "ingredients": [ + 830, + 243, + 244, + 233 + ], + "result": { + "id": 1244, + "count": 1 + } + }, + { + "ingredients": [ + 830, + 243, + 244, + 236 + ], + "result": { + "id": 1244, + "count": 1 + } + }, + { + "ingredients": [ + 830, + 243, + 244, + 235 + ], + "result": { + "id": 1244, + "count": 1 + } + }, + { + "ingredients": [ + 830, + 243, + 244, + 228 + ], + "result": { + "id": 1244, + "count": 1 + } + }, + { + "ingredients": [ + 830, + 243, + 244, + 232 + ], + "result": { + "id": 1244, + "count": 1 + } + }, + { + "ingredients": [ + 830, + 243, + 244, + 240 + ], + "result": { + "id": 1244, + "count": 1 + } + }, + { + "ingredients": [ + 830, + 243, + 244, + 234 + ], + "result": { + "id": 1244, + "count": 1 + } + }, + { + "ingredients": [ + 830, + 243, + 244, + 239 + ], + "result": { + "id": 1244, + "count": 1 + } + } + ], + "211": [ + { + "ingredients": [ + 995, + 224 + ], + "result": { + "id": 211, + "count": 1 + } + } + ], + "212": [ + { + "ingredients": [ + 996, + 224 + ], + "result": { + "id": 212, + "count": 1 + } + } + ], + "1246": [ + { + "ingredients": [ + 957, + 236 + ], + "result": { + "id": 1246, + "count": 1 + } + } + ], + "1247": [ + { + "ingredients": [ + 957, + 1158 + ], + "result": { + "id": 1247, + "count": 1 + } + } + ], + "213": [ + { + "ingredients": [ + 997, + 224 + ], + "result": { + "id": 213, + "count": 1 + } + } + ], + "214": [ + { + "ingredients": [ + 998, + 224 + ], + "result": { + "id": 214, + "count": 1 + } + } + ], + "1248": [ + { + "ingredients": [ + 957, + 1155 + ], + "result": { + "id": 1248, + "count": 1 + } + } + ], + "215": [ + { + "ingredients": [ + 999, + 224 + ], + "result": { + "id": 215, + "count": 1 + } + } + ], + "1249": [ + { + "ingredients": [ + 957, + 916 + ], + "result": { + "id": 1249, + "count": 1 + } + } + ], + "216": [ + { + "ingredients": [ + 1000, + 224 + ], + "result": { + "id": 216, + "count": 1 + } + } + ], + "217": [ + { + "ingredients": [ + 1001, + 224 + ], + "result": { + "id": 217, + "count": 1 + } + } + ], + "218": [ + { + "ingredients": [ + 1002, + 224 + ], + "result": { + "id": 218, + "count": 1 + } + } + ], + "219": [ + { + "ingredients": [ + 1003, + 224 + ], + "result": { + "id": 219, + "count": 1 + } + } + ], + "220": [ + { + "ingredients": [ + 1004, + 224 + ], + "result": { + "id": 220, + "count": 1 + } + } + ], + "1254": [ + { + "ingredients": [ + 957, + 298 + ], + "result": { + "id": 1254, + "count": 1 + } + } + ], + "1255": [ + { + "ingredients": [ + 957, + 374 + ], + "result": { + "id": 1255, + "count": 1 + } + } + ], + "221": [ + { + "ingredients": [ + 1005, + 224 + ], + "result": { + "id": 221, + "count": 1 + } + } + ], + "222": [ + { + "ingredients": [ + 1006, + 224 + ], + "result": { + "id": 222, + "count": 1 + } + } + ], + "223": [ + { + "ingredients": [ + 1007, + 224 + ], + "result": { + "id": 223, + "count": 1 + } + } + ], + "224": [ + { + "ingredients": [ + 1008, + 220 + ], + "result": { + "id": 224, + "count": 1 + } + } + ], + "752": [ + { + "ingredients": [ + 748, + 1274 + ], + "result": { + "id": 752, + "count": 1 + } + } + ], + "753": [ + { + "ingredients": [ + 749, + 1274 + ], + "result": { + "id": 753, + "count": 1 + } + } + ], + "754": [ + { + "ingredients": [ + 750, + 1274 + ], + "result": { + "id": 754, + "count": 1 + } + } + ], + "755": [ + { + "ingredients": [ + 751, + 1274 + ], + "result": { + "id": 755, + "count": 1 + } + } + ], + "1277": [ + { + "ingredients": [ + 688, + 1047, + 1047, + 1047, + 1047 + ], + "result": { + "id": 1277, + "count": 4 + } + } + ], + "773": [ + { + "ingredients": [ + 769, + 1274 + ], + "result": { + "id": 773, + "count": 1 + } + } + ], + "774": [ + { + "ingredients": [ + 770, + 1274 + ], + "result": { + "id": 774, + "count": 1 + } + } + ], + "775": [ + { + "ingredients": [ + 771, + 1274 + ], + "result": { + "id": 775, + "count": 1 + } + } + ], + "776": [ + { + "ingredients": [ + 772, + 1274 + ], + "result": { + "id": 776, + "count": 1 + } + } + ], + "1295": [ + { + "ingredients": [ + 1294, + 993 + ], + "result": { + "id": 1295, + "count": 1 + } + } + ], + "1296": [ + { + "ingredients": [ + 1294, + 994 + ], + "result": { + "id": 1296, + "count": 1 + } + } + ], + "1297": [ + { + "ingredients": [ + 1294, + 995 + ], + "result": { + "id": 1297, + "count": 1 + } + } + ], + "1298": [ + { + "ingredients": [ + 1294, + 996 + ], + "result": { + "id": 1298, + "count": 1 + } + } + ], + "1299": [ + { + "ingredients": [ + 1294, + 997 + ], + "result": { + "id": 1299, + "count": 1 + } + } + ], + "1300": [ + { + "ingredients": [ + 1294, + 998 + ], + "result": { + "id": 1300, + "count": 1 + } + } + ], + "1301": [ + { + "ingredients": [ + 1294, + 999 + ], + "result": { + "id": 1301, + "count": 1 + } + } + ], + "1302": [ + { + "ingredients": [ + 1294, + 1000 + ], + "result": { + "id": 1302, + "count": 1 + } + } + ], + "1303": [ + { + "ingredients": [ + 1294, + 1001 + ], + "result": { + "id": 1303, + "count": 1 + } + } + ], + "1304": [ + { + "ingredients": [ + 1294, + 1002 + ], + "result": { + "id": 1304, + "count": 1 + } + } + ], + "1305": [ + { + "ingredients": [ + 1294, + 1003 + ], + "result": { + "id": 1305, + "count": 1 + } + } + ], + "1306": [ + { + "ingredients": [ + 1294, + 1004 + ], + "result": { + "id": 1306, + "count": 1 + } + } + ], + "1307": [ + { + "ingredients": [ + 1294, + 1005 + ], + "result": { + "id": 1307, + "count": 1 + } + } + ], + "795": [ + { + "ingredients": [ + 313, + 794 + ], + "result": { + "id": 795, + "count": 1 + } + } + ], + "1308": [ + { + "ingredients": [ + 1294, + 1006 + ], + "result": { + "id": 1308, + "count": 1 + } + } + ], + "796": [ + { + "ingredients": [ + 316, + 794 + ], + "result": { + "id": 796, + "count": 1 + } + } + ], + "1309": [ + { + "ingredients": [ + 1294, + 1007 + ], + "result": { + "id": 1309, + "count": 1 + } + } + ], + "1310": [ + { + "ingredients": [ + 1294, + 1008 + ], + "result": { + "id": 1310, + "count": 1 + } + } + ], + "797": [ + { + "ingredients": [ + 702, + 794 + ], + "result": { + "id": 797, + "count": 1 + } + } + ], + "798": [ + { + "ingredients": [ + 690, + 794 + ], + "result": { + "id": 798, + "count": 1 + } + } + ], + "804": [ + { + "ingredients": [ + 313, + 803 + ], + "result": { + "id": 804, + "count": 1 + } + } + ], + "806": [ + { + "ingredients": [ + 313, + 805 + ], + "result": { + "id": 806, + "count": 1 + } + } + ], + "808": [ + { + "ingredients": [ + 313, + 807 + ], + "result": { + "id": 808, + "count": 1 + } + } + ], + "810": [ + { + "ingredients": [ + 313, + 809 + ], + "result": { + "id": 810, + "count": 1 + } + } + ], + "812": [ + { + "ingredients": [ + 313, + 811 + ], + "result": { + "id": 812, + "count": 1 + } + } + ], + "814": [ + { + "ingredients": [ + 313, + 813 + ], + "result": { + "id": 814, + "count": 1 + } + } + ], + "816": [ + { + "ingredients": [ + 313, + 815 + ], + "result": { + "id": 816, + "count": 1 + } + } + ], + "818": [ + { + "ingredients": [ + 313, + 817 + ], + "result": { + "id": 818, + "count": 1 + } + } + ], + "820": [ + { + "ingredients": [ + 313, + 819 + ], + "result": { + "id": 820, + "count": 1 + } + } + ], + "302": [ + { + "ingredients": [ + 35, + 256 + ], + "result": { + "id": 302, + "count": 1 + } + }, + { + "ingredients": [ + 35, + 374 + ], + "result": { + "id": 302, + "count": 1 + } + } + ], + "822": [ + { + "ingredients": [ + 313, + 821 + ], + "result": { + "id": 822, + "count": 1 + } + } + ], + "829": [ + { + "ingredients": [ + 842, + 911 + ], + "result": { + "id": 829, + "count": 1 + } + } + ], + "834": [ + { + "ingredients": [ + 83 + ], + "result": { + "id": 834, + "count": 9 + } + } + ], + "836": [ + { + "ingredients": [ + 93 + ], + "result": { + "id": 836, + "count": 9 + } + } + ], + "837": [ + { + "ingredients": [ + 404 + ], + "result": { + "id": 837, + "count": 9 + } + } + ], + "838": [ + { + "ingredients": [ + 197 + ], + "result": { + "id": 838, + "count": 9 + } + } + ], + "841": [ + { + "ingredients": [ + 84 + ], + "result": { + "id": 841, + "count": 9 + } + } + ], + "843": [ + { + "ingredients": [ + 85 + ], + "result": { + "id": 843, + "count": 9 + } + } + ], + "844": [ + { + "ingredients": [ + 91 + ], + "result": { + "id": 844, + "count": 9 + } + }, + { + "ingredients": [ + 114 + ], + "result": { + "id": 844, + "count": 9 + } + } + ], + "845": [ + { + "ingredients": [ + 86 + ], + "result": { + "id": 845, + "count": 9 + } + } + ], + "847": [ + { + "ingredients": [ + 848, + 848, + 848, + 848, + 846, + 846, + 846, + 846 + ], + "result": { + "id": 847, + "count": 1 + } + }, + { + "ingredients": [ + 94 + ], + "result": { + "id": 847, + "count": 9 + } + } + ], + "356": [ + { + "ingredients": [ + 355, + 256 + ], + "result": { + "id": 356, + "count": 1 + } + }, + { + "ingredients": [ + 355, + 374 + ], + "result": { + "id": 356, + "count": 1 + } + } + ], + "359": [ + { + "ingredients": [ + 32, + 885 + ], + "result": { + "id": 359, + "count": 1 + } + } + ], + "880": [ + { + "ingredients": [ + 243, + 244, + 830 + ], + "result": { + "id": 880, + "count": 1 + } + } + ], + "885": [ + { + "ingredients": [ + 468 + ], + "result": { + "id": 885, + "count": 9 + } + } + ], + "373": [ + { + "ingredients": [ + 1033, + 1033, + 1033, + 1033, + 1033, + 1033, + 1033, + 1033, + 1033 + ], + "result": { + "id": 373, + "count": 1 + } + } + ], + "958": [ + { + "ingredients": [ + 957, + 957, + 957, + 946 + ], + "result": { + "id": 958, + "count": 1 + } + } + ], + "959": [ + { + "ingredients": [ + 687 + ], + "result": { + "id": 959, + "count": 9 + } + } + ], + "468": [ + { + "ingredients": [ + 885, + 885, + 885, + 885, + 885, + 885, + 885, + 885, + 885 + ], + "result": { + "id": 468, + "count": 1 + } + } + ], + "993": [ + { + "ingredients": [ + 1009 + ], + "result": { + "id": 993, + "count": 1 + } + }, + { + "ingredients": [ + 238 + ], + "result": { + "id": 993, + "count": 1 + } + } + ], + "994": [ + { + "ingredients": [ + 233 + ], + "result": { + "id": 994, + "count": 1 + } + }, + { + "ingredients": [ + 1007, + 997 + ], + "result": { + "id": 994, + "count": 2 + } + }, + { + "ingredients": [ + 240 + ], + "result": { + "id": 994, + "count": 1 + } + } + ], + "995": [ + { + "ingredients": [ + 230 + ], + "result": { + "id": 995, + "count": 1 + } + }, + { + "ingredients": [ + 1004, + 1007, + 999 + ], + "result": { + "id": 995, + "count": 3 + } + }, + { + "ingredients": [ + 1004, + 1007, + 1007, + 993 + ], + "result": { + "id": 995, + "count": 4 + } + }, + { + "ingredients": [ + 489 + ], + "result": { + "id": 995, + "count": 2 + } + }, + { + "ingredients": [ + 1003, + 999 + ], + "result": { + "id": 995, + "count": 2 + } + } + ], + "996": [ + { + "ingredients": [ + 229 + ], + "result": { + "id": 996, + "count": 1 + } + }, + { + "ingredients": [ + 1004, + 993 + ], + "result": { + "id": 996, + "count": 2 + } + } + ], + "997": [ + { + "ingredients": [ + 225 + ], + "result": { + "id": 997, + "count": 1 + } + }, + { + "ingredients": [ + 488 + ], + "result": { + "id": 997, + "count": 2 + } + } + ], + "998": [ + { + "ingredients": [ + 1006, + 993 + ], + "result": { + "id": 998, + "count": 2 + } + } + ], + "486": [ + { + "ingredients": [ + 320, + 320, + 320, + 320, + 320, + 320, + 320, + 320, + 320 + ], + "result": { + "id": 486, + "count": 1 + } + } + ], + "999": [ + { + "ingredients": [ + 491 + ], + "result": { + "id": 999, + "count": 2 + } + }, + { + "ingredients": [ + 254 + ], + "result": { + "id": 999, + "count": 1 + } + }, + { + "ingredients": [ + 235 + ], + "result": { + "id": 999, + "count": 1 + } + }, + { + "ingredients": [ + 1007, + 993 + ], + "result": { + "id": 999, + "count": 2 + } + } + ], + "1000": [ + { + "ingredients": [ + 1008, + 993 + ], + "result": { + "id": 1000, + "count": 2 + } + } + ], + "1001": [ + { + "ingredients": [ + 231 + ], + "result": { + "id": 1001, + "count": 1 + } + }, + { + "ingredients": [ + 1008, + 993, + 993 + ], + "result": { + "id": 1001, + "count": 3 + } + }, + { + "ingredients": [ + 1000, + 993 + ], + "result": { + "id": 1001, + "count": 2 + } + }, + { + "ingredients": [ + 236 + ], + "result": { + "id": 1001, + "count": 1 + } + }, + { + "ingredients": [ + 234 + ], + "result": { + "id": 1001, + "count": 1 + } + } + ], + "1002": [ + { + "ingredients": [ + 1004, + 1006 + ], + "result": { + "id": 1002, + "count": 2 + } + }, + { + "ingredients": [ + 241 + ], + "result": { + "id": 1002, + "count": 2 + } + } + ], + "1003": [ + { + "ingredients": [ + 1004, + 1007 + ], + "result": { + "id": 1003, + "count": 2 + } + } + ], + "1004": [ + { + "ingredients": [ + 838 + ], + "result": { + "id": 1004, + "count": 1 + } + }, + { + "ingredients": [ + 237 + ], + "result": { + "id": 1004, + "count": 1 + } + } + ], + "1005": [ + { + "ingredients": [ + 992 + ], + "result": { + "id": 1005, + "count": 1 + } + } + ], + "1007": [ + { + "ingredients": [ + 1206 + ], + "result": { + "id": 1007, + "count": 1 + } + }, + { + "ingredients": [ + 228 + ], + "result": { + "id": 1007, + "count": 1 + } + }, + { + "ingredients": [ + 490 + ], + "result": { + "id": 1007, + "count": 2 + } + }, + { + "ingredients": [ + 232 + ], + "result": { + "id": 1007, + "count": 1 + } + } + ], + "1008": [ + { + "ingredients": [ + 990 + ], + "result": { + "id": 1008, + "count": 1 + } + }, + { + "ingredients": [ + 239 + ], + "result": { + "id": 1008, + "count": 1 + } + } + ], + "1009": [ + { + "ingredients": [ + 1010 + ], + "result": { + "id": 1009, + "count": 3 + } + }, + { + "ingredients": [ + 543 + ], + "result": { + "id": 1009, + "count": 9 + } + } + ], + "1011": [ + { + "ingredients": [ + 1277 + ], + "result": { + "id": 1011, + "count": 3 + } + }, + { + "ingredients": [ + 252 + ], + "result": { + "id": 1011, + "count": 1 + } + } + ] +} \ No newline at end of file diff --git a/data/pc/1.21.4/sounds.json b/data/pc/1.21.4/sounds.json new file mode 100644 index 000000000..fb242fa62 --- /dev/null +++ b/data/pc/1.21.4/sounds.json @@ -0,0 +1,6606 @@ +[ + { + "id": 1, + "name": "entity.allay.ambient_with_item" + }, + { + "id": 2, + "name": "entity.allay.ambient_without_item" + }, + { + "id": 3, + "name": "entity.allay.death" + }, + { + "id": 4, + "name": "entity.allay.hurt" + }, + { + "id": 5, + "name": "entity.allay.item_given" + }, + { + "id": 6, + "name": "entity.allay.item_taken" + }, + { + "id": 7, + "name": "entity.allay.item_thrown" + }, + { + "id": 8, + "name": "ambient.cave" + }, + { + "id": 9, + "name": "ambient.basalt_deltas.additions" + }, + { + "id": 10, + "name": "ambient.basalt_deltas.loop" + }, + { + "id": 11, + "name": "ambient.basalt_deltas.mood" + }, + { + "id": 12, + "name": "ambient.crimson_forest.additions" + }, + { + "id": 13, + "name": "ambient.crimson_forest.loop" + }, + { + "id": 14, + "name": "ambient.crimson_forest.mood" + }, + { + "id": 15, + "name": "ambient.nether_wastes.additions" + }, + { + "id": 16, + "name": "ambient.nether_wastes.loop" + }, + { + "id": 17, + "name": "ambient.nether_wastes.mood" + }, + { + "id": 18, + "name": "ambient.soul_sand_valley.additions" + }, + { + "id": 19, + "name": "ambient.soul_sand_valley.loop" + }, + { + "id": 20, + "name": "ambient.soul_sand_valley.mood" + }, + { + "id": 21, + "name": "ambient.warped_forest.additions" + }, + { + "id": 22, + "name": "ambient.warped_forest.loop" + }, + { + "id": 23, + "name": "ambient.warped_forest.mood" + }, + { + "id": 24, + "name": "ambient.underwater.enter" + }, + { + "id": 25, + "name": "ambient.underwater.exit" + }, + { + "id": 26, + "name": "ambient.underwater.loop" + }, + { + "id": 27, + "name": "ambient.underwater.loop.additions" + }, + { + "id": 28, + "name": "ambient.underwater.loop.additions.rare" + }, + { + "id": 29, + "name": "ambient.underwater.loop.additions.ultra_rare" + }, + { + "id": 30, + "name": "block.amethyst_block.break" + }, + { + "id": 31, + "name": "block.amethyst_block.chime" + }, + { + "id": 32, + "name": "block.amethyst_block.fall" + }, + { + "id": 33, + "name": "block.amethyst_block.hit" + }, + { + "id": 34, + "name": "block.amethyst_block.place" + }, + { + "id": 35, + "name": "block.amethyst_block.resonate" + }, + { + "id": 36, + "name": "block.amethyst_block.step" + }, + { + "id": 37, + "name": "block.amethyst_cluster.break" + }, + { + "id": 38, + "name": "block.amethyst_cluster.fall" + }, + { + "id": 39, + "name": "block.amethyst_cluster.hit" + }, + { + "id": 40, + "name": "block.amethyst_cluster.place" + }, + { + "id": 41, + "name": "block.amethyst_cluster.step" + }, + { + "id": 42, + "name": "block.ancient_debris.break" + }, + { + "id": 43, + "name": "block.ancient_debris.step" + }, + { + "id": 44, + "name": "block.ancient_debris.place" + }, + { + "id": 45, + "name": "block.ancient_debris.hit" + }, + { + "id": 46, + "name": "block.ancient_debris.fall" + }, + { + "id": 47, + "name": "block.anvil.break" + }, + { + "id": 48, + "name": "block.anvil.destroy" + }, + { + "id": 49, + "name": "block.anvil.fall" + }, + { + "id": 50, + "name": "block.anvil.hit" + }, + { + "id": 51, + "name": "block.anvil.land" + }, + { + "id": 52, + "name": "block.anvil.place" + }, + { + "id": 53, + "name": "block.anvil.step" + }, + { + "id": 54, + "name": "block.anvil.use" + }, + { + "id": 55, + "name": "entity.armadillo.eat" + }, + { + "id": 56, + "name": "entity.armadillo.hurt" + }, + { + "id": 57, + "name": "entity.armadillo.hurt_reduced" + }, + { + "id": 58, + "name": "entity.armadillo.ambient" + }, + { + "id": 59, + "name": "entity.armadillo.step" + }, + { + "id": 60, + "name": "entity.armadillo.death" + }, + { + "id": 61, + "name": "entity.armadillo.roll" + }, + { + "id": 62, + "name": "entity.armadillo.land" + }, + { + "id": 63, + "name": "entity.armadillo.scute_drop" + }, + { + "id": 64, + "name": "entity.armadillo.unroll_finish" + }, + { + "id": 65, + "name": "entity.armadillo.peek" + }, + { + "id": 66, + "name": "entity.armadillo.unroll_start" + }, + { + "id": 67, + "name": "entity.armadillo.brush" + }, + { + "id": 68, + "name": "item.armor.equip_chain" + }, + { + "id": 69, + "name": "item.armor.equip_diamond" + }, + { + "id": 70, + "name": "item.armor.equip_elytra" + }, + { + "id": 71, + "name": "item.armor.equip_generic" + }, + { + "id": 72, + "name": "item.armor.equip_gold" + }, + { + "id": 73, + "name": "item.armor.equip_iron" + }, + { + "id": 74, + "name": "item.armor.equip_leather" + }, + { + "id": 75, + "name": "item.armor.equip_netherite" + }, + { + "id": 76, + "name": "item.armor.equip_turtle" + }, + { + "id": 77, + "name": "item.armor.equip_wolf" + }, + { + "id": 78, + "name": "item.armor.unequip_wolf" + }, + { + "id": 79, + "name": "entity.armor_stand.break" + }, + { + "id": 80, + "name": "entity.armor_stand.fall" + }, + { + "id": 81, + "name": "entity.armor_stand.hit" + }, + { + "id": 82, + "name": "entity.armor_stand.place" + }, + { + "id": 83, + "name": "entity.arrow.hit" + }, + { + "id": 84, + "name": "entity.arrow.hit_player" + }, + { + "id": 85, + "name": "entity.arrow.shoot" + }, + { + "id": 86, + "name": "item.axe.strip" + }, + { + "id": 87, + "name": "item.axe.scrape" + }, + { + "id": 88, + "name": "item.axe.wax_off" + }, + { + "id": 89, + "name": "entity.axolotl.attack" + }, + { + "id": 90, + "name": "entity.axolotl.death" + }, + { + "id": 91, + "name": "entity.axolotl.hurt" + }, + { + "id": 92, + "name": "entity.axolotl.idle_air" + }, + { + "id": 93, + "name": "entity.axolotl.idle_water" + }, + { + "id": 94, + "name": "entity.axolotl.splash" + }, + { + "id": 95, + "name": "entity.axolotl.swim" + }, + { + "id": 96, + "name": "block.azalea.break" + }, + { + "id": 97, + "name": "block.azalea.fall" + }, + { + "id": 98, + "name": "block.azalea.hit" + }, + { + "id": 99, + "name": "block.azalea.place" + }, + { + "id": 100, + "name": "block.azalea.step" + }, + { + "id": 101, + "name": "block.azalea_leaves.break" + }, + { + "id": 102, + "name": "block.azalea_leaves.fall" + }, + { + "id": 103, + "name": "block.azalea_leaves.hit" + }, + { + "id": 104, + "name": "block.azalea_leaves.place" + }, + { + "id": 105, + "name": "block.azalea_leaves.step" + }, + { + "id": 106, + "name": "block.bamboo.break" + }, + { + "id": 107, + "name": "block.bamboo.fall" + }, + { + "id": 108, + "name": "block.bamboo.hit" + }, + { + "id": 109, + "name": "block.bamboo.place" + }, + { + "id": 110, + "name": "block.bamboo.step" + }, + { + "id": 111, + "name": "block.bamboo_sapling.break" + }, + { + "id": 112, + "name": "block.bamboo_sapling.hit" + }, + { + "id": 113, + "name": "block.bamboo_sapling.place" + }, + { + "id": 114, + "name": "block.bamboo_wood.break" + }, + { + "id": 115, + "name": "block.bamboo_wood.fall" + }, + { + "id": 116, + "name": "block.bamboo_wood.hit" + }, + { + "id": 117, + "name": "block.bamboo_wood.place" + }, + { + "id": 118, + "name": "block.bamboo_wood.step" + }, + { + "id": 119, + "name": "block.bamboo_wood_door.close" + }, + { + "id": 120, + "name": "block.bamboo_wood_door.open" + }, + { + "id": 121, + "name": "block.bamboo_wood_trapdoor.close" + }, + { + "id": 122, + "name": "block.bamboo_wood_trapdoor.open" + }, + { + "id": 123, + "name": "block.bamboo_wood_button.click_off" + }, + { + "id": 124, + "name": "block.bamboo_wood_button.click_on" + }, + { + "id": 125, + "name": "block.bamboo_wood_pressure_plate.click_off" + }, + { + "id": 126, + "name": "block.bamboo_wood_pressure_plate.click_on" + }, + { + "id": 127, + "name": "block.bamboo_wood_fence_gate.close" + }, + { + "id": 128, + "name": "block.bamboo_wood_fence_gate.open" + }, + { + "id": 129, + "name": "block.barrel.close" + }, + { + "id": 130, + "name": "block.barrel.open" + }, + { + "id": 131, + "name": "block.basalt.break" + }, + { + "id": 132, + "name": "block.basalt.step" + }, + { + "id": 133, + "name": "block.basalt.place" + }, + { + "id": 134, + "name": "block.basalt.hit" + }, + { + "id": 135, + "name": "block.basalt.fall" + }, + { + "id": 136, + "name": "entity.bat.ambient" + }, + { + "id": 137, + "name": "entity.bat.death" + }, + { + "id": 138, + "name": "entity.bat.hurt" + }, + { + "id": 139, + "name": "entity.bat.loop" + }, + { + "id": 140, + "name": "entity.bat.takeoff" + }, + { + "id": 141, + "name": "block.beacon.activate" + }, + { + "id": 142, + "name": "block.beacon.ambient" + }, + { + "id": 143, + "name": "block.beacon.deactivate" + }, + { + "id": 144, + "name": "block.beacon.power_select" + }, + { + "id": 145, + "name": "entity.bee.death" + }, + { + "id": 146, + "name": "entity.bee.hurt" + }, + { + "id": 147, + "name": "entity.bee.loop_aggressive" + }, + { + "id": 148, + "name": "entity.bee.loop" + }, + { + "id": 149, + "name": "entity.bee.sting" + }, + { + "id": 150, + "name": "entity.bee.pollinate" + }, + { + "id": 151, + "name": "block.beehive.drip" + }, + { + "id": 152, + "name": "block.beehive.enter" + }, + { + "id": 153, + "name": "block.beehive.exit" + }, + { + "id": 154, + "name": "block.beehive.shear" + }, + { + "id": 155, + "name": "block.beehive.work" + }, + { + "id": 156, + "name": "block.bell.use" + }, + { + "id": 157, + "name": "block.bell.resonate" + }, + { + "id": 158, + "name": "block.big_dripleaf.break" + }, + { + "id": 159, + "name": "block.big_dripleaf.fall" + }, + { + "id": 160, + "name": "block.big_dripleaf.hit" + }, + { + "id": 161, + "name": "block.big_dripleaf.place" + }, + { + "id": 162, + "name": "block.big_dripleaf.step" + }, + { + "id": 163, + "name": "entity.blaze.ambient" + }, + { + "id": 164, + "name": "entity.blaze.burn" + }, + { + "id": 165, + "name": "entity.blaze.death" + }, + { + "id": 166, + "name": "entity.blaze.hurt" + }, + { + "id": 167, + "name": "entity.blaze.shoot" + }, + { + "id": 168, + "name": "entity.boat.paddle_land" + }, + { + "id": 169, + "name": "entity.boat.paddle_water" + }, + { + "id": 170, + "name": "entity.bogged.ambient" + }, + { + "id": 171, + "name": "entity.bogged.death" + }, + { + "id": 172, + "name": "entity.bogged.hurt" + }, + { + "id": 173, + "name": "entity.bogged.shear" + }, + { + "id": 174, + "name": "entity.bogged.step" + }, + { + "id": 175, + "name": "block.bone_block.break" + }, + { + "id": 176, + "name": "block.bone_block.fall" + }, + { + "id": 177, + "name": "block.bone_block.hit" + }, + { + "id": 178, + "name": "block.bone_block.place" + }, + { + "id": 179, + "name": "block.bone_block.step" + }, + { + "id": 180, + "name": "item.bone_meal.use" + }, + { + "id": 181, + "name": "item.book.page_turn" + }, + { + "id": 182, + "name": "item.book.put" + }, + { + "id": 183, + "name": "block.blastfurnace.fire_crackle" + }, + { + "id": 184, + "name": "item.bottle.empty" + }, + { + "id": 185, + "name": "item.bottle.fill" + }, + { + "id": 186, + "name": "item.bottle.fill_dragonbreath" + }, + { + "id": 187, + "name": "entity.breeze.charge" + }, + { + "id": 188, + "name": "entity.breeze.deflect" + }, + { + "id": 189, + "name": "entity.breeze.inhale" + }, + { + "id": 190, + "name": "entity.breeze.idle_ground" + }, + { + "id": 191, + "name": "entity.breeze.idle_air" + }, + { + "id": 192, + "name": "entity.breeze.shoot" + }, + { + "id": 193, + "name": "entity.breeze.jump" + }, + { + "id": 194, + "name": "entity.breeze.land" + }, + { + "id": 195, + "name": "entity.breeze.slide" + }, + { + "id": 196, + "name": "entity.breeze.death" + }, + { + "id": 197, + "name": "entity.breeze.hurt" + }, + { + "id": 198, + "name": "entity.breeze.whirl" + }, + { + "id": 199, + "name": "entity.breeze.wind_burst" + }, + { + "id": 200, + "name": "block.brewing_stand.brew" + }, + { + "id": 201, + "name": "item.brush.brushing.generic" + }, + { + "id": 202, + "name": "item.brush.brushing.sand" + }, + { + "id": 203, + "name": "item.brush.brushing.gravel" + }, + { + "id": 204, + "name": "item.brush.brushing.sand.complete" + }, + { + "id": 205, + "name": "item.brush.brushing.gravel.complete" + }, + { + "id": 206, + "name": "block.bubble_column.bubble_pop" + }, + { + "id": 207, + "name": "block.bubble_column.upwards_ambient" + }, + { + "id": 208, + "name": "block.bubble_column.upwards_inside" + }, + { + "id": 209, + "name": "block.bubble_column.whirlpool_ambient" + }, + { + "id": 210, + "name": "block.bubble_column.whirlpool_inside" + }, + { + "id": 211, + "name": "ui.hud.bubble_pop" + }, + { + "id": 212, + "name": "item.bucket.empty" + }, + { + "id": 213, + "name": "item.bucket.empty_axolotl" + }, + { + "id": 214, + "name": "item.bucket.empty_fish" + }, + { + "id": 215, + "name": "item.bucket.empty_lava" + }, + { + "id": 216, + "name": "item.bucket.empty_powder_snow" + }, + { + "id": 217, + "name": "item.bucket.empty_tadpole" + }, + { + "id": 218, + "name": "item.bucket.fill" + }, + { + "id": 219, + "name": "item.bucket.fill_axolotl" + }, + { + "id": 220, + "name": "item.bucket.fill_fish" + }, + { + "id": 221, + "name": "item.bucket.fill_lava" + }, + { + "id": 222, + "name": "item.bucket.fill_powder_snow" + }, + { + "id": 223, + "name": "item.bucket.fill_tadpole" + }, + { + "id": 224, + "name": "item.bundle.drop_contents" + }, + { + "id": 225, + "name": "item.bundle.insert" + }, + { + "id": 226, + "name": "item.bundle.insert_fail" + }, + { + "id": 227, + "name": "item.bundle.remove_one" + }, + { + "id": 228, + "name": "block.cake.add_candle" + }, + { + "id": 229, + "name": "block.calcite.break" + }, + { + "id": 230, + "name": "block.calcite.step" + }, + { + "id": 231, + "name": "block.calcite.place" + }, + { + "id": 232, + "name": "block.calcite.hit" + }, + { + "id": 233, + "name": "block.calcite.fall" + }, + { + "id": 234, + "name": "entity.camel.ambient" + }, + { + "id": 235, + "name": "entity.camel.dash" + }, + { + "id": 236, + "name": "entity.camel.dash_ready" + }, + { + "id": 237, + "name": "entity.camel.death" + }, + { + "id": 238, + "name": "entity.camel.eat" + }, + { + "id": 239, + "name": "entity.camel.hurt" + }, + { + "id": 240, + "name": "entity.camel.saddle" + }, + { + "id": 241, + "name": "entity.camel.sit" + }, + { + "id": 242, + "name": "entity.camel.stand" + }, + { + "id": 243, + "name": "entity.camel.step" + }, + { + "id": 244, + "name": "entity.camel.step_sand" + }, + { + "id": 245, + "name": "block.campfire.crackle" + }, + { + "id": 246, + "name": "block.candle.ambient" + }, + { + "id": 247, + "name": "block.candle.break" + }, + { + "id": 248, + "name": "block.candle.extinguish" + }, + { + "id": 249, + "name": "block.candle.fall" + }, + { + "id": 250, + "name": "block.candle.hit" + }, + { + "id": 251, + "name": "block.candle.place" + }, + { + "id": 252, + "name": "block.candle.step" + }, + { + "id": 253, + "name": "entity.cat.ambient" + }, + { + "id": 254, + "name": "entity.cat.stray_ambient" + }, + { + "id": 255, + "name": "entity.cat.death" + }, + { + "id": 256, + "name": "entity.cat.eat" + }, + { + "id": 257, + "name": "entity.cat.hiss" + }, + { + "id": 258, + "name": "entity.cat.beg_for_food" + }, + { + "id": 259, + "name": "entity.cat.hurt" + }, + { + "id": 260, + "name": "entity.cat.purr" + }, + { + "id": 261, + "name": "entity.cat.purreow" + }, + { + "id": 262, + "name": "block.cave_vines.break" + }, + { + "id": 263, + "name": "block.cave_vines.fall" + }, + { + "id": 264, + "name": "block.cave_vines.hit" + }, + { + "id": 265, + "name": "block.cave_vines.place" + }, + { + "id": 266, + "name": "block.cave_vines.step" + }, + { + "id": 267, + "name": "block.cave_vines.pick_berries" + }, + { + "id": 268, + "name": "block.chain.break" + }, + { + "id": 269, + "name": "block.chain.fall" + }, + { + "id": 270, + "name": "block.chain.hit" + }, + { + "id": 271, + "name": "block.chain.place" + }, + { + "id": 272, + "name": "block.chain.step" + }, + { + "id": 273, + "name": "block.cherry_wood.break" + }, + { + "id": 274, + "name": "block.cherry_wood.fall" + }, + { + "id": 275, + "name": "block.cherry_wood.hit" + }, + { + "id": 276, + "name": "block.cherry_wood.place" + }, + { + "id": 277, + "name": "block.cherry_wood.step" + }, + { + "id": 278, + "name": "block.cherry_sapling.break" + }, + { + "id": 279, + "name": "block.cherry_sapling.fall" + }, + { + "id": 280, + "name": "block.cherry_sapling.hit" + }, + { + "id": 281, + "name": "block.cherry_sapling.place" + }, + { + "id": 282, + "name": "block.cherry_sapling.step" + }, + { + "id": 283, + "name": "block.cherry_leaves.break" + }, + { + "id": 284, + "name": "block.cherry_leaves.fall" + }, + { + "id": 285, + "name": "block.cherry_leaves.hit" + }, + { + "id": 286, + "name": "block.cherry_leaves.place" + }, + { + "id": 287, + "name": "block.cherry_leaves.step" + }, + { + "id": 288, + "name": "block.cherry_wood_hanging_sign.step" + }, + { + "id": 289, + "name": "block.cherry_wood_hanging_sign.break" + }, + { + "id": 290, + "name": "block.cherry_wood_hanging_sign.fall" + }, + { + "id": 291, + "name": "block.cherry_wood_hanging_sign.hit" + }, + { + "id": 292, + "name": "block.cherry_wood_hanging_sign.place" + }, + { + "id": 293, + "name": "block.cherry_wood_door.close" + }, + { + "id": 294, + "name": "block.cherry_wood_door.open" + }, + { + "id": 295, + "name": "block.cherry_wood_trapdoor.close" + }, + { + "id": 296, + "name": "block.cherry_wood_trapdoor.open" + }, + { + "id": 297, + "name": "block.cherry_wood_button.click_off" + }, + { + "id": 298, + "name": "block.cherry_wood_button.click_on" + }, + { + "id": 299, + "name": "block.cherry_wood_pressure_plate.click_off" + }, + { + "id": 300, + "name": "block.cherry_wood_pressure_plate.click_on" + }, + { + "id": 301, + "name": "block.cherry_wood_fence_gate.close" + }, + { + "id": 302, + "name": "block.cherry_wood_fence_gate.open" + }, + { + "id": 303, + "name": "block.chest.close" + }, + { + "id": 304, + "name": "block.chest.locked" + }, + { + "id": 305, + "name": "block.chest.open" + }, + { + "id": 306, + "name": "entity.chicken.ambient" + }, + { + "id": 307, + "name": "entity.chicken.death" + }, + { + "id": 308, + "name": "entity.chicken.egg" + }, + { + "id": 309, + "name": "entity.chicken.hurt" + }, + { + "id": 310, + "name": "entity.chicken.step" + }, + { + "id": 311, + "name": "block.chiseled_bookshelf.break" + }, + { + "id": 312, + "name": "block.chiseled_bookshelf.fall" + }, + { + "id": 313, + "name": "block.chiseled_bookshelf.hit" + }, + { + "id": 314, + "name": "block.chiseled_bookshelf.insert" + }, + { + "id": 315, + "name": "block.chiseled_bookshelf.insert.enchanted" + }, + { + "id": 316, + "name": "block.chiseled_bookshelf.step" + }, + { + "id": 317, + "name": "block.chiseled_bookshelf.pickup" + }, + { + "id": 318, + "name": "block.chiseled_bookshelf.pickup.enchanted" + }, + { + "id": 319, + "name": "block.chiseled_bookshelf.place" + }, + { + "id": 320, + "name": "block.chorus_flower.death" + }, + { + "id": 321, + "name": "block.chorus_flower.grow" + }, + { + "id": 322, + "name": "item.chorus_fruit.teleport" + }, + { + "id": 323, + "name": "block.cobweb.break" + }, + { + "id": 324, + "name": "block.cobweb.step" + }, + { + "id": 325, + "name": "block.cobweb.place" + }, + { + "id": 326, + "name": "block.cobweb.hit" + }, + { + "id": 327, + "name": "block.cobweb.fall" + }, + { + "id": 328, + "name": "entity.cod.ambient" + }, + { + "id": 329, + "name": "entity.cod.death" + }, + { + "id": 330, + "name": "entity.cod.flop" + }, + { + "id": 331, + "name": "entity.cod.hurt" + }, + { + "id": 332, + "name": "block.comparator.click" + }, + { + "id": 333, + "name": "block.composter.empty" + }, + { + "id": 334, + "name": "block.composter.fill" + }, + { + "id": 335, + "name": "block.composter.fill_success" + }, + { + "id": 336, + "name": "block.composter.ready" + }, + { + "id": 337, + "name": "block.conduit.activate" + }, + { + "id": 338, + "name": "block.conduit.ambient" + }, + { + "id": 339, + "name": "block.conduit.ambient.short" + }, + { + "id": 340, + "name": "block.conduit.attack.target" + }, + { + "id": 341, + "name": "block.conduit.deactivate" + }, + { + "id": 342, + "name": "block.copper_bulb.break" + }, + { + "id": 343, + "name": "block.copper_bulb.step" + }, + { + "id": 344, + "name": "block.copper_bulb.place" + }, + { + "id": 345, + "name": "block.copper_bulb.hit" + }, + { + "id": 346, + "name": "block.copper_bulb.fall" + }, + { + "id": 347, + "name": "block.copper_bulb.turn_on" + }, + { + "id": 348, + "name": "block.copper_bulb.turn_off" + }, + { + "id": 349, + "name": "block.copper.break" + }, + { + "id": 350, + "name": "block.copper.step" + }, + { + "id": 351, + "name": "block.copper.place" + }, + { + "id": 352, + "name": "block.copper.hit" + }, + { + "id": 353, + "name": "block.copper.fall" + }, + { + "id": 354, + "name": "block.copper_door.close" + }, + { + "id": 355, + "name": "block.copper_door.open" + }, + { + "id": 356, + "name": "block.copper_grate.break" + }, + { + "id": 357, + "name": "block.copper_grate.step" + }, + { + "id": 358, + "name": "block.copper_grate.place" + }, + { + "id": 359, + "name": "block.copper_grate.hit" + }, + { + "id": 360, + "name": "block.copper_grate.fall" + }, + { + "id": 361, + "name": "block.copper_trapdoor.close" + }, + { + "id": 362, + "name": "block.copper_trapdoor.open" + }, + { + "id": 363, + "name": "block.coral_block.break" + }, + { + "id": 364, + "name": "block.coral_block.fall" + }, + { + "id": 365, + "name": "block.coral_block.hit" + }, + { + "id": 366, + "name": "block.coral_block.place" + }, + { + "id": 367, + "name": "block.coral_block.step" + }, + { + "id": 368, + "name": "entity.cow.ambient" + }, + { + "id": 369, + "name": "entity.cow.death" + }, + { + "id": 370, + "name": "entity.cow.hurt" + }, + { + "id": 371, + "name": "entity.cow.milk" + }, + { + "id": 372, + "name": "entity.cow.step" + }, + { + "id": 373, + "name": "block.crafter.craft" + }, + { + "id": 374, + "name": "block.crafter.fail" + }, + { + "id": 375, + "name": "entity.creaking.ambient" + }, + { + "id": 376, + "name": "entity.creaking.activate" + }, + { + "id": 377, + "name": "entity.creaking.deactivate" + }, + { + "id": 378, + "name": "entity.creaking.attack" + }, + { + "id": 379, + "name": "entity.creaking.death" + }, + { + "id": 380, + "name": "entity.creaking.step" + }, + { + "id": 381, + "name": "entity.creaking.freeze" + }, + { + "id": 382, + "name": "entity.creaking.unfreeze" + }, + { + "id": 383, + "name": "entity.creaking.spawn" + }, + { + "id": 384, + "name": "entity.creaking.sway" + }, + { + "id": 385, + "name": "entity.creaking.twitch" + }, + { + "id": 386, + "name": "block.creaking_heart.break" + }, + { + "id": 387, + "name": "block.creaking_heart.fall" + }, + { + "id": 388, + "name": "block.creaking_heart.hit" + }, + { + "id": 389, + "name": "block.creaking_heart.hurt" + }, + { + "id": 390, + "name": "block.creaking_heart.place" + }, + { + "id": 391, + "name": "block.creaking_heart.step" + }, + { + "id": 392, + "name": "block.creaking_heart.idle" + }, + { + "id": 393, + "name": "block.creaking_heart.spawn" + }, + { + "id": 394, + "name": "entity.creeper.death" + }, + { + "id": 395, + "name": "entity.creeper.hurt" + }, + { + "id": 396, + "name": "entity.creeper.primed" + }, + { + "id": 397, + "name": "block.crop.break" + }, + { + "id": 398, + "name": "item.crop.plant" + }, + { + "id": 399, + "name": "item.crossbow.hit" + }, + { + "id": 400, + "name": "item.crossbow.loading_end" + }, + { + "id": 401, + "name": "item.crossbow.loading_middle" + }, + { + "id": 402, + "name": "item.crossbow.loading_start" + }, + { + "id": 403, + "name": "item.crossbow.quick_charge_1" + }, + { + "id": 404, + "name": "item.crossbow.quick_charge_2" + }, + { + "id": 405, + "name": "item.crossbow.quick_charge_3" + }, + { + "id": 406, + "name": "item.crossbow.shoot" + }, + { + "id": 407, + "name": "block.decorated_pot.break" + }, + { + "id": 408, + "name": "block.decorated_pot.fall" + }, + { + "id": 409, + "name": "block.decorated_pot.hit" + }, + { + "id": 410, + "name": "block.decorated_pot.insert" + }, + { + "id": 411, + "name": "block.decorated_pot.insert_fail" + }, + { + "id": 412, + "name": "block.decorated_pot.step" + }, + { + "id": 413, + "name": "block.decorated_pot.place" + }, + { + "id": 414, + "name": "block.decorated_pot.shatter" + }, + { + "id": 415, + "name": "block.deepslate_bricks.break" + }, + { + "id": 416, + "name": "block.deepslate_bricks.fall" + }, + { + "id": 417, + "name": "block.deepslate_bricks.hit" + }, + { + "id": 418, + "name": "block.deepslate_bricks.place" + }, + { + "id": 419, + "name": "block.deepslate_bricks.step" + }, + { + "id": 420, + "name": "block.deepslate.break" + }, + { + "id": 421, + "name": "block.deepslate.fall" + }, + { + "id": 422, + "name": "block.deepslate.hit" + }, + { + "id": 423, + "name": "block.deepslate.place" + }, + { + "id": 424, + "name": "block.deepslate.step" + }, + { + "id": 425, + "name": "block.deepslate_tiles.break" + }, + { + "id": 426, + "name": "block.deepslate_tiles.fall" + }, + { + "id": 427, + "name": "block.deepslate_tiles.hit" + }, + { + "id": 428, + "name": "block.deepslate_tiles.place" + }, + { + "id": 429, + "name": "block.deepslate_tiles.step" + }, + { + "id": 430, + "name": "block.dispenser.dispense" + }, + { + "id": 431, + "name": "block.dispenser.fail" + }, + { + "id": 432, + "name": "block.dispenser.launch" + }, + { + "id": 433, + "name": "entity.dolphin.ambient" + }, + { + "id": 434, + "name": "entity.dolphin.ambient_water" + }, + { + "id": 435, + "name": "entity.dolphin.attack" + }, + { + "id": 436, + "name": "entity.dolphin.death" + }, + { + "id": 437, + "name": "entity.dolphin.eat" + }, + { + "id": 438, + "name": "entity.dolphin.hurt" + }, + { + "id": 439, + "name": "entity.dolphin.jump" + }, + { + "id": 440, + "name": "entity.dolphin.play" + }, + { + "id": 441, + "name": "entity.dolphin.splash" + }, + { + "id": 442, + "name": "entity.dolphin.swim" + }, + { + "id": 443, + "name": "entity.donkey.ambient" + }, + { + "id": 444, + "name": "entity.donkey.angry" + }, + { + "id": 445, + "name": "entity.donkey.chest" + }, + { + "id": 446, + "name": "entity.donkey.death" + }, + { + "id": 447, + "name": "entity.donkey.eat" + }, + { + "id": 448, + "name": "entity.donkey.hurt" + }, + { + "id": 449, + "name": "entity.donkey.jump" + }, + { + "id": 450, + "name": "block.dripstone_block.break" + }, + { + "id": 451, + "name": "block.dripstone_block.step" + }, + { + "id": 452, + "name": "block.dripstone_block.place" + }, + { + "id": 453, + "name": "block.dripstone_block.hit" + }, + { + "id": 454, + "name": "block.dripstone_block.fall" + }, + { + "id": 455, + "name": "block.pointed_dripstone.break" + }, + { + "id": 456, + "name": "block.pointed_dripstone.step" + }, + { + "id": 457, + "name": "block.pointed_dripstone.place" + }, + { + "id": 458, + "name": "block.pointed_dripstone.hit" + }, + { + "id": 459, + "name": "block.pointed_dripstone.fall" + }, + { + "id": 460, + "name": "block.pointed_dripstone.land" + }, + { + "id": 461, + "name": "block.pointed_dripstone.drip_lava" + }, + { + "id": 462, + "name": "block.pointed_dripstone.drip_water" + }, + { + "id": 463, + "name": "block.pointed_dripstone.drip_lava_into_cauldron" + }, + { + "id": 464, + "name": "block.pointed_dripstone.drip_water_into_cauldron" + }, + { + "id": 465, + "name": "block.big_dripleaf.tilt_down" + }, + { + "id": 466, + "name": "block.big_dripleaf.tilt_up" + }, + { + "id": 467, + "name": "entity.drowned.ambient" + }, + { + "id": 468, + "name": "entity.drowned.ambient_water" + }, + { + "id": 469, + "name": "entity.drowned.death" + }, + { + "id": 470, + "name": "entity.drowned.death_water" + }, + { + "id": 471, + "name": "entity.drowned.hurt" + }, + { + "id": 472, + "name": "entity.drowned.hurt_water" + }, + { + "id": 473, + "name": "entity.drowned.shoot" + }, + { + "id": 474, + "name": "entity.drowned.step" + }, + { + "id": 475, + "name": "entity.drowned.swim" + }, + { + "id": 476, + "name": "item.dye.use" + }, + { + "id": 477, + "name": "entity.egg.throw" + }, + { + "id": 478, + "name": "entity.elder_guardian.ambient" + }, + { + "id": 479, + "name": "entity.elder_guardian.ambient_land" + }, + { + "id": 480, + "name": "entity.elder_guardian.curse" + }, + { + "id": 481, + "name": "entity.elder_guardian.death" + }, + { + "id": 482, + "name": "entity.elder_guardian.death_land" + }, + { + "id": 483, + "name": "entity.elder_guardian.flop" + }, + { + "id": 484, + "name": "entity.elder_guardian.hurt" + }, + { + "id": 485, + "name": "entity.elder_guardian.hurt_land" + }, + { + "id": 486, + "name": "item.elytra.flying" + }, + { + "id": 487, + "name": "block.enchantment_table.use" + }, + { + "id": 488, + "name": "block.ender_chest.close" + }, + { + "id": 489, + "name": "block.ender_chest.open" + }, + { + "id": 490, + "name": "entity.ender_dragon.ambient" + }, + { + "id": 491, + "name": "entity.ender_dragon.death" + }, + { + "id": 492, + "name": "entity.dragon_fireball.explode" + }, + { + "id": 493, + "name": "entity.ender_dragon.flap" + }, + { + "id": 494, + "name": "entity.ender_dragon.growl" + }, + { + "id": 495, + "name": "entity.ender_dragon.hurt" + }, + { + "id": 496, + "name": "entity.ender_dragon.shoot" + }, + { + "id": 497, + "name": "entity.ender_eye.death" + }, + { + "id": 498, + "name": "entity.ender_eye.launch" + }, + { + "id": 499, + "name": "entity.enderman.ambient" + }, + { + "id": 500, + "name": "entity.enderman.death" + }, + { + "id": 501, + "name": "entity.enderman.hurt" + }, + { + "id": 502, + "name": "entity.enderman.scream" + }, + { + "id": 503, + "name": "entity.enderman.stare" + }, + { + "id": 504, + "name": "entity.enderman.teleport" + }, + { + "id": 505, + "name": "entity.endermite.ambient" + }, + { + "id": 506, + "name": "entity.endermite.death" + }, + { + "id": 507, + "name": "entity.endermite.hurt" + }, + { + "id": 508, + "name": "entity.endermite.step" + }, + { + "id": 509, + "name": "entity.ender_pearl.throw" + }, + { + "id": 510, + "name": "block.end_gateway.spawn" + }, + { + "id": 511, + "name": "block.end_portal_frame.fill" + }, + { + "id": 512, + "name": "block.end_portal.spawn" + }, + { + "id": 513, + "name": "entity.evoker.ambient" + }, + { + "id": 514, + "name": "entity.evoker.cast_spell" + }, + { + "id": 515, + "name": "entity.evoker.celebrate" + }, + { + "id": 516, + "name": "entity.evoker.death" + }, + { + "id": 517, + "name": "entity.evoker_fangs.attack" + }, + { + "id": 518, + "name": "entity.evoker.hurt" + }, + { + "id": 519, + "name": "entity.evoker.prepare_attack" + }, + { + "id": 520, + "name": "entity.evoker.prepare_summon" + }, + { + "id": 521, + "name": "entity.evoker.prepare_wololo" + }, + { + "id": 522, + "name": "entity.experience_bottle.throw" + }, + { + "id": 523, + "name": "entity.experience_orb.pickup" + }, + { + "id": 524, + "name": "block.eyeblossom.open_long" + }, + { + "id": 525, + "name": "block.eyeblossom.open" + }, + { + "id": 526, + "name": "block.eyeblossom.close_long" + }, + { + "id": 527, + "name": "block.eyeblossom.close" + }, + { + "id": 528, + "name": "block.eyeblossom.idle" + }, + { + "id": 529, + "name": "block.fence_gate.close" + }, + { + "id": 530, + "name": "block.fence_gate.open" + }, + { + "id": 531, + "name": "item.firecharge.use" + }, + { + "id": 532, + "name": "entity.firework_rocket.blast" + }, + { + "id": 533, + "name": "entity.firework_rocket.blast_far" + }, + { + "id": 534, + "name": "entity.firework_rocket.large_blast" + }, + { + "id": 535, + "name": "entity.firework_rocket.large_blast_far" + }, + { + "id": 536, + "name": "entity.firework_rocket.launch" + }, + { + "id": 537, + "name": "entity.firework_rocket.shoot" + }, + { + "id": 538, + "name": "entity.firework_rocket.twinkle" + }, + { + "id": 539, + "name": "entity.firework_rocket.twinkle_far" + }, + { + "id": 540, + "name": "block.fire.ambient" + }, + { + "id": 541, + "name": "block.fire.extinguish" + }, + { + "id": 542, + "name": "entity.fish.swim" + }, + { + "id": 543, + "name": "entity.fishing_bobber.retrieve" + }, + { + "id": 544, + "name": "entity.fishing_bobber.splash" + }, + { + "id": 545, + "name": "entity.fishing_bobber.throw" + }, + { + "id": 546, + "name": "item.flintandsteel.use" + }, + { + "id": 547, + "name": "block.flowering_azalea.break" + }, + { + "id": 548, + "name": "block.flowering_azalea.fall" + }, + { + "id": 549, + "name": "block.flowering_azalea.hit" + }, + { + "id": 550, + "name": "block.flowering_azalea.place" + }, + { + "id": 551, + "name": "block.flowering_azalea.step" + }, + { + "id": 552, + "name": "entity.fox.aggro" + }, + { + "id": 553, + "name": "entity.fox.ambient" + }, + { + "id": 554, + "name": "entity.fox.bite" + }, + { + "id": 555, + "name": "entity.fox.death" + }, + { + "id": 556, + "name": "entity.fox.eat" + }, + { + "id": 557, + "name": "entity.fox.hurt" + }, + { + "id": 558, + "name": "entity.fox.screech" + }, + { + "id": 559, + "name": "entity.fox.sleep" + }, + { + "id": 560, + "name": "entity.fox.sniff" + }, + { + "id": 561, + "name": "entity.fox.spit" + }, + { + "id": 562, + "name": "entity.fox.teleport" + }, + { + "id": 563, + "name": "block.suspicious_sand.break" + }, + { + "id": 564, + "name": "block.suspicious_sand.step" + }, + { + "id": 565, + "name": "block.suspicious_sand.place" + }, + { + "id": 566, + "name": "block.suspicious_sand.hit" + }, + { + "id": 567, + "name": "block.suspicious_sand.fall" + }, + { + "id": 568, + "name": "block.suspicious_gravel.break" + }, + { + "id": 569, + "name": "block.suspicious_gravel.step" + }, + { + "id": 570, + "name": "block.suspicious_gravel.place" + }, + { + "id": 571, + "name": "block.suspicious_gravel.hit" + }, + { + "id": 572, + "name": "block.suspicious_gravel.fall" + }, + { + "id": 573, + "name": "block.froglight.break" + }, + { + "id": 574, + "name": "block.froglight.fall" + }, + { + "id": 575, + "name": "block.froglight.hit" + }, + { + "id": 576, + "name": "block.froglight.place" + }, + { + "id": 577, + "name": "block.froglight.step" + }, + { + "id": 578, + "name": "block.frogspawn.step" + }, + { + "id": 579, + "name": "block.frogspawn.break" + }, + { + "id": 580, + "name": "block.frogspawn.fall" + }, + { + "id": 581, + "name": "block.frogspawn.hatch" + }, + { + "id": 582, + "name": "block.frogspawn.hit" + }, + { + "id": 583, + "name": "block.frogspawn.place" + }, + { + "id": 584, + "name": "entity.frog.ambient" + }, + { + "id": 585, + "name": "entity.frog.death" + }, + { + "id": 586, + "name": "entity.frog.eat" + }, + { + "id": 587, + "name": "entity.frog.hurt" + }, + { + "id": 588, + "name": "entity.frog.lay_spawn" + }, + { + "id": 589, + "name": "entity.frog.long_jump" + }, + { + "id": 590, + "name": "entity.frog.step" + }, + { + "id": 591, + "name": "entity.frog.tongue" + }, + { + "id": 592, + "name": "block.roots.break" + }, + { + "id": 593, + "name": "block.roots.step" + }, + { + "id": 594, + "name": "block.roots.place" + }, + { + "id": 595, + "name": "block.roots.hit" + }, + { + "id": 596, + "name": "block.roots.fall" + }, + { + "id": 597, + "name": "block.furnace.fire_crackle" + }, + { + "id": 598, + "name": "entity.generic.big_fall" + }, + { + "id": 599, + "name": "entity.generic.burn" + }, + { + "id": 600, + "name": "entity.generic.death" + }, + { + "id": 601, + "name": "entity.generic.drink" + }, + { + "id": 602, + "name": "entity.generic.eat" + }, + { + "id": 603, + "name": "entity.generic.explode" + }, + { + "id": 604, + "name": "entity.generic.extinguish_fire" + }, + { + "id": 605, + "name": "entity.generic.hurt" + }, + { + "id": 606, + "name": "entity.generic.small_fall" + }, + { + "id": 607, + "name": "entity.generic.splash" + }, + { + "id": 608, + "name": "entity.generic.swim" + }, + { + "id": 609, + "name": "entity.ghast.ambient" + }, + { + "id": 610, + "name": "entity.ghast.death" + }, + { + "id": 611, + "name": "entity.ghast.hurt" + }, + { + "id": 612, + "name": "entity.ghast.scream" + }, + { + "id": 613, + "name": "entity.ghast.shoot" + }, + { + "id": 614, + "name": "entity.ghast.warn" + }, + { + "id": 615, + "name": "block.gilded_blackstone.break" + }, + { + "id": 616, + "name": "block.gilded_blackstone.fall" + }, + { + "id": 617, + "name": "block.gilded_blackstone.hit" + }, + { + "id": 618, + "name": "block.gilded_blackstone.place" + }, + { + "id": 619, + "name": "block.gilded_blackstone.step" + }, + { + "id": 620, + "name": "block.glass.break" + }, + { + "id": 621, + "name": "block.glass.fall" + }, + { + "id": 622, + "name": "block.glass.hit" + }, + { + "id": 623, + "name": "block.glass.place" + }, + { + "id": 624, + "name": "block.glass.step" + }, + { + "id": 625, + "name": "item.glow_ink_sac.use" + }, + { + "id": 626, + "name": "entity.glow_item_frame.add_item" + }, + { + "id": 627, + "name": "entity.glow_item_frame.break" + }, + { + "id": 628, + "name": "entity.glow_item_frame.place" + }, + { + "id": 629, + "name": "entity.glow_item_frame.remove_item" + }, + { + "id": 630, + "name": "entity.glow_item_frame.rotate_item" + }, + { + "id": 631, + "name": "entity.glow_squid.ambient" + }, + { + "id": 632, + "name": "entity.glow_squid.death" + }, + { + "id": 633, + "name": "entity.glow_squid.hurt" + }, + { + "id": 634, + "name": "entity.glow_squid.squirt" + }, + { + "id": 635, + "name": "entity.goat.ambient" + }, + { + "id": 636, + "name": "entity.goat.death" + }, + { + "id": 637, + "name": "entity.goat.eat" + }, + { + "id": 638, + "name": "entity.goat.hurt" + }, + { + "id": 639, + "name": "entity.goat.long_jump" + }, + { + "id": 640, + "name": "entity.goat.milk" + }, + { + "id": 641, + "name": "entity.goat.prepare_ram" + }, + { + "id": 642, + "name": "entity.goat.ram_impact" + }, + { + "id": 643, + "name": "entity.goat.horn_break" + }, + { + "id": 644, + "name": "entity.goat.screaming.ambient" + }, + { + "id": 645, + "name": "entity.goat.screaming.death" + }, + { + "id": 646, + "name": "entity.goat.screaming.eat" + }, + { + "id": 647, + "name": "entity.goat.screaming.hurt" + }, + { + "id": 648, + "name": "entity.goat.screaming.long_jump" + }, + { + "id": 649, + "name": "entity.goat.screaming.milk" + }, + { + "id": 650, + "name": "entity.goat.screaming.prepare_ram" + }, + { + "id": 651, + "name": "entity.goat.screaming.ram_impact" + }, + { + "id": 652, + "name": "entity.goat.step" + }, + { + "id": 653, + "name": "block.grass.break" + }, + { + "id": 654, + "name": "block.grass.fall" + }, + { + "id": 655, + "name": "block.grass.hit" + }, + { + "id": 656, + "name": "block.grass.place" + }, + { + "id": 657, + "name": "block.grass.step" + }, + { + "id": 658, + "name": "block.gravel.break" + }, + { + "id": 659, + "name": "block.gravel.fall" + }, + { + "id": 660, + "name": "block.gravel.hit" + }, + { + "id": 661, + "name": "block.gravel.place" + }, + { + "id": 662, + "name": "block.gravel.step" + }, + { + "id": 663, + "name": "block.grindstone.use" + }, + { + "id": 664, + "name": "block.growing_plant.crop" + }, + { + "id": 665, + "name": "entity.guardian.ambient" + }, + { + "id": 666, + "name": "entity.guardian.ambient_land" + }, + { + "id": 667, + "name": "entity.guardian.attack" + }, + { + "id": 668, + "name": "entity.guardian.death" + }, + { + "id": 669, + "name": "entity.guardian.death_land" + }, + { + "id": 670, + "name": "entity.guardian.flop" + }, + { + "id": 671, + "name": "entity.guardian.hurt" + }, + { + "id": 672, + "name": "entity.guardian.hurt_land" + }, + { + "id": 673, + "name": "block.hanging_roots.break" + }, + { + "id": 674, + "name": "block.hanging_roots.fall" + }, + { + "id": 675, + "name": "block.hanging_roots.hit" + }, + { + "id": 676, + "name": "block.hanging_roots.place" + }, + { + "id": 677, + "name": "block.hanging_roots.step" + }, + { + "id": 678, + "name": "block.hanging_sign.step" + }, + { + "id": 679, + "name": "block.hanging_sign.break" + }, + { + "id": 680, + "name": "block.hanging_sign.fall" + }, + { + "id": 681, + "name": "block.hanging_sign.hit" + }, + { + "id": 682, + "name": "block.hanging_sign.place" + }, + { + "id": 683, + "name": "block.heavy_core.break" + }, + { + "id": 684, + "name": "block.heavy_core.fall" + }, + { + "id": 685, + "name": "block.heavy_core.hit" + }, + { + "id": 686, + "name": "block.heavy_core.place" + }, + { + "id": 687, + "name": "block.heavy_core.step" + }, + { + "id": 688, + "name": "block.nether_wood_hanging_sign.step" + }, + { + "id": 689, + "name": "block.nether_wood_hanging_sign.break" + }, + { + "id": 690, + "name": "block.nether_wood_hanging_sign.fall" + }, + { + "id": 691, + "name": "block.nether_wood_hanging_sign.hit" + }, + { + "id": 692, + "name": "block.nether_wood_hanging_sign.place" + }, + { + "id": 693, + "name": "block.bamboo_wood_hanging_sign.step" + }, + { + "id": 694, + "name": "block.bamboo_wood_hanging_sign.break" + }, + { + "id": 695, + "name": "block.bamboo_wood_hanging_sign.fall" + }, + { + "id": 696, + "name": "block.bamboo_wood_hanging_sign.hit" + }, + { + "id": 697, + "name": "block.bamboo_wood_hanging_sign.place" + }, + { + "id": 698, + "name": "block.trial_spawner.break" + }, + { + "id": 699, + "name": "block.trial_spawner.step" + }, + { + "id": 700, + "name": "block.trial_spawner.place" + }, + { + "id": 701, + "name": "block.trial_spawner.hit" + }, + { + "id": 702, + "name": "block.trial_spawner.fall" + }, + { + "id": 703, + "name": "block.trial_spawner.spawn_mob" + }, + { + "id": 704, + "name": "block.trial_spawner.about_to_spawn_item" + }, + { + "id": 705, + "name": "block.trial_spawner.spawn_item" + }, + { + "id": 706, + "name": "block.trial_spawner.spawn_item_begin" + }, + { + "id": 707, + "name": "block.trial_spawner.detect_player" + }, + { + "id": 708, + "name": "block.trial_spawner.ominous_activate" + }, + { + "id": 709, + "name": "block.trial_spawner.ambient" + }, + { + "id": 710, + "name": "block.trial_spawner.ambient_ominous" + }, + { + "id": 711, + "name": "block.trial_spawner.open_shutter" + }, + { + "id": 712, + "name": "block.trial_spawner.close_shutter" + }, + { + "id": 713, + "name": "block.trial_spawner.eject_item" + }, + { + "id": 714, + "name": "item.hoe.till" + }, + { + "id": 715, + "name": "entity.hoglin.ambient" + }, + { + "id": 716, + "name": "entity.hoglin.angry" + }, + { + "id": 717, + "name": "entity.hoglin.attack" + }, + { + "id": 718, + "name": "entity.hoglin.converted_to_zombified" + }, + { + "id": 719, + "name": "entity.hoglin.death" + }, + { + "id": 720, + "name": "entity.hoglin.hurt" + }, + { + "id": 721, + "name": "entity.hoglin.retreat" + }, + { + "id": 722, + "name": "entity.hoglin.step" + }, + { + "id": 723, + "name": "block.honey_block.break" + }, + { + "id": 724, + "name": "block.honey_block.fall" + }, + { + "id": 725, + "name": "block.honey_block.hit" + }, + { + "id": 726, + "name": "block.honey_block.place" + }, + { + "id": 727, + "name": "block.honey_block.slide" + }, + { + "id": 728, + "name": "block.honey_block.step" + }, + { + "id": 729, + "name": "item.honeycomb.wax_on" + }, + { + "id": 730, + "name": "item.honey_bottle.drink" + }, + { + "id": 731, + "name": "item.goat_horn.sound.0" + }, + { + "id": 732, + "name": "item.goat_horn.sound.1" + }, + { + "id": 733, + "name": "item.goat_horn.sound.2" + }, + { + "id": 734, + "name": "item.goat_horn.sound.3" + }, + { + "id": 735, + "name": "item.goat_horn.sound.4" + }, + { + "id": 736, + "name": "item.goat_horn.sound.5" + }, + { + "id": 737, + "name": "item.goat_horn.sound.6" + }, + { + "id": 738, + "name": "item.goat_horn.sound.7" + }, + { + "id": 739, + "name": "entity.horse.ambient" + }, + { + "id": 740, + "name": "entity.horse.angry" + }, + { + "id": 741, + "name": "entity.horse.armor" + }, + { + "id": 742, + "name": "entity.horse.breathe" + }, + { + "id": 743, + "name": "entity.horse.death" + }, + { + "id": 744, + "name": "entity.horse.eat" + }, + { + "id": 745, + "name": "entity.horse.gallop" + }, + { + "id": 746, + "name": "entity.horse.hurt" + }, + { + "id": 747, + "name": "entity.horse.jump" + }, + { + "id": 748, + "name": "entity.horse.land" + }, + { + "id": 749, + "name": "entity.horse.saddle" + }, + { + "id": 750, + "name": "entity.horse.step" + }, + { + "id": 751, + "name": "entity.horse.step_wood" + }, + { + "id": 752, + "name": "entity.hostile.big_fall" + }, + { + "id": 753, + "name": "entity.hostile.death" + }, + { + "id": 754, + "name": "entity.hostile.hurt" + }, + { + "id": 755, + "name": "entity.hostile.small_fall" + }, + { + "id": 756, + "name": "entity.hostile.splash" + }, + { + "id": 757, + "name": "entity.hostile.swim" + }, + { + "id": 758, + "name": "entity.husk.ambient" + }, + { + "id": 759, + "name": "entity.husk.converted_to_zombie" + }, + { + "id": 760, + "name": "entity.husk.death" + }, + { + "id": 761, + "name": "entity.husk.hurt" + }, + { + "id": 762, + "name": "entity.husk.step" + }, + { + "id": 763, + "name": "entity.illusioner.ambient" + }, + { + "id": 764, + "name": "entity.illusioner.cast_spell" + }, + { + "id": 765, + "name": "entity.illusioner.death" + }, + { + "id": 766, + "name": "entity.illusioner.hurt" + }, + { + "id": 767, + "name": "entity.illusioner.mirror_move" + }, + { + "id": 768, + "name": "entity.illusioner.prepare_blindness" + }, + { + "id": 769, + "name": "entity.illusioner.prepare_mirror" + }, + { + "id": 770, + "name": "item.ink_sac.use" + }, + { + "id": 771, + "name": "block.iron_door.close" + }, + { + "id": 772, + "name": "block.iron_door.open" + }, + { + "id": 773, + "name": "entity.iron_golem.attack" + }, + { + "id": 774, + "name": "entity.iron_golem.damage" + }, + { + "id": 775, + "name": "entity.iron_golem.death" + }, + { + "id": 776, + "name": "entity.iron_golem.hurt" + }, + { + "id": 777, + "name": "entity.iron_golem.repair" + }, + { + "id": 778, + "name": "entity.iron_golem.step" + }, + { + "id": 779, + "name": "block.iron_trapdoor.close" + }, + { + "id": 780, + "name": "block.iron_trapdoor.open" + }, + { + "id": 781, + "name": "entity.item_frame.add_item" + }, + { + "id": 782, + "name": "entity.item_frame.break" + }, + { + "id": 783, + "name": "entity.item_frame.place" + }, + { + "id": 784, + "name": "entity.item_frame.remove_item" + }, + { + "id": 785, + "name": "entity.item_frame.rotate_item" + }, + { + "id": 786, + "name": "entity.item.break" + }, + { + "id": 787, + "name": "entity.item.pickup" + }, + { + "id": 788, + "name": "block.ladder.break" + }, + { + "id": 789, + "name": "block.ladder.fall" + }, + { + "id": 790, + "name": "block.ladder.hit" + }, + { + "id": 791, + "name": "block.ladder.place" + }, + { + "id": 792, + "name": "block.ladder.step" + }, + { + "id": 793, + "name": "block.lantern.break" + }, + { + "id": 794, + "name": "block.lantern.fall" + }, + { + "id": 795, + "name": "block.lantern.hit" + }, + { + "id": 796, + "name": "block.lantern.place" + }, + { + "id": 797, + "name": "block.lantern.step" + }, + { + "id": 798, + "name": "block.large_amethyst_bud.break" + }, + { + "id": 799, + "name": "block.large_amethyst_bud.place" + }, + { + "id": 800, + "name": "block.lava.ambient" + }, + { + "id": 801, + "name": "block.lava.extinguish" + }, + { + "id": 802, + "name": "block.lava.pop" + }, + { + "id": 803, + "name": "entity.leash_knot.break" + }, + { + "id": 804, + "name": "entity.leash_knot.place" + }, + { + "id": 805, + "name": "block.lever.click" + }, + { + "id": 806, + "name": "entity.lightning_bolt.impact" + }, + { + "id": 807, + "name": "entity.lightning_bolt.thunder" + }, + { + "id": 808, + "name": "entity.lingering_potion.throw" + }, + { + "id": 809, + "name": "entity.llama.ambient" + }, + { + "id": 810, + "name": "entity.llama.angry" + }, + { + "id": 811, + "name": "entity.llama.chest" + }, + { + "id": 812, + "name": "entity.llama.death" + }, + { + "id": 813, + "name": "entity.llama.eat" + }, + { + "id": 814, + "name": "entity.llama.hurt" + }, + { + "id": 815, + "name": "entity.llama.spit" + }, + { + "id": 816, + "name": "entity.llama.step" + }, + { + "id": 817, + "name": "entity.llama.swag" + }, + { + "id": 818, + "name": "entity.magma_cube.death_small" + }, + { + "id": 819, + "name": "block.lodestone.break" + }, + { + "id": 820, + "name": "block.lodestone.step" + }, + { + "id": 821, + "name": "block.lodestone.place" + }, + { + "id": 822, + "name": "block.lodestone.hit" + }, + { + "id": 823, + "name": "block.lodestone.fall" + }, + { + "id": 824, + "name": "item.lodestone_compass.lock" + }, + { + "id": 825, + "name": "item.mace.smash_air" + }, + { + "id": 826, + "name": "item.mace.smash_ground" + }, + { + "id": 827, + "name": "item.mace.smash_ground_heavy" + }, + { + "id": 828, + "name": "entity.magma_cube.death" + }, + { + "id": 829, + "name": "entity.magma_cube.hurt" + }, + { + "id": 830, + "name": "entity.magma_cube.hurt_small" + }, + { + "id": 831, + "name": "entity.magma_cube.jump" + }, + { + "id": 832, + "name": "entity.magma_cube.squish" + }, + { + "id": 833, + "name": "entity.magma_cube.squish_small" + }, + { + "id": 834, + "name": "block.mangrove_roots.break" + }, + { + "id": 835, + "name": "block.mangrove_roots.fall" + }, + { + "id": 836, + "name": "block.mangrove_roots.hit" + }, + { + "id": 837, + "name": "block.mangrove_roots.place" + }, + { + "id": 838, + "name": "block.mangrove_roots.step" + }, + { + "id": 839, + "name": "block.medium_amethyst_bud.break" + }, + { + "id": 840, + "name": "block.medium_amethyst_bud.place" + }, + { + "id": 841, + "name": "block.metal.break" + }, + { + "id": 842, + "name": "block.metal.fall" + }, + { + "id": 843, + "name": "block.metal.hit" + }, + { + "id": 844, + "name": "block.metal.place" + }, + { + "id": 845, + "name": "block.metal_pressure_plate.click_off" + }, + { + "id": 846, + "name": "block.metal_pressure_plate.click_on" + }, + { + "id": 847, + "name": "block.metal.step" + }, + { + "id": 848, + "name": "entity.minecart.inside.underwater" + }, + { + "id": 849, + "name": "entity.minecart.inside" + }, + { + "id": 850, + "name": "entity.minecart.riding" + }, + { + "id": 851, + "name": "entity.mooshroom.convert" + }, + { + "id": 852, + "name": "entity.mooshroom.eat" + }, + { + "id": 853, + "name": "entity.mooshroom.milk" + }, + { + "id": 854, + "name": "entity.mooshroom.suspicious_milk" + }, + { + "id": 855, + "name": "entity.mooshroom.shear" + }, + { + "id": 856, + "name": "block.moss_carpet.break" + }, + { + "id": 857, + "name": "block.moss_carpet.fall" + }, + { + "id": 858, + "name": "block.moss_carpet.hit" + }, + { + "id": 859, + "name": "block.moss_carpet.place" + }, + { + "id": 860, + "name": "block.moss_carpet.step" + }, + { + "id": 861, + "name": "block.pink_petals.break" + }, + { + "id": 862, + "name": "block.pink_petals.fall" + }, + { + "id": 863, + "name": "block.pink_petals.hit" + }, + { + "id": 864, + "name": "block.pink_petals.place" + }, + { + "id": 865, + "name": "block.pink_petals.step" + }, + { + "id": 866, + "name": "block.moss.break" + }, + { + "id": 867, + "name": "block.moss.fall" + }, + { + "id": 868, + "name": "block.moss.hit" + }, + { + "id": 869, + "name": "block.moss.place" + }, + { + "id": 870, + "name": "block.moss.step" + }, + { + "id": 871, + "name": "block.mud.break" + }, + { + "id": 872, + "name": "block.mud.fall" + }, + { + "id": 873, + "name": "block.mud.hit" + }, + { + "id": 874, + "name": "block.mud.place" + }, + { + "id": 875, + "name": "block.mud.step" + }, + { + "id": 876, + "name": "block.mud_bricks.break" + }, + { + "id": 877, + "name": "block.mud_bricks.fall" + }, + { + "id": 878, + "name": "block.mud_bricks.hit" + }, + { + "id": 879, + "name": "block.mud_bricks.place" + }, + { + "id": 880, + "name": "block.mud_bricks.step" + }, + { + "id": 881, + "name": "block.muddy_mangrove_roots.break" + }, + { + "id": 882, + "name": "block.muddy_mangrove_roots.fall" + }, + { + "id": 883, + "name": "block.muddy_mangrove_roots.hit" + }, + { + "id": 884, + "name": "block.muddy_mangrove_roots.place" + }, + { + "id": 885, + "name": "block.muddy_mangrove_roots.step" + }, + { + "id": 886, + "name": "entity.mule.ambient" + }, + { + "id": 887, + "name": "entity.mule.angry" + }, + { + "id": 888, + "name": "entity.mule.chest" + }, + { + "id": 889, + "name": "entity.mule.death" + }, + { + "id": 890, + "name": "entity.mule.eat" + }, + { + "id": 891, + "name": "entity.mule.hurt" + }, + { + "id": 892, + "name": "entity.mule.jump" + }, + { + "id": 893, + "name": "music.creative" + }, + { + "id": 894, + "name": "music.credits" + }, + { + "id": 895, + "name": "music_disc.5" + }, + { + "id": 896, + "name": "music_disc.11" + }, + { + "id": 897, + "name": "music_disc.13" + }, + { + "id": 898, + "name": "music_disc.blocks" + }, + { + "id": 899, + "name": "music_disc.cat" + }, + { + "id": 900, + "name": "music_disc.chirp" + }, + { + "id": 901, + "name": "music_disc.far" + }, + { + "id": 902, + "name": "music_disc.mall" + }, + { + "id": 903, + "name": "music_disc.mellohi" + }, + { + "id": 904, + "name": "music_disc.pigstep" + }, + { + "id": 905, + "name": "music_disc.stal" + }, + { + "id": 906, + "name": "music_disc.strad" + }, + { + "id": 907, + "name": "music_disc.wait" + }, + { + "id": 908, + "name": "music_disc.ward" + }, + { + "id": 909, + "name": "music_disc.otherside" + }, + { + "id": 910, + "name": "music_disc.relic" + }, + { + "id": 911, + "name": "music_disc.creator" + }, + { + "id": 912, + "name": "music_disc.creator_music_box" + }, + { + "id": 913, + "name": "music_disc.precipice" + }, + { + "id": 914, + "name": "music.dragon" + }, + { + "id": 915, + "name": "music.end" + }, + { + "id": 916, + "name": "music.game" + }, + { + "id": 917, + "name": "music.menu" + }, + { + "id": 918, + "name": "music.nether.basalt_deltas" + }, + { + "id": 919, + "name": "music.nether.crimson_forest" + }, + { + "id": 920, + "name": "music.overworld.deep_dark" + }, + { + "id": 921, + "name": "music.overworld.dripstone_caves" + }, + { + "id": 922, + "name": "music.overworld.grove" + }, + { + "id": 923, + "name": "music.overworld.jagged_peaks" + }, + { + "id": 924, + "name": "music.overworld.lush_caves" + }, + { + "id": 925, + "name": "music.overworld.swamp" + }, + { + "id": 926, + "name": "music.overworld.forest" + }, + { + "id": 927, + "name": "music.overworld.old_growth_taiga" + }, + { + "id": 928, + "name": "music.overworld.meadow" + }, + { + "id": 929, + "name": "music.overworld.cherry_grove" + }, + { + "id": 930, + "name": "music.nether.nether_wastes" + }, + { + "id": 931, + "name": "music.overworld.frozen_peaks" + }, + { + "id": 932, + "name": "music.overworld.snowy_slopes" + }, + { + "id": 933, + "name": "music.nether.soul_sand_valley" + }, + { + "id": 934, + "name": "music.overworld.stony_peaks" + }, + { + "id": 935, + "name": "music.nether.warped_forest" + }, + { + "id": 936, + "name": "music.overworld.flower_forest" + }, + { + "id": 937, + "name": "music.overworld.desert" + }, + { + "id": 938, + "name": "music.overworld.badlands" + }, + { + "id": 939, + "name": "music.overworld.jungle" + }, + { + "id": 940, + "name": "music.overworld.sparse_jungle" + }, + { + "id": 941, + "name": "music.overworld.bamboo_jungle" + }, + { + "id": 942, + "name": "music.under_water" + }, + { + "id": 943, + "name": "block.nether_bricks.break" + }, + { + "id": 944, + "name": "block.nether_bricks.step" + }, + { + "id": 945, + "name": "block.nether_bricks.place" + }, + { + "id": 946, + "name": "block.nether_bricks.hit" + }, + { + "id": 947, + "name": "block.nether_bricks.fall" + }, + { + "id": 948, + "name": "block.nether_wart.break" + }, + { + "id": 949, + "name": "item.nether_wart.plant" + }, + { + "id": 950, + "name": "block.nether_wood.break" + }, + { + "id": 951, + "name": "block.nether_wood.fall" + }, + { + "id": 952, + "name": "block.nether_wood.hit" + }, + { + "id": 953, + "name": "block.nether_wood.place" + }, + { + "id": 954, + "name": "block.nether_wood.step" + }, + { + "id": 955, + "name": "block.nether_wood_door.close" + }, + { + "id": 956, + "name": "block.nether_wood_door.open" + }, + { + "id": 957, + "name": "block.nether_wood_trapdoor.close" + }, + { + "id": 958, + "name": "block.nether_wood_trapdoor.open" + }, + { + "id": 959, + "name": "block.nether_wood_button.click_off" + }, + { + "id": 960, + "name": "block.nether_wood_button.click_on" + }, + { + "id": 961, + "name": "block.nether_wood_pressure_plate.click_off" + }, + { + "id": 962, + "name": "block.nether_wood_pressure_plate.click_on" + }, + { + "id": 963, + "name": "block.nether_wood_fence_gate.close" + }, + { + "id": 964, + "name": "block.nether_wood_fence_gate.open" + }, + { + "id": 965, + "name": "intentionally_empty" + }, + { + "id": 966, + "name": "block.packed_mud.break" + }, + { + "id": 967, + "name": "block.packed_mud.fall" + }, + { + "id": 968, + "name": "block.packed_mud.hit" + }, + { + "id": 969, + "name": "block.packed_mud.place" + }, + { + "id": 970, + "name": "block.packed_mud.step" + }, + { + "id": 971, + "name": "block.stem.break" + }, + { + "id": 972, + "name": "block.stem.step" + }, + { + "id": 973, + "name": "block.stem.place" + }, + { + "id": 974, + "name": "block.stem.hit" + }, + { + "id": 975, + "name": "block.stem.fall" + }, + { + "id": 976, + "name": "block.nylium.break" + }, + { + "id": 977, + "name": "block.nylium.step" + }, + { + "id": 978, + "name": "block.nylium.place" + }, + { + "id": 979, + "name": "block.nylium.hit" + }, + { + "id": 980, + "name": "block.nylium.fall" + }, + { + "id": 981, + "name": "block.nether_sprouts.break" + }, + { + "id": 982, + "name": "block.nether_sprouts.step" + }, + { + "id": 983, + "name": "block.nether_sprouts.place" + }, + { + "id": 984, + "name": "block.nether_sprouts.hit" + }, + { + "id": 985, + "name": "block.nether_sprouts.fall" + }, + { + "id": 986, + "name": "block.fungus.break" + }, + { + "id": 987, + "name": "block.fungus.step" + }, + { + "id": 988, + "name": "block.fungus.place" + }, + { + "id": 989, + "name": "block.fungus.hit" + }, + { + "id": 990, + "name": "block.fungus.fall" + }, + { + "id": 991, + "name": "block.weeping_vines.break" + }, + { + "id": 992, + "name": "block.weeping_vines.step" + }, + { + "id": 993, + "name": "block.weeping_vines.place" + }, + { + "id": 994, + "name": "block.weeping_vines.hit" + }, + { + "id": 995, + "name": "block.weeping_vines.fall" + }, + { + "id": 996, + "name": "block.wart_block.break" + }, + { + "id": 997, + "name": "block.wart_block.step" + }, + { + "id": 998, + "name": "block.wart_block.place" + }, + { + "id": 999, + "name": "block.wart_block.hit" + }, + { + "id": 1000, + "name": "block.wart_block.fall" + }, + { + "id": 1001, + "name": "block.netherite_block.break" + }, + { + "id": 1002, + "name": "block.netherite_block.step" + }, + { + "id": 1003, + "name": "block.netherite_block.place" + }, + { + "id": 1004, + "name": "block.netherite_block.hit" + }, + { + "id": 1005, + "name": "block.netherite_block.fall" + }, + { + "id": 1006, + "name": "block.netherrack.break" + }, + { + "id": 1007, + "name": "block.netherrack.step" + }, + { + "id": 1008, + "name": "block.netherrack.place" + }, + { + "id": 1009, + "name": "block.netherrack.hit" + }, + { + "id": 1010, + "name": "block.netherrack.fall" + }, + { + "id": 1011, + "name": "block.note_block.basedrum" + }, + { + "id": 1012, + "name": "block.note_block.bass" + }, + { + "id": 1013, + "name": "block.note_block.bell" + }, + { + "id": 1014, + "name": "block.note_block.chime" + }, + { + "id": 1015, + "name": "block.note_block.flute" + }, + { + "id": 1016, + "name": "block.note_block.guitar" + }, + { + "id": 1017, + "name": "block.note_block.harp" + }, + { + "id": 1018, + "name": "block.note_block.hat" + }, + { + "id": 1019, + "name": "block.note_block.pling" + }, + { + "id": 1020, + "name": "block.note_block.snare" + }, + { + "id": 1021, + "name": "block.note_block.xylophone" + }, + { + "id": 1022, + "name": "block.note_block.iron_xylophone" + }, + { + "id": 1023, + "name": "block.note_block.cow_bell" + }, + { + "id": 1024, + "name": "block.note_block.didgeridoo" + }, + { + "id": 1025, + "name": "block.note_block.bit" + }, + { + "id": 1026, + "name": "block.note_block.banjo" + }, + { + "id": 1027, + "name": "block.note_block.imitate.zombie" + }, + { + "id": 1028, + "name": "block.note_block.imitate.skeleton" + }, + { + "id": 1029, + "name": "block.note_block.imitate.creeper" + }, + { + "id": 1030, + "name": "block.note_block.imitate.ender_dragon" + }, + { + "id": 1031, + "name": "block.note_block.imitate.wither_skeleton" + }, + { + "id": 1032, + "name": "block.note_block.imitate.piglin" + }, + { + "id": 1033, + "name": "entity.ocelot.hurt" + }, + { + "id": 1034, + "name": "entity.ocelot.ambient" + }, + { + "id": 1035, + "name": "entity.ocelot.death" + }, + { + "id": 1036, + "name": "item.ominous_bottle.dispose" + }, + { + "id": 1037, + "name": "entity.painting.break" + }, + { + "id": 1038, + "name": "entity.painting.place" + }, + { + "id": 1039, + "name": "block.pale_hanging_moss.idle" + }, + { + "id": 1040, + "name": "entity.panda.pre_sneeze" + }, + { + "id": 1041, + "name": "entity.panda.sneeze" + }, + { + "id": 1042, + "name": "entity.panda.ambient" + }, + { + "id": 1043, + "name": "entity.panda.death" + }, + { + "id": 1044, + "name": "entity.panda.eat" + }, + { + "id": 1045, + "name": "entity.panda.step" + }, + { + "id": 1046, + "name": "entity.panda.cant_breed" + }, + { + "id": 1047, + "name": "entity.panda.aggressive_ambient" + }, + { + "id": 1048, + "name": "entity.panda.worried_ambient" + }, + { + "id": 1049, + "name": "entity.panda.hurt" + }, + { + "id": 1050, + "name": "entity.panda.bite" + }, + { + "id": 1051, + "name": "entity.parrot.ambient" + }, + { + "id": 1052, + "name": "entity.parrot.death" + }, + { + "id": 1053, + "name": "entity.parrot.eat" + }, + { + "id": 1054, + "name": "entity.parrot.fly" + }, + { + "id": 1055, + "name": "entity.parrot.hurt" + }, + { + "id": 1056, + "name": "entity.parrot.imitate.blaze" + }, + { + "id": 1057, + "name": "entity.parrot.imitate.bogged" + }, + { + "id": 1058, + "name": "entity.parrot.imitate.breeze" + }, + { + "id": 1059, + "name": "entity.parrot.imitate.creaking" + }, + { + "id": 1060, + "name": "entity.parrot.imitate.creeper" + }, + { + "id": 1061, + "name": "entity.parrot.imitate.drowned" + }, + { + "id": 1062, + "name": "entity.parrot.imitate.elder_guardian" + }, + { + "id": 1063, + "name": "entity.parrot.imitate.ender_dragon" + }, + { + "id": 1064, + "name": "entity.parrot.imitate.endermite" + }, + { + "id": 1065, + "name": "entity.parrot.imitate.evoker" + }, + { + "id": 1066, + "name": "entity.parrot.imitate.ghast" + }, + { + "id": 1067, + "name": "entity.parrot.imitate.guardian" + }, + { + "id": 1068, + "name": "entity.parrot.imitate.hoglin" + }, + { + "id": 1069, + "name": "entity.parrot.imitate.husk" + }, + { + "id": 1070, + "name": "entity.parrot.imitate.illusioner" + }, + { + "id": 1071, + "name": "entity.parrot.imitate.magma_cube" + }, + { + "id": 1072, + "name": "entity.parrot.imitate.phantom" + }, + { + "id": 1073, + "name": "entity.parrot.imitate.piglin" + }, + { + "id": 1074, + "name": "entity.parrot.imitate.piglin_brute" + }, + { + "id": 1075, + "name": "entity.parrot.imitate.pillager" + }, + { + "id": 1076, + "name": "entity.parrot.imitate.ravager" + }, + { + "id": 1077, + "name": "entity.parrot.imitate.shulker" + }, + { + "id": 1078, + "name": "entity.parrot.imitate.silverfish" + }, + { + "id": 1079, + "name": "entity.parrot.imitate.skeleton" + }, + { + "id": 1080, + "name": "entity.parrot.imitate.slime" + }, + { + "id": 1081, + "name": "entity.parrot.imitate.spider" + }, + { + "id": 1082, + "name": "entity.parrot.imitate.stray" + }, + { + "id": 1083, + "name": "entity.parrot.imitate.vex" + }, + { + "id": 1084, + "name": "entity.parrot.imitate.vindicator" + }, + { + "id": 1085, + "name": "entity.parrot.imitate.warden" + }, + { + "id": 1086, + "name": "entity.parrot.imitate.witch" + }, + { + "id": 1087, + "name": "entity.parrot.imitate.wither" + }, + { + "id": 1088, + "name": "entity.parrot.imitate.wither_skeleton" + }, + { + "id": 1089, + "name": "entity.parrot.imitate.zoglin" + }, + { + "id": 1090, + "name": "entity.parrot.imitate.zombie" + }, + { + "id": 1091, + "name": "entity.parrot.imitate.zombie_villager" + }, + { + "id": 1092, + "name": "entity.parrot.step" + }, + { + "id": 1093, + "name": "entity.phantom.ambient" + }, + { + "id": 1094, + "name": "entity.phantom.bite" + }, + { + "id": 1095, + "name": "entity.phantom.death" + }, + { + "id": 1096, + "name": "entity.phantom.flap" + }, + { + "id": 1097, + "name": "entity.phantom.hurt" + }, + { + "id": 1098, + "name": "entity.phantom.swoop" + }, + { + "id": 1099, + "name": "entity.pig.ambient" + }, + { + "id": 1100, + "name": "entity.pig.death" + }, + { + "id": 1101, + "name": "entity.pig.hurt" + }, + { + "id": 1102, + "name": "entity.pig.saddle" + }, + { + "id": 1103, + "name": "entity.pig.step" + }, + { + "id": 1104, + "name": "entity.piglin.admiring_item" + }, + { + "id": 1105, + "name": "entity.piglin.ambient" + }, + { + "id": 1106, + "name": "entity.piglin.angry" + }, + { + "id": 1107, + "name": "entity.piglin.celebrate" + }, + { + "id": 1108, + "name": "entity.piglin.death" + }, + { + "id": 1109, + "name": "entity.piglin.jealous" + }, + { + "id": 1110, + "name": "entity.piglin.hurt" + }, + { + "id": 1111, + "name": "entity.piglin.retreat" + }, + { + "id": 1112, + "name": "entity.piglin.step" + }, + { + "id": 1113, + "name": "entity.piglin.converted_to_zombified" + }, + { + "id": 1114, + "name": "entity.piglin_brute.ambient" + }, + { + "id": 1115, + "name": "entity.piglin_brute.angry" + }, + { + "id": 1116, + "name": "entity.piglin_brute.death" + }, + { + "id": 1117, + "name": "entity.piglin_brute.hurt" + }, + { + "id": 1118, + "name": "entity.piglin_brute.step" + }, + { + "id": 1119, + "name": "entity.piglin_brute.converted_to_zombified" + }, + { + "id": 1120, + "name": "entity.pillager.ambient" + }, + { + "id": 1121, + "name": "entity.pillager.celebrate" + }, + { + "id": 1122, + "name": "entity.pillager.death" + }, + { + "id": 1123, + "name": "entity.pillager.hurt" + }, + { + "id": 1124, + "name": "block.piston.contract" + }, + { + "id": 1125, + "name": "block.piston.extend" + }, + { + "id": 1126, + "name": "entity.player.attack.crit" + }, + { + "id": 1127, + "name": "entity.player.attack.knockback" + }, + { + "id": 1128, + "name": "entity.player.attack.nodamage" + }, + { + "id": 1129, + "name": "entity.player.attack.strong" + }, + { + "id": 1130, + "name": "entity.player.attack.sweep" + }, + { + "id": 1131, + "name": "entity.player.attack.weak" + }, + { + "id": 1132, + "name": "entity.player.big_fall" + }, + { + "id": 1133, + "name": "entity.player.breath" + }, + { + "id": 1134, + "name": "entity.player.burp" + }, + { + "id": 1135, + "name": "entity.player.death" + }, + { + "id": 1136, + "name": "entity.player.hurt" + }, + { + "id": 1137, + "name": "entity.player.hurt_drown" + }, + { + "id": 1138, + "name": "entity.player.hurt_freeze" + }, + { + "id": 1139, + "name": "entity.player.hurt_on_fire" + }, + { + "id": 1140, + "name": "entity.player.hurt_sweet_berry_bush" + }, + { + "id": 1141, + "name": "entity.player.levelup" + }, + { + "id": 1142, + "name": "entity.player.small_fall" + }, + { + "id": 1143, + "name": "entity.player.splash" + }, + { + "id": 1144, + "name": "entity.player.splash.high_speed" + }, + { + "id": 1145, + "name": "entity.player.swim" + }, + { + "id": 1146, + "name": "entity.player.teleport" + }, + { + "id": 1147, + "name": "entity.polar_bear.ambient" + }, + { + "id": 1148, + "name": "entity.polar_bear.ambient_baby" + }, + { + "id": 1149, + "name": "entity.polar_bear.death" + }, + { + "id": 1150, + "name": "entity.polar_bear.hurt" + }, + { + "id": 1151, + "name": "entity.polar_bear.step" + }, + { + "id": 1152, + "name": "entity.polar_bear.warning" + }, + { + "id": 1153, + "name": "block.polished_deepslate.break" + }, + { + "id": 1154, + "name": "block.polished_deepslate.fall" + }, + { + "id": 1155, + "name": "block.polished_deepslate.hit" + }, + { + "id": 1156, + "name": "block.polished_deepslate.place" + }, + { + "id": 1157, + "name": "block.polished_deepslate.step" + }, + { + "id": 1158, + "name": "block.portal.ambient" + }, + { + "id": 1159, + "name": "block.portal.travel" + }, + { + "id": 1160, + "name": "block.portal.trigger" + }, + { + "id": 1161, + "name": "block.powder_snow.break" + }, + { + "id": 1162, + "name": "block.powder_snow.fall" + }, + { + "id": 1163, + "name": "block.powder_snow.hit" + }, + { + "id": 1164, + "name": "block.powder_snow.place" + }, + { + "id": 1165, + "name": "block.powder_snow.step" + }, + { + "id": 1166, + "name": "entity.puffer_fish.ambient" + }, + { + "id": 1167, + "name": "entity.puffer_fish.blow_out" + }, + { + "id": 1168, + "name": "entity.puffer_fish.blow_up" + }, + { + "id": 1169, + "name": "entity.puffer_fish.death" + }, + { + "id": 1170, + "name": "entity.puffer_fish.flop" + }, + { + "id": 1171, + "name": "entity.puffer_fish.hurt" + }, + { + "id": 1172, + "name": "entity.puffer_fish.sting" + }, + { + "id": 1173, + "name": "block.pumpkin.carve" + }, + { + "id": 1174, + "name": "entity.rabbit.ambient" + }, + { + "id": 1175, + "name": "entity.rabbit.attack" + }, + { + "id": 1176, + "name": "entity.rabbit.death" + }, + { + "id": 1177, + "name": "entity.rabbit.hurt" + }, + { + "id": 1178, + "name": "entity.rabbit.jump" + }, + { + "id": 1179, + "name": "event.raid.horn" + }, + { + "id": 1180, + "name": "entity.ravager.ambient" + }, + { + "id": 1181, + "name": "entity.ravager.attack" + }, + { + "id": 1182, + "name": "entity.ravager.celebrate" + }, + { + "id": 1183, + "name": "entity.ravager.death" + }, + { + "id": 1184, + "name": "entity.ravager.hurt" + }, + { + "id": 1185, + "name": "entity.ravager.step" + }, + { + "id": 1186, + "name": "entity.ravager.stunned" + }, + { + "id": 1187, + "name": "entity.ravager.roar" + }, + { + "id": 1188, + "name": "block.nether_gold_ore.break" + }, + { + "id": 1189, + "name": "block.nether_gold_ore.fall" + }, + { + "id": 1190, + "name": "block.nether_gold_ore.hit" + }, + { + "id": 1191, + "name": "block.nether_gold_ore.place" + }, + { + "id": 1192, + "name": "block.nether_gold_ore.step" + }, + { + "id": 1193, + "name": "block.nether_ore.break" + }, + { + "id": 1194, + "name": "block.nether_ore.fall" + }, + { + "id": 1195, + "name": "block.nether_ore.hit" + }, + { + "id": 1196, + "name": "block.nether_ore.place" + }, + { + "id": 1197, + "name": "block.nether_ore.step" + }, + { + "id": 1198, + "name": "block.redstone_torch.burnout" + }, + { + "id": 1199, + "name": "block.respawn_anchor.ambient" + }, + { + "id": 1200, + "name": "block.respawn_anchor.charge" + }, + { + "id": 1201, + "name": "block.respawn_anchor.deplete" + }, + { + "id": 1202, + "name": "block.respawn_anchor.set_spawn" + }, + { + "id": 1203, + "name": "block.rooted_dirt.break" + }, + { + "id": 1204, + "name": "block.rooted_dirt.fall" + }, + { + "id": 1205, + "name": "block.rooted_dirt.hit" + }, + { + "id": 1206, + "name": "block.rooted_dirt.place" + }, + { + "id": 1207, + "name": "block.rooted_dirt.step" + }, + { + "id": 1208, + "name": "entity.salmon.ambient" + }, + { + "id": 1209, + "name": "entity.salmon.death" + }, + { + "id": 1210, + "name": "entity.salmon.flop" + }, + { + "id": 1211, + "name": "entity.salmon.hurt" + }, + { + "id": 1212, + "name": "block.sand.break" + }, + { + "id": 1213, + "name": "block.sand.fall" + }, + { + "id": 1214, + "name": "block.sand.hit" + }, + { + "id": 1215, + "name": "block.sand.place" + }, + { + "id": 1216, + "name": "block.sand.step" + }, + { + "id": 1217, + "name": "block.scaffolding.break" + }, + { + "id": 1218, + "name": "block.scaffolding.fall" + }, + { + "id": 1219, + "name": "block.scaffolding.hit" + }, + { + "id": 1220, + "name": "block.scaffolding.place" + }, + { + "id": 1221, + "name": "block.scaffolding.step" + }, + { + "id": 1222, + "name": "block.sculk.spread" + }, + { + "id": 1223, + "name": "block.sculk.charge" + }, + { + "id": 1224, + "name": "block.sculk.break" + }, + { + "id": 1225, + "name": "block.sculk.fall" + }, + { + "id": 1226, + "name": "block.sculk.hit" + }, + { + "id": 1227, + "name": "block.sculk.place" + }, + { + "id": 1228, + "name": "block.sculk.step" + }, + { + "id": 1229, + "name": "block.sculk_catalyst.bloom" + }, + { + "id": 1230, + "name": "block.sculk_catalyst.break" + }, + { + "id": 1231, + "name": "block.sculk_catalyst.fall" + }, + { + "id": 1232, + "name": "block.sculk_catalyst.hit" + }, + { + "id": 1233, + "name": "block.sculk_catalyst.place" + }, + { + "id": 1234, + "name": "block.sculk_catalyst.step" + }, + { + "id": 1235, + "name": "block.sculk_sensor.clicking" + }, + { + "id": 1236, + "name": "block.sculk_sensor.clicking_stop" + }, + { + "id": 1237, + "name": "block.sculk_sensor.break" + }, + { + "id": 1238, + "name": "block.sculk_sensor.fall" + }, + { + "id": 1239, + "name": "block.sculk_sensor.hit" + }, + { + "id": 1240, + "name": "block.sculk_sensor.place" + }, + { + "id": 1241, + "name": "block.sculk_sensor.step" + }, + { + "id": 1242, + "name": "block.sculk_shrieker.break" + }, + { + "id": 1243, + "name": "block.sculk_shrieker.fall" + }, + { + "id": 1244, + "name": "block.sculk_shrieker.hit" + }, + { + "id": 1245, + "name": "block.sculk_shrieker.place" + }, + { + "id": 1246, + "name": "block.sculk_shrieker.shriek" + }, + { + "id": 1247, + "name": "block.sculk_shrieker.step" + }, + { + "id": 1248, + "name": "block.sculk_vein.break" + }, + { + "id": 1249, + "name": "block.sculk_vein.fall" + }, + { + "id": 1250, + "name": "block.sculk_vein.hit" + }, + { + "id": 1251, + "name": "block.sculk_vein.place" + }, + { + "id": 1252, + "name": "block.sculk_vein.step" + }, + { + "id": 1253, + "name": "entity.sheep.ambient" + }, + { + "id": 1254, + "name": "entity.sheep.death" + }, + { + "id": 1255, + "name": "entity.sheep.hurt" + }, + { + "id": 1256, + "name": "entity.sheep.shear" + }, + { + "id": 1257, + "name": "entity.sheep.step" + }, + { + "id": 1258, + "name": "item.shield.block" + }, + { + "id": 1259, + "name": "item.shield.break" + }, + { + "id": 1260, + "name": "block.shroomlight.break" + }, + { + "id": 1261, + "name": "block.shroomlight.step" + }, + { + "id": 1262, + "name": "block.shroomlight.place" + }, + { + "id": 1263, + "name": "block.shroomlight.hit" + }, + { + "id": 1264, + "name": "block.shroomlight.fall" + }, + { + "id": 1265, + "name": "item.shovel.flatten" + }, + { + "id": 1266, + "name": "entity.shulker.ambient" + }, + { + "id": 1267, + "name": "block.shulker_box.close" + }, + { + "id": 1268, + "name": "block.shulker_box.open" + }, + { + "id": 1269, + "name": "entity.shulker_bullet.hit" + }, + { + "id": 1270, + "name": "entity.shulker_bullet.hurt" + }, + { + "id": 1271, + "name": "entity.shulker.close" + }, + { + "id": 1272, + "name": "entity.shulker.death" + }, + { + "id": 1273, + "name": "entity.shulker.hurt" + }, + { + "id": 1274, + "name": "entity.shulker.hurt_closed" + }, + { + "id": 1275, + "name": "entity.shulker.open" + }, + { + "id": 1276, + "name": "entity.shulker.shoot" + }, + { + "id": 1277, + "name": "entity.shulker.teleport" + }, + { + "id": 1278, + "name": "entity.silverfish.ambient" + }, + { + "id": 1279, + "name": "entity.silverfish.death" + }, + { + "id": 1280, + "name": "entity.silverfish.hurt" + }, + { + "id": 1281, + "name": "entity.silverfish.step" + }, + { + "id": 1282, + "name": "entity.skeleton.ambient" + }, + { + "id": 1283, + "name": "entity.skeleton.converted_to_stray" + }, + { + "id": 1284, + "name": "entity.skeleton.death" + }, + { + "id": 1285, + "name": "entity.skeleton_horse.ambient" + }, + { + "id": 1286, + "name": "entity.skeleton_horse.death" + }, + { + "id": 1287, + "name": "entity.skeleton_horse.hurt" + }, + { + "id": 1288, + "name": "entity.skeleton_horse.swim" + }, + { + "id": 1289, + "name": "entity.skeleton_horse.ambient_water" + }, + { + "id": 1290, + "name": "entity.skeleton_horse.gallop_water" + }, + { + "id": 1291, + "name": "entity.skeleton_horse.jump_water" + }, + { + "id": 1292, + "name": "entity.skeleton_horse.step_water" + }, + { + "id": 1293, + "name": "entity.skeleton.hurt" + }, + { + "id": 1294, + "name": "entity.skeleton.shoot" + }, + { + "id": 1295, + "name": "entity.skeleton.step" + }, + { + "id": 1296, + "name": "entity.slime.attack" + }, + { + "id": 1297, + "name": "entity.slime.death" + }, + { + "id": 1298, + "name": "entity.slime.hurt" + }, + { + "id": 1299, + "name": "entity.slime.jump" + }, + { + "id": 1300, + "name": "entity.slime.squish" + }, + { + "id": 1301, + "name": "block.slime_block.break" + }, + { + "id": 1302, + "name": "block.slime_block.fall" + }, + { + "id": 1303, + "name": "block.slime_block.hit" + }, + { + "id": 1304, + "name": "block.slime_block.place" + }, + { + "id": 1305, + "name": "block.slime_block.step" + }, + { + "id": 1306, + "name": "block.small_amethyst_bud.break" + }, + { + "id": 1307, + "name": "block.small_amethyst_bud.place" + }, + { + "id": 1308, + "name": "block.small_dripleaf.break" + }, + { + "id": 1309, + "name": "block.small_dripleaf.fall" + }, + { + "id": 1310, + "name": "block.small_dripleaf.hit" + }, + { + "id": 1311, + "name": "block.small_dripleaf.place" + }, + { + "id": 1312, + "name": "block.small_dripleaf.step" + }, + { + "id": 1313, + "name": "block.soul_sand.break" + }, + { + "id": 1314, + "name": "block.soul_sand.step" + }, + { + "id": 1315, + "name": "block.soul_sand.place" + }, + { + "id": 1316, + "name": "block.soul_sand.hit" + }, + { + "id": 1317, + "name": "block.soul_sand.fall" + }, + { + "id": 1318, + "name": "block.soul_soil.break" + }, + { + "id": 1319, + "name": "block.soul_soil.step" + }, + { + "id": 1320, + "name": "block.soul_soil.place" + }, + { + "id": 1321, + "name": "block.soul_soil.hit" + }, + { + "id": 1322, + "name": "block.soul_soil.fall" + }, + { + "id": 1323, + "name": "particle.soul_escape" + }, + { + "id": 1324, + "name": "block.spawner.break" + }, + { + "id": 1325, + "name": "block.spawner.fall" + }, + { + "id": 1326, + "name": "block.spawner.hit" + }, + { + "id": 1327, + "name": "block.spawner.place" + }, + { + "id": 1328, + "name": "block.spawner.step" + }, + { + "id": 1329, + "name": "block.resin.break" + }, + { + "id": 1330, + "name": "block.resin.fall" + }, + { + "id": 1331, + "name": "block.resin.place" + }, + { + "id": 1332, + "name": "block.resin.step" + }, + { + "id": 1333, + "name": "block.resin_bricks.break" + }, + { + "id": 1334, + "name": "block.resin_bricks.fall" + }, + { + "id": 1335, + "name": "block.resin_bricks.hit" + }, + { + "id": 1336, + "name": "block.resin_bricks.place" + }, + { + "id": 1337, + "name": "block.resin_bricks.step" + }, + { + "id": 1338, + "name": "block.spore_blossom.break" + }, + { + "id": 1339, + "name": "block.spore_blossom.fall" + }, + { + "id": 1340, + "name": "block.spore_blossom.hit" + }, + { + "id": 1341, + "name": "block.spore_blossom.place" + }, + { + "id": 1342, + "name": "block.spore_blossom.step" + }, + { + "id": 1343, + "name": "entity.strider.ambient" + }, + { + "id": 1344, + "name": "entity.strider.happy" + }, + { + "id": 1345, + "name": "entity.strider.retreat" + }, + { + "id": 1346, + "name": "entity.strider.death" + }, + { + "id": 1347, + "name": "entity.strider.hurt" + }, + { + "id": 1348, + "name": "entity.strider.step" + }, + { + "id": 1349, + "name": "entity.strider.step_lava" + }, + { + "id": 1350, + "name": "entity.strider.eat" + }, + { + "id": 1351, + "name": "entity.strider.saddle" + }, + { + "id": 1352, + "name": "entity.slime.death_small" + }, + { + "id": 1353, + "name": "entity.slime.hurt_small" + }, + { + "id": 1354, + "name": "entity.slime.jump_small" + }, + { + "id": 1355, + "name": "entity.slime.squish_small" + }, + { + "id": 1356, + "name": "block.smithing_table.use" + }, + { + "id": 1357, + "name": "block.smoker.smoke" + }, + { + "id": 1358, + "name": "entity.sniffer.step" + }, + { + "id": 1359, + "name": "entity.sniffer.eat" + }, + { + "id": 1360, + "name": "entity.sniffer.idle" + }, + { + "id": 1361, + "name": "entity.sniffer.hurt" + }, + { + "id": 1362, + "name": "entity.sniffer.death" + }, + { + "id": 1363, + "name": "entity.sniffer.drop_seed" + }, + { + "id": 1364, + "name": "entity.sniffer.scenting" + }, + { + "id": 1365, + "name": "entity.sniffer.sniffing" + }, + { + "id": 1366, + "name": "entity.sniffer.searching" + }, + { + "id": 1367, + "name": "entity.sniffer.digging" + }, + { + "id": 1368, + "name": "entity.sniffer.digging_stop" + }, + { + "id": 1369, + "name": "entity.sniffer.happy" + }, + { + "id": 1370, + "name": "block.sniffer_egg.plop" + }, + { + "id": 1371, + "name": "block.sniffer_egg.crack" + }, + { + "id": 1372, + "name": "block.sniffer_egg.hatch" + }, + { + "id": 1373, + "name": "entity.snowball.throw" + }, + { + "id": 1374, + "name": "block.snow.break" + }, + { + "id": 1375, + "name": "block.snow.fall" + }, + { + "id": 1376, + "name": "entity.snow_golem.ambient" + }, + { + "id": 1377, + "name": "entity.snow_golem.death" + }, + { + "id": 1378, + "name": "entity.snow_golem.hurt" + }, + { + "id": 1379, + "name": "entity.snow_golem.shoot" + }, + { + "id": 1380, + "name": "entity.snow_golem.shear" + }, + { + "id": 1381, + "name": "block.snow.hit" + }, + { + "id": 1382, + "name": "block.snow.place" + }, + { + "id": 1383, + "name": "block.snow.step" + }, + { + "id": 1384, + "name": "entity.spider.ambient" + }, + { + "id": 1385, + "name": "entity.spider.death" + }, + { + "id": 1386, + "name": "entity.spider.hurt" + }, + { + "id": 1387, + "name": "entity.spider.step" + }, + { + "id": 1388, + "name": "entity.splash_potion.break" + }, + { + "id": 1389, + "name": "entity.splash_potion.throw" + }, + { + "id": 1390, + "name": "block.sponge.break" + }, + { + "id": 1391, + "name": "block.sponge.fall" + }, + { + "id": 1392, + "name": "block.sponge.hit" + }, + { + "id": 1393, + "name": "block.sponge.place" + }, + { + "id": 1394, + "name": "block.sponge.step" + }, + { + "id": 1395, + "name": "block.sponge.absorb" + }, + { + "id": 1396, + "name": "item.spyglass.use" + }, + { + "id": 1397, + "name": "item.spyglass.stop_using" + }, + { + "id": 1398, + "name": "entity.squid.ambient" + }, + { + "id": 1399, + "name": "entity.squid.death" + }, + { + "id": 1400, + "name": "entity.squid.hurt" + }, + { + "id": 1401, + "name": "entity.squid.squirt" + }, + { + "id": 1402, + "name": "block.stone.break" + }, + { + "id": 1403, + "name": "block.stone_button.click_off" + }, + { + "id": 1404, + "name": "block.stone_button.click_on" + }, + { + "id": 1405, + "name": "block.stone.fall" + }, + { + "id": 1406, + "name": "block.stone.hit" + }, + { + "id": 1407, + "name": "block.stone.place" + }, + { + "id": 1408, + "name": "block.stone_pressure_plate.click_off" + }, + { + "id": 1409, + "name": "block.stone_pressure_plate.click_on" + }, + { + "id": 1410, + "name": "block.stone.step" + }, + { + "id": 1411, + "name": "entity.stray.ambient" + }, + { + "id": 1412, + "name": "entity.stray.death" + }, + { + "id": 1413, + "name": "entity.stray.hurt" + }, + { + "id": 1414, + "name": "entity.stray.step" + }, + { + "id": 1415, + "name": "block.sweet_berry_bush.break" + }, + { + "id": 1416, + "name": "block.sweet_berry_bush.place" + }, + { + "id": 1417, + "name": "block.sweet_berry_bush.pick_berries" + }, + { + "id": 1418, + "name": "entity.tadpole.death" + }, + { + "id": 1419, + "name": "entity.tadpole.flop" + }, + { + "id": 1420, + "name": "entity.tadpole.grow_up" + }, + { + "id": 1421, + "name": "entity.tadpole.hurt" + }, + { + "id": 1422, + "name": "enchant.thorns.hit" + }, + { + "id": 1423, + "name": "entity.tnt.primed" + }, + { + "id": 1424, + "name": "item.totem.use" + }, + { + "id": 1425, + "name": "item.trident.hit" + }, + { + "id": 1426, + "name": "item.trident.hit_ground" + }, + { + "id": 1427, + "name": "item.trident.return" + }, + { + "id": 1428, + "name": "item.trident.riptide_1" + }, + { + "id": 1429, + "name": "item.trident.riptide_2" + }, + { + "id": 1430, + "name": "item.trident.riptide_3" + }, + { + "id": 1431, + "name": "item.trident.throw" + }, + { + "id": 1432, + "name": "item.trident.thunder" + }, + { + "id": 1433, + "name": "block.tripwire.attach" + }, + { + "id": 1434, + "name": "block.tripwire.click_off" + }, + { + "id": 1435, + "name": "block.tripwire.click_on" + }, + { + "id": 1436, + "name": "block.tripwire.detach" + }, + { + "id": 1437, + "name": "entity.tropical_fish.ambient" + }, + { + "id": 1438, + "name": "entity.tropical_fish.death" + }, + { + "id": 1439, + "name": "entity.tropical_fish.flop" + }, + { + "id": 1440, + "name": "entity.tropical_fish.hurt" + }, + { + "id": 1441, + "name": "block.tuff.break" + }, + { + "id": 1442, + "name": "block.tuff.step" + }, + { + "id": 1443, + "name": "block.tuff.place" + }, + { + "id": 1444, + "name": "block.tuff.hit" + }, + { + "id": 1445, + "name": "block.tuff.fall" + }, + { + "id": 1446, + "name": "block.tuff_bricks.break" + }, + { + "id": 1447, + "name": "block.tuff_bricks.fall" + }, + { + "id": 1448, + "name": "block.tuff_bricks.hit" + }, + { + "id": 1449, + "name": "block.tuff_bricks.place" + }, + { + "id": 1450, + "name": "block.tuff_bricks.step" + }, + { + "id": 1451, + "name": "block.polished_tuff.break" + }, + { + "id": 1452, + "name": "block.polished_tuff.fall" + }, + { + "id": 1453, + "name": "block.polished_tuff.hit" + }, + { + "id": 1454, + "name": "block.polished_tuff.place" + }, + { + "id": 1455, + "name": "block.polished_tuff.step" + }, + { + "id": 1456, + "name": "entity.turtle.ambient_land" + }, + { + "id": 1457, + "name": "entity.turtle.death" + }, + { + "id": 1458, + "name": "entity.turtle.death_baby" + }, + { + "id": 1459, + "name": "entity.turtle.egg_break" + }, + { + "id": 1460, + "name": "entity.turtle.egg_crack" + }, + { + "id": 1461, + "name": "entity.turtle.egg_hatch" + }, + { + "id": 1462, + "name": "entity.turtle.hurt" + }, + { + "id": 1463, + "name": "entity.turtle.hurt_baby" + }, + { + "id": 1464, + "name": "entity.turtle.lay_egg" + }, + { + "id": 1465, + "name": "entity.turtle.shamble" + }, + { + "id": 1466, + "name": "entity.turtle.shamble_baby" + }, + { + "id": 1467, + "name": "entity.turtle.swim" + }, + { + "id": 1468, + "name": "ui.button.click" + }, + { + "id": 1469, + "name": "ui.loom.select_pattern" + }, + { + "id": 1470, + "name": "ui.loom.take_result" + }, + { + "id": 1471, + "name": "ui.cartography_table.take_result" + }, + { + "id": 1472, + "name": "ui.stonecutter.take_result" + }, + { + "id": 1473, + "name": "ui.stonecutter.select_recipe" + }, + { + "id": 1474, + "name": "ui.toast.challenge_complete" + }, + { + "id": 1475, + "name": "ui.toast.in" + }, + { + "id": 1476, + "name": "ui.toast.out" + }, + { + "id": 1477, + "name": "block.vault.activate" + }, + { + "id": 1478, + "name": "block.vault.ambient" + }, + { + "id": 1479, + "name": "block.vault.break" + }, + { + "id": 1480, + "name": "block.vault.close_shutter" + }, + { + "id": 1481, + "name": "block.vault.deactivate" + }, + { + "id": 1482, + "name": "block.vault.eject_item" + }, + { + "id": 1483, + "name": "block.vault.reject_rewarded_player" + }, + { + "id": 1484, + "name": "block.vault.fall" + }, + { + "id": 1485, + "name": "block.vault.hit" + }, + { + "id": 1486, + "name": "block.vault.insert_item" + }, + { + "id": 1487, + "name": "block.vault.insert_item_fail" + }, + { + "id": 1488, + "name": "block.vault.open_shutter" + }, + { + "id": 1489, + "name": "block.vault.place" + }, + { + "id": 1490, + "name": "block.vault.step" + }, + { + "id": 1491, + "name": "entity.vex.ambient" + }, + { + "id": 1492, + "name": "entity.vex.charge" + }, + { + "id": 1493, + "name": "entity.vex.death" + }, + { + "id": 1494, + "name": "entity.vex.hurt" + }, + { + "id": 1495, + "name": "entity.villager.ambient" + }, + { + "id": 1496, + "name": "entity.villager.celebrate" + }, + { + "id": 1497, + "name": "entity.villager.death" + }, + { + "id": 1498, + "name": "entity.villager.hurt" + }, + { + "id": 1499, + "name": "entity.villager.no" + }, + { + "id": 1500, + "name": "entity.villager.trade" + }, + { + "id": 1501, + "name": "entity.villager.yes" + }, + { + "id": 1502, + "name": "entity.villager.work_armorer" + }, + { + "id": 1503, + "name": "entity.villager.work_butcher" + }, + { + "id": 1504, + "name": "entity.villager.work_cartographer" + }, + { + "id": 1505, + "name": "entity.villager.work_cleric" + }, + { + "id": 1506, + "name": "entity.villager.work_farmer" + }, + { + "id": 1507, + "name": "entity.villager.work_fisherman" + }, + { + "id": 1508, + "name": "entity.villager.work_fletcher" + }, + { + "id": 1509, + "name": "entity.villager.work_leatherworker" + }, + { + "id": 1510, + "name": "entity.villager.work_librarian" + }, + { + "id": 1511, + "name": "entity.villager.work_mason" + }, + { + "id": 1512, + "name": "entity.villager.work_shepherd" + }, + { + "id": 1513, + "name": "entity.villager.work_toolsmith" + }, + { + "id": 1514, + "name": "entity.villager.work_weaponsmith" + }, + { + "id": 1515, + "name": "entity.vindicator.ambient" + }, + { + "id": 1516, + "name": "entity.vindicator.celebrate" + }, + { + "id": 1517, + "name": "entity.vindicator.death" + }, + { + "id": 1518, + "name": "entity.vindicator.hurt" + }, + { + "id": 1519, + "name": "block.vine.break" + }, + { + "id": 1520, + "name": "block.vine.fall" + }, + { + "id": 1521, + "name": "block.vine.hit" + }, + { + "id": 1522, + "name": "block.vine.place" + }, + { + "id": 1523, + "name": "block.vine.step" + }, + { + "id": 1524, + "name": "block.lily_pad.place" + }, + { + "id": 1525, + "name": "entity.wandering_trader.ambient" + }, + { + "id": 1526, + "name": "entity.wandering_trader.death" + }, + { + "id": 1527, + "name": "entity.wandering_trader.disappeared" + }, + { + "id": 1528, + "name": "entity.wandering_trader.drink_milk" + }, + { + "id": 1529, + "name": "entity.wandering_trader.drink_potion" + }, + { + "id": 1530, + "name": "entity.wandering_trader.hurt" + }, + { + "id": 1531, + "name": "entity.wandering_trader.no" + }, + { + "id": 1532, + "name": "entity.wandering_trader.reappeared" + }, + { + "id": 1533, + "name": "entity.wandering_trader.trade" + }, + { + "id": 1534, + "name": "entity.wandering_trader.yes" + }, + { + "id": 1535, + "name": "entity.warden.agitated" + }, + { + "id": 1536, + "name": "entity.warden.ambient" + }, + { + "id": 1537, + "name": "entity.warden.angry" + }, + { + "id": 1538, + "name": "entity.warden.attack_impact" + }, + { + "id": 1539, + "name": "entity.warden.death" + }, + { + "id": 1540, + "name": "entity.warden.dig" + }, + { + "id": 1541, + "name": "entity.warden.emerge" + }, + { + "id": 1542, + "name": "entity.warden.heartbeat" + }, + { + "id": 1543, + "name": "entity.warden.hurt" + }, + { + "id": 1544, + "name": "entity.warden.listening" + }, + { + "id": 1545, + "name": "entity.warden.listening_angry" + }, + { + "id": 1546, + "name": "entity.warden.nearby_close" + }, + { + "id": 1547, + "name": "entity.warden.nearby_closer" + }, + { + "id": 1548, + "name": "entity.warden.nearby_closest" + }, + { + "id": 1549, + "name": "entity.warden.roar" + }, + { + "id": 1550, + "name": "entity.warden.sniff" + }, + { + "id": 1551, + "name": "entity.warden.sonic_boom" + }, + { + "id": 1552, + "name": "entity.warden.sonic_charge" + }, + { + "id": 1553, + "name": "entity.warden.step" + }, + { + "id": 1554, + "name": "entity.warden.tendril_clicks" + }, + { + "id": 1555, + "name": "block.hanging_sign.waxed_interact_fail" + }, + { + "id": 1556, + "name": "block.sign.waxed_interact_fail" + }, + { + "id": 1557, + "name": "block.water.ambient" + }, + { + "id": 1558, + "name": "weather.rain" + }, + { + "id": 1559, + "name": "weather.rain.above" + }, + { + "id": 1560, + "name": "block.wet_grass.break" + }, + { + "id": 1561, + "name": "block.wet_grass.fall" + }, + { + "id": 1562, + "name": "block.wet_grass.hit" + }, + { + "id": 1563, + "name": "block.wet_grass.place" + }, + { + "id": 1564, + "name": "block.wet_grass.step" + }, + { + "id": 1565, + "name": "block.wet_sponge.break" + }, + { + "id": 1566, + "name": "block.wet_sponge.dries" + }, + { + "id": 1567, + "name": "block.wet_sponge.fall" + }, + { + "id": 1568, + "name": "block.wet_sponge.hit" + }, + { + "id": 1569, + "name": "block.wet_sponge.place" + }, + { + "id": 1570, + "name": "block.wet_sponge.step" + }, + { + "id": 1571, + "name": "entity.wind_charge.wind_burst" + }, + { + "id": 1572, + "name": "entity.wind_charge.throw" + }, + { + "id": 1573, + "name": "entity.witch.ambient" + }, + { + "id": 1574, + "name": "entity.witch.celebrate" + }, + { + "id": 1575, + "name": "entity.witch.death" + }, + { + "id": 1576, + "name": "entity.witch.drink" + }, + { + "id": 1577, + "name": "entity.witch.hurt" + }, + { + "id": 1578, + "name": "entity.witch.throw" + }, + { + "id": 1579, + "name": "entity.wither.ambient" + }, + { + "id": 1580, + "name": "entity.wither.break_block" + }, + { + "id": 1581, + "name": "entity.wither.death" + }, + { + "id": 1582, + "name": "entity.wither.hurt" + }, + { + "id": 1583, + "name": "entity.wither.shoot" + }, + { + "id": 1584, + "name": "entity.wither_skeleton.ambient" + }, + { + "id": 1585, + "name": "entity.wither_skeleton.death" + }, + { + "id": 1586, + "name": "entity.wither_skeleton.hurt" + }, + { + "id": 1587, + "name": "entity.wither_skeleton.step" + }, + { + "id": 1588, + "name": "entity.wither.spawn" + }, + { + "id": 1589, + "name": "item.wolf_armor.break" + }, + { + "id": 1590, + "name": "item.wolf_armor.crack" + }, + { + "id": 1591, + "name": "item.wolf_armor.damage" + }, + { + "id": 1592, + "name": "item.wolf_armor.repair" + }, + { + "id": 1593, + "name": "entity.wolf.ambient" + }, + { + "id": 1594, + "name": "entity.wolf.death" + }, + { + "id": 1595, + "name": "entity.wolf.growl" + }, + { + "id": 1596, + "name": "entity.wolf.howl" + }, + { + "id": 1597, + "name": "entity.wolf.hurt" + }, + { + "id": 1598, + "name": "entity.wolf.pant" + }, + { + "id": 1599, + "name": "entity.wolf.shake" + }, + { + "id": 1600, + "name": "entity.wolf.step" + }, + { + "id": 1601, + "name": "entity.wolf.whine" + }, + { + "id": 1602, + "name": "block.wooden_door.close" + }, + { + "id": 1603, + "name": "block.wooden_door.open" + }, + { + "id": 1604, + "name": "block.wooden_trapdoor.close" + }, + { + "id": 1605, + "name": "block.wooden_trapdoor.open" + }, + { + "id": 1606, + "name": "block.wooden_button.click_off" + }, + { + "id": 1607, + "name": "block.wooden_button.click_on" + }, + { + "id": 1608, + "name": "block.wooden_pressure_plate.click_off" + }, + { + "id": 1609, + "name": "block.wooden_pressure_plate.click_on" + }, + { + "id": 1610, + "name": "block.wood.break" + }, + { + "id": 1611, + "name": "block.wood.fall" + }, + { + "id": 1612, + "name": "block.wood.hit" + }, + { + "id": 1613, + "name": "block.wood.place" + }, + { + "id": 1614, + "name": "block.wood.step" + }, + { + "id": 1615, + "name": "block.wool.break" + }, + { + "id": 1616, + "name": "block.wool.fall" + }, + { + "id": 1617, + "name": "block.wool.hit" + }, + { + "id": 1618, + "name": "block.wool.place" + }, + { + "id": 1619, + "name": "block.wool.step" + }, + { + "id": 1620, + "name": "entity.zoglin.ambient" + }, + { + "id": 1621, + "name": "entity.zoglin.angry" + }, + { + "id": 1622, + "name": "entity.zoglin.attack" + }, + { + "id": 1623, + "name": "entity.zoglin.death" + }, + { + "id": 1624, + "name": "entity.zoglin.hurt" + }, + { + "id": 1625, + "name": "entity.zoglin.step" + }, + { + "id": 1626, + "name": "entity.zombie.ambient" + }, + { + "id": 1627, + "name": "entity.zombie.attack_wooden_door" + }, + { + "id": 1628, + "name": "entity.zombie.attack_iron_door" + }, + { + "id": 1629, + "name": "entity.zombie.break_wooden_door" + }, + { + "id": 1630, + "name": "entity.zombie.converted_to_drowned" + }, + { + "id": 1631, + "name": "entity.zombie.death" + }, + { + "id": 1632, + "name": "entity.zombie.destroy_egg" + }, + { + "id": 1633, + "name": "entity.zombie_horse.ambient" + }, + { + "id": 1634, + "name": "entity.zombie_horse.death" + }, + { + "id": 1635, + "name": "entity.zombie_horse.hurt" + }, + { + "id": 1636, + "name": "entity.zombie.hurt" + }, + { + "id": 1637, + "name": "entity.zombie.infect" + }, + { + "id": 1638, + "name": "entity.zombified_piglin.ambient" + }, + { + "id": 1639, + "name": "entity.zombified_piglin.angry" + }, + { + "id": 1640, + "name": "entity.zombified_piglin.death" + }, + { + "id": 1641, + "name": "entity.zombified_piglin.hurt" + }, + { + "id": 1642, + "name": "entity.zombie.step" + }, + { + "id": 1643, + "name": "entity.zombie_villager.ambient" + }, + { + "id": 1644, + "name": "entity.zombie_villager.converted" + }, + { + "id": 1645, + "name": "entity.zombie_villager.cure" + }, + { + "id": 1646, + "name": "entity.zombie_villager.death" + }, + { + "id": 1647, + "name": "entity.zombie_villager.hurt" + }, + { + "id": 1648, + "name": "entity.zombie_villager.step" + }, + { + "id": 1649, + "name": "event.mob_effect.bad_omen" + }, + { + "id": 1650, + "name": "event.mob_effect.trial_omen" + }, + { + "id": 1651, + "name": "event.mob_effect.raid_omen" + } +] \ No newline at end of file diff --git a/data/pc/1.21.4/tints.json b/data/pc/1.21.4/tints.json new file mode 100644 index 000000000..ec02e6cdd --- /dev/null +++ b/data/pc/1.21.4/tints.json @@ -0,0 +1,422 @@ +{ + "grass": { + "data": [ + { + "keys": [ + "badlands", + "eroded_badlands", + "wooded_badlands" + ], + "color": 9470285 + }, + { + "keys": [ + "bamboo_jungle", + "basalt_deltas", + "beach", + "birch_forest", + "cold_ocean", + "crimson_forest", + "deep_cold_ocean", + "deep_dark", + "deep_frozen_ocean", + "deep_lukewarm_ocean", + "deep_ocean", + "desert", + "dripstone_caves", + "end_barrens", + "end_highlands", + "end_midlands", + "flower_forest", + "forest", + "frozen_ocean", + "frozen_peaks", + "frozen_river", + "grove", + "ice_spikes", + "jagged_peaks", + "jungle", + "lukewarm_ocean", + "lush_caves", + "meadow", + "mushroom_fields", + "nether_wastes", + "ocean", + "old_growth_birch_forest", + "old_growth_pine_taiga", + "old_growth_spruce_taiga", + "plains", + "river", + "savanna", + "savanna_plateau", + "small_end_islands", + "snowy_beach", + "snowy_plains", + "snowy_slopes", + "snowy_taiga", + "soul_sand_valley", + "sparse_jungle", + "stony_peaks", + "stony_shore", + "sunflower_plains", + "taiga", + "the_end", + "the_void", + "warm_ocean", + "warped_forest", + "windswept_forest", + "windswept_gravelly_hills", + "windswept_hills", + "windswept_savanna" + ], + "color": 0 + }, + { + "keys": [ + "cherry_grove" + ], + "color": 11983713 + }, + { + "keys": [ + "dark_forest" + ], + "color": 1317381 + }, + { + "keys": [ + "mangrove_swamp", + "swamp" + ], + "color": 6975545 + }, + { + "keys": [ + "pale_garden" + ], + "color": 7832178 + } + ] + }, + "foliage": { + "data": [ + { + "keys": [ + "badlands", + "eroded_badlands", + "wooded_badlands" + ], + "color": 10387789 + }, + { + "keys": [ + "bamboo_jungle", + "basalt_deltas", + "beach", + "birch_forest", + "cold_ocean", + "crimson_forest", + "dark_forest", + "deep_cold_ocean", + "deep_dark", + "deep_frozen_ocean", + "deep_lukewarm_ocean", + "deep_ocean", + "desert", + "dripstone_caves", + "end_barrens", + "end_highlands", + "end_midlands", + "flower_forest", + "forest", + "frozen_ocean", + "frozen_peaks", + "frozen_river", + "grove", + "ice_spikes", + "jagged_peaks", + "jungle", + "lukewarm_ocean", + "lush_caves", + "meadow", + "mushroom_fields", + "nether_wastes", + "ocean", + "old_growth_birch_forest", + "old_growth_pine_taiga", + "old_growth_spruce_taiga", + "plains", + "river", + "savanna", + "savanna_plateau", + "small_end_islands", + "snowy_beach", + "snowy_plains", + "snowy_slopes", + "snowy_taiga", + "soul_sand_valley", + "sparse_jungle", + "stony_peaks", + "stony_shore", + "sunflower_plains", + "taiga", + "the_end", + "the_void", + "warm_ocean", + "warped_forest", + "windswept_forest", + "windswept_gravelly_hills", + "windswept_hills", + "windswept_savanna" + ], + "color": 0 + }, + { + "keys": [ + "cherry_grove" + ], + "color": 11983713 + }, + { + "keys": [ + "mangrove_swamp" + ], + "color": 9285927 + }, + { + "keys": [ + "pale_garden" + ], + "color": 8883574 + }, + { + "keys": [ + "swamp" + ], + "color": 6975545 + } + ] + }, + "water": { + "data": [ + { + "keys": [ + "badlands", + "bamboo_jungle", + "basalt_deltas", + "beach", + "birch_forest", + "crimson_forest", + "dark_forest", + "deep_dark", + "deep_ocean", + "desert", + "dripstone_caves", + "end_barrens", + "end_highlands", + "end_midlands", + "eroded_badlands", + "flower_forest", + "forest", + "frozen_peaks", + "grove", + "ice_spikes", + "jagged_peaks", + "jungle", + "lush_caves", + "mushroom_fields", + "nether_wastes", + "ocean", + "old_growth_birch_forest", + "old_growth_pine_taiga", + "old_growth_spruce_taiga", + "plains", + "river", + "savanna", + "savanna_plateau", + "small_end_islands", + "snowy_plains", + "snowy_slopes", + "soul_sand_valley", + "sparse_jungle", + "stony_peaks", + "stony_shore", + "sunflower_plains", + "taiga", + "the_end", + "the_void", + "warped_forest", + "windswept_forest", + "windswept_gravelly_hills", + "windswept_hills", + "windswept_savanna", + "wooded_badlands" + ], + "color": 4159204 + }, + { + "keys": [ + "cherry_grove" + ], + "color": 6141935 + }, + { + "keys": [ + "cold_ocean", + "deep_cold_ocean", + "snowy_beach", + "snowy_taiga" + ], + "color": 4020182 + }, + { + "keys": [ + "deep_frozen_ocean", + "frozen_ocean", + "frozen_river" + ], + "color": 3750089 + }, + { + "keys": [ + "deep_lukewarm_ocean", + "lukewarm_ocean" + ], + "color": 4566514 + }, + { + "keys": [ + "mangrove_swamp" + ], + "color": 3832426 + }, + { + "keys": [ + "meadow" + ], + "color": 937679 + }, + { + "keys": [ + "pale_garden" + ], + "color": 7768221 + }, + { + "keys": [ + "swamp" + ], + "color": 6388580 + }, + { + "keys": [ + "warm_ocean" + ], + "color": 4445678 + } + ] + }, + "redstone": { + "data": [ + { + "keys": [ + 0 + ], + "color": -11796480 + }, + { + "keys": [ + 1 + ], + "color": -9437184 + }, + { + "keys": [ + 2 + ], + "color": -8781824 + }, + { + "keys": [ + 3 + ], + "color": -8126464 + }, + { + "keys": [ + 4 + ], + "color": -7471104 + }, + { + "keys": [ + 5 + ], + "color": -6750208 + }, + { + "keys": [ + 6 + ], + "color": -6094848 + }, + { + "keys": [ + 7 + ], + "color": -5439488 + }, + { + "keys": [ + 8 + ], + "color": -4784128 + }, + { + "keys": [ + 9 + ], + "color": -4128768 + }, + { + "keys": [ + 10 + ], + "color": -3407872 + }, + { + "keys": [ + 11 + ], + "color": -2752512 + }, + { + "keys": [ + 12 + ], + "color": -2097152 + }, + { + "keys": [ + 13 + ], + "color": -1440256 + }, + { + "keys": [ + 14 + ], + "color": -779520 + }, + { + "keys": [ + 15 + ], + "color": -52736 + } + ] + }, + "constant": { + "data": [] + } +} \ No newline at end of file diff --git a/data/pc/1.21.4/version.json b/data/pc/1.21.4/version.json new file mode 100644 index 000000000..ea8fb0b24 --- /dev/null +++ b/data/pc/1.21.4/version.json @@ -0,0 +1,6 @@ +{ + "minecraftVersion": "1.21.4", + "version": 769, + "majorVersion": "1.21", + "releaseType": "release" +} \ No newline at end of file diff --git a/data/pc/common/versions.json b/data/pc/common/versions.json index fc788c0f0..c6265fea5 100644 --- a/data/pc/common/versions.json +++ b/data/pc/common/versions.json @@ -60,5 +60,6 @@ "1.20.5", "1.20.6", "1.21.1", - "1.21.3" -] + "1.21.3", + "1.21.4" +] \ No newline at end of file diff --git a/data/pc/latest/proto.yml b/data/pc/latest/proto.yml index db8572b02..73050b589 100644 --- a/data/pc/latest/proto.yml +++ b/data/pc/latest/proto.yml @@ -1,4 +1,4 @@ -!version: 1.21.3 +!version: 1.21.4 !StartDocs: true ^types: @@ -677,6 +677,7 @@ - flame - infested - cherry_leaves + - pale_oak_leaves - sculk_soul - sculk_charge - sculk_charge_pop @@ -1907,6 +1908,7 @@ # MC: ClientboundLevelParticlesPacket packet_world_particles: longDistance: bool + alwaysShow: bool x: f64 y: f64 z: f64 @@ -2108,6 +2110,7 @@ "update_listed", "update_latency", "update_display_name", + "update_hat", "update_priority" ] }] @@ -2134,6 +2137,9 @@ listPriority: ../action/update_priority ? if true: varint default: void + showHat: ../action/update_hat ? + if true: bool + default: void # MC: ClientboundPlayerLookAtPacket packet_face_player: @@ -2350,7 +2356,7 @@ foodSaturation: f32 # MC: ClientboundSetHeldSlotPacket packet_held_item_slot: - slot: i8 + slot: varint # MC: ClientboundSetObjectivePacket packet_scoreboard_objective: name: string @@ -3098,13 +3104,19 @@ z: f64 yaw: f32 pitch: f32 + onGround: bool # MC: ServerboundPaddleBoatPacket packet_steer_boat: leftPaddle: bool rightPaddle: bool - # MC: ServerboundPickItemPacket - packet_pick_item: - slot: varint + # MC: ServerboundPickItemFromBlockPacket + packet_pick_item_from_block: + position: position + includeData: bool + # MC: ServerboundPickItemFromEntityPacket + packet_pick_item_from_entity: + entityId: varint + includeData: bool # MC: ServerboundPingRequestPacket packet_ping_request: id: i64 @@ -3135,6 +3147,9 @@ "type": "u8", "flags": ["forward", "backward", "left", "right", "jump", "shift", "sprint"] }] + # MC: ServerboundPlayerLoadedPacket + packet_player_loaded: + # Empty # MC: ServerboundPongPacket packet_pong: id: i32 @@ -3280,13 +3295,15 @@ - flying - vehicle_move - steer_boat - - pick_item + - pick_item_from_block + - pick_item_from_entity - ping_request - craft_recipe_request - abilities - block_dig - entity_action - player_input + - player_loaded - pong - recipe_book - displayed_recipe @@ -3340,13 +3357,15 @@ if flying: packet_flying if vehicle_move: packet_vehicle_move if steer_boat: packet_steer_boat - if pick_item: packet_pick_item + if pick_item_from_block: packet_pick_item_from_block + if pick_item_from_entity: packet_pick_item_from_entity if ping_request: packet_ping_request if craft_recipe_request: packet_craft_recipe_request if abilities: packet_abilities if block_dig: packet_block_dig if entity_action: packet_entity_action if player_input: packet_player_input + if player_loaded: packet_player_loaded if pong: packet_pong if recipe_book: packet_recipe_book if displayed_recipe: packet_displayed_recipe