From 6a1eafd18182d9b2a78ef81a7886be907cfa03d0 Mon Sep 17 00:00:00 2001 From: mckaygerhard Date: Thu, 12 Jan 2023 09:48:49 -0400 Subject: [PATCH] First upload: rescued from minetest forums, cos duane-r account repos were deleted * taken from https://forum.minetest.net/viewtopic.php?f=9&t=15410 --- LICENSE | 504 +++++++ README.md | 23 + buildings.lua | 1113 +++++++++++++++ caves.lua | 236 ++++ chat.lua | 182 +++ deco.lua | 543 ++++++++ depends.txt | 8 + desolate.lua | 104 ++ init.lua | 287 ++++ mapgen.lua | 1228 +++++++++++++++++ mod.conf | 1 + nodes.lua | 626 +++++++++ schematics.lua | 118 ++ schematics/apple_tree2.mts | Bin 0 -> 160 bytes schematics/apple_tree3.mts | Bin 0 -> 183 bytes schematics/apple_tree4.mts | Bin 0 -> 185 bytes schematics/cherry_tree.mts | Bin 0 -> 161 bytes schematics/crappy_house_house.we | 1 + schematics/decaying_tree.mts | Bin 0 -> 215 bytes schematics/duane_glass_brick_barn_house.we | 1 + schematics/jungle_tree_with_orchids.mts | Bin 0 -> 276 bytes schematics/nathan_pond_house_house.we | 1 + schematics/pine_tree2.mts | Bin 0 -> 183 bytes schematics/pine_tree3.mts | Bin 0 -> 183 bytes schematics/pine_tree4.mts | Bin 0 -> 183 bytes settingtypes.txt | 21 + textures/caverealms_thin_ice.png | Bin 0 -> 679 bytes textures/image_credits.txt | 1 + textures/squaresville_basalt.png | Bin 0 -> 364 bytes textures/squaresville_beacon_1.png | Bin 0 -> 528 bytes textures/squaresville_bird_of_paradise.png | Bin 0 -> 352 bytes textures/squaresville_black_shrub.png | Bin 0 -> 234 bytes textures/squaresville_broken_3.png | Bin 0 -> 2098 bytes textures/squaresville_broken_3_low.png | Bin 0 -> 808 bytes textures/squaresville_broken_key.png | Bin 0 -> 1071 bytes textures/squaresville_ceiling.png | Bin 0 -> 2117 bytes textures/squaresville_cracked_stone.png | Bin 0 -> 718 bytes textures/squaresville_crystal.png | Bin 0 -> 228 bytes textures/squaresville_dry_twigs.png | Bin 0 -> 818 bytes textures/squaresville_floor.png | Bin 0 -> 971 bytes textures/squaresville_fur_frond.png | Bin 0 -> 1373 bytes textures/squaresville_gerbera.png | Bin 0 -> 683 bytes textures/squaresville_granite.png | Bin 0 -> 563 bytes textures/squaresville_key.png | Bin 0 -> 1079 bytes textures/squaresville_odd_grass_1.png | Bin 0 -> 619 bytes textures/squaresville_orange.png | Bin 0 -> 721 bytes textures/squaresville_orchid.png | Bin 0 -> 1103 bytes textures/squaresville_pear.png | Bin 0 -> 437 bytes textures/squaresville_plate_glass.png | Bin 0 -> 212 bytes textures/squaresville_plate_glass_broken.png | Bin 0 -> 253 bytes textures/squaresville_sidewalk.png | Bin 0 -> 1973 bytes textures/squaresville_spike_1.png | Bin 0 -> 630 bytes textures/squaresville_strange_plant_1.png | Bin 0 -> 719 bytes textures/squaresville_strange_plant_2.png | Bin 0 -> 937 bytes textures/squaresville_streetlight.png | Bin 0 -> 535 bytes textures/squaresville_streetlight_bottom.png | Bin 0 -> 530 bytes textures/squaresville_tarmac.png | Bin 0 -> 1120 bytes textures/squaresville_tarmac_yellow_line.png | Bin 0 -> 1497 bytes textures/squaresville_water_poison.png | Bin 0 -> 618 bytes ...resville_water_poison_flowing_animated.png | Bin 0 -> 4842 bytes ...aresville_water_poison_source_animated.png | Bin 0 -> 3343 bytes textures/squaresville_window_broken.png | Bin 0 -> 253 bytes textures/wet_fungus_2.png | Bin 0 -> 944 bytes trans.lua | 90 ++ ver50.patch | 48 + 65 files changed, 5136 insertions(+) create mode 100644 LICENSE create mode 100644 README.md create mode 100644 buildings.lua create mode 100644 caves.lua create mode 100644 chat.lua create mode 100644 deco.lua create mode 100644 depends.txt create mode 100644 desolate.lua create mode 100644 init.lua create mode 100644 mapgen.lua create mode 100644 mod.conf create mode 100644 nodes.lua create mode 100644 schematics.lua create mode 100644 schematics/apple_tree2.mts create mode 100644 schematics/apple_tree3.mts create mode 100644 schematics/apple_tree4.mts create mode 100644 schematics/cherry_tree.mts create mode 100644 schematics/crappy_house_house.we create mode 100644 schematics/decaying_tree.mts create mode 100644 schematics/duane_glass_brick_barn_house.we create mode 100644 schematics/jungle_tree_with_orchids.mts create mode 100644 schematics/nathan_pond_house_house.we create mode 100644 schematics/pine_tree2.mts create mode 100644 schematics/pine_tree3.mts create mode 100644 schematics/pine_tree4.mts create mode 100644 settingtypes.txt create mode 100644 textures/caverealms_thin_ice.png create mode 100644 textures/image_credits.txt create mode 100644 textures/squaresville_basalt.png create mode 100644 textures/squaresville_beacon_1.png create mode 100644 textures/squaresville_bird_of_paradise.png create mode 100644 textures/squaresville_black_shrub.png create mode 100644 textures/squaresville_broken_3.png create mode 100644 textures/squaresville_broken_3_low.png create mode 100644 textures/squaresville_broken_key.png create mode 100644 textures/squaresville_ceiling.png create mode 100644 textures/squaresville_cracked_stone.png create mode 100644 textures/squaresville_crystal.png create mode 100644 textures/squaresville_dry_twigs.png create mode 100644 textures/squaresville_floor.png create mode 100644 textures/squaresville_fur_frond.png create mode 100644 textures/squaresville_gerbera.png create mode 100644 textures/squaresville_granite.png create mode 100644 textures/squaresville_key.png create mode 100644 textures/squaresville_odd_grass_1.png create mode 100644 textures/squaresville_orange.png create mode 100644 textures/squaresville_orchid.png create mode 100644 textures/squaresville_pear.png create mode 100644 textures/squaresville_plate_glass.png create mode 100644 textures/squaresville_plate_glass_broken.png create mode 100644 textures/squaresville_sidewalk.png create mode 100644 textures/squaresville_spike_1.png create mode 100644 textures/squaresville_strange_plant_1.png create mode 100644 textures/squaresville_strange_plant_2.png create mode 100644 textures/squaresville_streetlight.png create mode 100644 textures/squaresville_streetlight_bottom.png create mode 100644 textures/squaresville_tarmac.png create mode 100644 textures/squaresville_tarmac_yellow_line.png create mode 100644 textures/squaresville_water_poison.png create mode 100644 textures/squaresville_water_poison_flowing_animated.png create mode 100644 textures/squaresville_water_poison_source_animated.png create mode 100644 textures/squaresville_window_broken.png create mode 100644 textures/wet_fungus_2.png create mode 100644 trans.lua create mode 100644 ver50.patch diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..19e3071 --- /dev/null +++ b/LICENSE @@ -0,0 +1,504 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +(This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.) + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + {description} + Copyright (C) {year} {fullname} + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random + Hacker. + + {signature of Ty Coon}, 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! diff --git a/README.md b/README.md new file mode 100644 index 0000000..f50282b --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# squaresville + +Squaresville is a simplified world dominated by abandoned cities. In the same vein as Multi dimensions (though not compatible with it), it occupies a separate "dimension" which actually occurs high in the air (8000 meters, by default). In fact, there are two dimensions -- one with a pristine city, the other with a ruined one (at 10,000). You can teleport to them with the teleport command or create a "key to the city" or "broken key" to take you there and back. + +The terrain is based on two-dimensional perlin noise for speed and simplicity. There are no caves, but you can use fun_caves when Squaresville is in singlenode mode. City areas are nearly flat -- only the wilderness has any shape at all. All the default biomes are reimplimented in lua, along with most of the stock decorations. + +Houses will appear in the suburbs around the city. You can create new houses and save the schematic using the "/saveplot" command. + +This is a work in progress. + +![screenshot](https://raw.githubusercontent.com/duane-r/squaresville/screenshots/screenshot01.jpg) + +![screenshot](https://raw.githubusercontent.com/duane-r/squaresville/screenshots/screenshot02.jpg) + +![screenshot](https://raw.githubusercontent.com/duane-r/squaresville/screenshots/screenshot04.jpg) + +The source is available on github. + +Code: LGPL2, textures: CC-BY-SA and CC0 + +Mod dependencies: default, flowers, stairs + +Download: https://github.com/duane-r/squaresville/archive/master.zip diff --git a/buildings.lua b/buildings.lua new file mode 100644 index 0000000..9309deb --- /dev/null +++ b/buildings.lua @@ -0,0 +1,1113 @@ +-- Squaresville buildings.lua +-- Copyright Duane Robertson (duane@duanerobertson.com), 2017 +-- Distributed under the LGPLv2.1 (https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) + + +local civ_base = squaresville.civ_base +local dangerous = squaresville.dangerous_terrain +local desolation = 0 +local math_abs = math.abs +local math_floor = math.floor +local math_random = math.random +local node = squaresville.node +local pr = squaresville.pr +local breaker = squaresville.breaker + +local node_air = node['air'] +local node_beacon = node['squaresville:beacon_1'] +local node_concrete_stair = node['squaresville:concrete_stair'] +local node_dirt = node['default:dirt'] +local node_door_glass = node['doors:door_glass_b'] +local node_floor_ceiling = node['squaresville:floor_ceiling'] +local node_gargoyle = node['squaresville:gargoyle'] +local node_light_panel = node['squaresville:light_panel'] +local node_plaster = node['squaresville:plaster'] +local node_plate_glass = node['squaresville:plate_glass'] +local node_roof = squaresville.node['squaresville:roof'] +local node_steelblock = node['default:steelblock'] +local node_water = node['default:water_source'] + + +local ores = {} +ores['oremask:ore'] = true +ores['default:stone_with_coal'] = true +ores['default:stone_with_iron'] = true +ores['default:stone_with_copper'] = true +ores['default:stone_with_tin'] = true + + +local drotn = {[0]=3, 0, 1, 2, 19, 16, 17, 18, 15, 12, 13, 14, 7, 4, 5, 6, 11, 8, 9, 10, 21, 22, 23, 20} +local drotp = {} +for i = 0, 23 do + for j = 0, 23 do + if drotn[j] == i then + drotp[i] = j + break + end + end +end +local drotwn = {[0]=0, 1, 4, 5, 3, 2, 0, 0} +local drotwp = {} +for i = 0, 7 do + for j = 0, 7 do + if drotwn[j] == i then + drotwp[i] = j + break + end + end +end + + +for _, filename in pairs(minetest.get_dir_list(squaresville.path.."/schematics/")) do + if string.find(filename, "^[%a%d_]+%.house$") then + local file = io.open(squaresville.path.."/schematics/"..filename, "rb") + if file then + local data = file:read("*all") + file:close() + local new_data = minetest.deserialize(data) + local t_data = {} + + index = 1 + for z = 0, new_data.size.z - 1 do + for y = 0, new_data.size.y - 1 do + for x = 0, new_data.size.x - 1 do + if new_data.data[index].prob == 0 or new_data.data[index].name == 'air' or new_data.data[index].name == 'ignore' then + -- nop + else + t_data[#t_data+1] = { + name = new_data.data[index].name, + prob = new_data.data[index].prob, + param2 = new_data.data[index].param2, + x = x, + y = y, + z = z, + } + end + index = index + 1 + end + end + end + + squaresville.house_schematics[#squaresville.house_schematics+1] = t_data + + print("Squaresville: loaded "..filename) + end + elseif string.find(filename, "^[%a%d_]+%.we$") then + local file = io.open(squaresville.path.."/schematics/"..filename, "rb") + if file then + local data = file:read("*all") + file:close() + + v, sep_data = data:match('([0-9]):(.*)') + local new_data = minetest.deserialize(sep_data) + + squaresville.house_schematics[#squaresville.house_schematics+1] = new_data + + print("Squaresville: loaded "..filename) + end + end +end + + +minetest.register_privilege('saveplot', {description = 'Allow user to save squaresville plots.'}) +minetest.register_chatcommand("saveplot", { + params = "[filename]", + description = "save the plot you're in as a schematic file", + privs = {saveplot=true}, -- Require the "saveplot" privilege to run + func = function(name, param) + local filename = param + if not filename or filename == "" or string.find(filename, "[^%a%d_]") then + print("* Squaresville: Specify a simple filename containing digits and letters. The suffix will be added automatically. Paths are not allowed.") + return + end + + local pos = minetest.get_player_by_name(name):getpos() + local civ = squaresville.get_zone({x=pos.x, z=pos.z}) + local suburb_orient = 0 + local max_schem_height = 20 + local house_size = math_floor(squaresville.block_size / 2) + local suffix = civ.city and '_floor.we' or '_house.we' + filename = minetest.get_worldpath().."/"..filename..suffix + + local p1, p2 = {}, {} + local px, pz = 0, 0 + + if pos.y >= squaresville.baseline and pos.y <= squaresville.baseline + squaresville.extent_top then + p1.y = squaresville.baseline + civ_base - 1 + elseif pos.y >= squaresville.baseline_ruin and pos.y <= squaresville.baseline_ruin + squaresville.extent_top_ruin then + p1.y = squaresville.baseline_ruin + civ_base - 1 + end + + if pos.y - p1.y < 0 or (pos.y - p1.y > max_schem_height and not civ.city) then + print("* Squaresville cannot determine coordinates for plotsave.") + return + end + + p1.x = math_floor((pos.x + squaresville.max_height + squaresville.half_road_size) / squaresville.block_plus_road_size) * squaresville.block_plus_road_size - squaresville.max_height - squaresville.half_road_size + squaresville.road_size + if (not civ.city) and pos.x - p1.x >= house_size then + p1.x = p1.x + house_size + px = 1 + end + p1.z = math_floor((pos.z + squaresville.max_height + squaresville.half_road_size) / squaresville.block_plus_road_size) * squaresville.block_plus_road_size - squaresville.max_height - squaresville.half_road_size + squaresville.road_size + 0 + if (not civ.city) and pos.z - p1.z >= house_size then + p1.z = p1.z + house_size + pz = 1 + end + + if civ.city then + p1.x = p1.x + 3 + p1.y = math_floor((pos.y - p1.y) / 4) * 4 + p1.y + 1 + p1.z = p1.z + 3 + p2.x = p1.x + squaresville.block_size - 7 + p2.y = p1.y + 3 + p2.z = p1.z + squaresville.block_size - 7 + else + p2.x = p1.x + house_size - 1 + p2.y = p1.y + max_schem_height + p2.z = p1.z + house_size - 1 + end + + local rot + if civ.city then + local floor = math_floor((pos.y - p1.y) / 4) + rot = (floor % 2 == 0) and 0 or 2 + else + if suburb_orient == 0 then + rot = pz * 2 + else + rot = px * 2 + 1 + end + end + + local vm = minetest.get_voxel_manip() + local emin, emax = vm:read_from_map(p1, p2) + local data = vm:get_data() + local p2data = vm:get_param2_data() + local a = VoxelArea:new({MinEdge = emin, MaxEdge = emax}) + + if (not civ.city) and param ~= 'prep' then + local height + for y = emax.y, emin.y, -1 do + for z = p1.z, p2.z do + local ivm = a:index(p1.x, y, z) + for x = p1.x, p2.x do + if not height and data[ivm] ~= node_air and data[ivm] ~= squaresville.node["ignore"] then + height = y + end + ivm = ivm + 1 + end + end + end + p2.y = height + end + + local maxi = vector.add(vector.subtract(p2, p1), 1) + local t_data = {} + + for z1 = 0, maxi.z - 1 do + for x1 = 0, maxi.x - 1 do + local x, z + if rot == 0 then + x, z = x1, z1 + elseif rot == 1 then + x, z = z1, maxi.x - x1 - 1 + elseif rot == 2 then + x, z = maxi.x - x1 - 1, maxi.z - z1 - 1 + elseif rot == 3 then + x, z = maxi.z - z1 - 1, x1 + end + + local ivm = a:index(p1.x + x1, p1.y, p1.z + z1) + for y = 0, maxi.y - 1 do + if civ.city and param == 'prep' then + if y == 0 then + data[ivm] = squaresville.node['squaresville:floor_ceiling'] + else + data[ivm] = node_air + end + elseif (not civ.city) and param == 'prep' then + if y == 0 then + data[ivm] = squaresville.node['default:dirt'] + elseif y == 1 and (((pz == 1 and z1 >= maxi.z - 2) or (pz == 0 and z1 < 2)) or ((px == 1 and x1 >= maxi.x - 2) or (px == 0 and x1 < 2))) then + data[ivm] = squaresville.node['squaresville:sidewalk'] + elseif y == 1 then + data[ivm] = squaresville.node['default:dirt_with_grass'] + elseif y == 2 and (x1 == 0 or x1 == maxi.x - 1) and (z1 == 0 or z1 == maxi.z - 1) then + data[ivm] = squaresville.node['default:dirt'] + else + data[ivm] = node_air + end + else + local node = {} + node.name = minetest.get_name_from_content_id(data[ivm]) + + -- Remove accidental ores (only... I hope). + if y <= 1 and ores[node.name] then + node.name = 'default:stone' + end + + node.param2 = p2data[ivm] + if node.name == "air" then + -- nop + elseif (not civ.city) and y == 1 and (z < 2 or x < 2 or x >= maxi.x - 2 or z >= maxi.z - 2) and (node.name == 'squaresville:sidewalk' or node.name == 'default:dirt_with_grass') then + -- nop + elseif (not civ.city) and y == 2 and (z < 2 or x < 2 or x >= maxi.x - 2 or z >= maxi.z - 2) and node.name == 'squaresville:streetlight' then + -- nop + else + if minetest.registered_items[node.name] then + local ptype = minetest.registered_items[node.name].paramtype2 + if ptype == 'wallmounted' or ptype == 'colorwallmounted' then + local dir = (node.param2 or 0) % 8 + local extra = (node.param2 or 0) - dir + for i = 1, rot do + dir = drotwn[dir] + end + node.param2 = dir + extra + elseif ptype == 'facedir' then + local dir = (node.param2 or 0) % 24 + local extra = (node.param2 or 0) - dir + for i = 1, rot do + dir = drotn[dir] + end + node.param2 = dir + extra + elseif ptype ~= 'none' then + --print(node.name, ptype) + end + elseif node.name ~= 'ignore' then + --print(node.name) + end + + local pos = {x=p1.x + x1, y=p1.y + y, z=p1.z + z1} + local meta = minetest.get_meta(pos):to_table() + if next(meta.inventory) or next(meta.fields) then + for n, v in pairs(meta.inventory) do + for i, s in ipairs(v) do + v[i] = s:to_string() + end + end + + node.meta = meta + end + + node.x = x + node.y = y + node.z = z + + t_data[#t_data+1] = node + end + end + + ivm = ivm + a.ystride + end + end + end + + if param == 'prep' then + vm:set_data(data) + vm:calc_lighting() + vm:update_liquids() + vm:write_to_map() + else + local file = io.open(filename, "wb") + if file then + table.sort(t_data, function(a,b) + if a.z < b.z then + return true + elseif a.z > b.z then + return false + elseif a.y < b.y then + return true + elseif a.y > b.y then + return false + elseif a.x < b.x then + return true + elseif a.x > b.x then + return false + else + return false + end + end) + local data = '5:'..minetest.serialize(t_data) + file:write(data) + file:close() + end + print("Squaresville saved a schematic to \""..filename.."\"") + end + end, +}) + + +local function crates(data, pos1, pos2) + local y = math.min(pos2.y, pos1.y) + for z = pos1.z,pos2.z do + for x = pos1.x,pos2.x do + if (data[x][y][z] == node_air or data[x][y][z] == nil) and math_random(1000) == 1 then + data[x][y][z] = squaresville.node['squaresville:crate'] + end + end + end +end + + +local function lights(write, read, pos1, pos2) + if not squaresville.light_panels then + return + end + + local y = math.max(pos2.y, pos1.y) + for z = pos1.z,pos2.z do + for x = pos1.x,pos2.x do + if (read(x, y, z) == node_air or read(x, y, z) == nil) and (read(x,y+1,z) == node_floor_ceiling or read(x, y+1, z) == node_roof) and (x % 3 == 1 and z % 3 == 1) then + write(x, y, z, node_light_panel, 20) -- 20-23 + end + end + end +end + + +local function doors(write, size, tex, off) + if not off then + off = 0 + end + + for z1 = 0+off, size-off, size-(off*2) do + for x = math_floor(size / 2) - 2, math_floor(size / 2) + 2 do + for y = 1, 3 do + if y < 3 and x == math_floor(size / 2) then + write(x, y, z1, tex) + elseif y < 3 and math_abs(x - math_floor(size / 2)) < 2 then + if y == 1 then + if z1 > 1 then + write(x, y, z1, node_door_glass, 2) + else + write(x, y, z1, node_door_glass, 0) + end + else + write(x, y, z1, node_air) + end + else + write(x, y, z1, tex) + end + end + local z = z1 - 1 + if z > 1 then + z = z1 + 1 + end + for y = 1, 3 do + if off == 1 and (y == 3 or math_abs(x - math_floor(size / 2)) == 2) then + write(x, y, z, tex) + else + write(x, y, z, node_air) + end + end + end + end + for x1 = 0+off, size-off, size-(off*2) do + for z = math_floor(size / 2) - 2, math_floor(size / 2) + 2 do + for y = 1, 3 do + if y < 3 and z == math_floor(size / 2) then + write(x1, y, z, tex) + elseif y < 3 and math_abs(z - math_floor(size / 2)) < 2 then + if y == 1 then + if x1 > 1 then + write(x1, y, z, node_door_glass, 3) + else + write(x1, y, z, node_door_glass, 1) + end + else + write(x1, y, z, node_air) + end + else + write(x1, y, z, tex) + end + end + local x = x1 - 1 + if x > 1 then + x = x1 + 1 + end + for y = 1, 3 do + if off == 1 and (y == 3 or math_abs(z - math_floor(size / 2)) == 2) then + write(x, y, z, tex) + else + write(x, y, z, node_air) + end + end + end + end +end + + +local function roof_box(write, size, off, sy, tex) + for z = off,size-off+1 do + for x = off,size-off+1 do + for y = sy+1,sy+3 do + if z == off or z == size-off+1 or x == off or x == size-off+1 then + if y < sy + 3 and x == size - off + 1 and z == math_floor(size / 2) then + write(x, y, z, node_air) + else + write(x, y, z, tex) + end + end + end + if z > off and z < size-off+1 and x > off and x < size-off+1 then + write(x, sy+3, z, node_roof) + end + end + end +end + + +local function beacons(write, size, floor) + for z = 2,size-2 do + for x = 2,size-2 do + local y = floor * 4 + 1 + if floor > 9 and (z == 2 or z == size - 2) and (x == 2 or x == size - 2) then + write(x, y, z, node_beacon) + elseif math_random(400) == 1 then + write(x, y, z, node_steelblock) + end + end + end +end + + +local function stairwell(write, pos1, pos2, left) + local size, px, py, pz + size = (left and 0 or 2) + + px = math_floor((pos2.x - pos1.x - 4) / 2) + py = math.min(pos2.y, pos1.y) + pz = math_floor((pos2.z - pos1.z - 6) / 2) + local walls = px > 2 and pz > 2 + + if walls then + for z = 1+size,6+size do + for x = 1,4 do + for y = 1,3 do + if z == 1+size or z == 6+size or x == 1 or x == 4 then + if left and x == 2 and z == 1 and y < 3 then + write(x + px, y + py, z + pz, node_air) + elseif not left and x == 3 and z == 6+size and y < 3 then + write(x + px, y + py, z + pz, node_air) + else + write(x + px, y + py, z + pz, node_plaster) + end + end + end + end + end + end + + if left then + for i = 1,4 do + write(2 + px, i + py, 2 + i + pz, node_concrete_stair) + end + for i = 1,3 do + write(2 + px, 4 + py, 2 + i + pz, node_air) + end + else + for i = 1,4 do + write(3 + px, i + py, 7 - i + pz, node_concrete_stair, 4) + end + for i = 1,3 do + write(3 + px, 4 + py, 7 - i + pz, node_air) + end + end +end + + +local function gotham(write, read, size) + local develop, wall_x, wall_x_2, wall_z, wall_z_2 + local dir, y, floors, conc + + local c = pr:next(1,5) + if c == 1 then + conc = node['squaresville:concrete'] + else + conc = node['squaresville:concrete'..c] + end + + local ra = pr:next(1, 2) - 1 + floors = pr:next(1, 20) + 1 + + -- all this for gargoyles... + if pr:next(1, 2) == 1 and floors > 5 then + for z = -1,size+1 do + for x = -1,size+1 do + y = floors * 4 + y = y - (y % 4) + if (x == -1 or x == size + 1) and z % 5 == 3 and z > -1 then + dir = (x == -1 and 18 or 12) + write(x, y, z, node_gargoyle, dir) + elseif (z == -1 or z == size + 1) and x % 5 == 3 and x > -1 then + dir = (z == -1 and 9 or 7) + write(x, y, z, node_gargoyle, dir) + end + end + end + end + + for z = 0,size do + for x = 0,size do + develop = x > 0 and x < size and z > 0 and z < size + wall_x = x == 0 or x == size + wall_z = z == 0 or z == size + wall_x_2 = x == 1 or x == size - 1 + wall_z_2 = z == 1 or z == size - 1 + for y = 0,(floors * 4) do + if y % 4 == 0 and x > 1 and z > 1 and x < size - 1 and z < size - 1 then + if floors * 4 - y < 4 then + write(x, y, z, node_roof) + else + write(x, y, z, node_floor_ceiling) + end + elseif wall_x then + if y == 0 then + write(x, y, z, conc) + elseif z % 5 == 3 then + write(x, y, z, conc) + else + write(x, y, z, node_air) + end + elseif wall_x_2 and develop then + if y == 0 then + write(x, y, z, conc) + elseif y % 4 ~= 2 or z % 5 == 3 then + write(x, y, z, conc) + else + write(x, y, z, node_plate_glass) + end + elseif wall_z then + if y == 0 then + write(x, y, z, conc) + elseif x % 5 == 3 then + write(x, y, z, conc) + else + write(x, y, z, node_air) + end + elseif wall_z_2 and develop then + if y == 0 then + write(x, y, z, conc) + elseif y % 4 ~= 2 or x % 5 == 3 then + write(x, y, z, conc) + else + write(x, y, z, node_plate_glass) + end + else + write(x, y, z, node_air) + end + end + end + end + + for f = 1,floors-ra do + stairwell(write, {x=2,y=((f-1)*4),z=2}, {x=size-1,y=(f*4-1),z=size-1}, (f / 2 == math_floor(f / 2))) + lights(write, read, {x=3,y=((f-1)*4),z=3}, {x=size-2,y=(f*4-1),z=size-2}) + --crates(data, {x=3,y=((f-1)*4+1),z=3}, {x=size-2,y=((f-1)*4+1),z=size-2}) + end + + if ra == 0 then + roof_box(write, size, 15, floors * 4, conc) + end + + beacons(write, size, floors) + + doors(write, size, conc, 1) +end + + +local function glass_and_steel(write, read, size) + local develop, wall_x, wall_z, floors, conc + local c = pr:next(1, 5) + if c == 1 then + conc = node['squaresville:concrete'] + else + conc = node['squaresville:concrete'..c] + end + + local ra = pr:next(1, 2) - 1 + floors = pr:next(1, 50) + 1 + + for z = 0,size do + for x = 0,size do + wall_x = x == 0 or x == size + wall_z = z == 0 or z == size + for y = 0,(floors * 4) do + if y % 4 == 0 and x > 0 and z > 0 and x < size and z < size then + if floors * 4 - y < 4 then + write(x, y, z, node_roof) + else + write(x, y, z, node_floor_ceiling) + end + elseif wall_x then + if (z - 2) % 5 == 2 then + write(x, y, z, conc) + elseif y == 0 then + write(x, y, z, conc) + else + write(x, y, z, node_plate_glass) + end + elseif wall_z then + if (x - 2) % 5 == 2 then + write(x, y, z, conc) + elseif y == 0 then + write(x, y, z, conc) + else + write(x, y, z, node_plate_glass) + end + end + end + end + end + + for f = 1,floors-ra do + stairwell(write, {x=1,y=((f-1)*4),z=1}, {x=size,y=(f*4-1),z=size}, (f / 2 == math_floor(f / 2))) + lights(write, read, {x=1,y=((f-1)*4),z=1}, {x=size,y=(f*4-1),z=size}) + --crates(data, {x=1,y=((f-1)*4+1),z=1}, {x=size,y=((f-1)*4+1),z=size}) + end + + if ra == 0 then + roof_box(write, size, 15, floors * 4, conc) + end + + beacons(write, size, floors) + + doors(write, size, conc) +end + + +local function simple(write, read, size, slit) + local develop, wall_x, wall_z, floors, conc, c + + local ra = pr:next(1, 2) - 1 + floors = pr:next(1, 10) + 1 + + if floors < 6 then + c = pr:next(1, 9) + else + c = pr:next(1, 5) + end + + if c == 1 then + conc = node['squaresville:concrete'] + elseif c == 6 then + conc = node['default:brick'] + elseif c == 7 then + conc = node['default:sandstonebrick'] + elseif c == 8 then + conc = node['default:stonebrick'] + elseif c == 9 then + conc = node['default:desert_stonebrick'] + else + conc = node['squaresville:concrete'..c] + end + + for z = 0,size do + for x = 0,size do + wall_x = x == 0 or x == size + wall_z = z == 0 or z == size + for y = 0,(floors * 4) do + if y % 4 == 0 and x > 0 and z > 0 and x < size and z < size then + if floors * 4 == y then + write(x, y, z, node_roof) + else + write(x, y, z, node_floor_ceiling) + end + elseif wall_x then + if slit and z % 2 == 0 and y % 4 > 1 then + write(x, y, z, node_plate_glass) + elseif not slit and math_floor(z / 2) % 2 == 1 and y % 4 > 1 then + write(x, y, z, node_plate_glass) + else + write(x, y, z, conc) + end + elseif wall_z then + if slit and x % 2 == 0 and y % 4 > 1 then + write(x, y, z, node_plate_glass) + elseif not slit and math_floor(x / 2) % 2 == 1 and y % 4 > 1 then + write(x, y, z, node_plate_glass) + else + write(x, y, z, conc) + end + end + end + end + end + + for f = 1,floors-ra do + stairwell(write, {x=1,y=((f-1)*4),z=1}, {x=size,y=(f*4-1),z=size}, (f / 2 == math_floor(f / 2))) + lights(write, read, {x=1,y=((f-1)*4),z=1}, {x=size,y=(f*4-1),z=size}) + --crates(data, {x=1,y=((f-1)*4+1),z=1}, {x=size,y=((f-1)*4+1),z=size}) + end + + beacons(write, size, floors) + + if ra == 0 then + roof_box(write, size, 15, floors * 4, conc) + end + + doors(write, size, conc) +end + + +--squaresville.overgrow = function(write, read, size) +-- local sr +-- if squaresville.desolation > 0 then +-- for z = 0,size do +-- for x = 0,size do +-- sr = math_random(10) +-- if sr < 6 then +-- write(x, 1, z, "default:grass_"..sr) +-- elseif sr == 6 then +-- write(x, 1, z, "default:dry_shrub") +-- end +-- end +-- end +-- end +--end + + +local function shacks(write, read, get_index, size, suburb_orient, danger, biomemap) + local rot + local house_type = pr:next(1, #squaresville.house_schematics) + local plot_size = math_floor(squaresville.block_size / 2) + local yard = plot_size - 2 + local space = 6 + local floors = 2 + local plot = math_floor((size - 4) / yard) + + for pz = 0, plot do + for px = 0, plot do + if suburb_orient == 0 then + rot = pz * 2 + else + rot = px * 2 + 1 + end + + local house = squaresville.house_schematics[(house_type + pz * 2 + px) % #squaresville.house_schematics + 1] + local off = {x=0, z=0} + if house.size then + off = {x=math_floor(math.max(0, yard - house.size.x + 1) / 2), z=math_floor(math.max(0, yard - house.size.z + 1) / 2)} + + if px == 0 and house.size.x < plot_size then + off.x = off.x + 2 + end + if pz == 0 and house.size.z < plot_size then + off.z = off.z + 2 + end + end + + for z = 0, plot_size - 1 do + for x = 0, plot_size - 1 do + local index_2d = get_index(x + px * plot_size - 2, z + pz * plot_size - 2) or 1 + local name, biome + if index_2d then + biome = biomemap[index_2d] + if ((pz == 0 and z < 2) or (pz == 1 and z >= plot_size - 2) or (px == 0 and x < 2) or (px == 1 and x >= plot_size - 2)) then + name = 'squaresville:sidewalk' + else + name = biome.node_top or 'default:dirt' + end + end + + if name then + write(x + px * plot_size - 2, 0, z + pz * plot_size - 2, node[name]) + write(x + px * plot_size - 2, -1, z + pz * plot_size - 2, node_dirt) + if desolation > 0 then +-- ********************************* +-- Fix this. +-- ********************************* + --local decoration = node[squaresville.get_decoration(biome_name)] + --if decoration then + -- write(x + px * plot_size - 2, 1, z + pz * plot_size - 2, decoration) + --end +-- ********************************* + end + end + end + end + + for house_node_name, house_node in pairs(house) do + if house_node_name == 'size' then + -- nop + else + local x, z + local x1, z1 = house_node.x, house_node.z + if rot == 0 then + x, z = x1, z1 + elseif rot == 1 then + x, z = z1, plot_size - x1 - 1 + elseif rot == 2 then + x, z = plot_size - x1 - 1, plot_size - z1 - 1 + elseif rot == 3 then + x, z = plot_size - z1 - 1, x1 + end + local y = house_node.y + + local deco = nil + + local prob = house_node.prob + if ((prob and prob == 0) or house_node.name == "ignore") then + -- nop + elseif (not prob or prob >= math_random(255)) and house_node.name ~= "air" then + local param2 = house_node.param2 or 0 + + -- This is gonna bite me. + if house_node.name == 'oremask:ore' then + house_node.name = 'default:stone' + end + + if minetest.registered_items[house_node.name] then + local ptype = minetest.registered_items[house_node.name].paramtype2 + if ptype == 'wallmounted' or ptype == 'colorwallmounted' then + local dir = (param2 or 0) % 8 + local extra = (param2 or 0) - dir + for i = 1, rot do + dir = drotwp[dir] + end + param2 = dir + extra + elseif ptype == 'facedir' then + local dir = (param2 or 0) % 24 + local extra = (param2 or 0) - dir + for i = 1, rot do + dir = drotp[dir] + end + param2 = dir + extra + end + + local name = house_node.name + local meta = house_node.meta + if name == 'default:dirt_with_grass' then + local index_2d = get_index(x + px * plot_size - 2, z + pz * plot_size - 2) + if index_2d then + local biome = biomemap[index_2d] + name = biome.node_top or 'default:dirt' + end + end + + write(x + off.x + px * plot_size - 2, y - 1, z + off.z + pz * plot_size - 2, node[name], param2, meta) + else + --print('Squaresville: unknown node: '..house_node.name) + end + end + end + end + end + end +end + + +-- This is probably a bad idea... +local function simple_tree(data, px, pz) + local r + local h = math_random(4,6) + for y = 1,h do + data[px][y][pz] = squaresville.node('default:tree') + end + for z = -2,2 do + for y = -2,2 do + for x = -2,2 do + r = math.sqrt(x ^ 2 + y ^ 2 + z ^ 2) + if data[x + px][y + h][z + pz] ~= squaresville.node('default:tree') and math_random(4,6) > r * 2 then + data[x + px][y + h][z + pz] = squaresville.node('default:leaves') + end + end + end + end +end + + +------------------------------------- +-- Fix this +------------------------------------- +local function park(data, param, dx, dy, dz) + local sr + + for z = 1,dz do + for x = 1,dx do + data[x][0][z] = squaresville.node('default:dirt_with_grass') + if squaresville.desolation > 0 then + sr = math_random(14) + if sr < 6 then + data[x][1][z] = squaresville.node('default:grass_'..sr) + elseif sr == 6 then + data[x][1][z] = squaresville.node('default:dry_shrub') + end + end + end + end + + for qz = 1,math_floor(dz / 5) do + for qx = 1,math_floor(dx / 5) do + sr = math_random(5) + if sr == 1 then + simple_tree(data, qx * 5 - 2, qz * 5 - 2) + elseif sr == 2 then + data[qx * 5 - 2][1][qz * 5 - 2] = squaresville.node('squaresville:park_bench') + pstore(param, qx * 5 - 2, 1, qz * 5 - 2, math_random(4) - 1) + elseif sr == 3 then + data[qx * 5 - 2][1][qz * 5 - 2] = squaresville.node('squaresville:swing_set') + pstore(param, qx * 5 - 2, 1, qz * 5 - 2, math_random(4) - 1) + else + sr = math_random(30) + if sr == 1 then + data[qx * 5 - 2][1][qz * 5 - 2] = squaresville.node('squaresville:doll') + pstore(param, qx * 5 - 2, 1, qz * 5 - 2, math_random(4) - 1) + end + end + end + end +end + + +function squaresville.build(mg) + local minp, maxp = mg.minp, mg.maxp + local data, p2data, area = mg.data, mg.p2data, mg.area + local heightmap, biomemap = mg.heightmap, mg.biomemap + local schem, meta_data, vm = mg.schem, mg.meta_data, mg.vm + local baseline = mg.baseline + + local suburb_orient = 0 + local danger = 0 + local size = squaresville.block_size - squaresville.road_size + 2 + + if not squaresville.csize then + squaresville.csize = vector.add(vector.subtract(maxp, minp), 1) + end + + for bz = minp.z - 2 * squaresville.block_size + 1, maxp.z + squaresville.block_size - 1 do + for bx = minp.x - 2 * squaresville.block_size + 1, maxp.x + squaresville.block_size - 1 do + for non_loop = 1, 1 do + if ((bx + squaresville.max_height + squaresville.half_road_size) % squaresville.block_plus_road_size ~= squaresville.road_size + 2) or ((bz + squaresville.max_height + squaresville.half_road_size) % squaresville.block_plus_road_size ~= squaresville.road_size + 2) then + break + end + + local civ = squaresville.get_altitude({x=bx, z=bz}) + + if not civ.civ then + break + end + + -- Don't use bx, bz from this point. + local pos = {x=bx, y=baseline + civ_base, z=bz} + local seed = minetest.get_mapgen_setting('seed') % 65536 + pr = PcgRandom(pos.z * 10000 + pos.x + seed) + squaresville.pr = pr + + desolation = squaresville.get_desolation(baseline, civ.danger) + + -- This function burns lots of CPU time in order to save the + -- memory that would be necessary when using buffers. + local write = function(rx, ry, rz, node_n, p2, meta) + local x = pos.x + rx + local y = pos.y + ry + local z = pos.z + rz + + if x >= minp.x and x <= maxp.x and y >= minp.y and y <= maxp.y and z >= minp.z and z <= maxp.z and (desolation == 0 or y <= baseline + squaresville.noise['ruin'].map[((z - minp.z) * squaresville.csize.x + (x - minp.x) + 1)]) then + local ivm = area:index(x, y, z) + data[ivm] = breaker(node_n, y - baseline, civ.humidity_1, desolation) + p2data[ivm] = p2 or 0 + + if meta then + meta_data[#meta_data+1] = {x=x, y=y, z=z, meta=meta} + end + end + end + + local read = function(rx, ry, rz) + local x = pos.x + rx + local y = pos.y + ry + local z = pos.z + rz + + if x >= minp.x and x <= maxp.x and y >= minp.y and y <= maxp.y and z >= minp.z and z <= maxp.z then + local ivm = area:index(x, y, z) + return data[ivm] + end + end + + local get_index = function(rx, rz) + local x = pos.x + rx + local z = pos.z + rz + + if x >= minp.x and x <= maxp.x and z >= minp.z and z <= maxp.z then + return (z - minp.z) * squaresville.csize.x + (x - minp.x) + 1 + end + end + + local function clear(miny, maxy) + local i = 1 + while i <= #schem do + if schem[i].pos.x >= pos.x and schem[i].pos.x <= pos.x + size and schem[i].pos.z >= pos.z and schem[i].pos.z <= pos.z + size then + table.remove(schem, i) + else + i = i + 1 + end + end + + for z = pos.z - 0, pos.z + size + 0 do + for x = pos.x - 0, pos.x + size + 0 do + for y = miny, maxy do + write(x - pos.x, y, z - pos.z, node_air) + end + end + end + end + + local river + for rz = pos.z, pos.z + size, 5 do + for rx = pos.x, pos.x + size, 5 do + local def = squaresville.get_altitude({x=rx, z=rz}) + if def.height < civ_base - 2 then + river = true + break + end + end + + if river then + break + end + end + + if river or (squaresville.vacancies > 0 and pr:next(1, squaresville.vacancies) == 1) then + local i = 1 + while i <= #schem do + if schem[i].pos.x >= pos.x + 2 and schem[i].pos.x <= pos.x + size - 2 and schem[i].pos.z >= pos.z + 2 and schem[i].pos.z <= pos.z + size - 2 then + if math.random(squaresville.town_tree_thinning) ~= 1 then + table.remove(schem, i) + else + i = i + 1 + end + elseif schem[i].pos.x >= pos.x and schem[i].pos.x <= pos.x + size and schem[i].pos.z >= pos.z and schem[i].pos.z <= pos.z + size then + table.remove(schem, i) + else + i = i + 1 + end + end + elseif civ.city then + local sr = pr:next(1, 13) + if sr <= 3 then + clear(1, 10) + gotham(write, read, size) + elseif sr <= 6 then + clear(1, 10) + glass_and_steel(write, read, size) + elseif sr <= 9 then + clear(1, 10) + simple(write, read, size) + elseif sr <= 12 then + clear(1, 10) + simple(write, read, size, true) + else + --park(write, dx, dy, dz) + end + elseif civ.suburb then + local sr = pr:next(1, 13) + if sr <= 13 then + clear(1, 10) + shacks(write, read, get_index, size, suburb_orient, civ.danger, biomemap) + end + end + end + end + end +end diff --git a/caves.lua b/caves.lua new file mode 100644 index 0000000..9ff774a --- /dev/null +++ b/caves.lua @@ -0,0 +1,236 @@ +-- Squaresville terrain.lua +-- Copyright Duane Robertson (duane@duanerobertson.com), 2017 +-- Distributed under the LGPLv2.1 (https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) + + +local stone = {} +stone[minetest.get_content_id('default:stone')] = true +stone[minetest.get_content_id('default:sandstone')] = true +stone[minetest.get_content_id('default:desert_stone')] = true +local cave_fill = {} +cave_fill[minetest.get_content_id('air')] = true +cave_fill[minetest.get_content_id('default:water_source')] = true +local math_random = math.random + + +--minetest.register_ore({ +-- ore_type = "scatter", +-- ore = "default:meselamp", +-- wherein = {"default:stone", "default:sandstone"}, +-- clust_scarcity = DEBUG and (2 * 2 * 2) or (6 * 6 * 6), +-- clust_num_ores = 1, +-- clust_size = 1, +-- y_min = squaresville.baseline + squaresville.extent_bottom, +-- y_max = squaresville.baseline - 200, +--}) + +minetest.register_ore({ + ore_type = "blob", + ore = "default:desert_stone", + wherein = {"default:stone", "default:sandstone"}, + clust_scarcity = 14 * 14 * 14, + clust_size = 15, + y_min = squaresville.baseline + squaresville.extent_bottom, + y_max = squaresville.baseline - 200, + noise_threshold = 0.0, + noise_params = { + offset = 0.2, + scale = 0.2, + spread = {x = 15, y = 15, z = 15}, + seed = 8401, + octaves = 1, + persist = 0.0 + }, +}) + +minetest.register_ore({ + ore_type = "blob", + ore = "default:sandstone", + wherein = {"default:stone", "default:desert_stone"}, + clust_scarcity = 14 * 14 * 14, + clust_size = 15, + y_min = squaresville.baseline + squaresville.extent_bottom, + y_max = squaresville.baseline - 200, + noise_threshold = 0.0, + noise_params = { + offset = 0.2, + scale = 0.2, + spread = {x = 15, y = 15, z = 15}, + seed = -8771, + octaves = 1, + persist = 0.0 + }, +}) + +minetest.register_ore({ + ore_type = "blob", + ore = "default:desert_stone", + wherein = {"default:stone", "default:sandstone"}, + clust_scarcity = 14 * 14 * 14, + clust_size = 15, + y_min = squaresville.baseline_ruin + squaresville.extent_bottom_ruin, + y_max = squaresville.baseline_ruin - 200, + noise_threshold = 0.0, + noise_params = { + offset = 0.5, + scale = 0.3, + spread = {x = 15, y = 15, z = 15}, + seed = 8401, + octaves = 1, + persist = 0.0 + }, +}) + +minetest.register_ore({ + ore_type = "blob", + ore = "default:sandstone", + wherein = {"default:stone", "default:desert_stone"}, + clust_scarcity = 14 * 14 * 14, + clust_size = 15, + y_min = squaresville.baseline_ruin + squaresville.extent_bottom_ruin, + y_max = squaresville.baseline_ruin - 200, + noise_threshold = 0.0, + noise_params = { + offset = 0.5, + scale = 0.3, + spread = {x = 15, y = 15, z = 15}, + seed = -8771, + octaves = 1, + persist = 0.0 + }, +}) + +local max_height = squaresville.max_height + +local cave_1_map = {} +local cave_1_noise, river_noise +local cave_2_map = {} +local cave_2_noise, river_noise +local node = squaresville.node + + +squaresville.caves = function(minp, maxp, data, p2data, area, remove_this_node, baseline, heightmap) + if not (minp and maxp and data and p2data and area and node and type(data) == 'table' and type(p2data) == 'table') then + return + end + + local max_height = -squaresville.max_height + for i = 1, #heightmap do + if heightmap[i] and heightmap[i] > max_height then + max_height = heightmap[i] + end + end + + if minp.y > math.max(max_height, baseline) then + return + end + + if not squaresville.csize then + squaresville.csize = vector.add(vector.subtract(maxp, minp), 1) + + if not squaresville.csize then + return + end + end + + if not (cave_1_noise and cave_2_noise) then + cave_1_noise = minetest.get_perlin_map(squaresville.cave_2_p, {x=squaresville.csize.x, y=squaresville.csize.z}) + cave_2_noise = minetest.get_perlin_map(squaresville.cave_2_p, {x=squaresville.csize.y + 2, y=squaresville.csize.z}) + + if not (cave_1_noise and cave_2_noise) then + return + end + end + + cave_1_map = cave_1_noise:get2dMap_flat({x=minp.x, y=minp.z}, cave_1_map) + cave_2_map = cave_2_noise:get2dMap_flat({x=minp.y - 1, y=math.floor(minp.z / squaresville.csize.z)}, cave_2_map) + + local index1 = 0 + for z = minp.z, maxp.z do + local open_z_1 = math_random(6) + local open_z_2 = math_random(8, 12) + for x = minp.x, maxp.x do + index1 = index1 + 1 + local ivm = area:index(x, minp.y - 1, z) + local index2 = 0 + local height = heightmap[index1] or baseline + local cave_top = height - 17 + local water_or_lava = -1 + + if maxp.y < baseline then + water_or_lava = math.floor(math.abs(baseline - maxp.y) / 25) + end + + --local cave_top_1 = cave_top + --local off = 0 + --if (not squaresville.in_town) and x % 20 < 10 and z % 20 < open_z_2 and z % 20 > open_z_1 then + -- cave_top_1 = cave_top + 19 + -- off = z % 20 + -- if index1 + off > #cave_1_map then + -- off = 0 + -- end + --end + + for y = minp.y - 1, maxp.y + 1 do + index2 = index2 + 1 + if y < cave_top or ((not squaresville.in_town) and y <= height + 1 and y >= cave_top and y < 10) then + if cave_1_map[index1] * cave_2_map[index2] > 0.2 - math.min(0, cave_top - y) / 10 then + if maxp.y > baseline or cave_2_map[index2] > 0 then + data[ivm] = node['air'] + else + if y % 1000 > water_or_lava then + data[ivm] = node['default:water_source'] + else + data[ivm] = node['default:lava_source'] + end + end + elseif y < cave_top and cave_2_map[index2] > 0.65 then + data[ivm] = node['default:sandstone'] + end + end + + ivm = ivm + area.ystride + end + + ivm = area:index(x, minp.y - 1, z) + local glow, timer = nil, math_random(200) + for y = minp.y - 1, maxp.y + 1 do + if y > maxp.y then + glow = nil + timer = 9999 + elseif timer <= 0 then + if glow then + glow = nil + timer = math_random(200) + else + glow = true + timer = math_random(20) + end + else + timer = timer - 1 + end + + if y < cave_top then + local sr = math_random(6) + if stone[data[ivm]] and cave_fill[data[ivm + area.ystride]] and sr == 1 then + data[ivm] = node['default:dirt'] + if data[ivm + area.ystride] == node['air'] then + sr = math_random(5) + if sr == 1 then + data[ivm + area.ystride] = node['flowers:mushroom_brown'] + elseif sr == 2 then + data[ivm + area.ystride] = node['flowers:mushroom_red'] + end + elseif math_random(4) == 1 then + data[ivm + area.ystride] = node['squaresville:wet_fungus'] + end + elseif stone[data[ivm]] and (cave_fill[data[ivm - 1]] or cave_fill[data[ivm + 1]] or cave_fill[data[ivm - area.zstride]] or cave_fill[data[ivm + area.zstride]] or ((cave_fill[data[ivm - area.ystride]] or cave_fill[data[ivm + area.ystride]]) and sr == 2)) and glow then + data[ivm] = node['squaresville:crystal_glow'] + end + end + + ivm = ivm + area.ystride + end + end + end +end diff --git a/chat.lua b/chat.lua new file mode 100644 index 0000000..8920327 --- /dev/null +++ b/chat.lua @@ -0,0 +1,182 @@ +local node = squaresville.node + +minetest.register_chatcommand("fixlight", { + params = "", + description = "attempt to fix light bugs", + privs = {}, + func = function(player_name, param) + if not (player_name and type(player_name) == 'string' and player_name ~= '') then + return + end + + local privs = minetest.check_player_privs(player_name, {server=true}) + if not privs then + return + end + + print('Fun Caves: '..player_name..' used the fixlight command') + local player = minetest.get_player_by_name(player_name) + if not player then + return + end + + local pos = player:getpos() + if not pos then + return + end + pos = vector.round(pos) + + local radius = tonumber(param) or 50 + radius = math.floor(radius) + local minp = vector.subtract(pos, radius) + local maxp = vector.add(pos, radius) + + local vm = minetest.get_voxel_manip(minp, maxp) + if not vm then + return + end + + --vm:set_lighting({day = 0, night = 0}, minp, maxp) + vm:calc_lighting(minp, maxp) + vm:update_liquids() + vm:write_to_map() + vm:update_map() + end, +}) + + +minetest.register_chatcommand("flatten", { + params = "", + description = "flatten terrain", + privs = {}, + func = function(player_name, param) + if not (player_name and type(player_name) == 'string' and player_name ~= '') then + return + end + + local privs = minetest.check_player_privs(player_name, {server=true}) + if not privs then + return + end + + print('Fun Caves: '..player_name..' used the flatten command') + local player = minetest.get_player_by_name(player_name) + if not player then + return + end + + local pos = player:getpos() + if not pos then + return + end + pos = vector.round(pos) + + local radius = tonumber(param) or 50 + radius = math.floor(radius) + local minp = vector.subtract(pos, radius) + minp.y = minp.y - math.ceil(radius / 2) + local maxp = vector.add(pos, radius) + maxp.y = maxp.y + math.ceil(radius / 2) + + local air = minetest.get_content_id('air') + local stone = minetest.get_content_id('default:stone') + local water = minetest.get_content_id('default:water_source') + + local waters = {} + waters[minetest.get_content_id('default:water_source')] = true + waters[minetest.get_content_id('default:river_water_source')] = true + local stone_types = {'default:stone', 'default:desert_stone', 'default:sandstone', 'default:dirt', 'fun_caves:dirt', 'default:dirt_with_snow', 'default:dirt_with_grass', 'default:dirt_with_dry_grass', 'default:sand', 'default:desert_sand'} + local stones = {} + for i = 1, #stone_types do + stones[minetest.get_content_id(stone_types[i])] = true + end + + local vm = minetest.get_voxel_manip(minp, maxp) + if not vm then + return + end + + local emin, emax = vm:read_from_map(minp, maxp) + local area = VoxelArea:new({MinEdge = emin, MaxEdge = emax}) + local data = vm:get_data() + local heightmap = {} + local height_avg = 0 + local count = 0 + local index = 1 + for z = minp.z, maxp.z do + for x = minp.x, maxp.x do + local ivm = area:index(x, maxp.y, z) + for y = maxp.y, minp.y, -1 do + if stones[data[ivm]] then + if y >= maxp.y then + minetest.chat_send_player(player_name, 'Terrain altitude exceeds the given radius.') + return + end + heightmap[index] = y + height_avg = height_avg + heightmap[index] + count = count + 1 + break + end + ivm = ivm - area.ystride + end + + if not heightmap[index] then + minetest.chat_send_player(player_name, 'Terrain altitude exceeds the given radius.') + return + end + + index = index + 1 + end + end + height_avg = math.floor(height_avg / count + 0.5) + + index = 1 + for z = minp.z, maxp.z do + local dz = z - minp.z + for x = minp.x, maxp.x do + local dx = x - minp.x + local r = math.max(math.abs(radius - dx), math.abs(radius - dz)) / radius + local new_y = heightmap[index] + if r < 1 then + new_y = math.floor(heightmap[index] * r ^ 2 + height_avg * (1 - r ^ 2) + 0.5) + end + local delta = new_y - heightmap[index] + if delta > 0 then + local ivm = area:index(x, maxp.y, z) + for y = maxp.y - delta, new_y, -1 do + data[ivm] = data[ivm - area.ystride * delta] + ivm = ivm - area.ystride + end + elseif delta < 0 then + local ivm = area:index(x, new_y - 2, z) + for y = new_y - 2, maxp.y + delta do + data[ivm] = data[ivm - area.ystride * delta] + ivm = ivm + area.ystride + end + for y = maxp.y + delta + 1, maxp.y do + data[ivm] = air + ivm = ivm + area.ystride + end + end + + local ivm = area:index(x, minp.y, z) + for y = minp.y, maxp.y do + if y <= 1 and data[ivm] == air then + data[ivm] = water + elseif y > 1 and waters[data[ivm]] then + data[ivm] = air + end + ivm = ivm + area.ystride + end + + index = index + 1 + end + end + + vm:set_data(data) + vm:calc_lighting(minp, maxp) + vm:update_liquids() + vm:write_to_map() + vm:update_map() + end, +}) diff --git a/deco.lua b/deco.lua new file mode 100644 index 0000000..105187a --- /dev/null +++ b/deco.lua @@ -0,0 +1,543 @@ +-- Squaresville deco.lua +-- Copyright Duane Robertson (duane@duanerobertson.com), 2017 +-- Distributed under the LGPLv2.1 (https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) + + +local dangerous = squaresville.dangerous_terrain +squaresville.decorations = {} +squaresville.decorations_schem = {} + +local math_abs = math.abs +local math_floor = math.floor + + +for i = 2, 4 do + minetest.register_decoration({ + deco_type = "schematic", + place_on = {"default:dirt_with_snow", "default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = 0.012, + scale = 0.022, + spread = {x = 250, y = 250, z = 250}, + seed = (84 - 7 * i), + octaves = 3, + persist = 0.66 + }, + biomes = {"taiga", "coniferous_forest", "floatland_coniferous_forest"}, + y_min = 2, + y_max = 31000, + schematic = squaresville.path .. "/schematics/pine_tree"..i..".mts", + flags = "place_center_x, place_center_z", + }) + + minetest.register_decoration({ + deco_type = "schematic", + place_on = {"default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = 0.012, + scale = 0.022, + spread = {x = 250, y = 250, z = 250}, + seed = (139 - 7 * i), + octaves = 3, + persist = 0.66 + }, + biomes = {"deciduous_forest", 'desertstone_grassland'}, + y_min = 1, + y_max = 31000, + schematic = squaresville.path .. "/schematics/apple_tree"..i..".mts", + flags = "place_center_x, place_center_z", + rotation = "random", + }) +end + +minetest.register_decoration({ + deco_type = "schematic", + place_on = {"default:dirt_with_grass"}, + sidelen = 16, + noise_params = { + offset = 0, + scale = 0.022, + spread = {x = 250, y = 250, z = 250}, + seed = 119, + octaves = 3, + persist = 0.66 + }, + biomes = {"deciduous_forest"}, + y_min = 1, + y_max = 31000, + schematic = squaresville.path .. "/schematics/cherry_tree.mts", + flags = "place_center_x, place_center_z", + rotation = "random", +}) + +minetest.register_decoration({ + deco_type = "schematic", + place_on = {"default:polluted_dirt"}, + sidelen = 16, + noise_params = { + offset = 0.036, + scale = 0.022, + spread = {x = 250, y = 250, z = 250}, + seed = 666, + octaves = 3, + persist = 0.66 + }, + biomes = {"toxic_forest"}, + y_min = 1, + y_max = 31000, + schematic = squaresville.path .. "/schematics/decaying_tree.mts", + flags = "place_center_x, place_center_z", + rotation = "random", +}) + + +do + for _, odeco in pairs(minetest.registered_decorations) do + local deco = table.copy(odeco) + deco.place_on = table.copy(odeco.place_on) + deco.flags = {} + + if odeco.biomes then + deco.biomes = {} + for _, b in pairs(odeco.biomes) do + deco.biomes[b] = true + end + end + + if odeco.flags then + for f in odeco.flags:gmatch('[%w_]+') do + deco.flags[f] = true + end + end + + local nod = minetest.registered_nodes[deco.decoration] + if nod and nod.groups and nod.groups.flower then + deco.flower = true + end + + if odeco.schematic then + deco.name = odeco.schematic:match('([%w_]+)%.mts') or odeco.schematic + elseif odeco.decoration and type(odeco.decoration) == 'string' then + deco.name = odeco.decoration:match('.*:([%w_]+)') or odeco.decoration + end + + if deco.name == 'apple_tree' or deco.name == 'pine_tree' then + deco.noise_params.offset = 0.012 + if deco.name == 'apple_tree' then + deco.biomes['desertstone_grassland'] = true + end + elseif deco.name == 'junglegrass' then + deco.biomes['desertstone_grassland'] = true + deco.place_on[#deco.place_on+1] = 'default:dirt_with_grass' + elseif deco.name == 'jungle_tree' then + deco.schematic = squaresville.path..'/schematics/jungle_tree_with_orchids.mts' + end + + squaresville.decorations[#squaresville.decorations+1] = deco + end +end + + +squaresville.biomes = {} +local biomes = squaresville.biomes +local biome_names = {} +do + local biome_mod = { + tundra = { node_top = 'default:snowblock', depth_top = 1 }, + rainforest = { civ = 'desertstone_grassland' }, + } + + for i, obiome in pairs(minetest.registered_biomes) do + local biome = table.copy(obiome) + biomes[biome.name] = biome + biome_names[#biome_names+1] = biome.name + + -- Make changes to biome values from biome_mod. + for n, bi in pairs(biome_mod) do + for i, rbi in pairs(biomes) do + if rbi.name == n then + for j, prop in pairs(bi) do + biomes[i][j] = prop + end + end + end + end + end + + + biomes["desertstone_grassland"] = { + name = "desertstone_grassland", + --node_dust = "", + node_top = "default:dirt_with_grass", + depth_top = 1, + node_filler = "default:dirt", + depth_filler = 1, + node_stone = "default:desert_stone", + node_riverbed = "default:sand", + depth_riverbed = 2, + --node_water_top = "", + --depth_water_top = , + --node_water = "", + --node_river_water = "", + y_min = squaresville.max_height, + y_max = squaresville.max_height, + heat_point = 86, + humidity_point = 50, + } + + if dangerous then + biomes["toxic_forest"] = { + name = "toxic_forest", + node_top = "squaresville:polluted_dirt", + danger = 3, + depth_top = 1, + node_filler = "squaresville:polluted_dirt", + depth_filler = 1, + node_riverbed = "squaresville:polluted_dirt", + depth_riverbed = 1, + node_water = "squaresville:water_poison_source", + node_river_water = "squaresville:water_poison_source", + special_trees = {"decaying_tree"}, + y_min = 1, + y_max = squaresville.max_height, + heat_point = 20, + humidity_point = 50, + } + + biomes["toxic_forest_ocean"] = { + name = "toxic_forest_ocean", + node_top = "squaresville:polluted_dirt", + danger = 3, + depth_top = 1, + node_filler = "squaresville:polluted_dirt", + depth_filler = 1, + node_riverbed = "squaresville:polluted_dirt", + depth_riverbed = 1, + node_water = "squaresville:water_poison_source", + node_river_water = "squaresville:water_poison_source", + y_min = -10, + y_max = 0, + heat_point = 20, + humidity_point = 50, + } + + biomes["draconic"] = { + name = "draconic", + --node_dust = "", + node_top = "squaresville:cracked_stone", + depth_top = 1, + node_filler = "squaresville:granite", + depth_filler = 1, + node_stone = "squaresville:granite", + --node_water_top = "", + --depth_water_top = , + --node_water = "", + node_river_water = "squaresville:basalt", + node_riverbed = "squaresville:basalt", + depth_riverbed = 2, + danger = 3, + y_min = 1, + y_max = squaresville.max_height, + heat_point = 80, + humidity_point = 20, + } + + biomes["draconic_ocean"] = { + name = "draconic_ocean", + --node_dust = "", + node_top = "squaresville:granite", + depth_top = 1, + danger = 3, + node_filler = "squaresville:granite", + depth_filler = 3, + node_stone = "squaresville:granite", + y_min = -20, + y_max = 0, + heat_point = 80, + humidity_point = 20, + } + + biomes["bizarre"] = { + name = "bizarre", + --node_dust = "", + node_top = "squaresville:dirt_with_odd_grass", + depth_top = 1, + node_filler = "default:dirt", + depth_filler = 1, + node_stone = "squaresville:basalt", + --node_water_top = "", + --depth_water_top = , + --node_water = "", + --node_river_water = "squaresville:basalt", + --node_riverbed = "squaresville:basalt", + --depth_riverbed = 2, + special_trees = {'fur_tree'}, + danger = 3, + y_min = 1, + y_max = squaresville.max_height, + heat_point = 60, + humidity_point = 70, + } + + biomes["bizarre_ocean"] = { + name = "bizarre_ocean", + --node_dust = "", + node_top = "default:sand", + depth_top = 1, + danger = 3, + node_filler = "default:sand", + depth_filler = 3, + node_stone = "squaresville:basalt", + y_min = -20, + y_max = 0, + heat_point = 60, + humidity_point = 70, + } + end +end + + +local function register_flower(name, desc, biomes, seed) + local groups = {} + groups.snappy = 3 + groups.flammable = 2 + groups.flower = 1 + groups.flora = 1 + groups.attached_node = 1 + + minetest.register_node("squaresville:" .. name, { + description = desc, + drawtype = "plantlike", + waving = 1, + tiles = {"squaresville_" .. name .. ".png"}, + inventory_image = "squaresville_" .. name .. ".png", + wield_image = "squaresville_" .. name .. ".png", + sunlight_propagates = true, + paramtype = "light", + walkable = false, + buildable_to = true, + stack_max = 99, + groups = groups, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, + } + }) + + local bi = {} + if biomes then + bi = {} + for _, b in pairs(biomes) do + bi[b] = true + end + end + + local def = { + deco_type = "simple", + place_on = {"default:dirt_with_grass", 'default:dirt_with_rainforest_litter'}, + sidelen = 16, + noise_params = { + offset = -0.015, + scale = 0.025, + spread = {x = 200, y = 200, z = 200}, + seed = seed, + octaves = 3, + persist = 0.6 + }, + biomes = bi, + y_min = 1, + y_max = 31000, + decoration = "squaresville:"..name, + name = name, + flower = true, + } + squaresville.decorations[#squaresville.decorations+1] = def + + if bi['rainforest'] then + def = table.copy(def) + def.noise_params = table.copy(def.noise_params) + def.noise_params.offset = 0.015 + def.place_on = {'default:dirt_with_rainforest_litter'} + def.biomes = {['rainforest'] = true, ['rainforest_swamp'] = true} + squaresville.decorations[#squaresville.decorations+1] = def + end +end + +register_flower("orchid", "Orchid", {"rainforest", "rainforest_swamp"}, 783) +register_flower("bird_of_paradise", "Bird of Paradise", {"rainforest", "desertstone_grassland"}, 798) +register_flower("gerbera", "Gerbera", {"savanna", "rainforest", "desertstone_grassland"}, 911) + + +local function register_decoration(deco, place_on, biomes, chance) + local bi = {} + if biomes then + bi = {} + for _, b in pairs(biomes) do + bi[b] = true + end + end + + squaresville.decorations[#squaresville.decorations+1] = { + deco_type = "simple", + place_on = place_on, + sidelen = 16, + biomes = bi, + fill_ratio = chance, + y_min = 1, + y_max = 31000, + decoration = deco, + name = deco:match('[^:]+$'), + } +end + + +if dangerous then + --register_decoration('default:lava_source', 'squaresville:cracked_stone', {'draconic'}, 0.0005) + register_decoration('squaresville:blackened_shrub', 'squaresville:polluted_dirt', {'toxic_forest'}, 0.05) + register_decoration('flowers:mushroom_red', 'squaresville:polluted_dirt', {'toxic_forest'}, 0.05) + register_decoration('squaresville:strange_plant_1', 'squaresville:dirt_with_odd_grass', {'bizarre'}, 0.05) + register_decoration('squaresville:strange_plant_2', 'squaresville:dirt_with_odd_grass', {'bizarre'}, 0.05) + + for i = 1, 4 do + register_decoration('squaresville:stone_spike_'..i, 'squaresville:cracked_stone', {'draconic'}, 0.02 / i) + end +end + + +local function place_deco(mg, ps, deco) + local data, a = mg.data, mg.area + local minp, maxp = mg.minp, mg.maxp + local heightmap, biomemap, schem = mg.heightmap, mg.biomemap, mg.schem + + local csize = mg.csize + local sidelen = deco.sidelen or csize.x + local node = squaresville.node + local max_height = squaresville.max_height + + local node_air = node['air'] + local node_ignore = node['ignore'] + local node_water = node['default:water_source'] + + if csize.x % sidelen ~= 0 then + sidelen = csize.x + end + + local divlen = csize.x / sidelen + local area = sidelen * sidelen + + for z0 = 0, divlen-1 do + for x0 = 0, divlen-1 do + local center = { + x=math_floor(minp.x + sidelen / 2 + sidelen * x0), + z=math_floor(minp.z + sidelen / 2 + sidelen * z0), + } + local min = { + x=minp.x + sidelen * x0, + z=minp.z + sidelen * z0, + } + local max = { + x=minp.x + sidelen + sidelen * x0 - 1, + z=minp.z + sidelen + sidelen * z0 - 1, + } + local nval = deco.noise_params and minetest.get_perlin(deco.noise_params):get2d({x=center.x, y=center.z}) or deco.fill_ratio + local deco_count = area * nval + if deco_count > 1 then + deco_count = math_floor(deco_count) + elseif deco_count > 0 then + if ps:next(1, 1000) <= deco_count * 1000 then + deco_count = 1 + else + deco_count = 0 + end + end + for i = 1, deco_count do + local x = ps:next(min.x, max.x) + local z = ps:next(min.z, max.z) + local mapindex = csize.x * (z - minp.z) + (x - minp.x) + 1 + local y = -squaresville.max_height + if deco.liquid_surface then + print('Squaresville: Invalid liquid_surface parameter') + --y = find_liquid_surface() + elseif heightmap then + y = heightmap[mapindex] + else + print('Squaresville: Cannot generate heightmap') + --y = find_ground() + end + if y > -max_height and y < max_height and y >= minp.y and y <= maxp.y and y - mg.baseline >= (deco.y_min or -max_height) and y - mg.baseline <= (deco.y_max or max_height) then + local biome + if biomemap then + biome = biomemap[mapindex] + end + if not deco.biomes or deco.biomes[biome.name] then + local ivm = a:index(x, y, z) + if (not deco.place_on) or deco.place_on[data[ivm]] then + ivm = ivm + a.ystride + if deco.deco_type == 'schematic' then + local too_close + local size_s = deco.size_offset and ((deco.size_offset.x + 1) * (deco.size_offset.z + 1)) or 9 + for _, s in ipairs(schem) do + local dx, dz = s.pos.x - x, s.pos.z - z + if dx * dx + dz * dz <= size_s then + too_close = true + break + end + end + if not too_close then + schem[#schem+1] = {def=deco, pos={x=x,y=y,z=z}} + end + elseif data[ivm] == node_air then + data[ivm] = node[deco.decoration] + end + end + end + end + end + end + end +end + + +local first_check = true +function squaresville.place_all_decorations(mg) + local ps = PcgRandom(mg.seed + 53) + + for i, deco in pairs(squaresville.decorations) do + if first_check and deco.place_on then + local new_p = {} + if type(deco.place_on) ~= 'table' then + deco.place_on = {deco.place_on} + end + + for i, d in ipairs(deco.place_on) do + if type(d) == 'string' then + new_p[squaresville.node[d]] = squaresville.node[d] + end + end + deco.place_on = new_p + end + + place_deco(mg, ps, deco) + end + + first_check = nil +end + + +-- This lets rarer spawns overwrite the more common. +table.sort(squaresville.decorations, function(a, b) + if a.fill_ratio and b.fill_ratio and a.fill_ratio < b.fill_ratio then + return true + elseif a.fill_ratio and not b.fill_ratio then + return true + elseif b.fill_ratio and not a.fill_ratio then + return false + elseif not (a.fill_ratio or b.fill_ratio) and a.noise_params and b.noise_params and a.noise_params.scale + a.noise_params.offset > b.noise_params.scale + b.noise_params.offset then + return true + else + return false + end +end) diff --git a/depends.txt b/depends.txt new file mode 100644 index 0000000..d8faa79 --- /dev/null +++ b/depends.txt @@ -0,0 +1,8 @@ +default +beds +doors +flowers +stairs +xpanes? +booty? +bucket? diff --git a/desolate.lua b/desolate.lua new file mode 100644 index 0000000..cc4b5cc --- /dev/null +++ b/desolate.lua @@ -0,0 +1,104 @@ +-- Squaresville desolate.lua +-- Copyright Duane Robertson (duane@duanerobertson.com), 2017 +-- Distributed under the LGPLv2.1 (https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) + + +local cobble = squaresville.cobble +local desolation = squaresville.desolation +local ground_nodes = squaresville.ground_nodes +local math_random = math.random +local node = squaresville.node + +local node_air = node['air'] +local node_cobble = node['default:cobble'] +local node_dirt = node['default:dirt'] +local node_glowing_fungal_stone = node['squaresville:glowing_fungal_stone'] +local node_gravel = node['default:gravel'] +local node_light_panel = node['squaresville:light_panel'] +local node_mossycobble = node['default:mossycobble'] +local node_plate_glass = node['squaresville:plate_glass'] +local node_snowblock = node['default:snowblock'] +local node_stone_with_copper = node['default:stone_with_copper'] +local node_stone_with_iron = node['default:stone_with_iron'] + + +-- This table looks up the names of broken nodes. +local broken_node = setmetatable({}, { + __index = function(t, k) + if not (t and k and type(t) == 'table' and type(k) == 'number') then + return + end + + local s = minetest.get_name_from_content_id(k) + s = string.gsub(s, '.*:', 'squaresville:')..'_broken' + t[k] = k + if minetest.registered_nodes[s] then + t[k] = node[s] + end + + return t[k] + end +}) + + +-- This table looks up the properties of nodes. +local groups = setmetatable({}, { + __index = function(t, k) + if not (t and k and type(t) == 'table' and type(k) == 'string') then + return + end + + local s = minetest.get_name_from_content_id(k) + t[k] = minetest.registered_items[s].groups + return t[k] + end +}) + + +function squaresville.breaker(node_n, dy, humidity, desolation) + if desolation == 0 then + return node_n + end + + local dry = 100 - humidity + dy + + local sr = math_random(50) + local goff = 1 + dry = dry + 1 + + if node_n == node_light_panel then + sr = 1 + elseif node_n == node_plate_glass then + goff = 3 + end + + if not ground_nodes[node_n] and node_n ~= node_snowblock and sr <= desolation * goff then + return node_air + elseif not ground_nodes[node_n] and cobble and sr <= desolation * 3 and groups[node_n].cracky then + sr = math_random(700) + if sr == 1 then + sr = math_random(4) + if sr == 1 then + return node_stone_with_copper + else + return node_stone_with_iron + end + elseif sr <= 15 then + return node_glowing_fungal_stone + elseif sr <= 40 then + return node_gravel + elseif sr <= 140 then + return node_dirt + else + if sr <= dry * 10 then + return node_cobble + else + return node_mossycobble + end + end + elseif sr <= desolation * 5 then + return broken_node[node_n] + end + + return node_n +end diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..2c7fbb0 --- /dev/null +++ b/init.lua @@ -0,0 +1,287 @@ +-- Squaresville init.lua +-- Copyright Duane Robertson (duane@duanerobertson.com), 2017 +-- Distributed under the LGPLv2.1 (https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) + + +squaresville = {} +squaresville.version = '1.0' +squaresville.path = minetest.get_modpath(minetest.get_current_modname()) +squaresville.world = minetest.get_worldpath() + +squaresville.baseline = 8100 -- the altitude of the squaresville "dimension" +squaresville.baseline_ruin = 10000 -- how far up to the ruin "dimension" +squaresville.extent_bottom = -500 -- how far down to make the squaresville +squaresville.extent_bottom_ruin = -500 -- how far down to make the squaresville +squaresville.extent_top = 500 -- how far up to make it +squaresville.extent_top_ruin = 500 -- how far up to make it + +squaresville.attenuation = 50 -- distance to blend terrain with cities: 50 +squaresville.block_size = 60 -- size of a city block: 60 +squaresville.city_blocks = 2 -- radius of city blocks per city: 2 +squaresville.civ_base = 8 +squaresville.lake_depth = 3 -- rough depth of upland water: 3 +squaresville.max_height = 31000 -- maximum extent of the world +squaresville.river_base = 1 +squaresville.river_cutoff = 3 -- 3 +squaresville.river_scale = 15 +squaresville.road_size = 7 -- width of roads (should be odd): 7 +squaresville.suburb_blocks = 2 -- radius of suburb blocks per city: 2 +squaresville.suburb_humidity = 60 -- amount of watering city dwellers do: 60 +squaresville.terrain_scale = 50 -- typical maximum altitude of terrain: 50 +squaresville.terrain_scale_2 = 50 +squaresville.town_tree_thinning = 5 +squaresville.tree_spacing = 5 -- typical distance between trees: 5 +squaresville.water_level_base_mod = 1 -- height of water table: 1 +squaresville.wild_size = 8 -- distance between cities: 8 + + +squaresville.noise = {} + +squaresville.noise['ground_1'] = { def = {offset = squaresville.water_level_base_mod, scale = squaresville.terrain_scale, seed = 4382, spread = {x = 1033, y = 1033, z = 1033}, octaves = 5, persist = 0.6, lacunarity = 2.0} } +squaresville.noise['ground_2'] = { def = {offset = 0, scale = squaresville.terrain_scale_2, seed = 1005, spread = {x = 251, y = 251, z = 251}, octaves = 5, persist = 0.6, lacunarity = 2.0} } +squaresville.noise['heat_1'] = { def = {offset = 50, scale = 50, seed = 5349, spread = {x = 1000, y = 1000, z = 1000}, octaves = 3, persist = 0.5, lacunarity = 2} } +squaresville.noise['heat_2'] = { def = {offset = 0, scale = 1.5, seed = 13, spread = {x = 8, y = 8, z = 8}, octaves = 2, persist = 1.0, lacunarity = 2} } +squaresville.noise['humidity_1'] = { def = {offset = 50, scale = 50, seed = 842, spread = {x = 1000, y = 1000, z = 1000}, octaves = 3, persist = 0.5, lacunarity = 2} } +squaresville.noise['humidity_2'] = { def = {offset = 0, scale = 1.5, seed = 90003, spread = {x = 8, y = 8, z = 8}, octaves = 2, persist = 1.0, lacunarity = 2} } +squaresville.noise['river'] = { def = {offset = 0, scale = squaresville.river_scale, seed = -6819, spread = {x = 451, y = 451, z = 451}, octaves = 3, persist = 1, lacunarity = 2.0} } +squaresville.noise['ruin'] = { def = {offset = 25, scale = 15, seed = 4877, spread = {x = 240, y = 240, z = 240}, octaves = 4, persist = 1, lacunarity = 2.0} } +--squaresville.cave_1_p = {offset = 0, scale = 1, seed = 4382, spread = {x = 41, y = 41, z = 41}, octaves = 3, persist = 1.0, lacunarity = 2.0} +--squaresville.cave_2_p = {offset = 0, scale = 1, seed = -6119, spread = {x = 41, y = 41, z = 41}, octaves = 3, persist = 1.0, lacunarity = 2.0} + + +squaresville.block_plus_road_size = squaresville.road_size + squaresville.block_size +squaresville.city_limits = squaresville.block_plus_road_size * squaresville.city_blocks +squaresville.city_limits_plus_road_size = squaresville.city_limits + squaresville.road_size +squaresville.half_road_size = math.floor(squaresville.road_size / 2) +squaresville.half_terrain_scale_neg = squaresville.terrain_scale / -2 +squaresville.half_terrain_scale = squaresville.terrain_scale / 2 +squaresville.house_schematics = {} +squaresville.river_scale_less_one = squaresville.river_scale - 0.99 +squaresville.river_zone = squaresville.river_scale + squaresville.river_cutoff - 1 +squaresville.suburb_limits = squaresville.city_limits + squaresville.block_plus_road_size * squaresville.suburb_blocks +squaresville.suburb_limits_plus_road_size = squaresville.suburb_limits + squaresville.road_size +squaresville.wild_limits = squaresville.suburb_limits * squaresville.wild_size +squaresville.center_add = squaresville.max_height + squaresville.half_road_size + squaresville.wild_limits / 2 + +squaresville.time_buildings = 0 +squaresville.time_caves = 0 +squaresville.time_env_noise = 0 +squaresville.time_moria = 0 +squaresville.time_overhead = 0 +squaresville.time_schem = 0 +squaresville.time_terrain = 0 +squaresville.time_trees = 0 +squaresville.time_y_loop = 0 +squaresville.time_zigg = 0 + + +squaresville.vacancies = tonumber(minetest.setting_get('squaresville_vacancies')) or 8 +if squaresville.vacancies < 0 or squaresville.vacancies > 10 then + squaresville.vacancies = 0 +end + +squaresville.desolation = tonumber(minetest.setting_get('squaresville_desolation')) or 0 +if squaresville.desolation < 0 or squaresville.desolation > 10 then + squaresville.desolation = 0 +end + +squaresville.light_panels = minetest.setting_getbool('squaresville_light_panels') +if squaresville.light_panels == nil then + squaresville.light_panels = true +end + +squaresville.single_node = minetest.setting_getbool('squaresville_single_node') +if squaresville.single_node == nil then + squaresville.single_node = false +end + +squaresville.single_node_ruin = minetest.setting_getbool('squaresville_single_node_ruin') +if squaresville.single_node_ruin == nil then + squaresville.single_node_ruin = false +end + +squaresville.no_buildings = minetest.setting_getbool('squaresville_no_buildings') +if squaresville.no_buildings == nil then + squaresville.no_buildings = false +end + +squaresville.dangerous_terrain = true + + +if squaresville.single_node_ruin then + -- Set mapgen parameters to singlenode + squaresville.baseline_ruin = 0 + squaresville.extent_bottom_ruin = -31000 + minetest.register_on_mapgen_init(function(mgparams) + minetest.set_mapgen_params({mgname="singlenode", flags="nolight"}) + end) +elseif squaresville.single_node then + -- Set mapgen parameters to singlenode + squaresville.baseline_ruin = 8000 + squaresville.baseline = 0 + squaresville.extent_bottom = -31000 + minetest.register_on_mapgen_init(function(mgparams) + minetest.set_mapgen_params({mgname="singlenode", flags="nolight"}) + end) +end + + +-- Modify a node to add a group +function minetest.add_group(node_name, groups) + local def = minetest.registered_items[node_name] + if not (node_name and def and groups and type(groups) == 'table') then + return false + end + local def_groups = def.groups or {} + for group, value in pairs(groups) do + if value ~= 0 then + def_groups[group] = value + else + def_groups[group] = nil + end + end + minetest.override_item(node_name, {groups = def_groups}) + return true +end + + +if minetest.get_modpath('booty') then + squaresville.clone_node = booty.clone_node + squaresville.node = booty.node +else + function squaresville.clone_node(name) + if not (name and type(name) == 'string') then + return + end + + local node = minetest.registered_nodes[name] + local node2 = table.copy(node) + return node2 + end + + -- This tables looks up nodes that aren't already stored. + squaresville.node = setmetatable({}, { + __index = function(t, k) + if not (t and k and type(t) == 'table' and type(k) == 'string') then + return + end + + t[k] = minetest.get_content_id(k) + return t[k] + end + }) +end +local node = squaresville.node + + +squaresville.surround = function(node, data, area, ivm) + if not (node and data and area and ivm and type(data) == 'table' and type(ivm) == 'number') then + return + end + + -- Check to make sure that a plant root is fully surrounded. + -- This is due to the kludgy way you have to make water plants + -- in minetest, to avoid bubbles. + for x1 = -1,1,2 do + local n = data[ivm+x1] + if n == node['default:river_water_source'] or n == node['default:water_source'] or n == node['air'] then + return false + end + end + for z1 = -area.zstride,area.zstride,2*area.zstride do + local n = data[ivm+z1] + if n == node['default:river_water_source'] or n == node['default:water_source'] or n == node['air'] then + return false + end + end + + return true +end + + +-- These nodes will have their on_construct method called +-- when placed by the mapgen (to start timers). +squaresville.construct_nodes = {} +function squaresville.add_construct(node_name) + squaresville.construct_nodes[node[node_name]] = true +end + + +function squaresville.get_desolation(baseline, danger) + local desolation = 0 + if baseline == squaresville.baseline then + if squaresville.dangerous_terrain then + if squaresville.pr then + desolation = danger * 2 - squaresville.pr:next(1, 5) + else + desolation = danger * 2 - 3 + end + desolation = math.max(0, desolation) + else + return 0 + end + elseif squaresville.desolation == 0 then + return 1 + end + + return desolation +end + + +dofile(squaresville.path .. '/nodes.lua') + + +local ground_nodes = {} +ground_nodes[node['default:dirt']] = true +ground_nodes[node['default:stone']] = true +ground_nodes[node['default:dirt_with_grass']] = true +ground_nodes[node['default:dirt_with_snow']] = true +ground_nodes[node['squaresville:polluted_dirt']] = true +ground_nodes[node['squaresville:cracked_stone']] = true +ground_nodes[node['squaresville:granite']] = true +ground_nodes[node['squaresville:basalt']] = true +ground_nodes[node['squaresville:dirt_with_odd_grass']] = true +squaresville.ground_nodes = ground_nodes + + +if minetest.get_modpath('booty') then + booty.add_ground_node('squaresville:concrete') + booty.add_ground_node('squaresville:concrete_broken') + booty.add_ground_node('squaresville:sidewalk') + booty.add_ground_node('squaresville:sidewalk_broken') + booty.add_ground_node('squaresville:floor_ceiling') + booty.add_ground_node('squaresville:floor_ceiling_broken') + for i = 2, 5 do + booty.add_ground_node('squaresville:concrete'..i) + booty.add_ground_node('squaresville:concrete'..i..'_broken') + end +end + + +dofile(squaresville.path .. '/desolate.lua') +dofile(squaresville.path .. '/deco.lua') +dofile(squaresville.path .. '/schematics.lua') +dofile(squaresville.path .. '/mapgen.lua') +dofile(squaresville.path .. '/trans.lua') +dofile(squaresville.path .. "/chat.lua") + + +if squaresville.spawnplayer and squaresville.single_node then + minetest.register_on_newplayer(squaresville.spawnplayer) + minetest.register_on_respawnplayer(squaresville.spawnplayer) +end + + +minetest.register_on_shutdown(function() + print('time buildings: '..math.floor(1000 * squaresville.time_buildings / squaresville.chunks)) + print('time caves: '..math.floor(1000 * squaresville.time_caves / squaresville.chunks)) + print('time environ noise: '..math.floor(1000 * squaresville.time_env_noise / squaresville.chunks)) + print('time moria: '..math.floor(1000 * squaresville.time_moria / squaresville.chunks)) + print('time overhead: '..math.floor(1000 * squaresville.time_overhead / squaresville.chunks)) + print('time schematics: '..math.floor(1000 * squaresville.time_schem / squaresville.chunks)) + print('time terrain: '..math.floor(1000 * squaresville.time_terrain / squaresville.chunks)) + print('time big trees: '..math.floor(1000 * squaresville.time_trees / squaresville.chunks)) + print('time y loop: '..math.floor(1000 * squaresville.time_y_loop / squaresville.chunks)) + print('time ziggurats: '..math.floor(1000 * squaresville.time_zigg / squaresville.chunks)) + print('chunks: '..squaresville.chunks) +end) diff --git a/mapgen.lua b/mapgen.lua new file mode 100644 index 0000000..e9cabcf --- /dev/null +++ b/mapgen.lua @@ -0,0 +1,1228 @@ +-- Squaresville mapgen.lua +-- Copyright Duane Robertson (duane@duanerobertson.com), 2017 +-- Distributed under the LGPLv2.1 (https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) + + +local DEBUG +local abyssal_pivot = -20 +local big_trees_mod = minetest.get_modpath('big_trees') +--local biomemap = {} +local biomes = squaresville.biomes +local booty_mod = minetest.get_modpath('booty') +local breaker = squaresville.breaker +local checking_schem_matches +local civ_base = squaresville.civ_base +local cloudcity_mod -- = minetest.get_modpath('cloudcity') +local dangerous = squaresville.dangerous_terrain +local data = {} -- This is not thread-safe. +local defmap = {} +local desolation = squaresville.desolation +local fun_caves_mod = minetest.get_modpath('fun_caves') +local geomoria_mod = minetest.get_modpath('geomoria') +local get_decoration = squaresville.get_decoration +--local heightmap = {} +local heightmap_p +local lake_depth = squaresville.lake_depth / 200 +local math_abs = math.abs +local math_floor = math.floor +local math_max = math.max +local math_min = math.min +local max_height = 31000 +local no_buildings = squaresville.no_buildings +local node = squaresville.node +local noore_mod = minetest.get_modpath('noore') +local os_clock = os.clock +local overgen = 0 +local p2data = {} -- vm rotation data buffer +local passages_mod = minetest.get_modpath('passages') +local river_base = squaresville.river_base +local river_cutoff = squaresville.river_cutoff +local schem_arrays = {} +local string_match = string.match +local terrain_scale_2 = squaresville.terrain_scale_2 +local terrain_scale = squaresville.terrain_scale +local water_base = squaresville.water_level_base_mod +local zigg_mod = minetest.get_modpath('zigg') + +-- These seem to help the y loop some (but not much). +local node_air = node['air'] +local node_concrete = node['squaresville:concrete'] +local node_road = node['squaresville:road'] +local node_road_yellow_line = node['squaresville:road_yellow_line'] +local node_sidewalk = node['squaresville:sidewalk'] +local node_streetlight = node['squaresville:streetlight'] +local node_stone = node['default:stone'] + + +squaresville.fix_lighting = false +squaresville.chunks = 0 + + +-- This will FAIL if run on multiple threads. +if squaresville.single_node or squaresville.single_node_ruin then + squaresville.real_get_mapgen_object = minetest.get_mapgen_object + minetest.get_mapgen_object = function(object) + if object == 'heightmap' then + return table.copy(heightmap_p) + else + return squaresville.real_get_mapgen_object(object) + end + end +end + + +-- Return information on proximity to roads and cities. +local function _get_zone(pos, dist_z, def) + if not def then + def = {} + end + + def.attenuation = 1 + def.biome = nil + def.biome_height = nil + def.city = true + def.civ = false + def.danger = math_floor(math_max(math_abs(pos.x) / 6000, math_abs(pos.z) / 6000)) + def.ground_1 = nil + def.ground_2 = nil + def.heat = nil + def.heat_1 = nil + def.heat_2 = nil + def.height = nil + def.humidity = nil + def.humidity_1 = nil + def.humidity_2 = nil + def.inter_city_road = false + def.pre_river_height = nil + def.river = nil + def.road_center_here = false + def.road_center_orient = 0 + def.road_here = false + def.sewer = false + def.sewer_wall = false + def.sidewalk_here = false + def.streetlight_here = false + def.suburb = true + def.water_height = water_base + + if not dist_z then + local center_z = math_floor((pos.z + squaresville.center_add) / squaresville.wild_limits) * squaresville.wild_limits + dist_z = math_abs(center_z - (pos.z + squaresville.max_height)) + end + + local center_x = math_floor((pos.x + squaresville.center_add) / squaresville.wild_limits) * squaresville.wild_limits + local dist_x = math_abs(center_x - (pos.x + squaresville.max_height)) + local dist1 = math_max(dist_x, dist_z) + + if dist1 >= squaresville.suburb_limits + squaresville.half_road_size + 1 then + -- in the wild + def.city = false + def.suburb = false + elseif dist1 < squaresville.city_limits - squaresville.half_road_size then + -- in the city + def.suburb = false + def.civ = true + else + -- in the suburbs + def.city = false + def.civ = true + end + + local road_x = (dist_x + squaresville.half_road_size) % squaresville.block_plus_road_size + local road_z = (dist_z + squaresville.half_road_size) % squaresville.block_plus_road_size + + if def.civ and not no_buildings then + if road_x < squaresville.road_size or road_z < squaresville.road_size then + def.road_here = true + + if not (road_x < squaresville.road_size and road_z < squaresville.road_size) and not (road_x ~= squaresville.half_road_size and road_z ~= squaresville.half_road_size) then + def.road_center_here = true + + if road_z == squaresville.half_road_size then + def.road_center_orient = 1 + end + end + + if road_x >= squaresville.half_road_size - 1 and road_x <= squaresville.half_road_size + 1 and road_z >= squaresville.half_road_size - 1 and road_z <= squaresville.half_road_size + 1 then + if road_x == squaresville.half_road_size and road_z == squaresville.half_road_size then + def.sewer = true + else + def.sewer_wall = true + end + end + end + end + + local side_size_x = (dist_x + squaresville.half_road_size + 2) % squaresville.block_plus_road_size + local side_size_z = (dist_z + squaresville.half_road_size + 2) % squaresville.block_plus_road_size + if def.civ and (not def.road_here) and (side_size_x < squaresville.road_size + 4 or side_size_z < squaresville.road_size + 4) then + def.sidewalk_here = true + + local light_x = (pos.x + squaresville.max_height + squaresville.half_road_size + 2) % squaresville.block_plus_road_size + local light_z = (pos.z + squaresville.max_height + squaresville.half_road_size + 2) % squaresville.block_plus_road_size + if light_x == squaresville.road_size + 2 and light_z % 20 == 5 then + def.streetlight_here = 1 + elseif light_z == squaresville.road_size + 2 and light_x % 20 == 15 then + def.streetlight_here = 0 + elseif light_x == 1 and light_z % 20 == 15 then + def.streetlight_here = 3 + elseif light_z == 1 and light_x % 20 == 5 then + def.streetlight_here = 2 + end + end + + local road_dist = math_min(dist_x - squaresville.half_road_size, dist_z - squaresville.half_road_size) + if road_dist == - squaresville.half_road_size then + def.road_center_here = true + if dist_z - squaresville.half_road_size < dist_x - squaresville.half_road_size then + def.road_center_orient = 1 + end + end + road_dist = math_max(0, road_dist) + + if road_dist == 0 and not no_buildings then + def.road_here = true + def.inter_city_road = true + end + + -- Attenuation is used to slope the terrain near towns. + dist1 = dist1 - squaresville.suburb_limits - squaresville.half_road_size - 1 + if dist1 < squaresville.attenuation then + def.attenuation = dist1 / squaresville.attenuation + end + + if road_dist < squaresville.attenuation then + def.attenuation = math_min(def.attenuation, road_dist / squaresville.attenuation) + end + + return def +end + + +function squaresville.get_zone(pos) + return _get_zone(pos) +end + + +-- Altitude has to be calculated for spawns (for a single point) +-- as well as for terrain (from tables of values), and doing it +-- in two locations is error-prone, so it all stays here. +local function _get_altitude_from_def(def) + def.height = def.ground_1 + def.river = def.river - def.ground_2 / terrain_scale_2 + local g2 = def.ground_2 + + if def.civ then + def.height = civ_base + if not (def.road_here or def.sidewalk_here) then + -- Slightly alter flat terrain. + if def.ground_1 > squaresville.half_terrain_scale then + def.height = def.height + 1 + elseif def.ground_1 < squaresville.half_terrain_scale_neg then + def.height = def.height - 1 + end + end + elseif def.road_here then + def.height = civ_base + else + if math_abs(def.height) < 10 then + g2 = g2 * math_abs(def.height) * 0.1 + end + + -- Add mountains and islands. + if def.height > 0 then + if g2 < 0 then + g2 = -g2 * g2 * lake_depth + end + else + if g2 < abyssal_pivot then + g2 = 2 * (abyssal_pivot - g2) + abyssal_pivot + end + end + def.height = def.height + g2 + water_base + + -- Slope the terrain at the edges of town to let it blend better. + def.height = math_floor((def.height - civ_base) * def.attenuation + civ_base) + end + + return def +end + +local function _rivers_from_def(def) + -- Lower the rivers in dry regions. + if def.humidity_1 < 50 then + def.river = def.river - (def.humidity_1 / 10) + 5 + end + + def.pre_river_height = def.height + local t_base = river_base + if def.civ then + t_base = civ_base + elseif def.attenuation < 1 then + t_base = math_floor(river_base * def.attenuation + civ_base * (1 - def.attenuation)) + end + + if def.height > abyssal_pivot and def.river < river_cutoff then + if def.civ then + def.height = civ_base + end + def.water_height = math_min(t_base, def.height) - 3 + local bottom = math_min(t_base, def.height) + math_floor((def.river - river_cutoff) * 2) - water_base + river_base + def.height = bottom + elseif def.civ then + -- No river valley effect necessary, since urban areas are flat. + elseif def.height > t_base and def.river < squaresville.river_zone then + def.height = math_max(t_base, math_floor((def.height - t_base) * math_max(0, def.river - river_cutoff) / squaresville.river_scale_less_one) + t_base) + end + + -- River biomes use the height of the surrounding terrain. + def.biome_height = def.height + + return def +end + + +function squaresville.get_altitude(pos) + local noise = squaresville.noise + local pos_2d = {x=pos.x, y=pos.z} + + local def = squaresville.get_zone(pos) + def.ground_1 = minetest.get_perlin(noise['ground_1'].def):get2d(pos_2d) + def.ground_2 = minetest.get_perlin(noise['ground_2'].def):get2d(pos_2d) + def.river = math_abs(minetest.get_perlin(noise['river'].def):get2d(pos_2d)) + def.heat_1 = minetest.get_perlin(noise['heat_1'].def):get2d(pos_2d) + def.heat_2 = minetest.get_perlin(noise['heat_2'].def):get2d(pos_2d) + def.humidity_1 = minetest.get_perlin(noise['humidity_1'].def):get2d(pos_2d) + def.humidity_2 = minetest.get_perlin(noise['humidity_2'].def):get2d(pos_2d) + + def = _get_altitude_from_def(def) + return _rivers_from_def(def) +end + + +local function get_biome_from_def(def) + if not def then + return + end + + -- Adjust height for standard biomes. + def.biome_height = def.biome_height - water_base + 1 + if def.biome_height >= water_base and def.pre_river_height > def.biome_height then + def.biome_height = math_max(def.biome_height, 8) + end + + local height_factor = 0 + if def.biome_height > 20 then + local h2 = def.biome_height - 20 + height_factor = - h2 * h2 / (terrain_scale + terrain_scale_2) + end + + def.heat, def.humidity = def.heat_1, def.humidity_1 + + if dangerous and def.danger < 1 then + def.heat = math_min(math_max(def.heat, 40), 80) + def.humidity = math_min(math_max(def.humidity, 40), 80) + end + + if def.civ and desolation == 0 then + def.humidity = squaresville.suburb_humidity + end + + def.heat = def.heat + def.heat_2 + height_factor + def.humidity = def.humidity + def.humidity_2 + + local biome_name, biome_diff + for name, biome in pairs(biomes) do + if not dangerous or def.danger >= (biome.danger or 0) then + if (biome.y_min or -31000) <= def.biome_height and (biome.y_max or 31000) >= def.biome_height then + local heat_d = biome.heat_point - def.heat + local humidity_d = biome.humidity_point - def.humidity + local danger_d = 0 + if dangerous then + danger_d = (biome.danger or 0) - def.danger + end + local diff = heat_d * heat_d + humidity_d * humidity_d + danger_d * danger_d + + if (not biome_diff) or diff < biome_diff then + biome_name, biome_diff = name, diff + end + end + end + end + + if def.civ and biomes[biome_name].civ then + def.biome = biomes[biome_name].civ + else + def.biome = biome_name + end + + return def +end +squaresville.get_biome_from_def = get_biome_from_def + + +function squaresville.get_terrain(pos) + local def = squaresville.get_altitude(pos) + return get_biome_from_def(def) +end + + +-- This is a simple, breadth-first search, for checking whether +-- a depression in the ground is enclosed (for placing ponds). +-- It is cpu-intensive, but also easy to code. +local function heightmap_search(heightmap, csize, ri) + if not heightmap[ri] then + return + end + + local s = {} + local q = {} + local tho = -squaresville.max_height + + for th = heightmap[ri], heightmap[ri] + 6 do + for k, v in pairs(s) do + s[k] = nil + end + for k, v in pairs(q) do + q[k] = nil + end + s[ri] = true + q[#q+1] = ri + + while #q > 0 do + local ci = q[#q] + local cx = (ci - 1) % csize.x + local cz = math_floor((ci - 1) / csize.x) + if ((cx <= 1 or cx >= csize.x - 2) or (cz <= 1 or cz >= csize.z - 2)) then + break + end + q[#q] = nil + for zo = -1, 1 do + for xo = -1, 1 do + if zo ~= xo then + local ni = ci + (zo * csize.x) + xo + if not s[ni] and heightmap[ni] <= th then + s[ni] = true + q[#q+1] = ni + end + end + end + end + end + + if #q > 1 then + tho = th - 1 + break + end + end + + if tho >= heightmap[ri] then + return tho + end +end + + +local Mapgen = {} +Mapgen.__index = Mapgen + +function Mapgen.new(minp, maxp, seed) + local self = setmetatable({ + area = nil, + csize = nil, + baseline = squaresville.baseline, + biomemap = {}, -- use global? + data = data, + extent_bottom = squaresville.extent_bottom, + extent_top = squaresville.extent_top, + heightmap = {}, -- use global? + meta_data = {}, + minp = minp, + maxp = maxp, + p2data = p2data, + noise = {}, + schem = {}, + seed = seed, + terrain_point_def = {}, + vm = nil, + }, Mapgen) + + if maxp.y >= squaresville.baseline_ruin + squaresville.extent_bottom_ruin and minp.y <= squaresville.baseline_ruin + squaresville.extent_top_ruin then + self.baseline = squaresville.baseline_ruin + self.extent_bottom = squaresville.extent_bottom_ruin + self.extent_top = squaresville.extent_top_ruin + elseif maxp.y < self.baseline + self.extent_bottom or minp.y > self.baseline + self.extent_top then + return nil + end + + self.csize = vector.add(vector.subtract(maxp, minp), 1) + + local vm, emin, emax = minetest.get_mapgen_object("voxelmanip") + if not (vm and emin and emax) then + return + end + self.vm = vm + + self.data = vm:get_data(self.data) + self.p2data = vm:get_param2_data(self.p2data) + self.area = VoxelArea:new({MinEdge = emin, MaxEdge = emax}) + self.csize = vector.add(vector.subtract(maxp, minp), 1) + + return self +end + + +function Mapgen:generate(timed) + -- For faux get_mapgen_object method above. + heightmap_p = self.heightmap + + self:make_noise() + + local t_terrain = os_clock() + self:terrain() + squaresville.time_terrain = squaresville.time_terrain + os_clock() - t_terrain + + local occupied + + self:generate_caves(timed) + self:generate_buildings(timed) + + if squaresville.single_node then + for non_loop = 1, 1 do + -- and (not squaresville.in_town or (geomoria_mod and geomoria and geomoria.geomoria_depth and self.maxp.y < geomoria.geomoria_depth * 80)) + if self:generate_big_trees(timed) then + break + end + + if self:generate_cloud_city(timed) then + break + end + + if self:generate_moria(timed) then + break + end + + -- Past here, call things that would cover roads. + if squaresville.inter_city_road then + break + end + + if self:generate_zigg(timed) then + break + end + end + end + + self:check_repeatability() + + self:save_map(timed) + + -- Clear any tables that won't be reused. + squaresville.chunks = squaresville.chunks + 1 +end + + +function Mapgen:get_zone(pos, dist_z) + return _get_zone(pos, dist_z, {}) +end + + +function Mapgen:get_altitude(index, dist_z, check) + local pos = { + x = (index - 1) % self.csize.x + self.minp.x, + z = math_floor((index - 1) / self.csize.x) + self.minp.z + } + + if check and (pos.x ~= check.x or pos.z ~= check.z) then + print(index..': '..(pos.x-self.minp.x+1)..','..(pos.z-self.minp.z+1)..' ~= '..(check.x-self.minp.x+1)..','..(check.z-self.minp.z+1)) + end + + local def = self:get_zone(pos, dist_z) + def.ground_1 = self.noise['ground_1'].map[index] + def.ground_2 = self.noise['ground_2'].map[index] + def.heat_1 = self.noise['heat_1'].map[index] + def.heat_2 = self.noise['heat_2'].map[index] + def.humidity_1 = self.noise['humidity_1'].map[index] + def.humidity_2 = self.noise['humidity_2'].map[index] + def.river = math_abs(self.noise['river'].map[index]) + self.terrain_point_def = def + + return _get_altitude_from_def(def) +end + + +function Mapgen:terrain() + local area = self.area + local baseline = self.baseline + local biomemap = self.biomemap + local biome_survey = {} + local civ_base_adj = self.baseline + civ_base + local csize = self.csize + local data = self.data + local extent_bottom = self.extent_bottom + local heightmap = self.heightmap + local inter_city_road + local maxp = self.maxp + local minp = self.minp + local p2data = self.p2data + local schem = self.schem + local seed = self.seed + local water_level_base = self.baseline + water_base + local water_level_town = self.baseline - 10 + + squaresville.in_town = nil + squaresville.suburbs = nil + + -- Empty the heightmap. + for k, v in pairs(heightmap) do + heightmap[k] = nil + end + for k, v in pairs(biomemap) do + biomemap[k] = nil + end + for k, v in pairs(defmap) do + defmap[k] = nil + end + + local index = 1 + for z = minp.z, maxp.z do + local center_z = math_floor((z + squaresville.center_add) / squaresville.wild_limits) * squaresville.wild_limits + local dist_z = math_abs(center_z - (z + squaresville.max_height)) + + for x = minp.x, maxp.x do + local def = self:get_altitude(index, dist_z) + defmap[index] = def + index = index + 1 + end + end + + -- This doesn't work so well... + --index = 1 + --for z = minp.z, maxp.z, 8 do + -- for x = minp.x, maxp.x, 8 do + -- local low = squaresville.max_height + -- local high = -squaresville.max_height + -- local ip = 0 + -- for zp = 0, 7 do + -- for xp = 0, 7 do + -- if defmap[index + ip].height < low then + -- low = defmap[index + ip].height + -- end + -- if defmap[index + ip].height > high then + -- high = defmap[index + ip].height + -- end + -- ip = ip + 1 + -- end + -- ip = ip + csize.x - 8 + -- end + + -- if high - low > 5 then + -- ip = 0 + -- for zp = 0, 7 do + -- for xp = 0, 7 do + -- local d1, d2 = math_floor(low + (high - low) * 0.3), math_floor(low + (high - low) * 0.6) + -- if defmap[index + ip].height <= d1 then + -- defmap[index + ip].height = low + -- elseif defmap[index + ip].height <= d2 then + -- defmap[index + ip].height = low + 1 + -- end + + -- ip = ip + 1 + -- end + -- ip = ip + csize.x - 8 + -- end + -- end + + -- index = index + 8 + -- end + -- index = index + csize.x * 7 + --end + + index = 1 + for z = minp.z, maxp.z do + --local center_z = math_floor((z + squaresville.center_add) / squaresville.wild_limits) * squaresville.wild_limits + --local dist_z = math_abs(center_z - (z + squaresville.max_height)) + + for x = minp.x, maxp.x do + local water_level = water_level_base + + local def = defmap[index] + def = _rivers_from_def(def) + get_biome_from_def(def) + + if not inter_city_road and def.inter_city_road then + inter_city_road = true + end + + local civ = def.civ + desolation = squaresville.get_desolation(baseline, def.danger) + local height = def.height + local road_center_here = def.road_center_here + local road_center_orient = def.road_center_orient + local road_here = def.road_here + local sewer = def.sewer + local sewer_wall = def.sewer_wall + local sidewalk_here = def.sidewalk_here + local streetlight_here = def.streetlight_here + + if civ and not squaresville.in_town then + squaresville.in_town = true + end + + local biome_name = def.biome + biome_survey[biome_name] = (biome_survey[biome_name] or 0) + 1 + biomemap[index] = biomes[biome_name] + height = height + baseline + heightmap[index] = height + local biome_filler = node[biomes[biome_name].node_filler or 'default:stone'] + local biome_riverbed = node[biomes[biome_name].node_riverbed or 'default:sand'] + local biome_river_water = node[biomes[biome_name].node_river_water or 'default:water_source'] + local biome_stone = node[biomes[biome_name].node_stone] or node_stone + local biome_top = node[biomes[biome_name].node_top or 'default:stone'] + local biome_water = node[biomes[biome_name].node_water or 'default:water_source'] + + local fill_1 = height - (biomes[biome_name].depth_top or 0) + local fill_2 = fill_1 - (biomes[biome_name].depth_filler or 0) + local water_fill_1 = water_level - (biomes[biome_name].depth_water_top or 0) + local deco + + local ivm = area:index(x, minp.y - overgen, z) + local sewer_top = civ_base_adj - 12 + local sewer_bottom = civ_base_adj - 19 + for y = minp.y-overgen, maxp.y+overgen do + for y_non_loop = 1, 1 do + if data[ivm] ~= node_air then + break + end + + if y < height and y < -100 then + data[ivm] = node_stone + elseif y < height then + data[ivm] = biome_stone + end + + if civ and not no_buildings then + if sewer_wall and y < civ_base_adj and y >= sewer_top then + data[ivm] = breaker(node_concrete, y - baseline, def.humidity_1, desolation) + break + elseif sewer and y == civ_base_adj + 1 then + data[ivm] = breaker(node['doors:trapdoor_steel'], y - baseline, def.humidity_1, desolation) + p2data[ivm] = 0 + break + elseif sewer and y <= civ_base_adj and y > sewer_bottom then + data[ivm] = breaker(node['default:ladder_steel'], y - baseline, def.humidity_1, desolation) + p2data[ivm] = 4 + break + elseif road_here and y > sewer_bottom and y < sewer_top then + data[ivm] = node_air + break + elseif sidewalk_here and y > sewer_bottom and y < sewer_top then + data[ivm] = breaker(node_concrete, y - baseline, def.humidity_1, desolation) + break + elseif road_here and (y == sewer_bottom or y == sewer_top) then + data[ivm] = breaker(node_concrete, y - baseline, def.humidity_1, desolation) + break + end + end + + if road_here and y == civ_base_adj then + if road_center_here then + data[ivm] = breaker(node_road_yellow_line, y - baseline, def.humidity_1, desolation) + p2data[ivm] = road_center_orient + else + data[ivm] = breaker(node_road, y - baseline, def.humidity_1, desolation) + end + elseif sidewalk_here and y == civ_base_adj then + data[ivm] = breaker(node_sidewalk, y - baseline, def.humidity_1, desolation) + elseif streetlight_here and y == civ_base_adj + 1 then + data[ivm] = breaker(node_streetlight, y - baseline, def.humidity_1, desolation) + p2data[ivm] = streetlight_here + elseif def.river < river_cutoff and y < def.water_height and y <= height and y > height - (biomes[biome_name].depth_riverbed or 0) then + data[ivm] = biome_riverbed + if y > def.water_height - 2 then + deco = y + end + elseif y <= height and y > fill_1 and not road_here and not sidewalk_here then + data[ivm] = biome_top + deco = y + elseif y <= height and y > fill_2 then + data[ivm] = biome_filler + elseif def.river < river_cutoff and y >= height and y <= def.water_height then + data[ivm] = biome_river_water + elseif y >= height and y <= water_level and y > water_fill_1 then + data[ivm] = node[biomes[biome_name].node_water_top or 'default:water_source'] + elseif y >= height and y <= water_level then + data[ivm] = biome_water + end + + if y <= baseline + extent_bottom then + if y == baseline + extent_bottom then + data[ivm] = node['squaresville:bedrock'] + else + data[ivm] = node_air + end + end + end + + -- Interesting caves... + --local h2 = noise['ground_2'].map[index] + --if y < height - h2 and y > height - h2 - 10 then + -- data[ivm] = node_air + --end + + ivm = ivm + area.ystride + end + + index = index + 1 + end + end + + squaresville.place_all_decorations(self) + + -- Determine the most common biome. + do + local bc = 0 + for b, c in pairs(biome_survey) do + if c > bc then + bc = c + squaresville.main_biome = b + end + end + end + + self:generate_ponds(squaresville.main_biome) + + squaresville.inter_city_road = inter_city_road +end + + +function Mapgen:generate_ponds(biome) + if squaresville.lake_depth < 1 then + return + end + + local area = self.area + local biome_filler = squaresville.node[squaresville.biomes[biome].node_filler or 'default:stone'] + local biome_water = squaresville.node[squaresville.biomes[biome].node_water or 'default:water_source'] + local checked = {} + local csize = self.csize + local data = self.data + local heightmap = self.heightmap + local lilies + local maxp = self.maxp + local minp = self.minp + local pond_min = self.baseline + 20 + local ps = PcgRandom(self.seed + 93) + local schem = self.schem + + if biome == 'deciduous_forest' or biome == 'savanna' or biome == 'rainforest' then + lilies = true + end + + -- Check for depressions every eight meters. + for z = 5, csize.z - 4, 8 do + for x = 5, csize.x - 4, 8 do + local p = {x=x+minp.x-1, z=z+minp.z-1} + local index = (z - 1) * csize.x + x + local height = heightmap[index] + 1 + if height > pond_min and height >= minp.y - 1 and height <= maxp.y + 1 then + local search = {} + local h2 = heightmap_search(heightmap, csize, index) + -- If a depression is there, look at all the adjacent squares. + if h2 then + for zo = -8, 8 do + for xo = -8, 8 do + local subindex = index + zo * csize.x + xo + if not checked[subindex] then + h2 = heightmap_search(heightmap, csize, subindex) + -- Mark this as already searched. + checked[subindex] = true + if h2 then + -- Store depressed positions. + search[#search+1] = {x=x+xo, z=z+zo, h1=heightmap[subindex], h2=h2} + end + end + end + end + + for _, p2 in ipairs(search) do + p2.x = p2.x + minp.x - 1 + p2.z = p2.z + minp.z - 1 + + -- Take out any trees. + local rem + for i, sch in ipairs(schem) do + if sch.pos.x == p2.x and sch.pos.z == p2.z then + rem = i + break + end + end + if rem then + table.remove(schem, rem) + end + + -- Place water and lilies. + local ivm = area:index(p2.x, p2.h1-1, p2.z) + data[ivm] = biome_filler + for h = p2.h1, p2.h2 do + ivm = ivm + area.ystride + data[ivm] = biome_water + end + ivm = ivm + area.ystride + if lilies and ps:next(1, 10) == 1 then + data[ivm] = node['flowers:waterlily'] + else + data[ivm] = node_air + end + end + end + end + end + end +end + + +function Mapgen:save_map(timed) + local t_over + if timed then + t_over = os_clock() + end + + self.vm:set_data(self.data) + self.vm:set_param2_data(self.p2data) + + -- Place all schematics after saving map data. + for _, s in ipairs(self.schem) do + squaresville.place_schematic(s.def, s.pos, self.vm, nil) + end + + minetest.generate_ores(self.vm, self.minp, self.maxp) + + if booty_mod then + booty.placer(self.minp, self.maxp, self.data, self.area) + end + + if DEBUG then + self.vm:set_lighting({day = 10, night = 10}) + else + self.vm:set_lighting({day = 0, night = 0}, self.minp, self.maxp) + self.vm:calc_lighting() + end + + self.vm:update_liquids() + self.vm:write_to_map() + + -- Sometimes calc_lighting doesn't work without this. + if squaresville.fix_lighting then + minetest.after(10, function(minp, maxp) + local vm = minetest.get_voxel_manip(minp, maxp) + if not vm then + return + end + + vm:calc_lighting(minp, maxp) + vm:update_liquids() + vm:write_to_map() + vm:update_map() + end, emin, emax) + end + + -- Save all meta data for chests, cabinets, etc. + for _, t in ipairs(self.meta_data) do + local meta = minetest.get_meta({x=t.x, y=t.y, z=t.z}) + meta:from_table() + meta:from_table(t.meta) + end + + -- Call on_construct methods for nodes that request it. + -- This is mainly useful for starting timers. + for i, n in ipairs(self.data) do + if squaresville.construct_nodes[n] then + local pos = self.area:position(i) + local node_name = minetest.get_name_from_content_id(n) + if minetest.registered_nodes[node_name] and minetest.registered_nodes[node_name].on_construct then + minetest.registered_nodes[node_name].on_construct(pos) + end + end + end + + if timed then + squaresville.time_overhead = squaresville.time_overhead + os_clock() - t_over + end +end + + +function Mapgen:generate_moria(timed) + if not geomoria_mod or not geomoria.in_range(self.minp, self.maxp) then + return + end + + local t_moria + if timed then + t_moria = os.clock() + end + + local write, wetness = geomoria.geomorph(self.minp, self.maxp, self.data, self.p2data, self.area, node, self.heightmap, self.seed) + local write = write or geomoria.exit_stair(self.minp, self.maxp) + + if timed then + squaresville.time_moria = squaresville.time_moria + os_clock() - t_moria + end + + return write +end + + +function Mapgen:generate_zigg(timed) + if (not zigg_mod) or squaresville.in_town or self.minp.y > 100 or self.minp.y < -50 or (not zigg.ziggurat_biomes[squaresville.main_biome]) then + return + end + + local t_zigg + if timed then + t_zigg = os_clock() + end + + local write, _ = zigg.ziggurat(self.minp, self.maxp, self.data, self.area, nil, nil, self.heightmap, self.schem) + + if timed then + squaresville.time_zigg = squaresville.time_zigg + os_clock() - t_zigg + end + + return write +end + + +function Mapgen:generate_cloud_city(timed) + if not cloudcity_mod or self.minp.y > 129 or self.maxp.y < 47 then + return + end + + squaresville.cloudcity(self.minp, self.maxp, self.data, self.p2data, self.area, node, self.heightmap, self.seed) +end + + +function Mapgen:generate_big_trees(timed) + if not big_trees_mod or tonumber(big_trees.version) and tonumber(big_trees.version) < 1.1 or self.minp.y > big_trees.tree_top or self.maxp.y < big_trees.tree_bottom then + return + end + + local t_tree, write + if timed then + t_tree = os.clock() + end + + -- Try to determine if a tree will collide with a city. + local h_width = math.floor(big_trees.tree_width / 2) + local ex = (self.minp.x + 32) / big_trees.tree_width + local ez = (self.minp.z + 32) / big_trees.tree_width + ex = (ex == math.floor(ex)) + ez = (ez == math.floor(ez)) + local cz = (ez and self.minp.z + h_width or self.minp.z) + local cx = (ex and self.minp.x + h_width or self.minp.x) + local center_z = math.floor((self.minp.z + squaresville.center_add) / squaresville.wild_limits) * squaresville.wild_limits + local dist_z = math.abs(center_z - (cz + squaresville.max_height)) + local center_x = math.floor(((ez and self.minp.x or self.minp.x + h_width) + squaresville.center_add) / squaresville.wild_limits) * squaresville.wild_limits + local dist_x = math.abs(center_x - (cx + squaresville.max_height)) + local dist = math.max(dist_x, dist_z) + if dist >= squaresville.suburb_limits + squaresville.half_road_size + h_width + 1 then + write = big_trees.treegen(self.minp, self.maxp, self.data, self.area) + end + + if timed then + squaresville.time_trees = squaresville.time_trees + os_clock() - t_tree + end + + return write +end + + +function Mapgen:generate_buildings(timed) + if no_buildings or self.minp.y > self.baseline + 800 or self.maxp.y < self.baseline - 25 then + return + end + + local t_build + if timed then + t_build = os_clock() + end + + squaresville.build(self) + + if timed then + squaresville.time_buildings = squaresville.time_buildings + os_clock() - t_build + end +end + + +function Mapgen:generate_caves(timed) + local t_caves + if timed then + t_caves = os_clock() + end + + if fun_caves_mod and squaresville.single_node then + fun_caves.cavegen(self.minp, self.maxp, self.data, self.area, self.heightmap, self.schem) + end + + if passages_mod and squaresville.single_node then + passages.passages(self.minp, self.maxp, self.data, self.p2data, self.area, self.seed) + end + + if fun_caves_mod and squaresville.single_node then + fun_caves.decogen(self.minp, self.maxp, self.data, self.area, self.heightmap) + end + + if noore_mod and noore.ore_in_caves > 0 and squaresville.single_node then + noore.cavegen(self.minp, self.maxp, self.data, self.area) + end + + if timed then + squaresville.time_caves = squaresville.time_caves + os_clock() - t_caves + end +end + + +function Mapgen:make_noise() + -- Generate all squaresville noises. + for n, _ in pairs(squaresville.noise) do + if not squaresville.noise[n].noise then + if squaresville.noise[n].is3d then + squaresville.noise[n].noise = minetest.get_perlin_map(squaresville.noise[n].def, self.csize) + else + squaresville.noise[n].noise = minetest.get_perlin_map(squaresville.noise[n].def, {x=self.csize.x, y=self.csize.z}) + end + + if not squaresville.noise[n].noise then + return + end + end + + if not self.noise[n] then + -- Keep pointers to global noise info + self.noise[n] = { + def = squaresville.noise[n].def, + map = nil, + noise = squaresville.noise[n].noise, + } + end + + -- This stays with the mapgen object. + if squaresville.noise[n].is3d then + self.noise[n].map = squaresville.noise[n].noise:get3dMap_flat(self.minp, self.noise[n].map) + else + self.noise[n].map = squaresville.noise[n].noise:get2dMap_flat({x=self.minp.x, y=self.minp.z}, self.noise[n].map) + end + end +end + + +function Mapgen:check_repeatability() + -- This is debug code to check that everything is 100% repeatable. + if not checking_schem_matches then + return + end + + table.sort(self.schem, function(c,d) + if c.pos.x < d.pos.x then + return true + elseif c.pos.x == d.pos.x and c.pos.z < d.pos.z then + return true + elseif c.pos.x == d.pos.x and c.pos.z == d.pos.z and c.pos.y < d.pos.y then + return true + else + return false + end + end) + if not schem_arrays[self.seed] then + schem_arrays[self.seed] = self.schem + else + local wrong + for i, d in pairs(self.schem) do + if self.schem[i].pos then + if self.schem[i].pos.x ~= schem_arrays[self.seed][i].pos.x or self.schem[i].pos.z ~= schem_arrays[self.seed][i].pos.z then + wrong = i + break + end + else + print(i, dump(self.schem[i])) + end + end + if wrong then + print(self.seed, #self.schem, #schem_arrays[self.seed], wrong) + elseif #self.schem > 0 then + print(self.seed, 'Match!', #self.schem) + end + end +end + + +local function generate(minp, maxp, seed) + if not (minp and maxp and seed) then + return + end + + if not squaresville.csize then + squaresville.csize = vector.add(vector.subtract(maxp, minp), 1) + + if not squaresville.csize then + return + end + end + + local mg = Mapgen.new(minp, maxp, seed) + if not mg then + return + end + + mg:generate(true) +end + + +if squaresville.path then + dofile(squaresville.path .. "/buildings.lua") + --dofile(squaresville.path .. "/caves.lua") + --dofile(squaresville.path .. "/cloudcity.lua") +end + + +local function pgenerate(...) + local status, err = pcall(generate, ...) + --local status, err = true + --generate(...) + if not status then + print('Squaresville: Could not generate terrain:') + print(dump(err)) + collectgarbage("collect") + end +end + + +if squaresville.single_node and minetest.registered_on_generateds then + -- This is unsupported. I haven't been able to think of an alternative. + table.insert(minetest.registered_on_generateds, 1, pgenerate) +else + minetest.register_on_generated(pgenerate) +end + + +function squaresville.spawnplayer(player) + if minetest.get_modpath('beds') and beds and beds.spawn then + local name = player:get_player_name() + if beds.spawn[name] then + return + end + end + + for i = 1, 200 do + local x, z = math.random(4000) - 2000, math.random(4000) - 2000 + --x, z = 350, -900 + local pos = {x=x, z=z} + pos.y = squaresville.get_altitude(pos).height + if pos.y > squaresville.water_level_base_mod then + pos.y = pos.y + 2 + --pos = {x=1100, y=squaresville.baseline + 25, z=1000} + player:setpos(pos) + return true + end + end +end diff --git a/mod.conf b/mod.conf new file mode 100644 index 0000000..2f7547d --- /dev/null +++ b/mod.conf @@ -0,0 +1 @@ +name = squaresville diff --git a/nodes.lua b/nodes.lua new file mode 100644 index 0000000..a922b9a --- /dev/null +++ b/nodes.lua @@ -0,0 +1,626 @@ +-- Squaresville nodes.lua +-- Copyright Duane Robertson (duane@duanerobertson.com), 2017 +-- Distributed under the LGPLv2.1 (https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) + + +local newnode +local light_max = default.light_max or 10 +local node = squaresville.node + +local darkening = 0 +if squaresville.desolation > 0 then + darkening = 100 +end + +newnode = squaresville.clone_node("default:stone") +newnode.diggable = false +newnode.groups = {} +minetest.register_node("squaresville:bedrock", newnode) + + +minetest.register_node('squaresville:road', { + description = 'Road', + tiles = {'squaresville_tarmac.png'}, + sounds = default.node_sound_stone_defaults(), + groups = {cracky = 2, level = 1}, + is_ground_content = false, +}) +newnode = squaresville.clone_node('squaresville:road') +newnode.tiles = {'squaresville_tarmac.png^[brighten'} +minetest.register_node('squaresville:road_white', newnode) + +minetest.register_node('squaresville:road_broken', { + description = 'Road', + tiles = {'squaresville_tarmac.png^squaresville_broken_3.png'}, + paramtype = 'light', + drawtype = 'nodebox', + node_box = { type = 'fixed', + fixed = { + {0.5, 0.3, 0.5, -0.5, -0.5, -0.5} + }, + is_ground_content = false, +}, +sounds = default.node_sound_stone_defaults(), +groups = {cracky = 2, level = 1}, +}) + +minetest.register_node('squaresville:road_yellow_line', { + description = 'Road', + tiles = {'squaresville_tarmac_yellow_line.png'}, + paramtype2 = 'facedir', + sounds = default.node_sound_stone_defaults(), + groups = {cracky = 2, level = 1}, + is_ground_content = false, +}) + +--minetest.register_node('squaresville:concrete', { +-- description = 'Concrete', +-- tiles = {'default_stone.png'}, +-- groups = {cracky = 3, level=1, stone = 1}, +-- drop = 'default:cobble', +-- sounds = default.node_sound_stone_defaults(), +-- is_ground_content = false, +--}) +newnode = squaresville.clone_node('default:stone') +newnode.description = 'Concrete' +newnode.is_ground_content = false +newnode.drop = 'default:cobble' +minetest.register_node('squaresville:concrete', newnode) +newnode = squaresville.clone_node('squaresville:concrete') +newnode.tiles = {'default_stone.png^squaresville_broken_3_low.png'} +minetest.register_node('squaresville:concrete_broken', newnode) + +newnode = squaresville.clone_node('squaresville:concrete') +newnode.tiles = {'default_stone.png^[colorize:#964B00:40'} +minetest.register_node('squaresville:concrete2', newnode) +newnode = squaresville.clone_node('squaresville:concrete') +newnode.tiles = {'default_stone.png^[colorize:#FF0000:20'} +minetest.register_node('squaresville:concrete3', newnode) +newnode = squaresville.clone_node('squaresville:concrete') +newnode.tiles = {'default_stone.png^[colorize:#4682B4:10'} +minetest.register_node('squaresville:concrete4', newnode) +newnode = squaresville.clone_node('squaresville:concrete') +newnode.tiles = {'default_stone.png^[colorize:#000000:40'} +minetest.register_node('squaresville:concrete5', newnode) + +newnode = squaresville.clone_node('squaresville:concrete_broken') +newnode.tiles = {'default_stone.png^[colorize:#964B00:40^squaresville_broken_3_low.png'} +minetest.register_node('squaresville:concrete2_broken', newnode) +newnode = squaresville.clone_node('squaresville:concrete_broken') +newnode.tiles = {'default_stone.png^[colorize:#FF0000:20^squaresville_broken_3_low.png'} +minetest.register_node('squaresville:concrete3_broken', newnode) +newnode = squaresville.clone_node('squaresville:concrete_broken') +newnode.tiles = {'default_stone.png^[colorize:#4682B4:10^squaresville_broken_3_low.png'} +minetest.register_node('squaresville:concrete4_broken', newnode) +newnode = squaresville.clone_node('squaresville:concrete_broken') +newnode.tiles = {'default_stone.png^[colorize:#000000:40^squaresville_broken_3_low.png'} +minetest.register_node('squaresville:concrete5_broken', newnode) + +minetest.register_node('squaresville:light_panel', { + description = 'Light Panel', + tiles = {'default_sandstone.png'}, + light_source = 14, + paramtype = 'light', + paramtype2 = 'facedir', + drawtype = 'nodebox', + node_box = { type = 'fixed', + fixed = { + {-0.5, -0.5, -0.5, 0.5, -0.48, 0.5}, + } }, + groups = {cracky = 3, level=1, oddly_breakable_by_hand = 1}, + drop = 'squaresville:light_panel_broken', + on_place = minetest.rotate_and_place, + sounds = default.node_sound_stone_defaults(), + is_ground_content = false, +}) +newnode = squaresville.clone_node('squaresville:light_panel') +newnode.light_source = 0 +minetest.register_node("squaresville:light_panel_broken", newnode) + + +-- ice, thin -- transparent +minetest.register_node('squaresville:thin_ice', { + description = 'Thin Ice', + tiles = {'caverealms_thin_ice.png'}, + is_ground_content = true, + groups = {cracky=3}, + sounds = default.node_sound_glass_defaults(), + use_texture_alpha = true, + light_source = 1, + drawtype = 'glasslike', + sunlight_propagates = true, + freezemelt = 'default:water_source', + paramtype = 'light', +}) + + +minetest.register_node('squaresville:plate_glass', { + description = 'Plate Glass', + drawtype = 'glasslike', + paramtype = 'light', + sunlight_propagates = true, + tiles = {'squaresville_plate_glass.png'}, + light_source = 1, + use_texture_alpha = true, + is_ground_content = false, + groups = {cracky = 3, level=2}, + sounds = default.node_sound_stone_defaults(), + is_ground_content = false, +}) +newnode = squaresville.clone_node('squaresville:plate_glass') +newnode.tiles = {'squaresville_plate_glass_broken.png'} +newnode.walkable = false +minetest.register_node('squaresville:plate_glass_broken', newnode) +minetest.register_alias('squaresville:glass_broken', 'squaresville:plate_glass_broken') + + +minetest.register_node('squaresville:floor_ceiling', { + description = 'Floor/Ceiling', + tiles = {'squaresville_floor.png^[colorize:#000000:'..darkening, 'squaresville_ceiling.png', 'default_stone.png'}, + paramtype2 = 'facedir', + groups = {cracky = 3, level=1, flammable = 3}, + drop = 'default:cobble', + drop = { + max_items = 3, + items = { + { + items = {'default:cobble',}, + rarity = 1, + }, + { + items = {'default:copper_ingot',}, + rarity = 6, + }, + }, + }, + sounds = default.node_sound_stone_defaults(), + is_ground_content = false, +}) +newnode = squaresville.clone_node('squaresville:floor_ceiling') +newnode.tiles = {'squaresville_floor.png^[colorize:#000000:'..darkening..'^squaresville_broken_3.png', 'squaresville_ceiling.png^squaresville_broken_3.png', 'default_stone.png^squaresville_broken_3.png'} +minetest.register_node('squaresville:floor_ceiling_broken', newnode) + + +minetest.register_node('squaresville:roof', { + description = 'Roof', + tiles = {'squaresville_tarmac.png', 'squaresville_ceiling.png', 'default_stone.png'}, + paramtype2 = 'facedir', + groups = {cracky = 3, level=1, flammable = 3}, + drop = 'default:cobble', + sounds = default.node_sound_stone_defaults(), + is_ground_content = false, +}) +minetest.register_node('squaresville:roof_broken', { + description = 'Roof', + tiles = {'squaresville_tarmac.png^squaresville_broken_3.png', 'squaresville_ceiling.png^squaresville_broken_3.png', 'default_stone.png'}, + paramtype = 'light', + paramtype2 = 'facedir', + drawtype = 'nodebox', + drop = 'default:cobble', + node_box = { type = 'fixed', + fixed = { + {0.5, 0.3, 0.5, -0.5, -0.5, -0.5} + } +}, +sounds = default.node_sound_stone_defaults(), +groups = {cracky = 3, level=1, flammable = 3}, +is_ground_content = false, +}) + + +minetest.register_node('squaresville:sidewalk', { + description = 'Sidewalk', + tiles = {'squaresville_sidewalk.png'}, + groups = {cracky = 3, level=1, stone = 1}, + drop = 'default:cobble', + sounds = default.node_sound_stone_defaults(), + is_ground_content = false, +}) +newnode = squaresville.clone_node('squaresville:sidewalk') +newnode.tiles = {'squaresville_sidewalk.png^squaresville_broken_3.png'} +minetest.register_node('squaresville:sidewalk_broken', newnode) + + +minetest.register_node('squaresville:gargoyle', { + description = 'Concrete', + tiles = {'default_stone.png^[colorize:#000000:60'}, + paramtype = 'light', + paramtype2 = 'facedir', + drawtype = 'nodebox', + node_box = { type = 'fixed', + fixed = { + {0.2, 0.23, -0.17, -0.1, -0.5, 0.17}, -- body f + {-0.1, -0.07, -0.17, -0.27, -0.5, 0.17}, -- body r + {0.17, 0.5, -0.07, 0, 0.23, 0.07}, -- head + {0.27, 0.2, 0.1, 0.13, -0.5, 0.23}, -- leg fl + {0.27, 0.2, -0.23, 0.13, -0.5, -0.1}, -- leg fr + {0.03, -0.1, 0.17, -0.2, -0.5, 0.27}, -- leg rl + {0.03, -0.1, -0.27, -0.2, -0.5, -0.17}, -- leg rl + {-0.1, 0.23, -0.4, -0.17, 0.13, 0.4}, -- wing u + {-0.1, 0.13, -0.3, -0.17, 0.03, 0.3}, -- wing u + } }, + groups = {cracky = 3, level=1, stone = 1}, + drop = 'default:cobble', + on_place = minetest.rotate_and_place, + sounds = default.node_sound_stone_defaults(), +}) + + +minetest.register_node("squaresville:plaster", { + description = "Plaster", + tiles = {"default_desert_stone.png^[colorize:#8C8175:225"}, + sounds = default.node_sound_stone_defaults(), + groups = {cracky = 3, level = 0, flammable = 2, oddly_breakable_by_hand = 1}, +}) +newnode = squaresville.clone_node("squaresville:plaster") +newnode.tiles = {"(default_desert_stone.png^[colorize:#8C8175:225)^squaresville_broken_3_low.png"} +minetest.register_node("squaresville:plaster_broken", newnode) + + +newnode = squaresville.clone_node("stairs:stair_stone") +newnode.description = "Concrete Stair" +newnode.groups.flammable = 3 +newnode.drop = "stairs:stair_stone" +minetest.register_node("squaresville:concrete_stair", newnode) + + +minetest.register_node("squaresville:carpet", { + description = "Carpet", + tiles = {"wool_blue.png", "default_stone.png", "default_stone.png"}, + sounds = default.node_sound_stone_defaults(), + groups = {cracky = 2, level = 1}, +}) +minetest.register_alias("squaresville:carpet_broken", "default:stone") + + +newnode = squaresville.clone_node("default:glass") +newnode.description = "Glowing Crystal" +--newnode.tiles = {"squaresville_plate_glass.png^colorize:#FFFF00,150",} +newnode.tiles = {"squaresville_crystal.png",} +newnode.light_source = 10 +minetest.register_node("squaresville:crystal_glow", newnode) + + +if minetest.registered_items['underworlds:glowing_fungal_stone'] then + minetest.register_alias("squaresville:glowing_fungal_stone", 'underworlds:glowing_fungal_stone') + minetest.register_alias("squaresville:glowing_fungus", 'underworlds:glowing_fungus') +else + -- Glowing fungal stone provides an eerie light. + minetest.register_node("squaresville:glowing_fungal_stone", { + description = "Glowing Fungal Stone", + tiles = {"default_stone.png^vmg_glowing_fungal.png",}, + is_ground_content = true, + light_source = light_max - 4, + groups = {cracky=3, stone=1}, + drop = {items={ {items={"default:cobble"},}, {items={"squaresville:glowing_fungus",},},},}, + sounds = default.node_sound_stone_defaults(), + }) + + -- Glowing fungus grows underground. + minetest.register_craftitem("squaresville:glowing_fungus", { + description = "Glowing Fungus", + drawtype = "plantlike", + paramtype = "light", + tiles = {"vmg_glowing_fungus.png"}, + inventory_image = "vmg_glowing_fungus.png", + groups = {dig_immediate = 3}, + }) +end + + +minetest.register_node("squaresville:wet_fungus", { + description = "Leaves", + --drawtype = "allfaces_optional", + --waving = 1, + tiles = {"wet_fungus_2.png"}, + --special_tiles = {"wet_fungus_2.png"}, + --paramtype = "light", + --is_ground_content = false, + groups = {snappy = 3}, + drop = '', + sounds = default.node_sound_leaves_defaults(), +}) + + +-- Polluted dirt +newnode = squaresville.clone_node("default:dirt") +newnode.description = "Polluted Dirt" +newnode.tiles = {"default_dirt.png^[colorize:#100020:100"} +newnode.groups.soil = 0 +minetest.register_node("squaresville:polluted_dirt", newnode) + +-- Bare branches +minetest.register_node('squaresville:sticks_default', { + description = 'Sticks', + drawtype = 'allfaces_optional', + waving = 1, + visual_scale = 1.3, + tiles = {'squaresville_dry_twigs.png'}, + paramtype = 'light', + is_ground_content = false, + drop = 'default:stick 2', + groups = {snappy = 3, leafdecay = 3, flammable = 2, leaves = 1}, +}) + +-- Black leaves +newnode = squaresville.clone_node("default:leaves") +newnode.description = "Blackened Leaves" +newnode.tiles = {"default_leaves.png^[colorize:#100020:200"} +newnode.special_tiles = {"default_leaves_simple.png^[colorize:#100020:200"} +newnode.groups = {snappy = 3, flammable = 2} +minetest.register_node("squaresville:leaves_black", newnode) + + +newnode = squaresville.clone_node("default:water_source") +newnode.description = "Poisonous Water" +newnode.groups.poison = 3 +--newnode.light_source = 6 +newnode.liquid_alternative_flowing = "squaresville:water_poison_flowing" +newnode.liquid_alternative_source = "squaresville:water_poison_source" +newnode.post_effect_color = {a = 103, r = 108, g = 128, b = 64} +--newnode.special_tiles[1].name = "squaresville_water_poison_source_animated.png" +newnode.tiles[1].name = "squaresville_water_poison_source_animated.png" +minetest.register_node("squaresville:water_poison_source", newnode) + +newnode = squaresville.clone_node("default:water_flowing") +newnode.description = "Poisonous Water" +newnode.groups.poison = 3 +--newnode.light_source = 6 +newnode.liquid_alternative_flowing = "squaresville:water_poison_flowing" +newnode.liquid_alternative_source = "squaresville:water_poison_source" +newnode.post_effect_color = {a = 103, r = 108, g = 128, b = 64} +--newnode.special_tiles[1].name = "squaresville_water_poison_flowing_animated.png" +newnode.tiles[1] = "squaresville_water_poison.png" +minetest.register_node("squaresville:water_poison_flowing", newnode) + + +minetest.register_node("squaresville:basalt", { + description = "Basalt", + tiles = {"squaresville_basalt.png"}, + is_ground_content = true, + groups = {cracky=1, level=2}, + sounds = default.node_sound_stone_defaults({ + footstep = {name="default_stone_footstep", gain=0.25}, + }), +}) +minetest.register_alias('squaresville:basalt_raw', 'squaresville:basalt') + + +minetest.register_node("squaresville:granite", { + description = "Granite", + tiles = {"squaresville_granite.png"}, + is_ground_content = true, + groups = {cracky=1, level=3}, + sounds = default.node_sound_stone_defaults({ + footstep = {name="default_stone_footstep", gain=0.25}, + }), +}) +minetest.register_alias('squaresville:granite_raw', 'squaresville:granite') + + +newnode = squaresville.clone_node("default:stone") +newnode.tiles = {'squaresville_cracked_stone.png'} +minetest.register_node('squaresville:cracked_stone', newnode) + + +minetest.register_ore({ + ore_type = "scatter", + ore = "default:lava_source", + wherein = "squaresville:cracked_stone", + clust_scarcity = 10 * 10 * 10, + clust_num_ores = 1, + clust_size = 1, + y_min = 1, + y_max = 10, +}) + + +newnode = squaresville.clone_node("default:dry_shrub") +newnode.tiles = {'squaresville_black_shrub.png'} +minetest.register_node('squaresville:blackened_shrub', newnode) + + +do + local size_name = 1 + for size = 1, 4 do + local name = 'squaresville:stone_spike_'..size_name + minetest.register_node(name, { + description = "Stone Spike", + tiles = {"squaresville_spike_1.png"}, + inventory_image = "squaresville_spike_1.png", + wield_image = "squaresville_spike_1.png", + is_ground_content = true, + groups = {cracky=3}, + sounds = default.node_sound_stone_defaults(), + --light_source = 3, + paramtype = "light", + drawtype = "plantlike", + walkable = true, + buildable_to = true, + visual_scale = size, + selection_box = { + type = "fixed", + fixed = {-0.3*size, -0.5, -0.3*size, 0.3*size, -5/16, 0.3*size}, + } + }) + size_name = size_name + 1 + end +end + + +minetest.register_node('squaresville:fur_tree', { + description = "Fur Fronds", + tiles = {"squaresville_fur_frond.png"}, + inventory_image = "squaresville_fur_frond.png", + wield_image = "squaresville_fur_frond.png", + is_ground_content = true, + groups = {choppy=3}, + sounds = default.node_sound_wood_defaults(), + paramtype = "light", + drawtype = "plantlike", + walkable = false, + buildable_to = true, + --visual_scale = 2, + selection_box = { + type = "fixed", + fixed = {-0.1, -0.5, -0.1, 0.1, 0.5, 0.1}, + } +}) + + +newnode = squaresville.clone_node("default:dirt_with_grass") +newnode.groups.spreading_dirt_type = nil +newnode.tiles = {"squaresville_odd_grass_1.png", "default_dirt.png", +{name = "default_dirt.png^squaresville_odd_grass_1.png", +tileable_vertical = false}} +minetest.register_node('squaresville:dirt_with_odd_grass', newnode) + + +minetest.register_node("squaresville:strange_plant_1", { + description = "Strange Plant", + drawtype = "plantlike", + waving = 1, + tiles = {"squaresville_strange_plant_1.png"}, + paramtype = "light", + sunlight_propagates = true, + walkable = false, + buildable_to = true, + groups = { snappy = 3, flower = 1, flora = 1, attached_node = 1, }, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, + }, +}) + + +minetest.register_node("squaresville:strange_plant_2", { + description = "Strange Plant", + drawtype = "plantlike", + waving = 1, + tiles = {"squaresville_strange_plant_2.png"}, + paramtype = "light", + sunlight_propagates = true, + walkable = false, + buildable_to = true, + groups = { snappy = 3, flora = 1, attached_node = 1, }, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}, + }, +}) + + +--minetest.register_node("squaresville:cords", { +-- description = "Mushy Cords", +-- tiles = {"squaresville_cords_top.png", "squaresville_cords_top.png", "squaresville_cords.png"}, +-- paramtype2 = "facedir", +-- is_ground_content = false, +-- groups = {tree = 1, fleshy = 2}, +-- sounds = default.node_sound_leaves_defaults(), +-- on_place = minetest.rotate_node +--}) +-- +-- +--newnode = squaresville.clone_node("default:water_source") +--newnode.description = "Water" +--newnode.drop = "default:water_source" +--newnode.pointable = true +--newnode.liquid_range = 0 +--newnode.liquid_viscosity = 1 +--newnode.liquid_renewable = false +--newnode.liquid_alternative_flowing = "chaos:weightless_water" +--newnode.liquid_alternative_source = "chaos:weightless_water" +--newnode.diggable = true +--newnode.buildable_to = false +--newnode.walkable = true +--newnode.groups = {} +--minetest.register_node("squaresville:pustule", newnode) +-- +--if bucket and bucket.liquids then +-- bucket.liquids['squaresville:pustule'] = { +-- source = 'squaresville:pustule', +-- flowing = 'squaresville:pustule', +-- itemname = 'bucket:bucket_water', +-- } +--end + + +newnode = squaresville.clone_node('air') +newnode.light_source = 14 +minetest.register_node('squaresville:bright_air', newnode) + +minetest.register_node("squaresville:streetlight", { + description = "Streetlight", + tiles = {"squaresville_streetlight.png", 'squaresville_streetlight_bottom.png', 'squaresville_streetlight.png'}, + paramtype = "light", + light_source = 14, + paramtype2 = "facedir", + drawtype = "nodebox", + node_box = { type = "fixed", + fixed = { + {0.1, 2.5, -0.1, -0.1, -0.5, 0.1}, + {0.05, 2.5, -0.5, -0.05, 2.4, -0.1}, + {0.1, 2.5, -0.7, -0.1, 2.35, -0.5}, + } }, + groups = {cracky = 2, level=2}, + sounds = default.node_sound_stone_defaults(), + on_place = minetest.rotate_and_place, +}) + +newnode = squaresville.clone_node("squaresville:streetlight") +newnode.light_source = 0 +minetest.register_node("squaresville:streetlight_broken", newnode) + + +minetest.register_node("squaresville:beacon_1", { + description = "Aircraft Beacon", + tiles = {"squaresville_beacon_1.png"}, + paramtype = "light", + light_source = 14, + paramtype2 = "facedir", + drawtype = "nodebox", + node_box = { type = "fixed", + fixed = { + {-0.05, -0.5, -0.05, 0.05, 0.3, 0.05}, + {-0.15, 0.3, -0.15, 0.15, 0.5, 0.15}, + } }, + groups = {cracky = 2, level=2}, + on_place = minetest.rotate_and_place, + sounds = default.node_sound_stone_defaults(), +}) + + +newnode = squaresville.clone_node('default:apple') +newnode.tiles = {'squaresville_orange.png'} +newnode.inventory_image = "squaresville_orange.png" +newnode.description = 'Orange' +minetest.register_node('squaresville:orange', newnode) + + +newnode = squaresville.clone_node('default:apple') +newnode.tiles = {'squaresville_pear.png'} +newnode.inventory_image = "squaresville_pear.png" +newnode.description = 'Pear' +minetest.register_node('squaresville:pear', newnode) + + +for _, leaf in pairs({'default:leaves', 'default:pine_needles'}) do + local num = 1 + for _, color in pairs({'FF0000', 'FFFF00', '00FF00'}) do + local newnode = squaresville.clone_node(leaf) + newnode.tiles = {newnode.tiles[1] .. '^[colorize:#' .. color .. ':15'} + local new_leaf_name = leaf:gsub('default', 'squaresville') .. '_alt_' .. num + minetest.register_node(new_leaf_name, newnode) + num = num + 1 + end +end + + +newnode = squaresville.clone_node("default:leaves") +newnode.description = "Cherry Blossoms" +newnode.tiles = {"squaresville_leaves_cherry.png"} +newnode.special_tiles = {"squaresville_leaves_cherry.png"} +newnode.groups = {snappy = 3, flammable = 2} +minetest.register_node("squaresville:leaves_cherry", newnode) diff --git a/schematics.lua b/schematics.lua new file mode 100644 index 0000000..fb7e179 --- /dev/null +++ b/schematics.lua @@ -0,0 +1,118 @@ +-- Squaresville schematics.lua +-- Copyright Duane Robertson (duane@duanerobertson.com), 2017 +-- Distributed under the LGPLv2.1 (https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) + + +-- Do not distribute. +--dofile(squaresville.path..'/gpl3.lua') + + +-- Create and initialize a table for a schematic. +function squaresville.schematic_array(width, height, depth) + if not (width and height and depth and type(width) == 'number' and type(height) == 'number' and type(depth) == 'number') then + return + end + + -- Dimensions of data array. + local s = {size={x=width, y=height, z=depth}} + s.data = {} + + for z = 0,depth-1 do + for y = 0,height-1 do + for x = 0,width-1 do + local i = z*width*height + y*width + x + 1 + s.data[i] = {} + s.data[i].name = "air" + s.data[i].param1 = 000 + end + end + end + + s.yslice_prob = {} + + return s +end + + +local default_schematic_path = minetest.get_modpath("default").."/schematics/" + + +local function convert_mts(mts) + local sch = minetest.serialize_schematic(mts, 'lua', {}) + sch = minetest.deserialize('return {'..sch..'}') + return sch.schematic +end + + +squaresville.place_schematic = function(schem, ipos, vm, center) + local force_placement + local replacements = schem.replacements + local rot = schem.rotation + local size = schem.size or {x=0, z=0} + local pos = table.copy(ipos) + + if center or (schem.flags and schem.flags['place_center_x']) then + if schem.size_offset then + pos.x = pos.x - schem.size_offset.x + else + pos.x = pos.x - math.floor(size.x / 2) + end + end + + if center or (schem.flags and schem.flags['place_center_z']) then + if schem.size_offset then + pos.z = pos.z - schem.size_offset.z + else + pos.z = pos.z - math.floor(size.z / 2) + end + end + + if schem.filename then + schem = schem.filename + elseif schem.schematic then + schem = schem.schematic + --else + --print('non-mts schematic? ') + end + + minetest.place_schematic_on_vmanip(vm, pos, schem, rot, replacements, force_placement) +end + + +squaresville.schematics = {} + + +do + for _, s in pairs(squaresville.decorations) do + if s.deco_type == 'schematic' then + local schem = convert_mts(s.schematic) + s.size = schem.size + if s.size then + s.size_offset = {x=math.floor(s.size.x / 2), y=math.floor(s.size.y / 2), z=math.floor(s.size.z / 2)} + if s.name == 'jungle_tree' then + s.size.x = 3 + s.size.z = 3 + end + end + end + end +end + + +do + local w, h, d = 1, 8, 1 + local s = squaresville.schematic_array(w, h, d) + + for y = 0, math.floor(h/2)-1 do + s.data[0*d*h + y*d + 0 + 1].name = 'squaresville:fur_tree' + s.data[0*d*h + y*d + 0 + 1].param1 = 255 + end + + for y = 0, h-1 do + if y / 2 == math.floor(y / 2) then + s.yslice_prob[#s.yslice_prob+1] = {ypos=y,prob=170} + end + end + + squaresville.schematics['fur_tree'] = s +end diff --git a/schematics/apple_tree2.mts b/schematics/apple_tree2.mts new file mode 100644 index 0000000000000000000000000000000000000000..e00901b973eb1371ded157659fd221a507e551be GIT binary patch literal 160 zcmV;R0AK%2R8vg=0{{g82ml5Ce*XUce*XUe0{{bIX>tGzWMyVyb!>DxbaG{702y;} zbzyR4b9QNLY-KuZWnp$@b6;U>bYC%eoYj!)3BVu_gQJ7pXpZJ686{L`>C@NwuQ?2I z#E&2_sn{LABEoU%ygN6XuiCd!KW|S@zd7FW|7DW-vSyC5L`vEXC0w?`+i0>!POS5i O>C0R1_eX6BRZDre)=5MF literal 0 HcmV?d00001 diff --git a/schematics/apple_tree3.mts b/schematics/apple_tree3.mts new file mode 100644 index 0000000000000000000000000000000000000000..6fcb5fe0abd1a9a2fc5beb3ed9d9e874b6dddc94 GIT binary patch literal 183 zcmeYb3HD`RW?*IDU|{`M_wOGN|7T!fU{1^|VvsB@EKMv*EiTK<$w{@!Nlh$EEsjsj zDTy~?5JZtGNKGta;7LhMODxSPu_`G_O|6)7bwVuH0R^7s%a!Zp&MvN;BBQ!S;m!TC zC*#C2CrqlF!Zdf&?eB4IEt;#2-Y&XqboF24g)H08`|hppH?P_6v}w(?GlBCwJ+BHp ce8J_u_;k7D$63>3)9?MLtG~k2G|k%<0MvO?aR2}S literal 0 HcmV?d00001 diff --git a/schematics/apple_tree4.mts b/schematics/apple_tree4.mts new file mode 100644 index 0000000000000000000000000000000000000000..2c5b7beb1bd18f9138dfa8fb4ddee0d4e9db7cae GIT binary patch literal 185 zcmeYb3HD`RW?*IDU|{`M_wOGN|7T!fU{1^|Vh}DaEKMv*EiTK<$w{@!FG|cyPi2rq z5zI+VEK4npPs}NaH)h~TNli;E%_*@eDN0SPm~(YPEY|@Ao@V2{;r-7p+IaN|g$aDS zfA(aYSmuODbyJw;dToEdSI9_heaH5v&r-GisV?7I^{jSpynOzTx~VC#x@Q8zJUq`n dNPN%bzW8LB<;Pj!KI!*<)YV_%QDgLO1pvDLPyqk{ literal 0 HcmV?d00001 diff --git a/schematics/cherry_tree.mts b/schematics/cherry_tree.mts new file mode 100644 index 0000000000000000000000000000000000000000..e752e04650e318013078d33fdd7661adfc2fc750 GIT binary patch literal 161 zcmV;S0ABx1R8vg=0{{g82ml5Ce*XUce*XUe0{{bIX>tG>b8&THa%FRNX>4p|I&5WO zc4c#4V`yb^a(Ms@WMyVyb!>DxbaG{7c%0Rc>j}Uh5QC$G-Dr;HC>bSGXzA0}`L8() za>S1yFsaZTzXIZM>byHQp0C=sQ9o}_Pro_d^8aO$`Lbq?vP4SS4JBN*!rN%FM^3Es PlIhD^@ApS-W==~nCO1k6 literal 0 HcmV?d00001 diff --git a/schematics/crappy_house_house.we b/schematics/crappy_house_house.we new file mode 100644 index 0000000..347319b --- /dev/null +++ b/schematics/crappy_house_house.we @@ -0,0 +1 @@ +5:return {{["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "squaresville:sidewalk", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "squaresville:sidewalk", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "squaresville:sidewalk", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "squaresville:sidewalk", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "squaresville:carpet", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 2, ["x"] = 13, ["name"] = "default:wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "default:wood", ["z"] = 6, ["param2"] = 0}, {["param2"] = 0, ["x"] = 15, ["name"] = "doors:door_wood_a", ["z"] = 6, ["meta"] = {["inventory"] = {}, ["fields"] = {["state"] = "3"}}, ["y"] = 2}, {["y"] = 2, ["x"] = 16, ["name"] = "default:wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "default:wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "default:wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "default:wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "default:wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 3, ["x"] = 15, ["name"] = "doors:hidden", ["z"] = 6, ["param2"] = 0}, {["y"] = 3, ["x"] = 16, ["name"] = "default:wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 3, ["x"] = 17, ["name"] = "xpanes:pane_flat", ["z"] = 6, ["param2"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "default:wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 4, ["x"] = 13, ["name"] = "default:wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "default:wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "default:wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "default:wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "default:wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "default:wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "stairs:stair_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "stairs:stair_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "stairs:stair_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "stairs:stair_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "stairs:stair_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "stairs:stair_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "squaresville:carpet", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "squaresville:carpet", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "squaresville:carpet", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "squaresville:carpet", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 13, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "xpanes:pane_flat", ["z"] = 7, ["param2"] = 3}, {["y"] = 3, ["x"] = 18, ["name"] = "xpanes:pane_flat", ["z"] = 7, ["param2"] = 3}, {["y"] = 4, ["x"] = 13, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 6, ["x"] = 13, ["name"] = "stairs:stair_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 6, ["x"] = 14, ["name"] = "stairs:stair_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "stairs:stair_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 6, ["x"] = 16, ["name"] = "stairs:stair_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "stairs:stair_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 6, ["x"] = 18, ["name"] = "stairs:stair_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "squaresville:carpet", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "squaresville:carpet", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "squaresville:carpet", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "squaresville:carpet", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 2, ["x"] = 13, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 3}, {["y"] = 3, ["x"] = 18, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 3}, {["y"] = 4, ["x"] = 13, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 6, ["x"] = 13, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 6, ["x"] = 14, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 6, ["x"] = 15, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 6, ["x"] = 16, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 6, ["x"] = 18, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "squaresville:carpet", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "squaresville:carpet", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "squaresville:carpet", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "squaresville:carpet", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 2, ["x"] = 13, ["name"] = "default:wood", ["z"] = 9, ["param2"] = 0}, {["param2"] = 0, ["x"] = 14, ["name"] = "default:chest", ["z"] = 9, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["infotext"] = "Chest"}}, ["y"] = 2}, {["y"] = 2, ["x"] = 16, ["name"] = "beds:bed_bottom", ["z"] = 9, ["param2"] = 1}, {["y"] = 2, ["x"] = 17, ["name"] = "beds:bed_top", ["z"] = 9, ["param2"] = 1}, {["y"] = 2, ["x"] = 18, ["name"] = "default:wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "xpanes:pane_flat", ["z"] = 9, ["param2"] = 3}, {["y"] = 3, ["x"] = 18, ["name"] = "xpanes:pane_flat", ["z"] = 9, ["param2"] = 3}, {["y"] = 4, ["x"] = 13, ["name"] = "default:wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "default:wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "default:wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "default:wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 15, ["name"] = "default:wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "default:wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "default:wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 18, ["name"] = "default:wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 6, ["x"] = 13, ["name"] = "stairs:stair_wood", ["z"] = 9, ["param2"] = 2}, {["y"] = 6, ["x"] = 14, ["name"] = "stairs:stair_wood", ["z"] = 9, ["param2"] = 2}, {["y"] = 6, ["x"] = 15, ["name"] = "stairs:stair_wood", ["z"] = 9, ["param2"] = 2}, {["y"] = 6, ["x"] = 16, ["name"] = "stairs:stair_wood", ["z"] = 9, ["param2"] = 2}, {["y"] = 6, ["x"] = 17, ["name"] = "stairs:stair_wood", ["z"] = 9, ["param2"] = 2}, {["y"] = 6, ["x"] = 18, ["name"] = "stairs:stair_wood", ["z"] = 9, ["param2"] = 2}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 13, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 16, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "xpanes:pane_flat", ["z"] = 10, ["param2"] = 0}, {["y"] = 3, ["x"] = 15, ["name"] = "xpanes:pane_flat", ["z"] = 10, ["param2"] = 0}, {["y"] = 3, ["x"] = 16, ["name"] = "xpanes:pane_flat", ["z"] = 10, ["param2"] = 0}, {["y"] = 3, ["x"] = 17, ["name"] = "xpanes:pane_flat", ["z"] = 10, ["param2"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 13, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "stairs:stair_wood", ["z"] = 10, ["param2"] = 2}, {["y"] = 5, ["x"] = 14, ["name"] = "stairs:stair_wood", ["z"] = 10, ["param2"] = 2}, {["y"] = 5, ["x"] = 15, ["name"] = "stairs:stair_wood", ["z"] = 10, ["param2"] = 2}, {["y"] = 5, ["x"] = 16, ["name"] = "stairs:stair_wood", ["z"] = 10, ["param2"] = 2}, {["y"] = 5, ["x"] = 17, ["name"] = "stairs:stair_wood", ["z"] = 10, ["param2"] = 2}, {["y"] = 5, ["x"] = 18, ["name"] = "stairs:stair_wood", ["z"] = 10, ["param2"] = 2}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}} \ No newline at end of file diff --git a/schematics/decaying_tree.mts b/schematics/decaying_tree.mts new file mode 100644 index 0000000000000000000000000000000000000000..721977bdd1e9e70a8ef9227b885806d02477ff3f GIT binary patch literal 215 zcmeYb3HD`RW?*IDU|{`M_wOGN|7T!fU{1^|V&F+hO-n4zDX}UkN=;>uEG{ffEJ`gd z%go71waQ6NEK4npPs&M5&SsECkt#09OwKNjhia~vbG82>?*Ro4mydV4FUp(^lxUqI zvUTg)mEYEM*7?SFI@bvce1OByxAM!rz(q9<)xer3*9wqL(%o+pU!x%DZlsq=f4%a3EAFr E0c_-BZU6uP literal 0 HcmV?d00001 diff --git a/schematics/duane_glass_brick_barn_house.we b/schematics/duane_glass_brick_barn_house.we new file mode 100644 index 0000000..ad8de62 --- /dev/null +++ b/schematics/duane_glass_brick_barn_house.we @@ -0,0 +1 @@ +5:return {{["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 1}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "squaresville:concrete5", ["z"] = 0, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "squaresville:concrete5", ["z"] = 0, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 0, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 0, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 0, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 0, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 0, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 0, ["param2"] = 1}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 1}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "squaresville:concrete5", ["z"] = 1, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "squaresville:concrete5", ["z"] = 1, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 1, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 1, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 1, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 1, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 1, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 1, ["param2"] = 1}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 1}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 1}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "squaresville:concrete5", ["z"] = 2, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "squaresville:concrete5", ["z"] = 2, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 2, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 2, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 2, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 2, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 2, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 2, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 1}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 1}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "squaresville:concrete5", ["z"] = 3, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "squaresville:concrete5", ["z"] = 3, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 3, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 3, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 3, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 3, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 3, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 3, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 1}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "squaresville:concrete5", ["z"] = 4, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "squaresville:concrete5", ["z"] = 4, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "squaresville:concrete5", ["z"] = 4, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 4, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 4, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 4, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 4, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 4, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 4, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "squaresville:concrete5", ["z"] = 4, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 4, ["param2"] = 1}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 4, ["param2"] = 1}, {["y"] = 3, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 4, ["param2"] = 1}, {["y"] = 3, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 4, ["param2"] = 1}, {["y"] = 4, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 4, ["param2"] = 1}, {["y"] = 4, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 4, ["param2"] = 1}, {["y"] = 5, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 4, ["param2"] = 1}, {["y"] = 5, ["x"] = 16, ["name"] = "default:acacia_wood", ["z"] = 4, ["param2"] = 1}, {["y"] = 5, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 4, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 4, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 4, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 4, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 4, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 4, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 4, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 4, ["param2"] = 1}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "squaresville:concrete5", ["z"] = 5, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "squaresville:concrete5", ["z"] = 5, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "squaresville:concrete5", ["z"] = 5, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 5, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 5, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 5, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 5, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 5, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 5, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "squaresville:concrete5", ["z"] = 5, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 5, ["param2"] = 1}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 5, ["param2"] = 1}, {["y"] = 3, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 5, ["param2"] = 1}, {["y"] = 3, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 5, ["param2"] = 1}, {["y"] = 4, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 5, ["param2"] = 1}, {["y"] = 4, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 5, ["param2"] = 1}, {["y"] = 5, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 5, ["param2"] = 1}, {["y"] = 5, ["x"] = 16, ["name"] = "default:acacia_wood", ["z"] = 5, ["param2"] = 1}, {["y"] = 5, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 5, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 5, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 5, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 5, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 5, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 5, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 5, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 5, ["param2"] = 1}, {["y"] = 6, ["x"] = 15, ["name"] = "stairs:stair_acacia_wood", ["z"] = 5, ["param2"] = 0}, {["y"] = 6, ["x"] = 16, ["name"] = "stairs:stair_acacia_wood", ["z"] = 5, ["param2"] = 0}, {["y"] = 6, ["x"] = 17, ["name"] = "stairs:stair_acacia_wood", ["z"] = 5, ["param2"] = 0}, {["y"] = 6, ["x"] = 18, ["name"] = "stairs:stair_acacia_wood", ["z"] = 5, ["param2"] = 0}, {["y"] = 6, ["x"] = 19, ["name"] = "stairs:stair_acacia_wood", ["z"] = 5, ["param2"] = 0}, {["y"] = 6, ["x"] = 20, ["name"] = "stairs:stair_acacia_wood", ["z"] = 5, ["param2"] = 0}, {["y"] = 6, ["x"] = 21, ["name"] = "stairs:stair_acacia_wood", ["z"] = 5, ["param2"] = 0}, {["y"] = 6, ["x"] = 22, ["name"] = "stairs:stair_acacia_wood", ["z"] = 5, ["param2"] = 0}, {["y"] = 6, ["x"] = 23, ["name"] = "stairs:stair_acacia_wood", ["z"] = 5, ["param2"] = 0}, {["y"] = 6, ["x"] = 24, ["name"] = "stairs:stair_acacia_wood", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 1}, {["y"] = 1, ["x"] = 15, ["name"] = "squaresville:concrete5", ["z"] = 6, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "squaresville:concrete5", ["z"] = 6, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "squaresville:concrete5", ["z"] = 6, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 6, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 6, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 6, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 6, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 6, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 6, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "squaresville:concrete5", ["z"] = 6, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 6, ["param2"] = 1}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 6, ["param2"] = 1}, {["y"] = 3, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 6, ["param2"] = 1}, {["y"] = 3, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 6, ["param2"] = 1}, {["y"] = 4, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 6, ["param2"] = 1}, {["y"] = 4, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 6, ["param2"] = 1}, {["y"] = 5, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 6, ["param2"] = 1}, {["y"] = 5, ["x"] = 16, ["name"] = "default:acacia_wood", ["z"] = 6, ["param2"] = 1}, {["y"] = 5, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 6, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 6, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 6, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 6, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 6, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 6, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 6, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 6, ["param2"] = 1}, {["y"] = 6, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 6, ["param2"] = 1}, {["y"] = 6, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 6, ["param2"] = 1}, {["y"] = 7, ["x"] = 15, ["name"] = "stairs:stair_acacia_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 7, ["x"] = 16, ["name"] = "stairs:stair_acacia_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 7, ["x"] = 17, ["name"] = "stairs:stair_acacia_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 7, ["x"] = 18, ["name"] = "stairs:stair_acacia_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 7, ["x"] = 19, ["name"] = "stairs:stair_acacia_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 7, ["x"] = 20, ["name"] = "stairs:stair_acacia_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 7, ["x"] = 21, ["name"] = "stairs:stair_acacia_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 7, ["x"] = 22, ["name"] = "stairs:stair_acacia_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 7, ["x"] = 23, ["name"] = "stairs:stair_acacia_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 7, ["x"] = 24, ["name"] = "stairs:stair_acacia_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 1}, {["y"] = 1, ["x"] = 15, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 7, ["param2"] = 1}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 7, ["param2"] = 1}, {["y"] = 3, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 7, ["param2"] = 1}, {["y"] = 3, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 7, ["param2"] = 1}, {["y"] = 4, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 7, ["param2"] = 1}, {["y"] = 4, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 7, ["param2"] = 1}, {["y"] = 5, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 7, ["param2"] = 1}, {["y"] = 5, ["x"] = 16, ["name"] = "default:acacia_wood", ["z"] = 7, ["param2"] = 1}, {["y"] = 5, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 7, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 7, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 7, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 7, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 7, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 7, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 7, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 7, ["param2"] = 1}, {["y"] = 6, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 7, ["param2"] = 1}, {["y"] = 6, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 7, ["param2"] = 1}, {["y"] = 7, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 7, ["param2"] = 1}, {["y"] = 7, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 7, ["param2"] = 1}, {["y"] = 8, ["x"] = 15, ["name"] = "stairs:stair_acacia_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 8, ["x"] = 16, ["name"] = "stairs:stair_acacia_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 8, ["x"] = 17, ["name"] = "stairs:stair_acacia_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 8, ["x"] = 18, ["name"] = "stairs:stair_acacia_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 8, ["x"] = 19, ["name"] = "stairs:stair_acacia_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 8, ["x"] = 20, ["name"] = "stairs:stair_acacia_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 8, ["x"] = 21, ["name"] = "stairs:stair_acacia_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 8, ["x"] = 22, ["name"] = "stairs:stair_acacia_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 8, ["x"] = 23, ["name"] = "stairs:stair_acacia_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 8, ["x"] = 24, ["name"] = "stairs:stair_acacia_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 1}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 15, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "default:desert_stone_block", ["z"] = 8, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 2, ["x"] = 6, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 2, ["x"] = 7, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 2, ["x"] = 8, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 2, ["x"] = 9, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 2, ["x"] = 10, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 2, ["x"] = 11, ["name"] = "default:glass", ["z"] = 8, ["param2"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "doors:door_wood_a", ["z"] = 8, ["param2"] = 0}, {["y"] = 2, ["x"] = 13, ["name"] = "default:glass", ["z"] = 8, ["param2"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 2, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 2, ["x"] = 16, ["name"] = "doors:door_wood_a", ["z"] = 8, ["param2"] = 2}, {["y"] = 2, ["x"] = 17, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 2, ["x"] = 18, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 2, ["x"] = 19, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 2, ["x"] = 20, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 2, ["x"] = 21, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 2, ["x"] = 22, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 2, ["x"] = 23, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 3, ["x"] = 6, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 3, ["x"] = 7, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 3, ["x"] = 8, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 3, ["x"] = 9, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 3, ["x"] = 10, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 3, ["x"] = 11, ["name"] = "default:glass", ["z"] = 8, ["param2"] = 0}, {["y"] = 3, ["x"] = 12, ["name"] = "doors:hidden", ["z"] = 8, ["param2"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "default:glass", ["z"] = 8, ["param2"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 3, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 3, ["x"] = 16, ["name"] = "doors:hidden", ["z"] = 8, ["param2"] = 2}, {["y"] = 3, ["x"] = 17, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 3, ["x"] = 18, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 3, ["x"] = 19, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 3, ["x"] = 20, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 3, ["x"] = 21, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 3, ["x"] = 22, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 3, ["x"] = 23, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 3, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 4, ["x"] = 6, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 7, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 8, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 9, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 10, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 4, ["x"] = 11, ["name"] = "default:glass", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 12, ["name"] = "default:glass", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 13, ["name"] = "default:glass", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 4, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 4, ["x"] = 16, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 4, ["x"] = 17, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 4, ["x"] = 18, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 4, ["x"] = 19, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 4, ["x"] = 20, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 4, ["x"] = 21, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 4, ["x"] = 22, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 4, ["x"] = 23, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 4, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 14, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 16, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 6, ["x"] = 6, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 6, ["x"] = 7, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 6, ["x"] = 8, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 6, ["x"] = 9, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 6, ["x"] = 10, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 6, ["x"] = 11, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 6, ["x"] = 12, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 6, ["x"] = 13, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 6, ["x"] = 14, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 6, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 6, ["x"] = 16, ["name"] = "default:aspen_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 6, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 6, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 8, ["param2"] = 1}, {["y"] = 7, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 7, ["x"] = 6, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 7, ["x"] = 7, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 7, ["x"] = 8, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 7, ["x"] = 9, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 7, ["x"] = 10, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 7, ["x"] = 11, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 7, ["x"] = 12, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 7, ["x"] = 13, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 7, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 7, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 7, ["x"] = 16, ["name"] = "default:aspen_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 7, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 7, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 8, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 8, ["x"] = 6, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 8, ["x"] = 7, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 8, ["x"] = 8, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 8, ["x"] = 9, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 8, ["x"] = 10, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 8, ["x"] = 11, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 8, ["x"] = 12, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 8, ["x"] = 13, ["name"] = "xpanes:pane_flat", ["z"] = 8, ["param2"] = 0}, {["y"] = 8, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 8, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 8, ["x"] = 16, ["name"] = "default:aspen_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 8, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 8, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 8, ["param2"] = 1}, {["y"] = 9, ["x"] = 5, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 6, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 7, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 8, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 9, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 10, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 11, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 12, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 13, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 14, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 15, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 16, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 17, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 18, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 19, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 20, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 21, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 22, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 23, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 9, ["x"] = 24, ["name"] = "stairs:stair_acacia_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 1}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 15, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "default:desert_stone_block", ["z"] = 9, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 9, ["param2"] = 1}, {["y"] = 2, ["x"] = 10, ["name"] = "default:aspen_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 9, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 9, ["param2"] = 1}, {["y"] = 3, ["x"] = 10, ["name"] = "default:aspen_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 3, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 9, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 9, ["param2"] = 1}, {["y"] = 4, ["x"] = 10, ["name"] = "default:aspen_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 4, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 9, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 9, ["param2"] = 1}, {["y"] = 6, ["x"] = 14, ["name"] = "default:fence_aspen_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 6, ["x"] = 17, ["name"] = "default:fence_aspen_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 6, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 9, ["param2"] = 1}, {["y"] = 7, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 9, ["param2"] = 1}, {["y"] = 7, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 9, ["param2"] = 1}, {["y"] = 8, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 9, ["param2"] = 1}, {["y"] = 8, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 9, ["param2"] = 1}, {["y"] = 9, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 9, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 9, ["x"] = 16, ["name"] = "default:aspen_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 9, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 9, ["x"] = 18, ["name"] = "default:aspen_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 9, ["x"] = 19, ["name"] = "default:aspen_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 9, ["x"] = 20, ["name"] = "default:aspen_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 9, ["x"] = 21, ["name"] = "default:aspen_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 9, ["x"] = 22, ["name"] = "default:aspen_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 9, ["x"] = 23, ["name"] = "default:aspen_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 9, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 9, ["param2"] = 1}, {["y"] = 10, ["x"] = 5, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 6, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 7, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 8, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 9, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 10, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 11, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 12, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 13, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 14, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 15, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 16, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 17, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 18, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 19, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 20, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 21, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 22, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 23, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 10, ["x"] = 24, ["name"] = "stairs:stair_acacia_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 1}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 1}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 1}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 15, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "default:desert_stone_block", ["z"] = 10, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 10, ["param2"] = 1}, {["y"] = 2, ["x"] = 10, ["name"] = "default:aspen_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 10, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 10, ["param2"] = 1}, {["y"] = 3, ["x"] = 10, ["name"] = "default:aspen_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 3, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 10, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 10, ["param2"] = 1}, {["y"] = 4, ["x"] = 7, ["name"] = "squaresville:light_panel", ["z"] = 10, ["param2"] = 23}, {["y"] = 4, ["x"] = 8, ["name"] = "squaresville:light_panel", ["z"] = 10, ["param2"] = 20}, {["y"] = 4, ["x"] = 10, ["name"] = "default:aspen_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 4, ["x"] = 18, ["name"] = "squaresville:light_panel", ["z"] = 10, ["param2"] = 23}, {["y"] = 4, ["x"] = 19, ["name"] = "squaresville:light_panel", ["z"] = 10, ["param2"] = 22}, {["y"] = 4, ["x"] = 20, ["name"] = "squaresville:light_panel", ["z"] = 10, ["param2"] = 21}, {["y"] = 4, ["x"] = 21, ["name"] = "squaresville:light_panel", ["z"] = 10, ["param2"] = 21}, {["y"] = 4, ["x"] = 22, ["name"] = "squaresville:light_panel", ["z"] = 10, ["param2"] = 21}, {["y"] = 4, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 10, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 10, ["param2"] = 1}, {["y"] = 6, ["x"] = 14, ["name"] = "default:fence_aspen_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 6, ["x"] = 17, ["name"] = "default:fence_aspen_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 6, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 10, ["param2"] = 1}, {["y"] = 7, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 10, ["param2"] = 1}, {["y"] = 7, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 10, ["param2"] = 1}, {["y"] = 8, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 10, ["param2"] = 1}, {["y"] = 8, ["x"] = 15, ["name"] = "squaresville:light_panel", ["z"] = 10, ["param2"] = 20}, {["y"] = 8, ["x"] = 16, ["name"] = "squaresville:light_panel", ["z"] = 10, ["param2"] = 20}, {["y"] = 8, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 10, ["param2"] = 1}, {["y"] = 9, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 9, ["x"] = 15, ["name"] = "default:aspen_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 9, ["x"] = 16, ["name"] = "default:aspen_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 9, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 9, ["x"] = 18, ["name"] = "default:aspen_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 9, ["x"] = 19, ["name"] = "default:aspen_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 9, ["x"] = 20, ["name"] = "default:aspen_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 9, ["x"] = 21, ["name"] = "default:aspen_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 9, ["x"] = 22, ["name"] = "default:aspen_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 9, ["x"] = 23, ["name"] = "default:aspen_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 9, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 10, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 10, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 10, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 10, ["param2"] = 1}, {["y"] = 11, ["x"] = 5, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 6, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 7, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 8, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 9, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 10, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 11, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 12, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 13, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 14, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 15, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 16, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 17, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 18, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 19, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 20, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 21, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 22, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 23, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 11, ["x"] = 24, ["name"] = "stairs:stair_acacia_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 1}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 1}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 15, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "default:desert_stone_block", ["z"] = 11, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 11, ["param2"] = 1}, {["y"] = 2, ["x"] = 14, ["name"] = "default:aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 2, ["x"] = 15, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 2, ["x"] = 16, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 11, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 11, ["param2"] = 1}, {["y"] = 3, ["x"] = 14, ["name"] = "default:aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 3, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 3, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 11, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 11, ["param2"] = 1}, {["y"] = 4, ["x"] = 7, ["name"] = "squaresville:light_panel", ["z"] = 11, ["param2"] = 23}, {["y"] = 4, ["x"] = 8, ["name"] = "squaresville:light_panel", ["z"] = 11, ["param2"] = 23}, {["y"] = 4, ["x"] = 14, ["name"] = "default:aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 4, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 4, ["x"] = 18, ["name"] = "squaresville:light_panel", ["z"] = 11, ["param2"] = 23}, {["y"] = 4, ["x"] = 19, ["name"] = "squaresville:light_panel", ["z"] = 11, ["param2"] = 23}, {["y"] = 4, ["x"] = 20, ["name"] = "squaresville:light_panel", ["z"] = 11, ["param2"] = 21}, {["y"] = 4, ["x"] = 21, ["name"] = "squaresville:light_panel", ["z"] = 11, ["param2"] = 21}, {["y"] = 4, ["x"] = 22, ["name"] = "squaresville:light_panel", ["z"] = 11, ["param2"] = 21}, {["y"] = 4, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 16, ["name"] = "squaresville:light_panel", ["z"] = 11, ["param2"] = 17}, {["y"] = 5, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 11, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 11, ["param2"] = 1}, {["y"] = 6, ["x"] = 14, ["name"] = "default:fence_aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 6, ["x"] = 17, ["name"] = "default:fence_aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 6, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 11, ["param2"] = 1}, {["y"] = 7, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 11, ["param2"] = 1}, {["y"] = 7, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 11, ["param2"] = 1}, {["y"] = 8, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 11, ["param2"] = 1}, {["y"] = 8, ["x"] = 15, ["name"] = "squaresville:light_panel", ["z"] = 11, ["param2"] = 20}, {["y"] = 8, ["x"] = 16, ["name"] = "squaresville:light_panel", ["z"] = 11, ["param2"] = 20}, {["y"] = 8, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 11, ["param2"] = 1}, {["y"] = 9, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 9, ["x"] = 15, ["name"] = "default:aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 9, ["x"] = 16, ["name"] = "default:aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 9, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 9, ["x"] = 18, ["name"] = "default:aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 9, ["x"] = 19, ["name"] = "default:aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 9, ["x"] = 20, ["name"] = "default:aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 9, ["x"] = 21, ["name"] = "default:aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 9, ["x"] = 22, ["name"] = "default:aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 9, ["x"] = 23, ["name"] = "default:aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 9, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 10, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 10, ["x"] = 15, ["name"] = "default:fence_aspen_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 10, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 11, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 11, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 11, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 11, ["param2"] = 1}, {["y"] = 12, ["x"] = 5, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 6, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 7, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 8, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 9, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 10, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 11, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 12, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 13, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 14, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 15, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 16, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 17, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 18, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 19, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 21, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 22, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 23, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 12, ["x"] = 24, ["name"] = "stairs:stair_acacia_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 1}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 1}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 1}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 1}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 1}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 15, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "default:desert_stone_block", ["z"] = 12, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 12, ["param2"] = 1}, {["y"] = 2, ["x"] = 14, ["name"] = "default:aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 2, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 12, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 12, ["param2"] = 1}, {["y"] = 3, ["x"] = 14, ["name"] = "default:aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 3, ["x"] = 15, ["name"] = "stairs:stair_acacia_wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 3, ["x"] = 16, ["name"] = "stairs:stair_acacia_wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 3, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 3, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 12, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 12, ["param2"] = 1}, {["y"] = 4, ["x"] = 14, ["name"] = "default:aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 4, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 4, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 15, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 15}, {["y"] = 5, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 12, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 12, ["param2"] = 1}, {["y"] = 6, ["x"] = 7, ["name"] = "beds:fancy_bed_bottom", ["z"] = 12, ["param2"] = 0}, {["y"] = 6, ["x"] = 8, ["name"] = "beds:fancy_bed_bottom", ["z"] = 12, ["param2"] = 0}, {["y"] = 6, ["x"] = 14, ["name"] = "default:fence_aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 6, ["x"] = 17, ["name"] = "default:fence_aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 6, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 12, ["param2"] = 1}, {["y"] = 7, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 12, ["param2"] = 1}, {["y"] = 7, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 12, ["param2"] = 1}, {["y"] = 8, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 12, ["param2"] = 1}, {["y"] = 8, ["x"] = 15, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 20}, {["y"] = 8, ["x"] = 16, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 20}, {["y"] = 8, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 12, ["param2"] = 1}, {["y"] = 9, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 9, ["x"] = 15, ["name"] = "default:aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 9, ["x"] = 16, ["name"] = "default:aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 9, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 9, ["x"] = 18, ["name"] = "default:aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 9, ["x"] = 19, ["name"] = "default:aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 9, ["x"] = 20, ["name"] = "default:aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 9, ["x"] = 21, ["name"] = "default:aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 9, ["x"] = 22, ["name"] = "stairs:stair_aspen_wood", ["z"] = 12, ["param2"] = 2}, {["y"] = 9, ["x"] = 23, ["name"] = "stairs:stair_aspen_wood", ["z"] = 12, ["param2"] = 2}, {["y"] = 9, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 10, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 12, ["param2"] = 1}, {["y"] = 10, ["x"] = 15, ["name"] = "default:fence_aspen_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 10, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 12, ["param2"] = 1}, {["y"] = 11, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 12, ["param2"] = 1}, {["y"] = 11, ["x"] = 8, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 23}, {["y"] = 11, ["x"] = 9, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 23}, {["y"] = 11, ["x"] = 10, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 23}, {["y"] = 11, ["x"] = 11, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 23}, {["y"] = 11, ["x"] = 12, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 23}, {["y"] = 11, ["x"] = 13, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 23}, {["y"] = 11, ["x"] = 14, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 23}, {["y"] = 11, ["x"] = 15, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 23}, {["y"] = 11, ["x"] = 16, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 21}, {["y"] = 11, ["x"] = 17, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 21}, {["y"] = 11, ["x"] = 18, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 21}, {["y"] = 11, ["x"] = 19, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 21}, {["y"] = 11, ["x"] = 20, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 21}, {["y"] = 11, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 16, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 12, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 12, ["param2"] = 1}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 1}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 1}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 1}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 1}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 15, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "default:desert_stone_block", ["z"] = 13, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 13, ["param2"] = 1}, {["param2"] = 1, ["x"] = 6, ["name"] = "default:aspen_wood", ["z"] = 13, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,8]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,3;]list[current_player;main;0,4;8,4;]listring[]", ["infotext"] = "Kitchen Cabinet"}}, ["y"] = 2}, {["y"] = 2, ["x"] = 7, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 2, ["x"] = 8, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 2, ["x"] = 9, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 2, ["x"] = 10, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 2, ["x"] = 14, ["name"] = "doors:door_wood_a", ["z"] = 13, ["param2"] = 1}, {["y"] = 2, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 13, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 13, ["param2"] = 1}, {["y"] = 3, ["x"] = 6, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 3, ["x"] = 7, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 3, ["x"] = 8, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 3, ["x"] = 9, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 3, ["x"] = 10, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 3, ["x"] = 14, ["name"] = "doors:hidden", ["z"] = 13, ["param2"] = 1}, {["y"] = 3, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 3, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 13, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 13, ["param2"] = 1}, {["y"] = 4, ["x"] = 6, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 4, ["x"] = 7, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 4, ["x"] = 8, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 4, ["x"] = 9, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 4, ["x"] = 10, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 4, ["x"] = 14, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 4, ["x"] = 15, ["name"] = "stairs:stair_acacia_wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "stairs:stair_acacia_wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 4, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 13, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 13, ["param2"] = 1}, {["param2"] = 0, ["x"] = 6, ["name"] = "homedecor:nightstand_oak_one_drawer", ["z"] = 13, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,6]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,1;]list[current_player;main;0,2;8,4;]listring[]", ["infotext"] = "One-drawer Nightstand"}}, ["y"] = 6}, {["y"] = 6, ["x"] = 7, ["name"] = "beds:fancy_bed_top", ["z"] = 13, ["param2"] = 0}, {["y"] = 6, ["x"] = 8, ["name"] = "beds:fancy_bed_top", ["z"] = 13, ["param2"] = 0}, {["param2"] = 0, ["x"] = 9, ["name"] = "homedecor:nightstand_oak_one_drawer", ["z"] = 13, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,6]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,1;]list[current_player;main;0,2;8,4;]listring[]", ["infotext"] = "One-drawer Nightstand"}}, ["y"] = 6}, {["y"] = 6, ["x"] = 14, ["name"] = "default:fence_aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 6, ["x"] = 17, ["name"] = "default:fence_aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 6, ["x"] = 20, ["name"] = "stairs:stair_aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 6, ["x"] = 21, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 6, ["x"] = 22, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 6, ["x"] = 23, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 6, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 13, ["param2"] = 1}, {["y"] = 7, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 13, ["param2"] = 1}, {["y"] = 7, ["x"] = 9, ["name"] = "homedecor:table_lamp_off", ["z"] = 13, ["param2"] = 240}, {["y"] = 7, ["x"] = 21, ["name"] = "stairs:stair_aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 7, ["x"] = 22, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 7, ["x"] = 23, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 7, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 8, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 13, ["param2"] = 1}, {["y"] = 8, ["x"] = 15, ["name"] = "squaresville:light_panel", ["z"] = 13, ["param2"] = 20}, {["y"] = 8, ["x"] = 16, ["name"] = "squaresville:light_panel", ["z"] = 13, ["param2"] = 20}, {["y"] = 8, ["x"] = 22, ["name"] = "stairs:stair_aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 8, ["x"] = 23, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 8, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 9, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 9, ["x"] = 15, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 9, ["x"] = 16, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 9, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 9, ["x"] = 18, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 9, ["x"] = 19, ["name"] = "default:aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 9, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 10, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 13, ["param2"] = 1}, {["y"] = 10, ["x"] = 15, ["name"] = "default:fence_aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 10, ["x"] = 16, ["name"] = "default:fence_aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 10, ["x"] = 17, ["name"] = "default:fence_aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 10, ["x"] = 18, ["name"] = "default:fence_aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 10, ["x"] = 19, ["name"] = "default:fence_aspen_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 10, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 13, ["param2"] = 1}, {["y"] = 11, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 13, ["param2"] = 1}, {["y"] = 11, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 16, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 12, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 13, ["param2"] = 1}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 5, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 15, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "default:desert_stone_block", ["z"] = 14, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 14, ["param2"] = 1}, {["y"] = 2, ["x"] = 14, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 2}, {["y"] = 2, ["x"] = 15, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 2}, {["y"] = 2, ["x"] = 16, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 2}, {["y"] = 2, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 2, ["x"] = 18, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 2, ["x"] = 19, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 2, ["x"] = 20, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 2, ["x"] = 21, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 2}, {["y"] = 2, ["x"] = 22, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 2, ["x"] = 23, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 14, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 14, ["param2"] = 1}, {["y"] = 3, ["x"] = 8, ["name"] = "plasmascreen:tv_off", ["z"] = 14, ["param2"] = 2}, {["y"] = 3, ["x"] = 14, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 2}, {["y"] = 3, ["x"] = 15, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 2}, {["y"] = 3, ["x"] = 16, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 2}, {["y"] = 3, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 3, ["x"] = 18, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 3, ["x"] = 19, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 3, ["x"] = 20, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 3, ["x"] = 21, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 3, ["x"] = 22, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 3, ["x"] = 23, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 3, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 14, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 14, ["param2"] = 1}, {["y"] = 4, ["x"] = 14, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 4, ["x"] = 15, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 2}, {["y"] = 4, ["x"] = 16, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 2}, {["y"] = 4, ["x"] = 17, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 4, ["x"] = 18, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 4, ["x"] = 19, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 4, ["x"] = 20, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 4, ["x"] = 21, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 4, ["x"] = 22, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 4, ["x"] = 23, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 4, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 15, ["name"] = "stairs:stair_acacia_wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 5, ["x"] = 16, ["name"] = "stairs:stair_acacia_wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 5, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 14, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 14, ["param2"] = 1}, {["y"] = 6, ["x"] = 6, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 6, ["x"] = 7, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 6, ["x"] = 8, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 6, ["x"] = 9, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 6, ["x"] = 10, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 6, ["x"] = 14, ["name"] = "default:fence_aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 6, ["x"] = 17, ["name"] = "default:fence_aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 6, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 14, ["param2"] = 1}, {["y"] = 7, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 7, ["x"] = 6, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 7, ["x"] = 7, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 7, ["x"] = 8, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 7, ["x"] = 9, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 7, ["x"] = 10, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 7, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 14, ["param2"] = 1}, {["y"] = 8, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 8, ["x"] = 6, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 8, ["x"] = 7, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 8, ["x"] = 8, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 8, ["x"] = 9, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 8, ["x"] = 10, ["name"] = "default:aspen_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 8, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 14, ["param2"] = 1}, {["y"] = 9, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 9, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 10, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 14, ["param2"] = 1}, {["y"] = 10, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 14, ["param2"] = 1}, {["y"] = 11, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 14, ["param2"] = 1}, {["y"] = 11, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 14, ["param2"] = 1}, {["y"] = 12, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 12, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 12, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 12, ["x"] = 8, ["name"] = "default:glass", ["z"] = 14, ["param2"] = 0}, {["y"] = 12, ["x"] = 9, ["name"] = "default:glass", ["z"] = 14, ["param2"] = 0}, {["y"] = 12, ["x"] = 10, ["name"] = "default:glass", ["z"] = 14, ["param2"] = 0}, {["y"] = 12, ["x"] = 11, ["name"] = "default:glass", ["z"] = 14, ["param2"] = 0}, {["y"] = 12, ["x"] = 12, ["name"] = "default:glass", ["z"] = 14, ["param2"] = 0}, {["y"] = 12, ["x"] = 13, ["name"] = "default:glass", ["z"] = 14, ["param2"] = 0}, {["y"] = 12, ["x"] = 14, ["name"] = "default:glass", ["z"] = 14, ["param2"] = 0}, {["y"] = 12, ["x"] = 15, ["name"] = "default:glass", ["z"] = 14, ["param2"] = 0}, {["y"] = 12, ["x"] = 16, ["name"] = "default:glass", ["z"] = 14, ["param2"] = 0}, {["y"] = 12, ["x"] = 17, ["name"] = "default:glass", ["z"] = 14, ["param2"] = 0}, {["y"] = 12, ["x"] = 18, ["name"] = "default:glass", ["z"] = 14, ["param2"] = 0}, {["y"] = 12, ["x"] = 19, ["name"] = "default:glass", ["z"] = 14, ["param2"] = 0}, {["y"] = 12, ["x"] = 20, ["name"] = "default:glass", ["z"] = 14, ["param2"] = 0}, {["y"] = 12, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 12, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 12, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 12, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 14, ["param2"] = 1}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 15, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "default:desert_stone_block", ["z"] = 15, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 15, ["param2"] = 1}, {["param2"] = 2, ["x"] = 18, ["name"] = "homedecor:kitchen_cabinet_granite", ["z"] = 15, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,8]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,3;]list[current_player;main;0,4;8,4;]listring[]", ["infotext"] = "Kitchen Cabinet"}}, ["y"] = 2}, {["param2"] = 2, ["x"] = 19, ["name"] = "homedecor:kitchen_cabinet_granite", ["z"] = 15, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,8]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,3;]list[current_player;main;0,4;8,4;]listring[]", ["infotext"] = "Kitchen Cabinet"}}, ["y"] = 2}, {["param2"] = 2, ["x"] = 20, ["name"] = "homedecor:kitchen_cabinet_granite", ["z"] = 15, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,8]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,3;]list[current_player;main;0,4;8,4;]listring[]", ["infotext"] = "Kitchen Cabinet"}}, ["y"] = 2}, {["param2"] = 1, ["x"] = 23, ["name"] = "homedecor:refrigerator_steel", ["z"] = 15, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[10,10]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;10,5;]list[current_player;main;1,6;8,4;]listring[]", ["infotext"] = "Refrigerator"}}, ["y"] = 2}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 15, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 15, ["param2"] = 1}, {["y"] = 3, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 15, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 15, ["param2"] = 1}, {["y"] = 4, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 16, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 15, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 15, ["param2"] = 1}, {["param2"] = 2, ["x"] = 6, ["name"] = "homedecor:nightstand_oak_one_drawer", ["z"] = 15, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,6]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,1;]list[current_player;main;0,2;8,4;]listring[]", ["infotext"] = "One-drawer Nightstand"}}, ["y"] = 6}, {["y"] = 6, ["x"] = 7, ["name"] = "beds:fancy_bed_top", ["z"] = 15, ["param2"] = 2}, {["y"] = 6, ["x"] = 8, ["name"] = "beds:fancy_bed_top", ["z"] = 15, ["param2"] = 2}, {["param2"] = 2, ["x"] = 9, ["name"] = "homedecor:nightstand_oak_one_drawer", ["z"] = 15, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,6]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,1;]list[current_player;main;0,2;8,4;]listring[]", ["infotext"] = "One-drawer Nightstand"}}, ["y"] = 6}, {["y"] = 6, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 15, ["param2"] = 1}, {["y"] = 7, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 15, ["param2"] = 1}, {["y"] = 7, ["x"] = 9, ["name"] = "homedecor:table_lamp_off", ["z"] = 15, ["param2"] = 240}, {["y"] = 7, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 15, ["param2"] = 1}, {["y"] = 8, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 15, ["param2"] = 1}, {["y"] = 8, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 15, ["param2"] = 1}, {["y"] = 9, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 9, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 10, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 15, ["param2"] = 1}, {["y"] = 10, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 15, ["param2"] = 1}, {["y"] = 11, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 15, ["param2"] = 1}, {["y"] = 11, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 16, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 12, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 15, ["param2"] = 1}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 15, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "default:desert_stone_block", ["z"] = 16, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 16, ["param2"] = 1}, {["param2"] = 1, ["x"] = 23, ["name"] = "homedecor:kitchen_cabinet_granite", ["z"] = 16, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,8]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,3;]list[current_player;main;0,4;8,4;]listring[]", ["infotext"] = "Kitchen Cabinet"}}, ["y"] = 2}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 16, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 16, ["param2"] = 1}, {["y"] = 3, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 16, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 16, ["param2"] = 1}, {["y"] = 4, ["x"] = 14, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 23}, {["y"] = 4, ["x"] = 15, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 20}, {["y"] = 4, ["x"] = 16, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 21}, {["y"] = 4, ["x"] = 17, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 21}, {["y"] = 4, ["x"] = 18, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 23}, {["y"] = 4, ["x"] = 19, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 23}, {["y"] = 4, ["x"] = 20, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 21}, {["y"] = 4, ["x"] = 21, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 21}, {["y"] = 4, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 16, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 16, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 16, ["param2"] = 1}, {["y"] = 6, ["x"] = 7, ["name"] = "beds:fancy_bed_bottom", ["z"] = 16, ["param2"] = 2}, {["y"] = 6, ["x"] = 8, ["name"] = "beds:fancy_bed_bottom", ["z"] = 16, ["param2"] = 2}, {["y"] = 6, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 16, ["param2"] = 1}, {["y"] = 7, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 16, ["param2"] = 1}, {["y"] = 7, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 16, ["param2"] = 1}, {["y"] = 8, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 16, ["param2"] = 1}, {["y"] = 8, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 16, ["param2"] = 1}, {["y"] = 9, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 9, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 10, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 16, ["param2"] = 1}, {["y"] = 10, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 16, ["param2"] = 1}, {["y"] = 11, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 16, ["param2"] = 1}, {["y"] = 11, ["x"] = 8, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 21}, {["y"] = 11, ["x"] = 9, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 23}, {["y"] = 11, ["x"] = 10, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 22}, {["y"] = 11, ["x"] = 11, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 23}, {["y"] = 11, ["x"] = 12, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 22}, {["y"] = 11, ["x"] = 13, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 22}, {["y"] = 11, ["x"] = 14, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 23}, {["y"] = 11, ["x"] = 15, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 23}, {["y"] = 11, ["x"] = 16, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 22}, {["y"] = 11, ["x"] = 17, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 21}, {["y"] = 11, ["x"] = 18, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 21}, {["y"] = 11, ["x"] = 19, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 21}, {["y"] = 11, ["x"] = 20, ["name"] = "squaresville:light_panel", ["z"] = 16, ["param2"] = 21}, {["y"] = 11, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 16, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 12, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 16, ["param2"] = 1}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 15, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "default:desert_stone_block", ["z"] = 17, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 17, ["param2"] = 1}, {["y"] = 2, ["x"] = 14, ["name"] = "homedecor:kitchen_chair_padded", ["z"] = 17, ["param2"] = 5}, {["y"] = 2, ["x"] = 16, ["name"] = "homedecor:table_legs_brass", ["z"] = 17, ["param2"] = 0}, {["param2"] = 1, ["x"] = 23, ["name"] = "homedecor:oven_steel", ["z"] = 17, ["meta"] = {["inventory"] = {["dst"] = {"", "", "", ""}, ["fuel"] = {""}, ["src"] = {""}}, ["fields"] = {["src_totaltime"] = "0", ["src_time"] = "0", ["fuel_totaltime"] = "0", ["infotext"] = "Oven (stainless steel) (out of fuel)", ["formspec"] = "size[8,9]image[2,2;1,1;default_furnace_fire_bg.png]list[current_name;fuel;2,3;1,1;]list[current_name;src;2,1;1,1;]list[current_name;dst;5,1;2,2;]list[current_player;main;0,5;8,4;]listring[current_name;dst]listring[current_player;main]listring[current_name;src]listring[current_player;main]", ["fuel_time"] = "0"}}, ["y"] = 2}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 17, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 17, ["param2"] = 1}, {["y"] = 3, ["x"] = 15, ["name"] = "homedecor:wood_table_large", ["z"] = 17, ["param2"] = 0}, {["y"] = 3, ["x"] = 16, ["name"] = "homedecor:wood_table_large", ["z"] = 17, ["param2"] = 0}, {["y"] = 3, ["x"] = 17, ["name"] = "homedecor:wood_table_large", ["z"] = 17, ["param2"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 17, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 17, ["param2"] = 1}, {["y"] = 4, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 16, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 17, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 17, ["param2"] = 1}, {["y"] = 6, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 17, ["param2"] = 1}, {["y"] = 7, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 17, ["param2"] = 1}, {["y"] = 7, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 17, ["param2"] = 1}, {["y"] = 8, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 17, ["param2"] = 1}, {["y"] = 8, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 17, ["param2"] = 1}, {["y"] = 9, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 9, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 10, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 10, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 11, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 11, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 17, ["param2"] = 1}, {["y"] = 12, ["x"] = 5, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 6, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 7, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 8, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 9, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 10, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 11, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 12, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 13, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 14, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 15, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 16, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 17, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 18, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 19, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 20, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 21, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 22, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 23, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 12, ["x"] = 24, ["name"] = "stairs:stair_acacia_wood", ["z"] = 17, ["param2"] = 2}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 1}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 15, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "default:desert_stone_block", ["z"] = 18, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 18, ["param2"] = 1}, {["y"] = 2, ["x"] = 7, ["name"] = "homedecor:armchair", ["z"] = 18, ["param2"] = 3}, {["param2"] = 0, ["x"] = 8, ["name"] = "default:bookshelf", ["z"] = 18, ["meta"] = {["inventory"] = {["books"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,7;]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;books;0,0.3;8,2;]list[current_player;main;0,2.85;8,1;]list[current_player;main;0,4.08;8,3;8]listring[context;books]listring[current_player;main]image[0,2.85;1,1;gui_hb_bg.png]image[1,2.85;1,1;gui_hb_bg.png]image[2,2.85;1,1;gui_hb_bg.png]image[3,2.85;1,1;gui_hb_bg.png]image[4,2.85;1,1;gui_hb_bg.png]image[5,2.85;1,1;gui_hb_bg.png]image[6,2.85;1,1;gui_hb_bg.png]image[7,2.85;1,1;gui_hb_bg.png]image[0,0.3;1,1;default_bookshelf_slot.png]image[1,0.3;1,1;default_bookshelf_slot.png]image[2,0.3;1,1;default_bookshelf_slot.png]image[3,0.3;1,1;default_bookshelf_slot.png]image[4,0.3;1,1;default_bookshelf_slot.png]image[5,0.3;1,1;default_bookshelf_slot.png]image[6,0.3;1,1;default_bookshelf_slot.png]image[7,0.3;1,1;default_bookshelf_slot.png]image[0,1.3;1,1;default_bookshelf_slot.png]image[1,1.3;1,1;default_bookshelf_slot.png]image[2,1.3;1,1;default_bookshelf_slot.png]image[3,1.3;1,1;default_bookshelf_slot.png]image[4,1.3;1,1;default_bookshelf_slot.png]image[5,1.3;1,1;default_bookshelf_slot.png]image[6,1.3;1,1;default_bookshelf_slot.png]image[7,1.3;1,1;default_bookshelf_slot.png]"}}, ["y"] = 2}, {["y"] = 2, ["x"] = 9, ["name"] = "homedecor:armchair", ["z"] = 18, ["param2"] = 3}, {["y"] = 2, ["x"] = 14, ["name"] = "homedecor:kitchen_chair_padded", ["z"] = 18, ["param2"] = 5}, {["y"] = 2, ["x"] = 16, ["name"] = "homedecor:table_legs_brass", ["z"] = 18, ["param2"] = 0}, {["param2"] = 0, ["x"] = 19, ["name"] = "homedecor:kitchen_cabinet_granite", ["z"] = 18, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,8]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,3;]list[current_player;main;0,4;8,4;]listring[]", ["infotext"] = "Kitchen Cabinet"}}, ["y"] = 2}, {["param2"] = 0, ["x"] = 20, ["name"] = "homedecor:kitchen_cabinet_with_sink", ["z"] = 18, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,7]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,2;]list[current_player;main;0,3;8,4;]listring[]", ["infotext"] = "Under-sink cabinet"}}, ["y"] = 2}, {["param2"] = 0, ["x"] = 21, ["name"] = "homedecor:kitchen_cabinet_granite", ["z"] = 18, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,8]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,3;]list[current_player;main;0,4;8,4;]listring[]", ["infotext"] = "Kitchen Cabinet"}}, ["y"] = 2}, {["param2"] = 0, ["x"] = 22, ["name"] = "homedecor:kitchen_cabinet_granite", ["z"] = 18, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,8]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,3;]list[current_player;main;0,4;8,4;]listring[]", ["infotext"] = "Kitchen Cabinet"}}, ["y"] = 2}, {["param2"] = 1, ["x"] = 23, ["name"] = "homedecor:kitchen_cabinet_granite", ["z"] = 18, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,8]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,3;]list[current_player;main;0,4;8,4;]listring[]", ["infotext"] = "Kitchen Cabinet"}}, ["y"] = 2}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 18, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 18, ["param2"] = 1}, {["y"] = 3, ["x"] = 8, ["name"] = "homedecor:table_lamp_off", ["z"] = 18, ["param2"] = 240}, {["y"] = 3, ["x"] = 15, ["name"] = "homedecor:wood_table_large", ["z"] = 18, ["param2"] = 0}, {["y"] = 3, ["x"] = 16, ["name"] = "homedecor:wood_table_large", ["z"] = 18, ["param2"] = 0}, {["y"] = 3, ["x"] = 17, ["name"] = "homedecor:wood_table_large", ["z"] = 18, ["param2"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 18, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 18, ["param2"] = 1}, {["y"] = 4, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 16, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 18, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 18, ["param2"] = 1}, {["y"] = 6, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 18, ["param2"] = 1}, {["y"] = 7, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 18, ["param2"] = 1}, {["y"] = 7, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 18, ["param2"] = 1}, {["y"] = 8, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 18, ["param2"] = 1}, {["y"] = 8, ["x"] = 24, ["name"] = "xpanes:pane_flat", ["z"] = 18, ["param2"] = 1}, {["y"] = 9, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 9, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 14, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 15, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 16, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 17, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 18, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 19, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 20, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 21, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 22, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 23, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 10, ["x"] = 24, ["name"] = "default:acacia_wood", ["z"] = 18, ["param2"] = 1}, {["y"] = 11, ["x"] = 5, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 6, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 7, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 8, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 9, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 10, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 11, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 12, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 13, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 14, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 15, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 16, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 17, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 18, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 19, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 20, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 21, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 22, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 23, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 11, ["x"] = 24, ["name"] = "stairs:stair_acacia_wood", ["z"] = 18, ["param2"] = 2}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 1}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 15, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 16, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 17, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 18, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 19, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 20, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 21, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 22, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 23, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 24, ["name"] = "default:desert_stone_block", ["z"] = 19, ["param2"] = 1}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 2, ["x"] = 6, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 2, ["x"] = 7, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 2}, {["y"] = 2, ["x"] = 8, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 2}, {["y"] = 2, ["x"] = 9, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 2}, {["y"] = 2, ["x"] = 10, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 2, ["x"] = 11, ["name"] = "doors:door_wood_a", ["z"] = 19, ["param2"] = 2}, {["y"] = 2, ["x"] = 12, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 2, ["x"] = 13, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 2, ["x"] = 14, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 2, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 2, ["x"] = 16, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 2, ["x"] = 17, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 2, ["x"] = 18, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 2, ["x"] = 19, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 2, ["x"] = 20, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 2, ["x"] = 21, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 2, ["x"] = 22, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 2, ["x"] = 23, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 2, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 3, ["x"] = 6, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 3, ["x"] = 7, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 3, ["x"] = 8, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 2}, {["y"] = 3, ["x"] = 9, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 3, ["x"] = 10, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 3, ["x"] = 11, ["name"] = "doors:hidden", ["z"] = 19, ["param2"] = 2}, {["y"] = 3, ["x"] = 12, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 3, ["x"] = 13, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 3, ["x"] = 14, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 3, ["x"] = 15, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 3, ["x"] = 16, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 2}, {["y"] = 3, ["x"] = 17, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 2}, {["y"] = 3, ["x"] = 18, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 3, ["x"] = 19, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 3, ["x"] = 23, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 4, ["x"] = 6, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 7, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 8, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 9, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 10, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 4, ["x"] = 11, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 4, ["x"] = 12, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 4, ["x"] = 13, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 4, ["x"] = 14, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 15, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 16, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 17, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 14, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 16, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 17, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 18, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 19, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 20, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 21, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 22, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 23, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 5, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 6, ["x"] = 13, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 6, ["x"] = 14, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 6, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 6, ["x"] = 16, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 6, ["x"] = 17, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 6, ["x"] = 18, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 6, ["x"] = 19, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 6, ["x"] = 20, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 6, ["x"] = 21, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 6, ["x"] = 22, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 6, ["x"] = 23, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 6, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 7, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 1}, {["y"] = 7, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 19, ["param2"] = 1}, {["y"] = 7, ["x"] = 14, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 7, ["x"] = 15, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 7, ["x"] = 16, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 7, ["x"] = 17, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 7, ["x"] = 18, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 7, ["x"] = 19, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 7, ["x"] = 20, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 7, ["x"] = 21, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 7, ["x"] = 22, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 7, ["x"] = 23, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 7, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 8, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 1}, {["y"] = 8, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 19, ["param2"] = 1}, {["y"] = 8, ["x"] = 14, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 8, ["x"] = 15, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 8, ["x"] = 16, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 8, ["x"] = 17, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 8, ["x"] = 18, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 8, ["x"] = 19, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 8, ["x"] = 20, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 8, ["x"] = 21, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 8, ["x"] = 22, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 8, ["x"] = 23, ["name"] = "xpanes:pane_flat", ["z"] = 19, ["param2"] = 0}, {["y"] = 8, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 9, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 19, ["param2"] = 1}, {["y"] = 9, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 19, ["param2"] = 1}, {["y"] = 9, ["x"] = 14, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 9, ["x"] = 15, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 9, ["x"] = 16, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 9, ["x"] = 17, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 9, ["x"] = 18, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 9, ["x"] = 19, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 9, ["x"] = 20, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 9, ["x"] = 21, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 9, ["x"] = 22, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 9, ["x"] = 23, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 9, ["x"] = 24, ["name"] = "default:desert_stonebrick", ["z"] = 19, ["param2"] = 1}, {["y"] = 10, ["x"] = 5, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 6, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 7, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 8, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 9, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 10, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 11, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 12, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 13, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 14, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 15, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 16, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 17, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 18, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 19, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 20, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 21, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 22, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 23, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 10, ["x"] = 24, ["name"] = "stairs:stair_acacia_wood", ["z"] = 19, ["param2"] = 2}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 1}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 20, ["param2"] = 1}, {["y"] = 2, ["x"] = 13, ["name"] = "xpanes:pane_flat", ["z"] = 20, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 20, ["param2"] = 1}, {["y"] = 3, ["x"] = 13, ["name"] = "xpanes:pane_flat", ["z"] = 20, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 20, ["param2"] = 1}, {["y"] = 4, ["x"] = 13, ["name"] = "xpanes:pane_flat", ["z"] = 20, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 20, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:desert_stonebrick", ["z"] = 20, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 20, ["param2"] = 1}, {["y"] = 6, ["x"] = 13, ["name"] = "default:desert_stonebrick", ["z"] = 20, ["param2"] = 1}, {["y"] = 7, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 7, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 8, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 8, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 20, ["param2"] = 1}, {["y"] = 9, ["x"] = 5, ["name"] = "stairs:stair_acacia_wood", ["z"] = 20, ["param2"] = 2}, {["y"] = 9, ["x"] = 6, ["name"] = "stairs:stair_acacia_wood", ["z"] = 20, ["param2"] = 2}, {["y"] = 9, ["x"] = 7, ["name"] = "stairs:stair_acacia_wood", ["z"] = 20, ["param2"] = 2}, {["y"] = 9, ["x"] = 8, ["name"] = "stairs:stair_acacia_wood", ["z"] = 20, ["param2"] = 2}, {["y"] = 9, ["x"] = 9, ["name"] = "stairs:stair_acacia_wood", ["z"] = 20, ["param2"] = 2}, {["y"] = 9, ["x"] = 10, ["name"] = "stairs:stair_acacia_wood", ["z"] = 20, ["param2"] = 2}, {["y"] = 9, ["x"] = 11, ["name"] = "stairs:stair_acacia_wood", ["z"] = 20, ["param2"] = 2}, {["y"] = 9, ["x"] = 12, ["name"] = "stairs:stair_acacia_wood", ["z"] = 20, ["param2"] = 2}, {["y"] = 9, ["x"] = 13, ["name"] = "stairs:stair_acacia_wood", ["z"] = 20, ["param2"] = 2}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 21, ["param2"] = 1}, {["param2"] = 1, ["x"] = 13, ["name"] = "xpanes:pane_flat", ["z"] = 21, ["meta"] = {["inventory"] = {}, ["fields"] = {["state"] = "0"}}, ["y"] = 2}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 21, ["param2"] = 1}, {["y"] = 3, ["x"] = 13, ["name"] = "xpanes:pane_flat", ["z"] = 21, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 21, ["param2"] = 1}, {["y"] = 4, ["x"] = 13, ["name"] = "xpanes:pane_flat", ["z"] = 21, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 21, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:desert_stonebrick", ["z"] = 21, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 21, ["param2"] = 1}, {["y"] = 6, ["x"] = 13, ["name"] = "default:desert_stonebrick", ["z"] = 21, ["param2"] = 1}, {["y"] = 7, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 7, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 21, ["param2"] = 1}, {["y"] = 8, ["x"] = 5, ["name"] = "stairs:stair_acacia_wood", ["z"] = 21, ["param2"] = 2}, {["y"] = 8, ["x"] = 6, ["name"] = "stairs:stair_acacia_wood", ["z"] = 21, ["param2"] = 2}, {["y"] = 8, ["x"] = 7, ["name"] = "stairs:stair_acacia_wood", ["z"] = 21, ["param2"] = 2}, {["y"] = 8, ["x"] = 8, ["name"] = "stairs:stair_acacia_wood", ["z"] = 21, ["param2"] = 2}, {["y"] = 8, ["x"] = 9, ["name"] = "stairs:stair_acacia_wood", ["z"] = 21, ["param2"] = 2}, {["y"] = 8, ["x"] = 10, ["name"] = "stairs:stair_acacia_wood", ["z"] = 21, ["param2"] = 2}, {["y"] = 8, ["x"] = 11, ["name"] = "stairs:stair_acacia_wood", ["z"] = 21, ["param2"] = 2}, {["y"] = 8, ["x"] = 12, ["name"] = "stairs:stair_acacia_wood", ["z"] = 21, ["param2"] = 2}, {["y"] = 8, ["x"] = 13, ["name"] = "stairs:stair_acacia_wood", ["z"] = 21, ["param2"] = 2}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 22, ["param2"] = 1}, {["y"] = 2, ["x"] = 13, ["name"] = "xpanes:pane_flat", ["z"] = 22, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 22, ["param2"] = 1}, {["y"] = 3, ["x"] = 13, ["name"] = "xpanes:pane_flat", ["z"] = 22, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 22, ["param2"] = 1}, {["y"] = 4, ["x"] = 13, ["name"] = "xpanes:pane_flat", ["z"] = 22, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 22, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 22, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:desert_stonebrick", ["z"] = 22, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 22, ["param2"] = 1}, {["y"] = 6, ["x"] = 13, ["name"] = "default:desert_stonebrick", ["z"] = 22, ["param2"] = 1}, {["y"] = 7, ["x"] = 5, ["name"] = "stairs:stair_acacia_wood", ["z"] = 22, ["param2"] = 2}, {["y"] = 7, ["x"] = 6, ["name"] = "stairs:stair_acacia_wood", ["z"] = 22, ["param2"] = 2}, {["y"] = 7, ["x"] = 7, ["name"] = "stairs:stair_acacia_wood", ["z"] = 22, ["param2"] = 2}, {["y"] = 7, ["x"] = 8, ["name"] = "stairs:stair_acacia_wood", ["z"] = 22, ["param2"] = 2}, {["y"] = 7, ["x"] = 9, ["name"] = "stairs:stair_acacia_wood", ["z"] = 22, ["param2"] = 2}, {["y"] = 7, ["x"] = 10, ["name"] = "stairs:stair_acacia_wood", ["z"] = 22, ["param2"] = 2}, {["y"] = 7, ["x"] = 11, ["name"] = "stairs:stair_acacia_wood", ["z"] = 22, ["param2"] = 2}, {["y"] = 7, ["x"] = 12, ["name"] = "stairs:stair_acacia_wood", ["z"] = 22, ["param2"] = 2}, {["y"] = 7, ["x"] = 13, ["name"] = "stairs:stair_acacia_wood", ["z"] = 22, ["param2"] = 2}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:acacia_wood", ["z"] = 23, ["param2"] = 1}, {["y"] = 1, ["x"] = 6, ["name"] = "default:acacia_wood", ["z"] = 23, ["param2"] = 1}, {["y"] = 1, ["x"] = 7, ["name"] = "default:acacia_wood", ["z"] = 23, ["param2"] = 1}, {["y"] = 1, ["x"] = 8, ["name"] = "default:acacia_wood", ["z"] = 23, ["param2"] = 1}, {["y"] = 1, ["x"] = 9, ["name"] = "default:acacia_wood", ["z"] = 23, ["param2"] = 1}, {["y"] = 1, ["x"] = 10, ["name"] = "default:acacia_wood", ["z"] = 23, ["param2"] = 1}, {["y"] = 1, ["x"] = 11, ["name"] = "default:acacia_wood", ["z"] = 23, ["param2"] = 1}, {["y"] = 1, ["x"] = 12, ["name"] = "default:acacia_wood", ["z"] = 23, ["param2"] = 1}, {["y"] = 1, ["x"] = 13, ["name"] = "default:acacia_wood", ["z"] = 23, ["param2"] = 1}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "xpanes:pane", ["z"] = 23, ["param2"] = 1}, {["y"] = 2, ["x"] = 6, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 2, ["x"] = 7, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 2, ["x"] = 8, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 2, ["x"] = 9, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 2, ["x"] = 10, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 2}, {["y"] = 2, ["x"] = 13, ["name"] = "xpanes:pane", ["z"] = 23, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane", ["z"] = 23, ["param2"] = 1}, {["y"] = 3, ["x"] = 6, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 3, ["x"] = 7, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 3, ["x"] = 8, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 3, ["x"] = 9, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 3, ["x"] = 10, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 3, ["x"] = 12, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 2}, {["y"] = 3, ["x"] = 13, ["name"] = "xpanes:pane", ["z"] = 23, ["param2"] = 1}, {["y"] = 4, ["x"] = 5, ["name"] = "xpanes:pane", ["z"] = 23, ["param2"] = 1}, {["y"] = 4, ["x"] = 6, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 4, ["x"] = 7, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 4, ["x"] = 8, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 4, ["x"] = 9, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 4, ["x"] = 10, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 4, ["x"] = 11, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 4, ["x"] = 12, ["name"] = "xpanes:pane_flat", ["z"] = 23, ["param2"] = 0}, {["y"] = 4, ["x"] = 13, ["name"] = "xpanes:pane", ["z"] = 23, ["param2"] = 1}, {["y"] = 5, ["x"] = 5, ["name"] = "default:desert_stonebrick", ["z"] = 23, ["param2"] = 1}, {["y"] = 5, ["x"] = 6, ["name"] = "default:desert_stonebrick", ["z"] = 23, ["param2"] = 1}, {["y"] = 5, ["x"] = 7, ["name"] = "default:desert_stonebrick", ["z"] = 23, ["param2"] = 1}, {["y"] = 5, ["x"] = 8, ["name"] = "default:desert_stonebrick", ["z"] = 23, ["param2"] = 1}, {["y"] = 5, ["x"] = 9, ["name"] = "default:desert_stonebrick", ["z"] = 23, ["param2"] = 1}, {["y"] = 5, ["x"] = 10, ["name"] = "default:desert_stonebrick", ["z"] = 23, ["param2"] = 1}, {["y"] = 5, ["x"] = 11, ["name"] = "default:desert_stonebrick", ["z"] = 23, ["param2"] = 1}, {["y"] = 5, ["x"] = 12, ["name"] = "default:desert_stonebrick", ["z"] = 23, ["param2"] = 1}, {["y"] = 5, ["x"] = 13, ["name"] = "default:desert_stonebrick", ["z"] = 23, ["param2"] = 1}, {["y"] = 6, ["x"] = 5, ["name"] = "stairs:stair_acacia_wood", ["z"] = 23, ["param2"] = 2}, {["y"] = 6, ["x"] = 6, ["name"] = "stairs:stair_acacia_wood", ["z"] = 23, ["param2"] = 2}, {["y"] = 6, ["x"] = 7, ["name"] = "stairs:stair_acacia_wood", ["z"] = 23, ["param2"] = 2}, {["y"] = 6, ["x"] = 8, ["name"] = "stairs:stair_acacia_wood", ["z"] = 23, ["param2"] = 2}, {["y"] = 6, ["x"] = 9, ["name"] = "stairs:stair_acacia_wood", ["z"] = 23, ["param2"] = 2}, {["y"] = 6, ["x"] = 10, ["name"] = "stairs:stair_acacia_wood", ["z"] = 23, ["param2"] = 2}, {["y"] = 6, ["x"] = 11, ["name"] = "stairs:stair_acacia_wood", ["z"] = 23, ["param2"] = 2}, {["y"] = 6, ["x"] = 12, ["name"] = "stairs:stair_acacia_wood", ["z"] = 23, ["param2"] = 2}, {["y"] = 6, ["x"] = 13, ["name"] = "stairs:stair_acacia_wood", ["z"] = 23, ["param2"] = 2}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}} \ No newline at end of file diff --git a/schematics/jungle_tree_with_orchids.mts b/schematics/jungle_tree_with_orchids.mts new file mode 100644 index 0000000000000000000000000000000000000000..deb4d1c31ca6ad61581eec9b381bc81e42c7087d GIT binary patch literal 276 zcmeYb3HD`RW?*FyWMKUV0sDXe%=*v3!oZxES;QcclA4xSnp0wxRhpNclbVy7Se9DM zAY5Ennpl)tT$Y)WlWLV;l$?>7!XSjIw4^9CwPMcOplB{;MV^w`_WW-ze$%k@T49|f z?VFj0uaDBdb#RK+GLuxV((GmV$67?yF5WHw z5jfj<>cPak<14O4`flB}+cbCAnJuqhAFEmSvhIcF_tJmX|Ly;B=&Xr3c=C+8&zZ=3 zMRN}=S-MPVQH-?8Ap^tmzNbQJo?KPOGCuI|X5I3+Z}Pr$8Pkq6yq8lyeC;_ax#!}S M{`m)lwIYj?0CF&d(EtDd literal 0 HcmV?d00001 diff --git a/schematics/nathan_pond_house_house.we b/schematics/nathan_pond_house_house.we new file mode 100644 index 0000000..b49a776 --- /dev/null +++ b/schematics/nathan_pond_house_house.we @@ -0,0 +1 @@ +5:return {{["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 0, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 1, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:gravel", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:gravel", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:gravel", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:gravel", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 2, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:silver_sand", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:silver_sand", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:gravel", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 3, ["param2"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "default:fence_wood", ["z"] = 3, ["param2"] = 0}, {["y"] = 2, ["x"] = 3, ["name"] = "default:fence_wood", ["z"] = 3, ["param2"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "default:fence_wood", ["z"] = 3, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:fence_wood", ["z"] = 3, ["param2"] = 0}, {["y"] = 2, ["x"] = 6, ["name"] = "default:fence_wood", ["z"] = 3, ["param2"] = 0}, {["y"] = 2, ["x"] = 7, ["name"] = "default:fence_wood", ["z"] = 3, ["param2"] = 0}, {["y"] = 2, ["x"] = 8, ["name"] = "default:fence_wood", ["z"] = 3, ["param2"] = 0}, {["y"] = 2, ["x"] = 9, ["name"] = "default:fence_wood", ["z"] = 3, ["param2"] = 0}, {["y"] = 2, ["x"] = 10, ["name"] = "default:fence_wood", ["z"] = 3, ["param2"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "default:fence_wood", ["z"] = 3, ["param2"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "default:fence_wood", ["z"] = 3, ["param2"] = 0}, {["y"] = 2, ["x"] = 13, ["name"] = "default:fence_wood", ["z"] = 3, ["param2"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "default:fence_wood", ["z"] = 3, ["param2"] = 0}, {["y"] = 2, ["x"] = 15, ["name"] = "default:fence_wood", ["z"] = 3, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:silver_sand", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:gravel", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 4, ["param2"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "default:fence_wood", ["z"] = 4, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:gravel", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:gravel", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:gravel", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:silver_sand", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:silver_sand", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:silver_sand", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:dirt", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:gravel", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 5, ["param2"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "default:fence_wood", ["z"] = 5, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:gravel", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:gravel", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:gravel", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:gravel", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:gravel", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:silver_sand", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:silver_sand", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:silver_sand", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:silver_sand", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:gravel", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 6, ["param2"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "default:fence_wood", ["z"] = 6, ["param2"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "homedecor:wall_lamp", ["z"] = 6, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:gravel", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:gravel", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:silver_sand", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:silver_sand", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:silver_sand", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:silver_sand", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:junglewood", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:junglewood", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:junglewood", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:junglewood", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:junglewood", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:junglewood", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:junglewood", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:junglewood", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:junglewood", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:junglewood", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:gravel", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "squaresville:concrete5", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "default:fence_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:acacia_tree", ["z"] = 7, ["param2"] = 3}, {["y"] = 2, ["x"] = 6, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 7, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 8, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 9, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 10, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 13, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "default:acacia_tree", ["z"] = 7, ["param2"] = 2}, {["y"] = 2, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 23, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "default:acacia_tree", ["z"] = 7, ["param2"] = 3}, {["y"] = 3, ["x"] = 6, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 3, ["x"] = 7, ["name"] = "xpanes:pane_flat", ["z"] = 7, ["param2"] = 0}, {["y"] = 3, ["x"] = 8, ["name"] = "xpanes:pane_flat", ["z"] = 7, ["param2"] = 0}, {["y"] = 3, ["x"] = 9, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 3, ["x"] = 10, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 3, ["x"] = 11, ["name"] = "xpanes:pane_flat", ["z"] = 7, ["param2"] = 0}, {["y"] = 3, ["x"] = 12, ["name"] = "xpanes:pane_flat", ["z"] = 7, ["param2"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "default:acacia_tree", ["z"] = 7, ["param2"] = 2}, {["y"] = 3, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 3, ["x"] = 23, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 3, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "default:acacia_tree", ["z"] = 7, ["param2"] = 3}, {["y"] = 4, ["x"] = 6, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 7, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 8, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 9, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 10, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 11, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 12, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 13, ["name"] = "default:wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "default:acacia_tree", ["z"] = 7, ["param2"] = 2}, {["y"] = 4, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 4, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "default:pine_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 6, ["name"] = "default:pine_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 7, ["name"] = "default:pine_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 8, ["name"] = "default:pine_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 9, ["name"] = "default:pine_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 10, ["name"] = "default:pine_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 11, ["name"] = "default:pine_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 12, ["name"] = "default:pine_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "default:pine_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "default:pine_wood", ["z"] = 7, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:gravel", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:stone", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:silver_sand", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:silver_sand", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:silver_sand", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:silver_sand", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:silver_sand", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:junglewood", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:junglewood", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:junglewood", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:junglewood", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:junglewood", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:junglewood", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:junglewood", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:junglewood", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:junglewood", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:junglewood", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:gravel", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "squaresville:concrete5", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "squaresville:concrete5", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 8, ["param2"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "default:fence_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 2, ["x"] = 6, ["name"] = "homedecor:kitchen_chair_wood", ["z"] = 8, ["param2"] = 2}, {["y"] = 2, ["x"] = 14, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 8, ["param2"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 8, ["param2"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 3, ["x"] = 15, ["name"] = "homedecor:wall_lamp", ["z"] = 8, ["param2"] = 3}, {["y"] = 3, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 8, ["param2"] = 0}, {["y"] = 3, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "default:wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "default:stonebrick", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "default:stonebrick", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "default:stonebrick", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "default:stonebrick", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "default:stonebrick", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "default:stonebrick", ["z"] = 8, ["param2"] = 0}, {["y"] = 4, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "default:pine_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 6, ["name"] = "default:pine_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 7, ["name"] = "default:pine_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 8, ["name"] = "default:pine_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 9, ["name"] = "default:pine_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 10, ["name"] = "default:pine_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 11, ["name"] = "default:pine_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 12, ["name"] = "default:pine_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "default:pine_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "default:pine_wood", ["z"] = 8, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:silver_sand", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:silver_sand", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:silver_sand", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:silver_sand", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:silver_sand", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:junglewood", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:junglewood", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:junglewood", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:junglewood", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:junglewood", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:junglewood", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:junglewood", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:junglewood", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:junglewood", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:junglewood", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:gravel", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:gravel", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:gravel", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "squaresville:concrete5", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "squaresville:concrete5", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 9, ["param2"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "default:fence_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 2, ["x"] = 6, ["name"] = "homedecor:table_legs_wrought_iron", ["z"] = 9, ["param2"] = 0}, {["param2"] = 3, ["x"] = 14, ["name"] = "doors:door_wood_a", ["z"] = 9, ["meta"] = {["inventory"] = {}, ["fields"] = {["state"] = "0"}}, ["y"] = 2}, {["y"] = 2, ["x"] = 18, ["name"] = "doors:door_wood_a", ["z"] = 9, ["param2"] = 1}, {["y"] = 2, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 9, ["param2"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 9, ["param2"] = 1}, {["y"] = 3, ["x"] = 6, ["name"] = "homedecor:wood_table_large", ["z"] = 9, ["param2"] = 3}, {["y"] = 3, ["x"] = 14, ["name"] = "doors:hidden", ["z"] = 9, ["param2"] = 3}, {["y"] = 3, ["x"] = 18, ["name"] = "doors:hidden", ["z"] = 9, ["param2"] = 1}, {["y"] = 3, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 9, ["param2"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "default:wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 4, ["x"] = 6, ["name"] = "homedecor:ceiling_lamp", ["z"] = 9, ["param2"] = 3}, {["y"] = 4, ["x"] = 14, ["name"] = "default:wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 9, ["param2"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "default:stonebrick", ["z"] = 9, ["param2"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "default:stonebrick", ["z"] = 9, ["param2"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "default:stonebrick", ["z"] = 9, ["param2"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "default:stonebrick", ["z"] = 9, ["param2"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "default:stonebrick", ["z"] = 9, ["param2"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "default:stonebrick", ["z"] = 9, ["param2"] = 0}, {["y"] = 4, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "default:pine_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 6, ["name"] = "default:pine_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 7, ["name"] = "default:pine_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 8, ["name"] = "default:pine_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 9, ["name"] = "default:pine_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 10, ["name"] = "default:pine_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 11, ["name"] = "default:pine_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 12, ["name"] = "default:pine_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "default:pine_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "default:pine_wood", ["z"] = 9, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:silver_sand", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:silver_sand", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:silver_sand", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:silver_sand", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:silver_sand", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:silver_sand", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:junglewood", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:junglewood", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:junglewood", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:junglewood", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:junglewood", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:junglewood", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:junglewood", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:junglewood", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:junglewood", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:junglewood", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "squaresville:concrete5", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "squaresville:concrete5", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "default:fence_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 6, ["name"] = "homedecor:table_legs_wrought_iron", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 9, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 10, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 13, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 10, ["param2"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 10, ["param2"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 10, ["param2"] = 1}, {["y"] = 3, ["x"] = 6, ["name"] = "homedecor:wood_table_large", ["z"] = 10, ["param2"] = 3}, {["y"] = 3, ["x"] = 9, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 3, ["x"] = 10, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 3, ["x"] = 12, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 10, ["param2"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "squaresville:light_panel", ["z"] = 10, ["param2"] = 20}, {["y"] = 3, ["x"] = 23, ["name"] = "squaresville:light_panel", ["z"] = 10, ["param2"] = 20}, {["y"] = 3, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 9, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 10, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 11, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 12, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 13, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "default:wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "default:stonebrick", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "default:stonebrick", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "default:stonebrick", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "default:stonebrick", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "default:stonebrick", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "default:stonebrick", ["z"] = 10, ["param2"] = 0}, {["y"] = 4, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 10, ["param2"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "default:pine_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 5, ["x"] = 6, ["name"] = "default:pine_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 5, ["x"] = 7, ["name"] = "default:pine_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 5, ["x"] = 8, ["name"] = "default:pine_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 5, ["x"] = 9, ["name"] = "default:pine_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 5, ["x"] = 10, ["name"] = "default:pine_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 5, ["x"] = 11, ["name"] = "default:pine_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 5, ["x"] = 12, ["name"] = "default:pine_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "default:pine_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "default:pine_wood", ["z"] = 10, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:stone", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:silver_sand", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:silver_sand", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:silver_sand", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:silver_sand", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:silver_sand", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:silver_sand", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:silver_sand", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:silver_sand", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:stone", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:junglewood", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:junglewood", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:junglewood", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:junglewood", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:junglewood", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:junglewood", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:junglewood", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:junglewood", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:junglewood", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:junglewood", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "squaresville:concrete5", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "squaresville:concrete5", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 11, ["param2"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "default:fence_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 2, ["x"] = 6, ["name"] = "homedecor:kitchen_chair_wood", ["z"] = 11, ["param2"] = 3}, {["y"] = 2, ["x"] = 9, ["name"] = "default:wood", ["z"] = 11, ["param2"] = 0}, {["param2"] = 3, ["x"] = 10, ["name"] = "homedecor:wardrobe", ["z"] = 11, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[5.5,8.5]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]vertlabel[0,0.5;Clothes]image_button_exit[0.5,0;1.1,2;homedecor_clothes_male1_preview.png;male1;]image_button_exit[0.5,2;1.1,2;homedecor_clothes_female1_preview.png;female1;]image_button_exit[1.5,0;1.1,2;homedecor_clothes_male2_preview.png;male2;]image_button_exit[1.5,2;1.1,2;homedecor_clothes_female2_preview.png;female2;]image_button_exit[2.5,0;1.1,2;homedecor_clothes_male3_preview.png;male3;]image_button_exit[2.5,2;1.1,2;homedecor_clothes_female3_preview.png;female3;]image_button_exit[3.5,0;1.1,2;homedecor_clothes_male4_preview.png;male4;]image_button_exit[3.5,2;1.1,2;homedecor_clothes_female4_preview.png;female4;]image_button_exit[4.5,0;1.1,2;homedecor_clothes_male5_preview.png;male5;]image_button_exit[4.5,2;1.1,2;homedecor_clothes_female5_preview.png;female5;]vertlabel[0,5.2;Storage]list[current_name;main;0.5,4.5;5,2;]list[current_player;main;0.5,6.8;5,2;]listring[]", ["infotext"] = "Wardrobe"}}, ["y"] = 2}, {["y"] = 2, ["x"] = 14, ["name"] = "default:wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 11, ["param2"] = 0}, {["y"] = 2, ["x"] = 23, ["name"] = "homedecor:pool_table", ["z"] = 11, ["param2"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 11, ["param2"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "default:wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 3, ["x"] = 9, ["name"] = "default:wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "xpanes:pane_flat", ["z"] = 11, ["param2"] = 1}, {["y"] = 3, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 11, ["param2"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "squaresville:light_panel", ["z"] = 11, ["param2"] = 20}, {["y"] = 3, ["x"] = 23, ["name"] = "squaresville:light_panel", ["z"] = 11, ["param2"] = 23}, {["y"] = 3, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 11, ["param2"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "default:wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 4, ["x"] = 9, ["name"] = "default:wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "default:wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 11, ["param2"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "default:stonebrick", ["z"] = 11, ["param2"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "default:stonebrick", ["z"] = 11, ["param2"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "default:stonebrick", ["z"] = 11, ["param2"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "default:stonebrick", ["z"] = 11, ["param2"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "default:stonebrick", ["z"] = 11, ["param2"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "default:stonebrick", ["z"] = 11, ["param2"] = 0}, {["y"] = 4, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 11, ["param2"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "default:pine_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 5, ["x"] = 6, ["name"] = "default:pine_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 5, ["x"] = 7, ["name"] = "default:pine_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 5, ["x"] = 8, ["name"] = "default:pine_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 5, ["x"] = 9, ["name"] = "default:pine_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 5, ["x"] = 10, ["name"] = "default:pine_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 5, ["x"] = 11, ["name"] = "default:pine_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 5, ["x"] = 12, ["name"] = "default:pine_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "default:pine_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "default:pine_wood", ["z"] = 11, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:stone", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:silver_sand", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:silver_sand", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:silver_sand", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:silver_sand", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:silver_sand", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:silver_sand", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:silver_sand", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:silver_sand", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:silver_sand", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:silver_sand", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:stone", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:stone", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:junglewood", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:junglewood", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:junglewood", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:junglewood", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:junglewood", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:junglewood", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:junglewood", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:junglewood", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:junglewood", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:junglewood", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "squaresville:concrete5", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "squaresville:concrete5", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 12, ["param2"] = 0}, {["y"] = 2, ["x"] = 2, ["name"] = "default:fence_wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 2, ["x"] = 9, ["name"] = "default:wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "default:wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 12, ["param2"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 12, ["param2"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "homedecor:wall_lamp", ["z"] = 12, ["param2"] = 1}, {["y"] = 3, ["x"] = 5, ["name"] = "default:wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 3, ["x"] = 9, ["name"] = "default:wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "xpanes:pane_flat", ["z"] = 12, ["param2"] = 1}, {["y"] = 3, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 12, ["param2"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 20}, {["y"] = 3, ["x"] = 23, ["name"] = "squaresville:light_panel", ["z"] = 12, ["param2"] = 23}, {["y"] = 3, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 12, ["param2"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "default:wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 4, ["x"] = 9, ["name"] = "default:wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "default:wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 12, ["param2"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "default:stonebrick", ["z"] = 12, ["param2"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "default:stonebrick", ["z"] = 12, ["param2"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "default:stonebrick", ["z"] = 12, ["param2"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "default:stonebrick", ["z"] = 12, ["param2"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "default:stonebrick", ["z"] = 12, ["param2"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "default:stonebrick", ["z"] = 12, ["param2"] = 0}, {["y"] = 4, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 12, ["param2"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "default:pine_wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 5, ["x"] = 6, ["name"] = "default:pine_wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 5, ["x"] = 7, ["name"] = "default:pine_wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 5, ["x"] = 8, ["name"] = "default:pine_wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 5, ["x"] = 9, ["name"] = "default:pine_wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 5, ["x"] = 10, ["name"] = "default:pine_wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 5, ["x"] = 11, ["name"] = "default:pine_wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 5, ["x"] = 12, ["name"] = "default:pine_wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "default:pine_wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "default:pine_wood", ["z"] = 12, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:silver_sand", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:silver_sand", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:silver_sand", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:silver_sand", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:silver_sand", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:silver_sand", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:silver_sand", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:silver_sand", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:silver_sand", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 0, ["name"] = "default:gravel", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 1, ["name"] = "default:gravel", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:gravel", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:gravel", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:gravel", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:junglewood", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:junglewood", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:junglewood", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:junglewood", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:junglewood", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:junglewood", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:junglewood", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:junglewood", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:junglewood", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:junglewood", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "squaresville:concrete5", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "squaresville:concrete5", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 13, ["param2"] = 0}, {["param2"] = 1, ["x"] = 5, ["name"] = "doors:door_wood_a", ["z"] = 13, ["meta"] = {["inventory"] = {}, ["fields"] = {["state"] = "0"}}, ["y"] = 2}, {["y"] = 2, ["x"] = 9, ["name"] = "default:wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "beds:bed_bottom", ["z"] = 13, ["param2"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "beds:bed_bottom", ["z"] = 13, ["param2"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "default:wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 13, ["param2"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 13, ["param2"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "doors:hidden", ["z"] = 13, ["param2"] = 1}, {["y"] = 3, ["x"] = 9, ["name"] = "default:wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "xpanes:pane_flat", ["z"] = 13, ["param2"] = 1}, {["y"] = 3, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 13, ["param2"] = 0}, {["y"] = 3, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 13, ["param2"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "default:wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 4, ["x"] = 9, ["name"] = "default:wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "default:wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 13, ["param2"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "default:stonebrick", ["z"] = 13, ["param2"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "default:stonebrick", ["z"] = 13, ["param2"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "default:stonebrick", ["z"] = 13, ["param2"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "default:stonebrick", ["z"] = 13, ["param2"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "default:stonebrick", ["z"] = 13, ["param2"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "default:stonebrick", ["z"] = 13, ["param2"] = 0}, {["y"] = 4, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 13, ["param2"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "default:pine_wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 5, ["x"] = 6, ["name"] = "default:pine_wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 5, ["x"] = 7, ["name"] = "default:pine_wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 5, ["x"] = 8, ["name"] = "default:pine_wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 5, ["x"] = 9, ["name"] = "default:pine_wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 5, ["x"] = 10, ["name"] = "default:pine_wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 5, ["x"] = 11, ["name"] = "default:pine_wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 5, ["x"] = 12, ["name"] = "default:pine_wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "default:pine_wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "default:pine_wood", ["z"] = 13, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:silver_sand", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:silver_sand", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:silver_sand", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:silver_sand", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:silver_sand", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:silver_sand", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:silver_sand", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:junglewood", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:junglewood", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:junglewood", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:junglewood", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:junglewood", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:junglewood", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:junglewood", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:junglewood", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:junglewood", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:junglewood", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "squaresville:concrete5", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "squaresville:concrete5", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 14, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 2, ["x"] = 9, ["name"] = "default:wood", ["z"] = 14, ["param2"] = 0}, {["param2"] = 0, ["x"] = 10, ["name"] = "homedecor:nightstand_oak_two_drawers", ["z"] = 14, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,7]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,2;]list[current_player;main;0,3;8,4;]listring[]", ["infotext"] = "Two-drawer Nightstand"}}, ["y"] = 2}, {["y"] = 2, ["x"] = 11, ["name"] = "beds:bed_top", ["z"] = 14, ["param2"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "beds:bed_top", ["z"] = 14, ["param2"] = 0}, {["param2"] = 0, ["x"] = 13, ["name"] = "homedecor:nightstand_oak_two_drawers", ["z"] = 14, ["meta"] = {["inventory"] = {["main"] = {"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""}}, ["fields"] = {["formspec"] = "size[8,7]bgcolor[#080808BB;true]background[5,5;1,1;gui_formbg.png;true]listcolors[#00000069;#5A5A5A;#141318;#30434C;#FFF]list[context;main;0,0;8,2;]list[current_player;main;0,3;8,4;]listring[]", ["infotext"] = "Two-drawer Nightstand"}}, ["y"] = 2}, {["y"] = 2, ["x"] = 14, ["name"] = "default:wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 14, ["param2"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 14, ["param2"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "default:wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 3, ["x"] = 9, ["name"] = "default:wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "homedecor:oil_lamp", ["z"] = 14, ["param2"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "default:wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 14, ["param2"] = 0}, {["y"] = 3, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 14, ["param2"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "default:wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 4, ["x"] = 9, ["name"] = "default:wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "default:wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 4, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 14, ["param2"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "default:stonebrick", ["z"] = 14, ["param2"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "default:stonebrick", ["z"] = 14, ["param2"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "default:stonebrick", ["z"] = 14, ["param2"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "default:stonebrick", ["z"] = 14, ["param2"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "default:stonebrick", ["z"] = 14, ["param2"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "default:stonebrick", ["z"] = 14, ["param2"] = 0}, {["y"] = 4, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 14, ["param2"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "default:pine_wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 5, ["x"] = 6, ["name"] = "default:pine_wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 5, ["x"] = 7, ["name"] = "default:pine_wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 5, ["x"] = 8, ["name"] = "default:pine_wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 5, ["x"] = 9, ["name"] = "default:pine_wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 5, ["x"] = 10, ["name"] = "default:pine_wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 5, ["x"] = 11, ["name"] = "default:pine_wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 5, ["x"] = 12, ["name"] = "default:pine_wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "default:pine_wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "default:pine_wood", ["z"] = 14, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:silver_sand", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:junglewood", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:junglewood", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:junglewood", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:junglewood", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:junglewood", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:junglewood", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:junglewood", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:junglewood", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:junglewood", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:junglewood", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:junglewood", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:junglewood", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "squaresville:concrete5", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "squaresville:concrete5", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "squaresville:concrete5", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "squaresville:concrete5", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "squaresville:concrete5", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "squaresville:concrete5", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "squaresville:concrete5", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "squaresville:concrete5", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 3, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 8, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 9, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 10, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 13, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "default:acacia_tree", ["z"] = 15, ["param2"] = 1}, {["y"] = 2, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 19, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 23, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 24, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 2, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 8, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 9, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 10, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 11, ["name"] = "xpanes:pane_flat", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 12, ["name"] = "xpanes:pane_flat", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 13, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 14, ["name"] = "default:acacia_tree", ["z"] = 15, ["param2"] = 1}, {["y"] = 3, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 19, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 20, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 21, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 23, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 24, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 3, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 8, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 9, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 10, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 11, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 12, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 13, ["name"] = "default:wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 14, ["name"] = "default:acacia_tree", ["z"] = 15, ["param2"] = 1}, {["y"] = 4, ["x"] = 18, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 19, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 20, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 21, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 22, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 23, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 24, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 4, ["x"] = 25, ["name"] = "default:stonebrick", ["z"] = 15, ["param2"] = 0}, {["y"] = 5, ["x"] = 3, ["name"] = "default:pine_wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 5, ["x"] = 4, ["name"] = "default:pine_wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "default:pine_wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 5, ["x"] = 6, ["name"] = "default:pine_wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 5, ["x"] = 7, ["name"] = "default:pine_wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 5, ["x"] = 8, ["name"] = "default:pine_wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 5, ["x"] = 9, ["name"] = "default:pine_wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 5, ["x"] = 10, ["name"] = "default:pine_wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 5, ["x"] = 11, ["name"] = "default:pine_wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 5, ["x"] = 12, ["name"] = "default:pine_wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 5, ["x"] = 13, ["name"] = "default:pine_wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 5, ["x"] = 14, ["name"] = "default:pine_wood", ["z"] = 15, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:silver_sand", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:junglewood", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:junglewood", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:junglewood", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:junglewood", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:junglewood", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:junglewood", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 16, ["param2"] = 0}, {["y"] = 2, ["x"] = 3, ["name"] = "default:wood", ["z"] = 16, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "homedecor:television", ["z"] = 16, ["param2"] = 2}, {["y"] = 2, ["x"] = 8, ["name"] = "default:wood", ["z"] = 16, ["param2"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "default:fence_wood", ["z"] = 16, ["param2"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "default:wood", ["z"] = 16, ["param2"] = 0}, {["y"] = 3, ["x"] = 8, ["name"] = "xpanes:pane_flat", ["z"] = 16, ["param2"] = 1}, {["y"] = 4, ["x"] = 3, ["name"] = "default:wood", ["z"] = 16, ["param2"] = 0}, {["y"] = 4, ["x"] = 8, ["name"] = "default:wood", ["z"] = 16, ["param2"] = 0}, {["y"] = 5, ["x"] = 3, ["name"] = "default:pine_wood", ["z"] = 16, ["param2"] = 0}, {["y"] = 5, ["x"] = 4, ["name"] = "default:pine_wood", ["z"] = 16, ["param2"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "default:pine_wood", ["z"] = 16, ["param2"] = 0}, {["y"] = 5, ["x"] = 6, ["name"] = "default:pine_wood", ["z"] = 16, ["param2"] = 0}, {["y"] = 5, ["x"] = 7, ["name"] = "default:pine_wood", ["z"] = 16, ["param2"] = 0}, {["y"] = 5, ["x"] = 8, ["name"] = "default:pine_wood", ["z"] = 16, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:silver_sand", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:junglewood", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:junglewood", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:junglewood", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:junglewood", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:junglewood", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:junglewood", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 17, ["param2"] = 0}, {["y"] = 2, ["x"] = 3, ["name"] = "default:wood", ["z"] = 17, ["param2"] = 0}, {["y"] = 2, ["x"] = 8, ["name"] = "default:wood", ["z"] = 17, ["param2"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "default:fence_wood", ["z"] = 17, ["param2"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "xpanes:pane_flat", ["z"] = 17, ["param2"] = 3}, {["y"] = 3, ["x"] = 8, ["name"] = "xpanes:pane_flat", ["z"] = 17, ["param2"] = 1}, {["y"] = 4, ["x"] = 3, ["name"] = "default:wood", ["z"] = 17, ["param2"] = 0}, {["y"] = 4, ["x"] = 8, ["name"] = "default:wood", ["z"] = 17, ["param2"] = 0}, {["y"] = 5, ["x"] = 3, ["name"] = "default:pine_wood", ["z"] = 17, ["param2"] = 0}, {["y"] = 5, ["x"] = 4, ["name"] = "default:pine_wood", ["z"] = 17, ["param2"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "default:pine_wood", ["z"] = 17, ["param2"] = 0}, {["y"] = 5, ["x"] = 6, ["name"] = "default:pine_wood", ["z"] = 17, ["param2"] = 0}, {["y"] = 5, ["x"] = 7, ["name"] = "default:pine_wood", ["z"] = 17, ["param2"] = 0}, {["y"] = 5, ["x"] = 8, ["name"] = "default:pine_wood", ["z"] = 17, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:stone", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:stone", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:stone", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:silver_sand", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:silver_sand", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:junglewood", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:junglewood", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:junglewood", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:junglewood", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:junglewood", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:junglewood", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:water_source", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 18, ["param2"] = 0}, {["y"] = 2, ["x"] = 3, ["name"] = "default:wood", ["z"] = 18, ["param2"] = 0}, {["y"] = 2, ["x"] = 8, ["name"] = "default:wood", ["z"] = 18, ["param2"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "default:fence_wood", ["z"] = 18, ["param2"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "xpanes:pane_flat", ["z"] = 18, ["param2"] = 1}, {["y"] = 3, ["x"] = 8, ["name"] = "xpanes:pane_flat", ["z"] = 18, ["param2"] = 1}, {["y"] = 4, ["x"] = 3, ["name"] = "default:wood", ["z"] = 18, ["param2"] = 0}, {["y"] = 4, ["x"] = 8, ["name"] = "default:wood", ["z"] = 18, ["param2"] = 0}, {["y"] = 5, ["x"] = 3, ["name"] = "default:pine_wood", ["z"] = 18, ["param2"] = 0}, {["y"] = 5, ["x"] = 4, ["name"] = "default:pine_wood", ["z"] = 18, ["param2"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "default:pine_wood", ["z"] = 18, ["param2"] = 0}, {["y"] = 5, ["x"] = 6, ["name"] = "default:pine_wood", ["z"] = 18, ["param2"] = 0}, {["y"] = 5, ["x"] = 7, ["name"] = "default:pine_wood", ["z"] = 18, ["param2"] = 0}, {["y"] = 5, ["x"] = 8, ["name"] = "default:pine_wood", ["z"] = 18, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:stone", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:stone", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:stone", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:stone", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:stone", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:stone", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:gravel", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:junglewood", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:junglewood", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:junglewood", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:junglewood", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:junglewood", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:junglewood", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 19, ["param2"] = 0}, {["y"] = 2, ["x"] = 3, ["name"] = "default:wood", ["z"] = 19, ["param2"] = 0}, {["param2"] = 0, ["x"] = 4, ["name"] = "homedecor:standing_lamp_off", ["z"] = 19, ["meta"] = {["inventory"] = {}, ["fields"] = {["palette"] = "ext"}}, ["y"] = 2}, {["y"] = 2, ["x"] = 5, ["name"] = "lrfurn:longsofa", ["z"] = 19, ["param2"] = 4}, {["y"] = 2, ["x"] = 8, ["name"] = "default:wood", ["z"] = 19, ["param2"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "default:fence_wood", ["z"] = 19, ["param2"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "default:wood", ["z"] = 19, ["param2"] = 0}, {["y"] = 3, ["x"] = 8, ["name"] = "default:wood", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "default:wood", ["z"] = 19, ["param2"] = 0}, {["y"] = 4, ["x"] = 8, ["name"] = "default:wood", ["z"] = 19, ["param2"] = 0}, {["y"] = 5, ["x"] = 3, ["name"] = "default:pine_wood", ["z"] = 19, ["param2"] = 0}, {["y"] = 5, ["x"] = 4, ["name"] = "default:pine_wood", ["z"] = 19, ["param2"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "default:pine_wood", ["z"] = 19, ["param2"] = 0}, {["y"] = 5, ["x"] = 6, ["name"] = "default:pine_wood", ["z"] = 19, ["param2"] = 0}, {["y"] = 5, ["x"] = 7, ["name"] = "default:pine_wood", ["z"] = 19, ["param2"] = 0}, {["y"] = 5, ["x"] = 8, ["name"] = "default:pine_wood", ["z"] = 19, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:stone", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:stone", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:stone", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:stone", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:silver_sand", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:gravel", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:junglewood", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:junglewood", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:junglewood", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:junglewood", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:junglewood", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:junglewood", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 20, ["param2"] = 0}, {["y"] = 2, ["x"] = 3, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 2, ["x"] = 4, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 2, ["x"] = 5, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 2, ["x"] = 6, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 2, ["x"] = 7, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 2, ["x"] = 8, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "default:fence_wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 3, ["x"] = 3, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 3, ["x"] = 4, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 3, ["x"] = 5, ["name"] = "xpanes:pane_flat", ["z"] = 20, ["param2"] = 0}, {["y"] = 3, ["x"] = 6, ["name"] = "xpanes:pane_flat", ["z"] = 20, ["param2"] = 0}, {["y"] = 3, ["x"] = 7, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 3, ["x"] = 8, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 4, ["x"] = 3, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 4, ["x"] = 4, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 4, ["x"] = 5, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 4, ["x"] = 6, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 4, ["x"] = 7, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 4, ["x"] = 8, ["name"] = "default:wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 5, ["x"] = 3, ["name"] = "default:pine_wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 5, ["x"] = 4, ["name"] = "default:pine_wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 5, ["x"] = 5, ["name"] = "default:pine_wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 5, ["x"] = 6, ["name"] = "default:pine_wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 5, ["x"] = 7, ["name"] = "default:pine_wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 5, ["x"] = 8, ["name"] = "default:pine_wood", ["z"] = 20, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:stone", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:stone", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:stone", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:silver_sand", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:silver_sand", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:gravel", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 21, ["param2"] = 0}, {["y"] = 2, ["x"] = 9, ["name"] = "default:fence_wood", ["z"] = 21, ["param2"] = 0}, {["y"] = 2, ["x"] = 10, ["name"] = "default:fence_wood", ["z"] = 21, ["param2"] = 0}, {["y"] = 2, ["x"] = 11, ["name"] = "default:fence_wood", ["z"] = 21, ["param2"] = 0}, {["y"] = 2, ["x"] = 12, ["name"] = "default:fence_wood", ["z"] = 21, ["param2"] = 0}, {["y"] = 2, ["x"] = 13, ["name"] = "default:fence_wood", ["z"] = 21, ["param2"] = 0}, {["y"] = 2, ["x"] = 14, ["name"] = "default:fence_wood", ["z"] = 21, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:stone", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:stone", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:stone", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:gravel", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:dirt", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:silver_sand", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:silver_sand", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:gravel", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 22, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:silver_sand", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:stone", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:stone", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:stone", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:stone", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:gravel", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:gravel", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:gravel", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:silver_sand", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:silver_sand", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:gravel", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 23, ["param2"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "default:pine_wood", ["z"] = 23, ["param2"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "stairs:stair_pine_wood", ["z"] = 23, ["param2"] = 1}, {["y"] = 2, ["x"] = 19, ["name"] = "stairs:stair_pine_wood", ["z"] = 23, ["param2"] = 1}, {["y"] = 2, ["x"] = 20, ["name"] = "stairs:stair_pine_wood", ["z"] = 23, ["param2"] = 1}, {["y"] = 2, ["x"] = 21, ["name"] = "stairs:stair_pine_wood", ["z"] = 23, ["param2"] = 1}, {["y"] = 2, ["x"] = 22, ["name"] = "stairs:stair_pine_wood", ["z"] = 23, ["param2"] = 1}, {["y"] = 2, ["x"] = 23, ["name"] = "default:pine_wood", ["z"] = 23, ["param2"] = 0}, {["y"] = 3, ["x"] = 17, ["name"] = "default:mese_post_light", ["z"] = 23, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:stone", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:stone", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:stone", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:stone", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:stone", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:stone", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:stone", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:stone", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 24, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:gravel", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:pine_wood", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:pine_wood", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:pine_wood", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:pine_wood", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:pine_wood", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 24, ["param2"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "stairs:stair_pine_wood", ["z"] = 24, ["param2"] = 2}, {["y"] = 2, ["x"] = 18, ["name"] = "default:river_water_source", ["z"] = 24, ["param2"] = 0}, {["y"] = 2, ["x"] = 19, ["name"] = "default:river_water_source", ["z"] = 24, ["param2"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "default:river_water_source", ["z"] = 24, ["param2"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "default:river_water_source", ["z"] = 24, ["param2"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "default:river_water_source", ["z"] = 24, ["param2"] = 0}, {["y"] = 2, ["x"] = 23, ["name"] = "stairs:stair_pine_wood", ["z"] = 24, ["param2"] = 0}, {["y"] = 3, ["x"] = 18, ["name"] = "flowers:waterlily", ["z"] = 24, ["param2"] = 3}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:stone", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:stone", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:stone", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:stone", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:stone", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:stone", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:stone", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:gravel", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:pine_wood", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:pine_wood", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:pine_wood", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:pine_wood", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:pine_wood", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:pine_wood", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 25, ["param2"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "stairs:stair_pine_wood", ["z"] = 25, ["param2"] = 2}, {["y"] = 2, ["x"] = 18, ["name"] = "default:river_water_source", ["z"] = 25, ["param2"] = 0}, {["y"] = 2, ["x"] = 19, ["name"] = "default:river_water_source", ["z"] = 25, ["param2"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "default:river_water_source", ["z"] = 25, ["param2"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "default:river_water_source", ["z"] = 25, ["param2"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "default:river_water_source", ["z"] = 25, ["param2"] = 0}, {["y"] = 2, ["x"] = 23, ["name"] = "stairs:stair_pine_wood", ["z"] = 25, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:stone", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:stone", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:stone", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:stone", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:stone", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:stone", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:stone", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 26, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:gravel", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:pine_wood", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:pine_wood", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:pine_wood", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:pine_wood", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:pine_wood", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 26, ["param2"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "stairs:stair_pine_wood", ["z"] = 26, ["param2"] = 2}, {["y"] = 2, ["x"] = 18, ["name"] = "default:river_water_source", ["z"] = 26, ["param2"] = 0}, {["y"] = 2, ["x"] = 19, ["name"] = "default:river_water_source", ["z"] = 26, ["param2"] = 0}, {["y"] = 2, ["x"] = 20, ["name"] = "default:river_water_source", ["z"] = 26, ["param2"] = 0}, {["y"] = 2, ["x"] = 21, ["name"] = "default:river_water_source", ["z"] = 26, ["param2"] = 0}, {["y"] = 2, ["x"] = 22, ["name"] = "default:river_water_source", ["z"] = 26, ["param2"] = 0}, {["y"] = 2, ["x"] = 23, ["name"] = "stairs:stair_pine_wood", ["z"] = 26, ["param2"] = 0}, {["y"] = 3, ["x"] = 22, ["name"] = "flowers:waterlily", ["z"] = 26, ["param2"] = 1}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:stone", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:stone", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:stone", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:stone", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:stone", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:stone", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:stone", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:stone", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 2, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 3, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 4, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 5, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 6, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 7, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 8, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 9, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 10, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 11, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 12, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 13, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 14, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 15, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 16, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 17, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 18, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 19, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 20, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 21, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 22, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 23, ["name"] = "default:dirt", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 24, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 25, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 26, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 1, ["x"] = 27, ["name"] = "default:dirt_with_grass", ["z"] = 27, ["param2"] = 0}, {["y"] = 2, ["x"] = 17, ["name"] = "default:pine_wood", ["z"] = 27, ["param2"] = 0}, {["y"] = 2, ["x"] = 18, ["name"] = "stairs:stair_pine_wood", ["z"] = 27, ["param2"] = 3}, {["y"] = 2, ["x"] = 19, ["name"] = "stairs:stair_pine_wood", ["z"] = 27, ["param2"] = 3}, {["y"] = 2, ["x"] = 20, ["name"] = "stairs:stair_pine_wood", ["z"] = 27, ["param2"] = 3}, {["y"] = 2, ["x"] = 21, ["name"] = "stairs:stair_pine_wood", ["z"] = 27, ["param2"] = 3}, {["y"] = 2, ["x"] = 22, ["name"] = "stairs:stair_pine_wood", ["z"] = 27, ["param2"] = 3}, {["y"] = 2, ["x"] = 23, ["name"] = "default:pine_wood", ["z"] = 27, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:stone", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:stone", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:stone", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:stone", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:stone", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:dirt", ["z"] = 28, ["param2"] = 0}, {["y"] = 0, ["x"] = 0, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 1, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 2, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 3, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 4, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 5, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 6, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 7, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 8, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 9, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 10, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 11, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 12, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 13, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 14, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 15, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 16, ["name"] = "default:stone", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 17, ["name"] = "default:stone", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 18, ["name"] = "default:stone", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 19, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 20, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 21, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 22, ["name"] = "default:dirt", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 23, ["name"] = "default:stone", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 24, ["name"] = "default:stone", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 25, ["name"] = "default:stone", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 26, ["name"] = "default:stone", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 27, ["name"] = "default:stone", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 28, ["name"] = "default:stone", ["z"] = 29, ["param2"] = 0}, {["y"] = 0, ["x"] = 29, ["name"] = "default:stone", ["z"] = 29, ["param2"] = 0}} \ No newline at end of file diff --git a/schematics/pine_tree2.mts b/schematics/pine_tree2.mts new file mode 100644 index 0000000000000000000000000000000000000000..715431e5723da08f52c02b1456ea4cbd308928d9 GIT binary patch literal 183 zcmeYb3HD`RW?*IDXJGwTS6BD%-#;J*QU8I$%!!#r4D!W=rHMtU#buc}IjL3!nR%)4 zd8w%>IjP0*i8&?lh75u!scDI&IVBLelA_eqiaE&%3m6OzDQ->GEEP36>0ufvkf1dA zC`YQJPg>J#pIthKLZ`IL<{s`63g>m$b*udS{k^qEias`1|Cji8H~Gi+_wt4@Y;E-w d9rXenVLlVQL&G03hw!WpbWmns@O>P!8UPIWOuhgB literal 0 HcmV?d00001 diff --git a/schematics/pine_tree3.mts b/schematics/pine_tree3.mts new file mode 100644 index 0000000000000000000000000000000000000000..4f614030950314819535b32350089f7710b0c03c GIT binary patch literal 183 zcmeYb3HD`RW?*IDXJGwTS6BD%-#;J*QU8I$%!!#r4D!W=rHMtU#buc}IjL3!nR%)4 zd8w%>IjP0*i8&?lMht=}scDI&IVBLelA_eqiaE&%3m6OzDQ->GEEP36>0ufvkf1dA zC`YQJPg>J#pIthKLZ`IL<{s`63g>m$b*udS{k^qEias`1|Cji8H~Gi+_wt4@Y;E-w d9rXenVLlVQL&G03hw!WpbWmns@O>P!8UPJ$OuqmC literal 0 HcmV?d00001 diff --git a/schematics/pine_tree4.mts b/schematics/pine_tree4.mts new file mode 100644 index 0000000000000000000000000000000000000000..d5943c7eae7b107b63b9e409ab79f43d4ae86afc GIT binary patch literal 183 zcmeYb3HD`RW?*IDXJGwTS6BD%-#;J*QU8I$%!!#r4D!W=rHMtU#buc}IjL3!nR%)4 zd8w%>IjP0*i8&?l#tecfscDI&IVBLelA_eqiaE&%3m6OzDQ->GEEP36>0ufvkf1dA zC`YQJPg>J#pIthKLZ`IL<{s`63g>m$b*udS{k^qEias`1|Cji8H~Gi+_wt4@Y;E-w d9rXenVLlVQL&G03hw!WpbWmns@O>P!8UPLBOuzsD literal 0 HcmV?d00001 diff --git a/settingtypes.txt b/settingtypes.txt new file mode 100644 index 0000000..10a2c1b --- /dev/null +++ b/settingtypes.txt @@ -0,0 +1,21 @@ +# Reset to remove lights (for less cpu load). +squaresville_light_panels (Lighting Panels) bool true + +# The degree of neglect and damage to inflict on the city. +# This varies from one to ten. +squaresville_desolation (Desolation) int 0 + +# The chance (in ten) that a given lot will be empty, +# rather than occupied by a building. +squaresville_vacancies (Vacancies) int 0 + +# Make Squaresville the main world, rather than +# using a standard mapgen. +squaresville_single_node (Single Node) bool false + +# Make Squaresville ruins the main world, rather than +# using a standard mapgen. +squaresville_single_node_ruin (Single Node Ruin) bool false + +# Don't generate roads or buildings. +squaresville_no_buildings (No Buildings) bool false diff --git a/textures/caverealms_thin_ice.png b/textures/caverealms_thin_ice.png new file mode 100644 index 0000000000000000000000000000000000000000..b16036d9f81eef29b248be25e39a2c3fb39c868b GIT binary patch literal 679 zcmV;Y0$BZtP)y2jhcm!MXENX6;v)5a8Vc6MX8V0NAB;0au?&w zH#28)=Am(UnXPU6w7R{`mdFD6gKt);d`)j|vZ-yKXIEFbZ-Ko;uZXRYPh@NG^MNys zt~Lg;{Tx7-)eR9X$VYkicSE>@9)_FJ0zj! zdB+~U&@}h*#S}}>VwFBUWgjqH8&nZ^jE+d?V|M`f?e^J&g?D|O`Fx-Qt3JR8mScSo zHYsdYVjy~v?`K^A0q@puxN%8tNJw&DUcOuS1K4!Y5iAp8bL^$T7vdy2^r0hglc0mo z#>GExeHtR$NPCUNKC;m}fU zt+pS)I?;9vRv1#zzq{MHu+W#w6uEeO%!=qD?+f`TX2Z;7Rz5n^cIx%RObmLX(M|(v zR4N;b0hVZ^$h$zF1>!{pSOR1zhqpHzZhJ7$nx_Uvk1u;X8c?%dUyn*I(yzb;6+@R` zYQd<%mpx%rK*uHqA(ef!OVDOLF{!BPb=2n&T>M;)E< z;{Si=z9x8}%d4*^pdo}{zu#Zjo^p>hY;-yd0K(k?kaTxRF>F!*!UwR>lRCmHwx7=r z0L^4(O&LA_NCLonbQIc$wIrohEbLGKiHzdzs+pY;le!tuT=gISb10vR-3$OTNh%RO zB*n|n+JObZl2^rRD#i$RcL&KOz?U0mtjWyG%-%i<+PgmPPBSxD2`)WF7u#J%uS4a& zTV_5c0Z=nazfzgW`yhpGd8OIiNrqBy#{sNAl4k@n0bGx{J6mbQ7_~<6xqJBt;5?$u z=(eaqR8n(4Q&-;4qr9s5QQ}^lCE1`6)_M)k6r0Iqgevthjp+3w$D}&56$#V%6z1C0SQf{e6*CfT|SQZ_$5yV z+<$&!baQ__=^tPD-_r33a)O`n%M1Pe!~m*7*zGUiaUqhu~ls9Z+}U1UmE#(E=ICU?GX} zK{U}ZkOt5UERv=pCQYveeTQzSK`T7jqzWpe1JceaVSs@Uz|#KghQ;27QwvAL5R6k~ z2@qo^A~cHgyzkM)Oy@<7&A zvH}|tdS0|F2E7qJtOT?+m87wSyxnve+DL<@Kw+?&H5)NG5L3c7uuEhEYT9Be@t_dG zU@dxuRw%$#*ae6H-A!wcMs`2qt5Ewf374Q@tt;hgmUTb3bwaP+A}Zu9PMY7Fdh=fRT?w-LmITO9@cuzo(01NW|f{S8cft8Hlids6Voih3k@^UThVM`oZ7|ZuRB! z76hy3KYYQ-vRv-q((2tJP1SQ2IVSJR5;Vjzy6W(!wJH-sr{;|No`^L=k2+bxUYcP(>fOyyke>b{3z3zO$>x9)`0LxN9F zJ>T-8LvQC-u^9rNe%=nzJ$}U^LbT(w%ndcMk6%7!?R~&daOe7yLgiZ)&bQ3JGm0J- zeHtgdfaL^-Ad_-=Q<%c`&->@h)xORY!l9Znjb~LH_XS6W2L|gE1@>KyX7mxbx~GTf uLSq}lp8Ug#p8FqL@ij1TfY5%%7{=48MGYUf6@LT<1%s!npUXO@geCx@@QG*u literal 0 HcmV?d00001 diff --git a/textures/squaresville_black_shrub.png b/textures/squaresville_black_shrub.png new file mode 100644 index 0000000000000000000000000000000000000000..5a8afefea3f52a8aff842c49fbead1e6a343f069 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmPtn=q3adz0MS{Xn5|PZ!4!i_^&o609kVoQ7BbUooE; z5&Uu0WP#wn`Wgy<=O-;c%;R{y;f(qVp_sNuS9->&fXle-EfRHgkHto+Xn>0stby^z<|f27@dbjWT@2CCn#W zeFOj;00lrw{Y}$30Hp2_{*UWrlxVYF$M7sX|{%>BqcyVzunKT1P z0+7@9a&mH5R#q0%>-B8!-n}3q5D`X3Mld=$IwOyWo<>1aQxgCv2M-0>^(|oF{tEsE2i%TRDm<1hk zBSqDeY2Nijv0TlH}t!u8QNh6-4Avg;@aDIyySEdB<3WOP+F{+wIO0MNvOEI2Zwd^78WXXf*nk zAP7FY-G0*V_rJG%`SORAm6hQ|ixx!~V=*EU4j(>TedNfIZSi>AT~Sf-uMHbE1bCjG z=6U{MOH0cTV{8)h;2%T;Q50>(#l=p|p0%Z=<&E|0*H3voo+*dJ@z3qsx4#((1a=V7 zcT_9U*49?-bUOPi77IC@PRh^E?-xb!t+KMR*8_ookBE$!wL5LO34lvYtj{x)EL*m0 zSz%*iW8T2PfWN1w=SQ(v%w1Ge^kr#jX&^5zZzMZAdngnNecsj8m4E;K{a51g__q~B z(Zyo1k7ZfDZZetfG&D4fZ``efvfPx7*Fe#>M~u1qB6?q9_Sjmfi7q{MB$c+y@}+cDpy4 z&E^Wm*of6?l>kiS=jV?FgTW~xvQJG-N#o<=4|$$93W8wgdH#!3Ds?3ukAIQjMJW=A zc<$c4YYPMdp8!apv$K=a!h(qM>+9=Z_jo+l06YTlnb+(6ps}&>-5WP<{EUcJoj7q~ zTSZ01m6DQ@WK~sFsJ6EDPbDQKTLJh1RNHK}6(*Buwr=@#0KW!sxTK_HDF6s+xl}R1 zh=@{xAf&Rhv$;efAu5U@8VrVbO-;>-RjXG08Gx&|xA(`x!^5vwtyW!4P0dHgjvafO zF?K18fL;nTr$!IgYNF`2X%FI(*Qp8`FtNsk|deUWFp7dL@Sz8#s!Snpj7c5xNr1k)7YisLI)~s360N`sGuKZhJVd3K~Teke=>eZ{S z5mBy&ZpeT&o2~3OH#hUbo;`b%wzf6^!0z3`0Lo%nD^SXYqdi|Lt=At^CJM=Dn0cirHBKdFve!>fVXblQZl=rj)+7ea-2GK z%A`GPx7$UB!?7egJG&}3H+P-a>wVQ?u^i?&?oLil&YiVu*Z!unvvUOz+1uOOpQ-s8 zPwZa74scS62%eZT7ny$Gxf3>F>?wgx8Z~iF}6;xDI6am;RisA=8 zpYL*0Q`2kd_MI;AD$f}uOePaE7z|Io`50p}N~o@)Sw7jF0E#(|TVyhsoK~wf zd28|F#Q{ymTLnQd007VP(R4Tg*y`%)LK=ZAv*8Iugp6>owzf8Q^ypDcOiZND>7D?_ z{IH{=<9(mc*QaG7iefC4N}XYh<=ne>PdRhuOy%+8$8DidNG>lgA10zP#+Z^BcE;GO z9-wpQ&LJEQXMViu6h*Q0_V$WIl*JgEsbHn0rMCwM2Y-=BB#Lj}zP)JY&Yhcxh%YQG z{LJI=NB|N<^q+Jnw4M;O@zDOyaMfb~L0Oh@sA-U&_ zZ(0ZoSy@@e^73;2dCbn9J_z|p0<}p* zK~y-)jgvn}TTv9ozx(cadAW)8na~;|_$Nb*^eG}d&>)FHBw7`kAs{$u>rf{Lr%p~? zTa+qA>`>}lFttwYV7n={Iw_?P4K7-W2BH{)o-V!`2cc)W2fp7u=YD(_C@Ug@rfJeN zO&0(xEG!5jl0Kgg|68K`zOr821!w>e2m~CF0MJiFbM5WzI6Xb}5Yc0$6gk?-$w?d@ z9^Onzr_-=)8_Ubf!teKMXJ==jd_Lb;S6A1WOeQ1D{98(S)z;RA?d@$jHa2!eL;%3I zR$*r3^La3{!OSueiTrA9ZG8#=O-)VY=&Gx$1pu6!oZP^sX~HlJdEM#&0zwF8=BkmA z5e)#=*4AnPJiH#}0)X@Lb8*W&x7+QqEUN+ldU|?}>g(&@WipvQX0Bl7D!1F6vu*oh zJRYB5W>2|s1mF>X3;+lrX6EPTKP)XRy}!7)xEBlt_p;e+_Tb>)XQ5E=mP(~hLqkKA zi;Ih2(c9ar0g%aLa@a78IgiKlB9%)0*xTD{7#tk@*4*5DB&B?*l$v+el~PIoZ)ay` zYY~gZ1OP1>jizkdUJivqfA;tHA52eA$8=riTrM~4fL^axS4!!+uDggR4nTutSz0(8 zHf-B|1^`o2Q=JZA7{*3lU*8vIcKdujJ(tS~0C2fn0suxwM+KM}%q*DM7#|;}Yp}=b z^}b1`(*pozySln&R##W=H#9T|W)>?eE6y`O*QPOmA^=H5s#Gcsg~Q>RmX?<98yg#+ zH#awn*=+Xp*49=*2yxELxV*f)ycMM5<6}WYQYoc~=oK?p27^IiS(ftq{m(l(I-YcQ zcTeo>?9>1d%(sJxXfz4{LMcVMt|u~?Ol=~O5CEKj4FKrh-Q5iUK(Sc7^K<=6*ZTT8 mG)>b?)6~mFjg5_(bN&l+mgply-g~qF0000V`@p-rnRlukkm^FwIyJyMo?Oyp$lwT*|O{kyUU)-j1QzuNO-WZHOB1k zWoG`#H{UnkWq>3}k|g=R(-EFubAD-0^}pxbj77YFnz7;sO68;rPa50~caDiwjcwr~GWk zRxe?e1#2Y^-&}w?Wsyr*795iFv|z@gj_9n<9hn$&PoM0$KeD1DZdw?*5k{_Rj{;bV zN5TRC@S+69D5a*!@rGd^l%6S z;Iu6F@}I#!h@_;Nw@T32uz6Ri$bTjA91F&DG8_o?ow(|M^zW8nX#X=}&4-5!0I2n3 z6l~9Pb!XV*O(ta?fg>p;no2H*mS9jCbJ^tagk{aUm6Q(QlU;>)p?3-bM+S0L`$%TC zr#!w8#DG881po(kRFiy%0?VS1R24)J!E}A~^@0GwZigNTBOdUZUE95+qOgF}e|F0E zcI^YaAc-3zvG}4YiMES@5PPUFkBs`~43Xo!_iF0NZAZ`gZe`$$rfP3~y7Q8yCpcb` z@y*qlu6KsU_CHqWAzx3;vD6mQq z8){5g)DUhO#0)db(i01B4gS{hN@dZTC7LP&K(<}J?THw8wwZ7|&j6I2eRA82vX=SC z*wnROUaQ>_OL4hdtKa|p0swT>-M4D+-p2JWy4>CQkH)ljPd&e$erk6ew?^o0T0erO p66YQHBMvkctXY#JNs{D0#b3v;h9+sL7c&3=002ovPDHLkV1lFw1mpk! literal 0 HcmV?d00001 diff --git a/textures/squaresville_ceiling.png b/textures/squaresville_ceiling.png new file mode 100644 index 0000000000000000000000000000000000000000..185970c4906987f2387abc2f3d5572019e4ae021 GIT binary patch literal 2117 zcmV-L2)g%)P)|j0yfs(kbnQTe`c{l_(ZfInfUBPLMg`a zd_p+y>mn113LrEyQsDa>NG1rh)*ur|tX6!^&-aFiKsuR1zkZlA*^eECBr~a2$w>(fH?=X?L5D} zh)B$=P}_$0o5&z;M@2AI=1A`Q!is??;X!K+Q2`Vc!RJ5(B7$OyB#0KwjOospgHj4( zP6RNk#O!o;sue5|d^&-krBDPig6n*<9S_EI+P-t1HzIId7fC`URtoNc0Hp{dcmy#f z?v98MF$s4NAqA44_l^`}I#{@qnWQ_fzy85}y-9(`>&0~sM1eMi zrIaNuk<|(jL=>}vX~84#*#Rg;Nm#nbq&8ze_RswkAu%&!d%l?CUQgzZ79-P`^M=|e zs(;iiz?g$TQG!|<(W~ zh>{3%43H%rGRbsmZQQ+6%}CZK1GFfaK?1cl5Fir~FeykW0I0y6ojDvEqhr?ScSp41 z5io{v0n56l{wPOx|(3fFlv$Bl|o%&=P5fwtO5g4tqCCTy<_6H#hw zs3xkF=@Tn$^=>W^iU{t5**j^96=66$USH&Jx)0`cQ)g%2KrZB!Mw*5_tdoP^>^g%)m?`gBg>Er0x4^kq90^9|Hv< zgXxZs0U1b9Ue71{wv!1e2(=jd<3VdX*L5N)oaY;lV9sFl&T%}bwXyF9K~hRxHx+2L zE}=!RZ5#Mx+crk;s47;J+A5_ORupR+eK>PY?CuxEgl*f{TA>tW^v?77*iDN4j-&Pn)W+czN5VihaOoRjzYgS(Tt zAfl>^=e1&1s9OV{+}8~R(}OuCYK_QTyhj-KMP%YJnGx$+F2wKKMyngw&o_dguji9e zAi@{(f&JK*@tDzjC*1k@dGr4Lo4W11UcVS)a-S!q82x&anP{n~2*r%>SnNoceIN-b z|3B7se^IPp=XoK3sxjQT-fv#77fDh|p|wUv@cMdDR0vP{^~1J5csw42&(DYsOoGub z%#5}*B7!+5ZQD^Ri!r6FiBKWjG1WpJH<^K1;q~<*BUu^20jRYis`wn38DYltezP4r z{a(n1by%s5ex97?O)=&9`U_(6`}>Dd3ZfvQ6j3M@OAz8>qXt*nxoarZ9-;O>}J#^}rONjVK+rL{&xlHuIF6A_ph#f+ctpJhr3J||-gd`x0?N-3DA zP!KX=xgy{`QFk&vvubsTOc#8<-|zKXtSA<-&}y|(#E5Y2>mnjJjwkMeBtVo>Do9eS zE*B*NHN!n9wLt{M8nqhV-@n<92lB^o79o$;aM3lgBtjsPJYO&F`-Fh!b7%DHqoskW zBC13rB8iBQG0_#T5-ZBMZ~C0L5B~dK|Kd0vh%E2`w5?H!F*7N}$cQzL_XpSSH*-vq zWQ>j$U7RSZg=Q5I@bP~hQ?Me1m`(~na-SE+0jmMxR(+`R=}RrRH>0jk;~b z-PxZz8IGD!WCa+H#C@Q}xUV-N%J=s-tyW^*qzGhSDM?5I!nW@mj|ca8(eIn_c~YN) zZQJ?&{TnUH)*2qpdH(SF`nAMZ6p_N5ox6XgBZV;r)z%n4+D@i3N&1}27m{TbNHY35 zFjzf0j)Pil`M|t+ydJbq%<9AW`t^(Jd{gR9j2pG35fNEALWF%knB%5c#eLH68F~S39?jZ9o2iYL1Q}pq~*74}47O$Is_* z_EzcrUe-D%ujj%0`-lB;0J(ZvDsyz|ChYsp=wmG`pX{I_^fBq9qbekD_l}96;f~h& z2P)|5ePp7N3%}x2O`gwV<+viuxr|EGP!%4}2St^;PsVgaWtG^BZQnnss1ZIHV^UO^ z(@`zPb-q_P&_aH8y9ob7Kp$((0(hS%B8tz>)*5{}S{mVNBUV+8$AjZ|fC&A*xv!h| zd2)V#Q|r$2^S_uy#C-%wsqRO#v%o()L#&qnf6;dkKb#a{+ vkLL>rYOO>mWCYvx1q33>ygODK+qUz+r{Z|zxHPl_00000NkvXXu0mjfesK9D literal 0 HcmV?d00001 diff --git a/textures/squaresville_cracked_stone.png b/textures/squaresville_cracked_stone.png new file mode 100644 index 0000000000000000000000000000000000000000..3873b68c2bbe9f477f6f75c25d277e1724e02310 GIT binary patch literal 718 zcmV;<0x|uGP)7z5UPnvW|Dum*80}h zgH)lE;x#;vdHMXA{;iR*JMh_NO-U2kI7H!S=22C~X`&j-z8`qFTp&`IS;I|Md{$*? zg+((%OGaFvQK4vMKf;s~tG0nEY*s70ChDwZ65&D2_>v37fhtU6BE%U3iop`J(6o^* zCFaheRp_ckWTKYB*5H?+-+u2km1QLE66ncv^O#i?M8Av#N6mDX8~XAUtQ;~bhY zc7Hf`g9qvV{~ z_Y=4MKrMxNj8rLf6^2~sMZtT_cDvO!IHn>zYCK{rY77D8$ICZ-|IIm~mFs=SpI28b z+XhrQK6!w34j)2bfl!R4!?8yA;c~~t`5DijKH=3buK`%k=Y03{oP`m37rDBfSOkMV zX#(R^X@cd~H#>?5+p{l-T6uN33WHChW*_g##kKSouwNSM&X|^Q&qVcGmSHN6a`KjPnR zGqBHQk=JY8@g#uf$H&)4)y32b*Kie{Ossf#e*g6O5s@3DKRv&H+W&>#K`FNV|M&c9 zIjwD9xA%uhM{;8lbHPytJ4>}5iG*Xa%r35v-|wFh*m_<-Eol+g-3bRpxf$-474Q_ zK~z}7wU@DL6hRcmf4iiRFqkSuj=@eQws)jY`kb}@z!^ovBKFy|V)`W4*ytZ{q?L=E zpnI*3AQ2fZML;l&0gG@pZ)I6#_x3iM2Mf2eyYs&H-Z$TS2Y}IPY_u9v!;Ds4qgBd+ zX0$pqT1|`VF@SY`3;57v6jJ>bMTABCR(2Vk9_09S&xP3N1T z$U_+b7y!enO$F%4Xmwa8?Z9c(dr{!SSy{Sr?@WOe;FWcLza;Vu@P5@^abRsyRR$sI zZ@D^UX$PWt&H)dldv zI{$9bGFD~aA#e{!fhz&91{_=Glft_{f!9W>`*kC(YP$e{;CorO6)@d-LUa=wiG~#Q;}kGL@JSN@b9+R9 z*n3jzq13wroYx_AReBF=I6gC4U55r7qt#JyD2WyXaR&U50VdQVGAZB9Wo(owsFY(U z`cbNcRraP(+rHc;;v~vFAIQ%GxlgR~QIUjElTrYmfDMT*snNc>l99`7KFBnu34pG2 zySoj(9m{E01A5l^No=(G(}0tAnv8D3ooy-EN2Aqv3Ah$!ZWqsJi4B48O@%^yOpI2m zz|%M<9BJ7Zl_QuMtx{p|RSTl^4EPpX=l4YeGC(0Fvj6}907*qoM6N<$f}+A~(f|Me literal 0 HcmV?d00001 diff --git a/textures/squaresville_floor.png b/textures/squaresville_floor.png new file mode 100644 index 0000000000000000000000000000000000000000..b998af356445bd68244e1f3fa9ba114020ba7838 GIT binary patch literal 971 zcmV;+12p`JP)n`cr1d% zhX4O3{(=Q4M8Wa+aTch2%Z<4sjiO{c{iv?$?u56uw{g8*ky3(QV+@Qj001c^oX=;x zzP_TAf)K)Tw)YMI2qEBdx!`m<&3Ak6)7BVceorak{rw$w90zjFFf+s$r*i;ktmX{ zLbOG+cuqM0;J*O0HoK_lSjno6l@I*XfHX0+X$rH}STpy?=ozmTX32zT!v{G_;OnfA z`RJ9&JVUb42^COlU4GYuG%)iJ(g|y>XlS5x<^!#@&H(5z9`olu{;qwbq5WJa;;s77oxk?Xf(^all$@IF93&UX=&TxYjz)vJC8) zdWJ+)1?hRB(^~scfjU*#wdHz}ve$c=GH9ZxTp&M)RE+V5geotET_xwcn`g9^jYQS= zH8|d8_EQ29YIo7dUjs?iL+4(azMB#u0EoMp?OUd2yKk*ZGA+lh4E~wqmN_7c{aD)LKzWK`CXn;@!lgaVGG8C~;8P z!^6X(bxP9nqLhNi$H#>Wy1sFKj4|-^^t22sCa5I}A>i)r4yFx7H(Q-p9!_ng48(6r zyTwG`rz(u|Tj&2yg1bvg<<;Z+zH&RQh_^p?L>O9dBnV)JtD>dd@?rxO-^`Fs?be75d zOS`RD9corIs?W7!YC`butE tazTu7?u4H8ymHQy^*#~bWxu|@@DGupraR-NTl@e3002ovPDHLkV1kE<-yr}1 literal 0 HcmV?d00001 diff --git a/textures/squaresville_fur_frond.png b/textures/squaresville_fur_frond.png new file mode 100644 index 0000000000000000000000000000000000000000..aae5949d03ca3d60ebfeb7e6013e339cd4ae3626 GIT binary patch literal 1373 zcmV-j1)}sh&kt#+A5rmLs1t%dg{>Rw&-t%|wwJ1(RK?e=Z>~a@N-}>}@OFv2a-IG9-rtP=S zeRX`~RXnlP=4%8$Ayw}oevFEd$8(r3s8U2j#e7KQ0-+XgBSgb7R0oJ7q7_KTEDtF1 zl*90G`1F$pxMz*yA#|VjZ}HJiYWd-ve0=wsoxORV_4+-M-lKFI%6N+EEwBwX3#vjM zg*+>DD~LG54m1i{J0Ut%Em(GnDH@D28bm{4N0C3{@l&jQ$mRY|I_$m(ZRkYq{Om`* zYThPskH9@Dy$$6W{Vp)>4P2QA@C>mPN`W##Xa#Y{3b;AxNC}nT*{}@r-Y^qPp{gMr zDRDC*^#aV5Iv=Q84c;#qvg2LPzB}eM@9n$ukCcMKeA4Xw1@-o~6-Xixca}RlP@&sja ztOyuPdl+7Ti(|b|2IvLqV-OYc&XG#k?O-2`*a}vF5prBa#zv`{h))$kp=rkGN1N}# ze20GDFkHga8*U&d&SJM`N5z>3p>%@JLTH^b3)4$S5DbWGC)7{|h-*V@Ats?rFn3N| zI~ol^a5e7!OcJh&6Z?Fh`@1JAn?cMF0kQ z7OZz{7D6M$wL^r^f+mm&vVbb271->NaX*8@Jc13&pqRi5%sp6Mw!?h+>x5AI625K; zVQd`{D1(qM6)zys(X_aP3e^hgjSy==)R$%QX~cO2yi&5Ix_AjuXNO&I?nq&J{Gbz&0S9Ib@3Qi6<_JyUkCKcRqIr%#kp$Zqzi+UBhj%8(_YAvFz+1-E$5qwLGLbVb!E&|H12%spULYV~5pf%(X^5M$^H7*TF$3i*=N6-dB1L*`}iqz|d z)pj7R9%IcTndJ{Ly!`7U>$dpu#YEe@PtdPmhlXhgm>IEIQf6h@z+KQ5LW1eFVlK=F z#|`Q;NGFb&qBYoLtS=HrcOxjEp9t-TvJZcYL;mPwy8OK~eEmB{x5-pDyg9n-ZMsk3 zUGVE@Tq9CZ=H(`cKxhnbaxV}C)X}&!p9Wp_yG+sk*1<~`%LxbFSkz)zdC>M^2I}be#w8lIEsCCBx^dYL&-Fqw2EG7D z-H@onKqN{9?NW(AY&TBq$Bsx7~w<3(W0C4-fr)|f0KwqabXe`)yrL16CR`kuVGln8WNZrMi3`=n`i zY?Q2gLzwq8Iv0L48^yMrb}znLJHV%AxSjdB zkoo$$Nk`~hc%?E96>J8I%|P*0L8uf%tug87>7+jDjX<~MB9{zYlIQf4@HkL(y|H>b z7oMbo2V7GcfE#J1YK?$P1`fbC=G66LU{1z9e=W?~0Ad>+#Wsu^!x5ptMk=)P@wJf( zEg8cNwJzGS_BMQL(ov^)XbEhlf5UtR5iD6yYdBLg~vFdrLap0t%X5h%7w8Sgn;~- zGit_l&a~bUFbue~fnm*DP6xbq+@4RI6Fd;SFw85?Kw^ySF}xE7JP8F=MujiC#C4n* z*UIJPgaCbj*tTSegy@k^Z6rHK8$H+Oz-XSeD#?`hx$xEoEHwPQKX4-4vobB2T@?Bh zksr?qLIUUhI8$&<$0Ct)a{PUA{`kZh4VBwm2>ph0r~iKpRKnV0fShNyxm?}*Qgbz<-%X#aGY&mZ|`3){XXa30x=g9y7002ovPDHLkV1fkT B@B{z= literal 0 HcmV?d00001 diff --git a/textures/squaresville_key.png b/textures/squaresville_key.png new file mode 100644 index 0000000000000000000000000000000000000000..4f4d86c580ecf69cd6049f77e2dce93b13efe378 GIT binary patch literal 1079 zcmV-71jze|P)fD^O`0_ScbaEzE_lE2Wc9!2JjUk9VtU)bSGZeuaxWaeyJrh|@y!ny z0Gv9!ednY?oBG3}u4Tc%xZP%HZQ0X$1^^nWa_&t40Ki5%#MfHS_FeAk@jkNZfs3AC zUPH$x7e2}_Ds0Mh+Ip)J)3sYazL+5G^@W(4*5H1)7Pibxczu3YZ4w6h!w@VoS+RN* zOQlS3QU*A}fe{Yi7(h*kgn?%!L}3ZKyT2pho<0;;JV=^eI%@9Sw(&}mSXcPmt{Fww zTth=QSRgx#$TX=4cB@U9n7s5(`?=b?mI220a)i8L0>G{(N|(p1fgLVyc7-~xlq>V5 z>5MnOx?JJrdFz~ESCptGy%eoax4OlgQl$C2%} zDkj9Z7M~L0(7*`4WA%M(Ncw7>t`kbWArc%Sh6R{+OS%<>`W~3-J83z!^ z77=Pf10mqN9(Q6UHc9LmHsf{)UTs*jZfc45yex`rdNxj?gF|2c(B1p^-z~w&TP0$_ z?uZTmbw#dVL8$7O&0#OosF2MIk|j6CPp(}b19U^RJFHwu06Y%s9Z$rE2euMI2m?^j z{(9r{rqjPB68YomhV_rC0jIQKQ%h?X05sQ>{AF;sXz`Cue)HKs8q@c7t>+ih-`=^A xTOb@;yLbd^OI>$mN9?EzE;!SqNt5P3#h(abhT7*j@w5N{002ovPDHLkV1m330CNBU literal 0 HcmV?d00001 diff --git a/textures/squaresville_odd_grass_1.png b/textures/squaresville_odd_grass_1.png new file mode 100644 index 0000000000000000000000000000000000000000..a5050d238288dc05c90e2460c6f32e1a5746e263 GIT binary patch literal 619 zcmV-x0+juUP)$?z0006CNkluAq0X8AHc8kA^ZUsv_fdnF4;JaV|!+LhJ(4+q3WsV+t=^?mlllS$5fxxH4;ZF zR!AsKCN=BH4No`Esz=Fdan)XzmuMkt=K-YI(rhHe3^2B|ssaFz?wR9g7(`{x_m;ZNn=4|+0E9%3;u;B;WJ`8wHe@s(ba=WwRGlbq z-VPjxNJ8~VNhr-`A%o%SM^B#OVCob=n4;Y*mDt={-^qFn4r=#oA>Y>Va5%X2l32(> z-n;==u$^y9#^rM9`@SS>qYsAz0CqbLQxs)0qj3)vn8+RlqTcX-{&}(Ys7Z~Mvf(p)_$s_<~W*#T&w^n zrTjmoBQG`kUWQ+{l2EJ=(ee_JQ9pY2M4s-$ytUeW(0}`oJQBRAiJt%f002ovPDHLk FV1kKt6)gY& literal 0 HcmV?d00001 diff --git a/textures/squaresville_orange.png b/textures/squaresville_orange.png new file mode 100644 index 0000000000000000000000000000000000000000..a99044c8c5b467649e3e00021557d4e742a680c0 GIT binary patch literal 721 zcmV;?0xtcDP)Yj(sZvi z>p*(yQAg5b>8Wd$>30{2{9tfAhxy1Pb6=u7v4Z0}E6Q@cDyh#zBmJv4i;#c`)J+s>0wtYZdcltd&9yFM4WV0jSzmh3GWJ6wFAr~q;!~_ z06hwkAo$9w)YYD+8Qx+CHtt{ocK~9OFh2lFgQO0r6lelP>p+>?fvkWd8=q1(&VskN z*Mss1#vH_=VA|l)K=Xme171_laK4`Orv>EItu&$)w2@P)<6NnbTpQeAcp>2v9EIQu zj@tg*hZ%vnqKt#_H)$7#E{_R;8niWnRp7wR2S*;b3YA5PF+ZuD(M~-G%kA?Hy-u<9 zdWoPU8l^BUwr z^^#Qkz}F2qi?PoYg2+Ff#60nL{M*_f(vt3t+6DYKqYVLn7C-tt00000NkvXXu0mjf DZJ9}1 literal 0 HcmV?d00001 diff --git a/textures/squaresville_orchid.png b/textures/squaresville_orchid.png new file mode 100644 index 0000000000000000000000000000000000000000..5e1b699409604d9dedfaed175bea0954892ee938 GIT binary patch literal 1103 zcmV-V1hD&wP) zL#&9mt4tTKlEwW!Uq`+%<4>$4pE*47(gxKTm&z2}&meN@b3?M1NHt|Ph9v<7wUBa9 zQPU)YJBCM5k#v;BG7EUy5@usCvp=4HIo)PgiI77fF4PR??o-1%)1E1Gs6o-Kdtl3S zab2T=>Z;wyqqxw}J8*7aV$UP|;V*1D(=@y017Ro-b!fY5B%Xcid*@HbX2aqN`CQOB zvcAHLo$2SkYG?~eq?&R=vWuMhxSv5PQ*2P3@m?Zhwm)6nJl2<7vgeLpqSuohw0*ka zV>mx_>Z6AW-ZunJLEjz)|KK%luaerdXF+^sEMjSrOr1a;#RZLFQPikm%XD$*l;r4& znD$IH4@4IRCSC~K_IznD0_>I?#9`lk z2hpL*E?5PTB>`#A6moP$gieVq)5S%N8XCi5!$Gtj2{%S$!zzfFSrTr^2mc}=W4IPR z6WNXt%=V|N-ItFfFNDWKOUAF>Zu;asfryzVA(!k1=dOz1fa?|og)`pUBBT5Aks1JW zj)z~rZy*YI+Y)85%qo%&$M7gL$>0tuYKJPjEQ5%dC1D%$F1l3O&N5xb?>Z$pS|ERt zuqhkSdL*1tj}0|tBkG{-)0gP=EnMI|^I0ij7lp z^b=Bh|5X^IhMS)J$D#P%H~$kLvLxVi`62@E?Qj;{#RI?1JVuJVB;2CQM|$8SG?cK~bxa1p@Py8Q}(0mPJfb0@G`!C3%B0RFlVTU`tVutE&9 zZ~;%$?cV~(*S)=KB4q)D09-{(dGz0p;i{lL0Gkrj) V-PG%;QRDys002ovPDHLkV1ff9_Obu~ literal 0 HcmV?d00001 diff --git a/textures/squaresville_pear.png b/textures/squaresville_pear.png new file mode 100644 index 0000000000000000000000000000000000000000..1af80d54a05e600978975772b034c6724e5b6260 GIT binary patch literal 437 zcmV;m0ZRUfP)70YXVc zK~y-)?UKJs!%!53&r8ymzL>OW8wx^dwIZT|bywGRa1eDZhz>;&5y7FWgNutw=`3mo z7q^1q;_M^{f`5UF4z<6iX_D(MEu_0=JbZi{E*JPu-;{S^th{H9TU%?We!?1zS4aZ<`I-&Hw1-i96kpmxLMzzYCC6(8Gn8c0q^`C@*N zuM`}AD1l6!H0Ojcm$A0>KEoI&uwZ?ms>S1EljEaRccAIL!ca%dOcv+DiZkW8J_L7R z7_FnH`{+_&fn{_{5yOM70d^`yqe&BC)~o~;L=wow5(F!5LpSp*YEF~j{(NA88k0U% zE_LGw01pytO;68kM$CgqP>!0 fY-F-8-M`!~wWnT;LJN0J00000NkvXXu0mjf_o1@H literal 0 HcmV?d00001 diff --git a/textures/squaresville_plate_glass.png b/textures/squaresville_plate_glass.png new file mode 100644 index 0000000000000000000000000000000000000000..5061d0c20b40f6808931280a9b0943b0449b13bc GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmPNlPtf0)V})%#ehPIo-U3d7N?U_5)wWnE?_V)4B%Li z-LPoUCIP+H9Zv#ycGUlWXDun|x`wOpWMaj`laqhHfAVC?2B}X^PW~-_p_eF=w$WiD z>rOy^(d&s?fv7S= tLhRBSldzWLC22itmxZ2hy4=Rj96c)I$ztaD0e0sww6T)zMS literal 0 HcmV?d00001 diff --git a/textures/squaresville_sidewalk.png b/textures/squaresville_sidewalk.png new file mode 100644 index 0000000000000000000000000000000000000000..97cb5e16152131781c827d0f079d3d8ef4ff7885 GIT binary patch literal 1973 zcmV;m2TJ&fP)2PjDYfaO%gb-0mqLjkDAl8TQXf8zc7cW7-XfRqaFJ=z#e*L9>6x!v4SqQ`1M%7y8C zV0F6%z!*(kX;O$}AjW{z8X+n|OlWNg-c#2VZl1AKg?AG%XPUO73qB?+{G zhvOctl%?-il$pHB_WFUt?&fr5pN{O{KAP@pFnYQh4C4$tf*8SyX zieR%?@ci_Jl%bA^QUuOVNTBO`^vlZ^LU7!!Z-^-n=80~x<~&aHiv_#gj>-s1NyID> zQqlAs*#~UXaQyO_etpZ+;{&#?sif!W=|Grg?(W|5`1ups)KrxvD~(8zu4xcL@SmT4 zLi&)oySrl;22#pM({TU!kzqJ9oQ_B!WPz;~G;N2`mU#}G&PVceqFvuGjRVW&3Xn{0 zrtcPPUw^}SII&nPNTr~apzj)-8&FE(gU414`u*E?#2C1_-J-O@hZ!veDFtlZQVPT{ z;X@=5X>CKuh2?UM^A0T%N-Ip&B6LJ51r(GrXk&;mu-Pn$At6X?U%%&vAO6Xo|MV9^ z$fyq=-v8q`OjO2@a>0#fVlGH!2q{5HIOotxqNK*pGg3*UQsgi)JCCj^+&ocI;^pZJ z;$C;=t2n9l* zn--A*!3S);B;%k6tg&cgSPK}Z30*gg?u--~r4?P%a6S)6?I~HX>{>Q=?~%{XJF40+ zp7xZS2w_HRgHnbtPlS}ID@#>X>|S0VMU1UTxsZW&xk4(1w$wQjV-{wj7Up{5+wRCdPzFiIfuLh}6d5e4_4p)~(_0?j2pf zM2Ld46+&Kif-#1h^$I^bgb=j-iku_s%@&~)wrVITB9*49dP>REMx&IZ>lbL-kOlOM z1(8hffwo^EopVSjDH)E=GoAOuc|c2r8xJ5QP1_-qVzs*A&Aabu+ZLlF)>gRTjGIQJ z)@WlH$ANJk@$&>oq?GjCf|MfB2mI_Y+90GP%p+1uffNvfN9&r5M4E7!6V~$3WHgG;N2}ia0w2Tn5agP}dDw zYqZuVt&u{Z0XL4M90ABFa~?+)eMc5hazabcwkDUtIGl+&GY8LndI2KS`GkZEPBD_A z#~1??gb8{G_B;vfBi^RHGKQ_j$EK^d%Sn};OY9F z90MqWsTyL6yxMH3>K3UCS}J<2ndS-SW|TI(zWbKLevi&6F^wZy8&Ztab;URg*s3D9 zi798AcER@cmdQNU_Pk$i(8gZf z6D23~JWWU~=@%=MlpOavOdZKFP}%0I=i_)L#)L;=v?0Yna3_Mazv~I@_XttG_Jq{U z?|Nc+vn9BRFi#j`kiwd)JufJX;_9BrSs=BsS9_jwAi>o=AtlIp9H7Lnp68UldR}tj z>E)U6bl{gypYT5L^M8M(2yyYefXszy8aV8p@ou8z$TS_9y<@RhP}_>+CsK46V>u6( ze?o}ivh1`meEj$`{c44q93d5+cLydnu({pfog=!5N*iYHS@sR5bD-o%j0GWKwUYeu>4BT|lHq)&>3aSLi?ycVS;g$800000NkvXX Hu0mjfN)EO1 literal 0 HcmV?d00001 diff --git a/textures/squaresville_spike_1.png b/textures/squaresville_spike_1.png new file mode 100644 index 0000000000000000000000000000000000000000..857a33b961df3292fa0d2058c02da933ecf78d87 GIT binary patch literal 630 zcmV-+0*U>JP)uR|q@xO8R+7;0~*QO_Hl_SM00OTr_e~T}lKO+D@`@Xt(cKY6_qeZTkOLK$%tF6V} z$`qbFS^@yr%kSntt$e%FaN1BxCcm!M7yB8AewVW+%Y}}wU%8&AT+fFTXpE*tG7ld= zb)PfinD`^>3udk5>{)9$%K5ROjWNdS_=$SUJ_i8T3kM>aNU>vN7yw`?X$L_7W=0SM z(g0}M?Hko{Y3Rl4_hz8M&(-e$fQ`-0X=eWYZb=CM+)DSH5;-}kv%wm_+X}K zx1SO7zMc+XSr#M!O$4RXo3|f77i00b5dct_$jvkJRju_Q14trbW{#MPaCyS%AZ}R; zAHJ;Ivhvx?jOY6gx-i0)2a1IdU}k8d{auKQVQWOp=xrTajC%}+#?mSE3rCs!uiVmz QGXMYp07*qoM6N<$f-O)HtN;K2 literal 0 HcmV?d00001 diff --git a/textures/squaresville_strange_plant_1.png b/textures/squaresville_strange_plant_1.png new file mode 100644 index 0000000000000000000000000000000000000000..e3f615f5b8010f138c8012a7efb2c3fca0420975 GIT binary patch literal 719 zcmV;=0xxIoDu>l96>}5iN_TZ1erobu*!kyL;@-Vi-7-t5J6(FvGAj?(Q1NU>8uP`ElAYn z4x)poK{zFehpdGYS(csbUb1^Wu*|#r&c`#)yz|a1{Ac8%J}Myxfa^dN=mvHJ)4*kI zyx*A;P(nTe3cv_(0Qd#m0}caq;G8yIJxc;lfqmL|2P1rofDatk#%rWOU`uF#?Z7Z_ zB&xDD-ddnmPfX7ns$?TXi+i#v8G5(aItyuK?d{>4Xw;ND1jHA-Anlr=Wy9 zp@hsQRX_n#HUOvWyGw-yYufU_RuVk0Jc7zq>D-yl&^a zdY%E-wDEjkG*EvuP5~8CK*cqY8^gxp~XJhrpn6{u1V^jD8lKm%8SC0pt^0$)~t z02Gyw!@${mSI?w2-seD-Jr3KM2W|p8ZJ87;V7%E{A)?(!hwUWL7HkX*0jKj_JyY6v z;lO?2u+t%6F=jL4-3Z?Uhy4#}Fli8|0E@1i?LxD)f;QgsGziStY&DZoaJEIDFMKnqmCAm{ z2-HgDCU6EA08Z6PkEhsMt(O1*`@SDnV|T*v=Xs>Q*!WVgq0xQ*Yj zZJ5Qi+y%c46=|o>LNklP`93T*}g#$!j8{e+a=iS+z zN59I!?96uW?A~FSfM6@xt?udSufDIU8ra&_wzjpc{on2Qu-OT zcRkk_U-f~`C)nw$jr*_8GyM72tIqnh-Q>Sz;)@5r%ANa}`1$)!2|(wv@kNEb57O4Zb@!1B_YT|dk55je$i}U|>AQCl zs>sG0_lOm|TY~h?gScBerno>keX(RXk~K$N0CBL@6sEX< zcvs67m@@^ODX@R^(Gq|uF1oE!O<~FjoGk-cUaVm8C}(FKNvzIc^$far-HAKczYbeX zBgxsB9Od+R5ZMC_-9d)l>JA$r1I)=XYmrWkG&6vc0m7tto$lV25D}RCbwqI(w3?6M zorxt_)P;8%;_aG;?HtY&m%jzJnnApSx8+I~T>fk@rx5WFZ{chSk$7}ZM^B;BowgR* zb72+>ZrfrBvry?Us)<^y<$j|%tKM3`&J^%YFaGCo8`>(v&D#&p036lm1m0;dC%Ae0 zp)}Ms!RuMCK^%55LBzF}00dJ`+Vg|`>&Qk=Ktxd@NfSu?{D?Tw))c*F@=4HkL>wJ- zwnWm~Z7%qmSV5d=sV7#ojKCZ~KN~$s009uUCVl+bcjBF{bs^Oj6A^(`uholHt#Q*0 zob-b35Dc%~Ks7t7C!#ncy9Cg3Kl?$bRM`2F*pKK!=4dR)u|iuz+(8E~Afv9V|mH4)>Qcc->$Y%jkl7j1%b4 zJ46R$B!h({$`{c_*FsuAv#>~-j@UGP4)g=vP>WXhv`H0INC%|JDq(?v5Wv#>cEe$o z;nu+sF$Cijc>`LLh|ntT`lMy20YD4pe zScZm0=ig8P(xX#_UhL_NST{*PjEkA@1@cdU{v+ZtRTuvJ26fHpeQ0`mBw=<#f*MqV zF&(rUc_Hg9S%D1+ye*1ppB$U$b!4^}RrX1b~4c z0@+ZIG#bUI!4e?IJoiQn+8dPuEe1Xq73Ohc0BbE=Mz?|)EJF_#k2hy~CEJMSf^A9ROdh1l7EB17@ST{*PY!~~6S0H~2^iITOst$aAf;#r!bJ6tfk%XBI z32IR77}G(skq5G_k`>sH(DO>mV$eInH!A_HFkgOrKvQ47(Pd~O4VnUl!D`lQ#Ni_@% literal 0 HcmV?d00001 diff --git a/textures/squaresville_tarmac.png b/textures/squaresville_tarmac.png new file mode 100644 index 0000000000000000000000000000000000000000..f8850883e47e1db3b28ec5a6efd3ab1a5f66036b GIT binary patch literal 1120 zcmV-m1fTnfP)8aUw16EBjVaOxS*Qy20U#3V>;nQR zD2-ewCTb#(7dan92txHjf(SmJ50Y4~UvM@la{$rw`(PV2#66n}NQg~N)2Ff40)*-! zD)wg+HAr+Ce_enfLIiR+XOpv$gb+C!YC*sTRFhf%`}a4lG6qgJ zmLZKwkb@+k$!SQF0DWLBbefb&0|*)hpn-e;{TsSx-7@Ni`{5JF=ZzJd9t~JR616TA zKt&=tAOrFZx#2Voun*Ll>t+yH!!HQEzF4aW;99Vo>+6Cga512*3%mwi!sqh_6)^B# zRd9ccG<2l#TGT4CKggo@ApoZdAvBy3ZW8obG_c(}vZ-s)=Wsdz zLq{@iX++wM0Gd%b_Y_GejF=;|%=!Lc&ryWvJ}AMs@I4~q0U-_Dn-atQ4{r&SvF;NG zQ0Q(V(`UpedG6`Z9P-}4(42%?27;?_Epv90p3^CF;{5PjH5;CTTwER+=7<4`@`%i< zNH^&-8%R{uklUMm=KA^U(U!pb`x^`_4-IP(GUjBH&xcs}TF{%%Zn{JEy-`A^2{Wq0 z|13@w=bSMxL|rfJA_yb)XX9i(Pj3V4i#2&zb$bfYxBMpy{C$GnX0De}D* zb8TJYC4%)TSfade2z~azmk^H_(Qr6o+oQDH!(h-_WN+*-m9^Hbmz%;2iu9nHZY0qs z?C&><2y;L2z~2#)!6Mz%DwNPaCew`&*Yz6ueZkFt?jh07#Pk_2kztR1?l8D*K6D57 z4G}N`yq%}K?xPytAtKFuf8HCHNbga*#QA>DIG0JFma!)r>RP17lK*Jrb{Cgx((Na4 z(RQaBL{Q<)&bIzU|Kh2O~ z>U9BOpUwU7V=}cc(7*o%k0Eg*m)p+ikUmVxz<$3+!26$I0`vO%V)f}qc`os&Pxxt` zKkXBKn&(gZgrDa5(>~#+dH%Fd_-UR$?Gt{Q=TG~DpXT|~KH;Z%{DouB6U(>~#+dH%RhJkIln meZo)k{Ar)?(>#CLC;kV+DyRTlXz4Ei0000YEF&aRgpPts*oAAe0AIGS7)sAW<&j=>P&Ogu#ooCSDUs2;ns$2N*&@AQV9;$T5%t zmnopuLWmfHryrh(I#29gxM~s+)HJq{paa8=8e**C~U3Y4PkE?WqNu;B9H1FIIb zCfE?5YE|uC|N3%eWcKb>6`=qZ%79uZ22gkz$(X)Ao|B({yrJhrtFTQi_~&mhXQ34H z_ZO&QA&$$S&Iw}>Wo%&H2#MiZaFV`zarb5rp;`j5v=P;^!^c|Y9X5-lGrWMGr+i@YLWt680~u-G6)Hm!L%|M z5ME%n{6^dP3qMZX>*ol-L?)3VShMzmM(z`P6$Ow9I=o5_|twFjlfm7R^LD( zGXdk8%+=S|IVpn#F|St$U_>u8M%PfF2z;J6L>vQZa?YamX14^7cURZn^x|Z)*6IO< z$m2ppVniV3ISIQz_%=a?ISJ{Z0?{3U1(}aA-ClT=!uxa3^+&PSqOXmkXNh235{Aea zgfX=yF|z9);(i2govLQL`hMuxY}kgpyBgomf8S95j9nT@)H3sWLl$NdVQ{qkWg!KG za1}Wc*;Mt7U4;Q%>3|fE*5Q?w zlE`uFN!WR!?i5$-2p4eY%v^-$i9*!u;Be=;DOlblG`b85n&+zrk{=w_y$GD=4U`>V zQXG$V^+PVZh%v~KJ!2@^)R+jzdqbvNNdh4V1?mWRUzRDAux~tnxfBN{z(tb+Grl0LSnpgL~Hz92z#N|o+^y7^q)sI{m z-2Pbn>)!|S?C){MIuMyub-MPR9jZc?gAvhK9Ai*BLjNDnkHE8`Qp^1DpUL$lu@_Z6 z;UbUj^AJow2&s&nCj^d1xK<22C&8}2^_nl<#&f8GuyAzSy*W=Dm%Z78Fv1e+diyS( ze^;KkO(KPB5>czoHAV-oExcRaH* zUi|p={U_7OOUbq==sQdB;Ko4kFPsbHh2(JDaBelhL%EV%y8%&F5+N7lr3B#8TIyYa z8v}VMC@VSRb8a>Du3*~~4AzsE5|tP44Z(wupris|-&EYLhP(&>80|6ok(er}P|HeT z9zMOeZ>mX-;C3~9tUDKh+&v&9(RY@?1ZK9E)*>Vv zjvLfGxNj=fy>GAu|d-miS zca*pVrzu3DRLy{;(Q%Zvu>V%#mtUgHckH?2N-VKV-a%u@kiqc1p{D%@SOh4Uem-HE z85_Q7nxqN}*_y)j-s_n#x1MdKh;?i2m2L91_3(qy1^iWV*{&mpDZ{qBkHkou?^4x* zt}El&4JwC6x!V-O_jCA@JWqLqnHi=in9e3I2b}1u;?Q{!wtM1r3xxHeJ+*U4;dqcP z)iTlZl%5(74*l6zUMfDu>z~+L$A(S-5w@TxZZUN+1t+hL=a zullr?0J`&Xo@7e}TTsOdxhoqP7ULaaA9ZK`F-{u5SWHH|#$`8@%ZVWoH02zvM|?8PQL ziMPkrwyryNSVt-0k3ygw&-a9n?jjud*v+9wWG6?dcvjD9Bti>=E$j+WnH1fQBy^W% z#udp$rqe8;?dpE$)k?dHFlov7lb1C>--*>sTYnbu)q(nIaF-M+{XNq)rTU^0bf5dt zh;{e8XRQ!{Pf6OTC|$dfOPGYdvvs2B;&0uZ-EhtOyHSkKQ*BtX0rfZE859C9-+0j#yYX}kCzU* z?A*$dbZaeZQ1-E{vjXny-WT~>_7&V{TxXJuk7|a*Mm0am+zLxe z@{~F2NAz7`c@Sb>72IA&=ZBVacI1h$vq{|@G-r!95uyyoZVoltIh1?33`V-xr=mXW zUhJ53bN&-Isz5w@qmf^PIb1)Nm`J($GrZrbbs-8X-L(teJ0bxc=-PAZcYnNQzOS+! z&o^NDA;3`aRtf?=Bv*@>V2{U6_9E$UTzG>3<;qu!UaEq(!2q6dj*x{=(kIUDUN@I2% zQiw`k``s0#jd~IIFY-xp1$*%lH{=$l5p-Mc>=ECDz-#vMU%z}jrS2IBHFKbA17VNy zY^sud5VlJ3qv$6x9pZ(q(n{AAod~F#_VTW^Gdm80UD0`FUhd~uP>!eIbEv9|3)kU5 zv$$GLJQny6z2Rd@wM_ObTSJtPkCBi4;}s=?sp3+GbmS>U2jju38k*xI-Uu!F2j(8M z5Oc4J9Kb1=_Z=p*h2?1S9r155ZZaKtXArM3$P8y(lKD7TtyZmv1w=VtVDt%Kdb%w_ z)>>%BI1^!Rr}e65OVbyEr#vx_qZ0Tfph5m^*H2 z%6MZFkN?LEn$g<-IZHCo;HOop5}Q)o)zG_T={o&3YIqZYHn(Et$(dQ)lW?2sWiQ`^ z>{7VN75oNK!#a~-W-{-0yl^64!N;@2>aOPa5c0~&%XQuu-b7VzXp2%%Bv(M@qF_^~ ziR(OGS&GMkxCcFBZ&-!OED|-5x$263b2^A-JX}!cukBFE^aJ)@|7vJmu7`=EjTF&6 z!6ws%=W4ix(1`8nODkMGCILn^`gohzq%5E#JsTU^1B7bHdOB9Pq>NXUqmvIgNT$Ld z<{+f?ECMmwud*nwQ98Dh`HIQdy6lKPs^X~7zJO>Woyyi3)w#fVi;vrN+l~66vgC-f zgVgZLH|{p~pS5J>z;G_5fh7u^Le|QDF)|p0g0_Y<*R5|cwXRPlix+L#1-(+#NL*-v z&eQCqT2@}(mes(7@M)Jq9|@lGexJkzItyREsp|vOaHD8|o2Tr-Bhm1@QhR#yi}q79 zCXlv@mG_{w1H$IGOrt7T1Htw*_I{a^^w*PGyI_8m`IQm z!1nC2x~pa7VIO&|gkF2Chp@v6r`bdGj-v)J4{yG8rj;29TY0-I59(t0Exw%y6ZZeo z&J_e@1bUxJ=r)ad;iG%mIHR`3Pv4m)V@HU^1ol>+c6myjZsQ?ZxjvtX#D>Vqt~Y*d zy>h|%0V43{s#At*9|H89_ipx-6D=&wZ%vpzls=AtxSOPt)jOlRf;o@RP`QGx*)z8# z>meg%3zac0wT%-bXBCaf$ScZm;O((snhItE4-TSr^lwvSAy%#4UM?u>+abH}nQYn+ zwvIiC*`k-MYkt`acKmc`-uPUr{@KKp`3pCMpdohBDe>N^Nk5Xi$df>eL3=937(e)q zDWGSq83t?3`~LGTEe0$-on$+B0`5L&-|}$eG0(G!NUlbrZ~B))Y13%Mgwx-IiEyQ} z)UuZP25p?lu$HQjg7xsV%i3@2^Uzbc>ccKelqk^WD7D(Zz!isy)?Kmqf{W6E<>4@n{=S6Ct?tklQf-mLw&y$?wR z){mDtaUQw2OR++~@3Ehh45}fGPWNhvgtDY6f5zgZr3cMFdfYm0;hX3s!Gx?U|D6zV zO#j6*Hi{riA<@3zjkVAX@Bk)KChBHx!N;m$*aMDD5sM-pq@Cy6UDR|+nvlU^NkS_p zd$BxF44WA#iwyn8A$9}ja|iC_g52Vl4lfBG_l!s`dd3u&E$3z1cQ4xw5#$)@%iIxs zHzLmy)kHgL(UEsO^V1i3QG!Oks|-BcBq4(Nb=}EQ%R5Df20*CU)=m4GzEP(pwm2CK zZqD$`ddWfyfm6~AUoc{NQnFtENU?lXJbPO*i?(ZQ-WZA+6C~9#N&NJt zHzbvE^{J-ZBAGS+5NVj^7T-O?!VU zW&&wqlBJp9(H%k&T5YaiYgq-PJ#UQM!htFB3de4_WK+lYCR81#;zG)evVTm1y)++Eo$s&-l^@oWnpjK>5LB>X(0+7{S|_}7r^;aia( zs3XNCXpb(71_5y3d8AkI2MZ`+Lgz1_#1Pdh$8uVMWAq-Vc zSH-vc$}AL3c8)F8(Mv`?&Xb$gwle3j_b(aZ#R=gSLmWX@lY-0DZW=k3TAA|+&^fQ_ zX^qEothp4*kBzuc{p=^zc;iiK9F{$VOy5C-$5cXSUb@>AH#8tXbRDZYOP<@4E>CX^ z^L7RhXiyxF#WVjL8B9y*4<6@dk@Nn1LSOiuza47x?o#qE#GK^rr)l0)$V^SMuFpvV z=4;~K85Qzo_0Qtlx^FoBRAB&S(oirm}YRa&eOZZ~t!KdzV4Oc+RL z2)~lzxe!VV-|@RyiG8lR!24E+eSJ030}?C-?u?RsWi3S6t?`t<+_d$27a|}ibSD>w zE|tc|&w=|U?Vi5#dVlxfB6+{+zOqAEsIN^IVRK02MpeTU#c>)uWte!YZ87|({D9}+ z@2oHS1Ub5I&a=TZu7WAUZ=Gu&V}(ObUmO6>Etx?NXXrm~i}kAhP^WeF=GW>%R~8|- z&>TA(L0wQ^#Q!+Ty+7j}89ZOxTwyK0wYAlrCZtN=XxcZ+c(wYY!fvEi4%jwaw3mXj zU+0$R+4S`AcrvmNatiygQYj1U#9<-Y=R9yr59j)2FBcWPM*KoT4_8(zab8>&MEmkM z#@%-zywQcvO|d*bPqC?(04CNc@Gx=X{1+BMQc9Z6s`fV5YQ1oVVtaI;Lwb|oYV%XK z$bsVxh+e00V|(N`7z~=8-zN|MaywrY=p{i&+?ATJb#KkKXwNZ^xAZe&iF|X@S_%G$ zUNCyK-nnsIBM4Z|nnptl+fPw3uQbR1EX0(VGktXrKklCZ-d6kiR0WTDmV#W}3x;$| z*Ni|y5xwMX>dgq%V{zcj#pfbsd=Ot|LfiB?;?_#r!%5P-NIvFzZQ^r8ua?`xvh|^r zYhD!e<(-!fYvVuPaUkn7HO#CYtMlx^vl~U$?MTiA!E+C^>}n=}V}PVZ!^WLjlAnHc zHR8uBJI9{aPE&F9)-H`$#9G-Ur*G;lm)dak^luk%nNBvq>B4)*FM9nLQA>99ha#|P zvb!Sa_c|@!95;IJ?0ElMD+I9MH-tqlT??RbOrCkAHOqG=*O$g|qg_FbwL@KtH1OCV zj3i>w{eKhk2#xK5w)(6@Y?(Q--093OiSN2$q{JNI7&`OORCz7Np(S`XN<<4;*SEC6 z+08WFYYqiGq%6#KS-Ej}Lkj#meE?=@Pj1P;F}$voU6SoSES zN{QoB=dJs*2^|rZ;_^J?SIig05q%gYRU#d!WZj&5bALhpqkhH0BEVQ7Kz{^0E|A2!Lha&uW$iZtvYHov5 z8B$MYeIbTUb9y~XqD|=mJ_6M7tQ_G8$0lvajkFx$L%UIe3@6~p9r)i;ACPneF#elw zF(PnEB4m$_2Ka7|_6dvPHvr0ZXTEaCJn%y_x=Gvoa&b;>Q1A2s$l@lC;9X|H(sw`= z+ZhSr@c4sJBv9es1P|yx(9;CFJ91wGBoa@5=fIk3bHTM7t3AL_U zejskf8>E%o|JDp(rYbCI2ASrRyQA+A7BvCf^$xg{=UfW}h!KEWWpBW!h{XeatxmUH zEO#2$$Oq&DC}f$a2e`ov<`1O*Vq4-TqqHkCUIpkT(A)+r0dAl%%O^{uJ8DhLt+x7v z0TbNjft+8*+XEgxUrt@8z)a zoRt`Gaabgf_5mkk?|TP2{BpY!z`VSFRObY-2 literal 0 HcmV?d00001 diff --git a/textures/squaresville_water_poison_source_animated.png b/textures/squaresville_water_poison_source_animated.png new file mode 100644 index 0000000000000000000000000000000000000000..2327d8de072f2b16e3581137721ee6290763fe78 GIT binary patch literal 3343 zcmY*cd00~E7ly#DWQC1priD71`g6=It!!eDD03UrX3T6_AambSOGrf&&85uTN>dZF z(yYw26vs8JMqJQJ9XBX7$PI&B*z|YN`D5ncx!mu5eCM3^yzhIS`;g>x!g|vNjSUb8 zWRtDUvERVEG6VvJD6R)r^xqavfVcH-_SVNBEAkJmp*REFK?K{J357tEROA;FaxYIE z+yugG9jpM(dISP_P~AAm8UopvXM603GjT9KcPM?xNbPzw^k-M!wjd&{;~M5s=wpFfO!qK<{>=qhf%$a|sO`(dB$ zt`Ey^x6t>eC=kBKkMtW%NAKwAYX~qnm0j7nu%Nh{3dOdqqc?mW;}?;tT?tk8!KFXz zJz^}pbK3uLLflNmn5p1#L1mFETni%fQke;TA)SKPXM z$mhK-y=rFv_tS@D+ywU zLa-$7>8vrv2hNaXAB+C_>*)mXaMAM!O@G|I5G%`vE+6Tymm3bGi1eLM8oY&3GgaVB zA?*rx0Y~jrtIeyP2@+pEn_J$w!NV_Y;)jXCmhEf!BZ zMO`)Qt9ag0*ZWxWtG()!r?!=8(TB)7jE_+LRp9zK*>W84(aXzPTS4u7En3}WdUT&+ z5(&i%#HMfXe|e}>5L@_`FCZHrY^(0hg!g|nnYL~cp4U?MpS;xNZy3d7bpTujN zwJFNH_R0Cm)xOOF3WlyZeI7a-TZ$B5YtgjB9`TIX-BsHP2U%55iPwPuGg{sE0sqb) zUvpcYOe!0=<$zn*JoDr$H~q725otp|wMY3S$l?IpaaYT?-X_1CIF<1G#}pzqz{B&E zX9vv4c=7qpC=#MW&>rqC>FfPZErX1c|wn#9optMSVq~-*o}?MeAa7l zi21e=*@ZG8aIbZj-!rb!0c*`&6 zb{(i^xa6DIY;+xm&cAyy`Rja;DE5DRE(!bWY4_vZ%h`afk?Hq-ZRG3}1Jgk*+qs97 z;rs^*;@L$b>AZs-wr9S>#CF4co3)WVw(;F6^t+Hl-PB@-jXFg=t%DOs8eI}qV49jl z3{om8Xdh#Q>DFTuztNsYWJ;cH@_IEapoyoaPvzPppC=%YCC59h212aH^3`rJU>bbq zz**mN{+*!iT(GM-t~25S}TX zsDHI_<*7sxtnVIAR5oHa^?OR4;PkPmTfq07;*{H4;2w{R)Lu?vkdYU_fpCvE_rM?( zPno-x3Vs;3x(&?YhT^W6eU4$?5U{juYqtNYs%Jjx6D&gW23vkOyKBqflrKSM9S_irC2mYc7rAWQOy<>Uhy{6wHI zvUwuLuH%`5=ve>eaFi3qG-t(2kYt6b6;YbVw3}tFx$mmc*-U`fgA*|l0Z6Qfa`vgQ zqknUc)o$eAn`Z;ENJ=ZI${_&rsmrBZCSb9-(d|GYQ2iQ!6N3+Zl~lfA0^WeIacE{- zg#jD6;3b4w7L>H#80m4{I@v{indFb5?S&Hw0z`Oh&YX585}e^IKj?rgehYF~2F*I= z?H3)Ty;}=^;rAWP*)CXgbaQ@+bUu~|n}9K9b;d(l5xHh;&x+O4i_&IxkebBJi|+ z*fJ;Zh9%prMF8euO~gbjvua*v0)?_x7FqYoL?)1vm!}oCph-p38W+2f=TK6q_nhFK zTPV}t7-^UvN;P6o^)g;fe<4m~@kW)FMbNj@o@MBKO=nI}O~|5ZBx<0k4owqMccGNK zyo+$Vo>YI_l&`gfrfGWCF+6iqNyLCnBe80zqApghPVS2=9}7OZ=e)RfNSkY?`Qu5}vkmd{p8F3uhLNz_YO8+N zK!Gpri9*DE12H!(Q-4sXHaTQXx*dHo9E4w6Fe&0Dg`#N+PmGW$ozXaMl07%A{#C~u zf%gKt@$ldsQ2HGABFy|HR7bvn7)_Kh^Q3)u*K4gbsH0d_Az(K)*Nk;^RRD>WwIr{4 zABLLa3o9t}b{1e2j$19g;ps*tjIQR_<#-@veM z4@U~`l7BrK@@Ud#!1^7_(b+-VveuE4hxeTt@jocgLmK{i*^vGp- zDnof-oaN`3Dfu$E_&cqjS)`CxKr89_A`ey0!#9f%MUkJtc@`t0t1-bcc$*kJuy$&g zj1(#8plZpnA&wSD$uUDP9m^xD7!7rbtePl9Q?3CzZx0CM^D2%4X2=+mRrNvw2$Q5NP=T)oRvM_8kz=}H zE9j80MrDB#FY+STuOORcYzy?f(Lkx@uFJP#34B!#>iFC)f<{XD!sif{fElc2IuA^N?=ieHg8Rr zRsXVRMrlclNm~+11k0Ab^Gw%NbeNB0eEY`#F;zE>{K&ezv$uoengTiF%X63$a znLN>rOy^(d&s?fv7S= tLhRBSldzWLC22itmxZ2hy4=Rj96c)I$ztaD0e0sww6T)zMS literal 0 HcmV?d00001 diff --git a/textures/wet_fungus_2.png b/textures/wet_fungus_2.png new file mode 100644 index 0000000000000000000000000000000000000000..15f9113b7b121d341a6e825d8cd96981e69f31e3 GIT binary patch literal 944 zcmV;h15f;kP)~62D+HE-vw_@8C0-@CH7H-+TcR zr!I?eUV^}Yl2TfFftKD&@8{z0Cw%wA_l`LkVW>JE{`{NX?Hz%1icYD)?w7C7nd4X% znM{sOr_IOXV{~0-(CM@OY#Y%Z^i#MjQ@AX!_5200rn9+|=ksshFuHH!4@F6DY*Me+ z`S*_xG|sMh==GQj5-W*SMAhv^bF17OUvl#HEuVe;1s<2eV)lS15I}XgxNFohV zBbHsGdD}!r08LkjYNq>dYonQn3W8rZ66Kn41fZPcA5377=ZW;oyOr^D@cI8Z*m6%I@S2 zyTvk@{9~fgIH)cbrj0opbNca|(O`hfA3~HNluY5$gLG<51XVy$RYbR2;mIev%!Ykd zS0aq=Ta-!#x}AHLlEl<@NJSz@f<&v*WVY;)e7?uU`+pD=718fA7!C$_y*{o=Wh%uo z)Bcd7zfSS!I-bBP)#e@9^&FGwn2XqU{E-|F#T51DqFBywpg*Hr?352ob7 z7xg19MW*d8vdaq#ldX*mqGQg{1)D~#!En?iw!Vs@x)4Mcr@y^tX*swxk(E>$BW94_ ze@58Q$)re0YyVk@MOng2M=5j{=szxTiMJ%y~*Xw6&S~!y-rx%xq z3(FxE3?hpXok|7$P4VnMTHP*FYsvrA5o&lP SRHf4Z0000 y + extent_top then + newpos = {x=tdx, y=y, z=tdz} + else + newpos = {x=tdx, y=120, z=tdz} + end + + user:setpos(newpos) + print('Squaresville: '..name..' teleported to ('..newpos.x..','..newpos.y..','..newpos.z..')') + + user:set_physics_override({gravity=0.1}) + + minetest.after(20, function() + user:set_physics_override({gravity=1}) + end) +end + + +minetest.register_craftitem('squaresville:key', { + description = 'Key To The City', + drawtype = "plantlike", + paramtype = "light", + tiles = {'squaresville_key.png'}, + inventory_image = 'squaresville_key.png', + groups = {dig_immediate = 3}, + sounds = default.node_sound_stone_defaults(), + on_use = function(itemstack, user, pointed_thing) + teleport(user, false) + end, +}) + +minetest.register_craftitem('squaresville:broken_key', { + description = 'Broken Key To The City', + drawtype = "plantlike", + paramtype = "light", + tiles = {'squaresville_broken_key.png'}, + inventory_image = 'squaresville_broken_key.png', + groups = {dig_immediate = 3}, + sounds = default.node_sound_stone_defaults(), + on_use = function(itemstack, user, pointed_thing) + teleport(user, true) + end, +}) + +minetest.register_craft({ + output = 'squaresville:key', + recipe = { + {'','default:obsidian_shard','default:copper_ingot'}, + {'','default:steel_ingot',''}, + {'','default:mese_crystal_fragment',''}, + } +}) + +minetest.register_craft({ + output = 'squaresville:broken_key', + recipe = { + {'','default:obsidian_shard','default:coal_lump'}, + {'','default:steel_ingot',''}, + {'','default:mese_crystal_fragment',''}, + } +}) diff --git a/ver50.patch b/ver50.patch new file mode 100644 index 0000000..df46155 --- /dev/null +++ b/ver50.patch @@ -0,0 +1,48 @@ +diff --git a/deco.lua b/deco.lua +index ac67a82..105187a 100644 +--- a/deco.lua ++++ b/deco.lua +@@ -119,7 +119,7 @@ do + + if odeco.schematic then + deco.name = odeco.schematic:match('([%w_]+)%.mts') or odeco.schematic +- else ++ elseif odeco.decoration and type(odeco.decoration) == 'string' then + deco.name = odeco.decoration:match('.*:([%w_]+)') or odeco.decoration + end + +diff --git a/init.lua b/init.lua +index 4dcab2d..2c7fbb0 100644 +--- a/init.lua ++++ b/init.lua +@@ -162,7 +162,7 @@ else + -- This tables looks up nodes that aren't already stored. + squaresville.node = setmetatable({}, { + __index = function(t, k) +- if not (t and k and type(t) == 'table') then ++ if not (t and k and type(t) == 'table' and type(k) == 'string') then + return + end + +diff --git a/nodes.lua b/nodes.lua +index 912f58a..a922b9a 100644 +--- a/nodes.lua ++++ b/nodes.lua +@@ -358,7 +358,7 @@ newnode.groups.poison = 3 + newnode.liquid_alternative_flowing = "squaresville:water_poison_flowing" + newnode.liquid_alternative_source = "squaresville:water_poison_source" + newnode.post_effect_color = {a = 103, r = 108, g = 128, b = 64} +-newnode.special_tiles[1].name = "squaresville_water_poison_source_animated.png" ++--newnode.special_tiles[1].name = "squaresville_water_poison_source_animated.png" + newnode.tiles[1].name = "squaresville_water_poison_source_animated.png" + minetest.register_node("squaresville:water_poison_source", newnode) + +@@ -369,7 +369,7 @@ newnode.groups.poison = 3 + newnode.liquid_alternative_flowing = "squaresville:water_poison_flowing" + newnode.liquid_alternative_source = "squaresville:water_poison_source" + newnode.post_effect_color = {a = 103, r = 108, g = 128, b = 64} +-newnode.special_tiles[1].name = "squaresville_water_poison_flowing_animated.png" ++--newnode.special_tiles[1].name = "squaresville_water_poison_flowing_animated.png" + newnode.tiles[1] = "squaresville_water_poison.png" + minetest.register_node("squaresville:water_poison_flowing", newnode) +