From e25ba53998577d9322c1cc001835abcbf7af211e Mon Sep 17 00:00:00 2001 From: cheapie Date: Mon, 16 Dec 2013 23:15:39 -0600 Subject: [PATCH] Added content. --- COPYING | 14 +++ README.md | 19 ++- depends.txt | 1 + init.lua | 191 ++++++++++++++++++++++++++++++ textures/plasticbox.png | Bin 0 -> 499 bytes textures/plasticbox_black.png | Bin 0 -> 453 bytes textures/plasticbox_blue.png | Bin 0 -> 535 bytes textures/plasticbox_brown.png | Bin 0 -> 463 bytes textures/plasticbox_cyan.png | Bin 0 -> 513 bytes textures/plasticbox_darkgreen.png | Bin 0 -> 431 bytes textures/plasticbox_darkgrey.png | Bin 0 -> 430 bytes textures/plasticbox_green.png | Bin 0 -> 486 bytes textures/plasticbox_grey.png | Bin 0 -> 522 bytes textures/plasticbox_magenta.png | Bin 0 -> 522 bytes textures/plasticbox_orange.png | Bin 0 -> 512 bytes textures/plasticbox_pink.png | Bin 0 -> 571 bytes textures/plasticbox_red.png | Bin 0 -> 522 bytes textures/plasticbox_violet.png | Bin 0 -> 539 bytes textures/plasticbox_white.png | Bin 0 -> 441 bytes textures/plasticbox_yellow.png | Bin 0 -> 517 bytes 20 files changed, 224 insertions(+), 1 deletion(-) create mode 100644 COPYING create mode 100644 depends.txt create mode 100644 init.lua create mode 100644 textures/plasticbox.png create mode 100644 textures/plasticbox_black.png create mode 100644 textures/plasticbox_blue.png create mode 100644 textures/plasticbox_brown.png create mode 100644 textures/plasticbox_cyan.png create mode 100644 textures/plasticbox_darkgreen.png create mode 100644 textures/plasticbox_darkgrey.png create mode 100644 textures/plasticbox_green.png create mode 100644 textures/plasticbox_grey.png create mode 100644 textures/plasticbox_magenta.png create mode 100644 textures/plasticbox_orange.png create mode 100644 textures/plasticbox_pink.png create mode 100644 textures/plasticbox_red.png create mode 100644 textures/plasticbox_violet.png create mode 100644 textures/plasticbox_white.png create mode 100644 textures/plasticbox_yellow.png diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..ee7d6a5 --- /dev/null +++ b/COPYING @@ -0,0 +1,14 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. + diff --git a/README.md b/README.md index 478efe3..2564c2c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,21 @@ plasticbox ========== - Plastic Box Mod for Minetest + +Written by cheapie +Textures by VanessaE +Licensed under WTFPL + +Crafting: + +-Plain Plastic Box- + +XXX +X-X +XXX + +X is Plastic Sheets (from homedecor/pipeworks), - is nothing + +-Colored Plastic Boxes- + +Plain plastic box and a dye. (shapeless) diff --git a/depends.txt b/depends.txt new file mode 100644 index 0000000..2bf0202 --- /dev/null +++ b/depends.txt @@ -0,0 +1 @@ +homedecor diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..dba95a5 --- /dev/null +++ b/init.lua @@ -0,0 +1,191 @@ +--Register Nodes, assign textures, blah, blah... +minetest.register_node("plasticbox:plasticbox", { + description = "Plain Plastic Box", + tiles = {"plasticbox.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("plasticbox:plasticbox_black", { + description = "Black Plastic Box", + tiles = {"plasticbox_black.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("plasticbox:plasticbox_blue", { + description = "Blue Plastic Box", + tiles = {"plasticbox_blue.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("plasticbox:plasticbox_brown", { + description = "Brown Plastic Box", + tiles = {"plasticbox_brown.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("plasticbox:plasticbox_cyan", { + description = "Cyan Plastic Box", + tiles = {"plasticbox_cyan.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("plasticbox:plasticbox_darkgreen", { + description = "Dark Green Plastic Box", + tiles = {"plasticbox_darkgreen.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("plasticbox:plasticbox_darkgrey", { + description = "Dark Gray Plastic Box", + tiles = {"plasticbox_darkgrey.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("plasticbox:plasticbox_green", { + description = "Green Plastic Box", + tiles = {"plasticbox_green.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("plasticbox:plasticbox_grey", { + description = "Gray Plastic Box", + tiles = {"plasticbox_grey.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("plasticbox:plasticbox_magenta", { + description = "Magenta Plastic Box", + tiles = {"plasticbox_magenta.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("plasticbox:plasticbox_orange", { + description = "Orange Plastic Box", + tiles = {"plasticbox_orange.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("plasticbox:plasticbox_pink", { + description = "Pink Plastic Box", + tiles = {"plasticbox_pink.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("plasticbox:plasticbox_red", { + description = "Red Plastic Box", + tiles = {"plasticbox_red.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("plasticbox:plasticbox_violet", { + description = "Violet Plastic Box", + tiles = {"plasticbox_violet.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("plasticbox:plasticbox_white", { + description = "White Plastic Box", + tiles = {"plasticbox_white.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) +minetest.register_node("plasticbox:plasticbox_yellow", { + description = "Yellow Plastic Box", + tiles = {"plasticbox_yellow.png"}, + is_ground_content = true, + groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1}, + sounds = default.node_sound_stone_defaults(), +}) + + +--Register craft for plain box +minetest.register_craft( { + output = "plasticbox:plasticbox 4", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "homedecor:plastic_sheeting", "", "homedecor:plastic_sheeting" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, +}) + +--Register crafts for colored boxes +minetest.register_craft({ + type = "shapeless", + output = 'plasticbox:plasticbox_black', + recipe = {'plasticbox:plasticbox', 'group:basecolor_black'}, +}) +minetest.register_craft({ + type = "shapeless", + output = 'plasticbox:plasticbox_blue', + recipe = {'plasticbox:plasticbox', 'group:basecolor_blue'}, +}) +minetest.register_craft({ + type = "shapeless", + output = 'plasticbox:plasticbox_brown', + recipe = {'plasticbox:plasticbox', 'group:basecolor_brown'}, +}) +minetest.register_craft({ + type = "shapeless", + output = 'plasticbox:plasticbox_cyan', + recipe = {'plasticbox:plasticbox', 'group:basecolor_cyan'}, +}) +minetest.register_craft({ + type = "shapeless", + output = 'plasticbox:plasticbox_green', + recipe = {'plasticbox:plasticbox', 'group:basecolor_green'}, +}) +minetest.register_craft({ + type = "shapeless", + output = 'plasticbox:plasticbox_grey', + recipe = {'plasticbox:plasticbox', 'group:basecolor_grey'}, +}) +minetest.register_craft({ + type = "shapeless", + output = 'plasticbox:plasticbox_magenta', + recipe = {'plasticbox:plasticbox', 'group:basecolor_magenta'}, +}) +minetest.register_craft({ + type = "shapeless", + output = 'plasticbox:plasticbox_orange', + recipe = {'plasticbox:plasticbox', 'group:basecolor_orange'}, +}) +minetest.register_craft({ + type = "shapeless", + output = 'plasticbox:plasticbox_pink', + recipe = {'plasticbox:plasticbox', 'group:basecolor_pink'}, +}) +minetest.register_craft({ + type = "shapeless", + output = 'plasticbox:plasticbox_red', + recipe = {'plasticbox:plasticbox', 'group:basecolor_red'}, +}) +minetest.register_craft({ + type = "shapeless", + output = 'plasticbox:plasticbox_violet', + recipe = {'plasticbox:plasticbox', 'group:basecolor_violet'}, +}) +minetest.register_craft({ + type = "shapeless", + output = 'plasticbox:plasticbox_white', + recipe = {'plasticbox:plasticbox', 'group:basecolor_white'}, +}) +minetest.register_craft({ + type = "shapeless", + output = 'plasticbox:plasticbox_yellow', + recipe = {'plasticbox:plasticbox', 'group:basecolor_yellow'}, +}) diff --git a/textures/plasticbox.png b/textures/plasticbox.png new file mode 100644 index 0000000000000000000000000000000000000000..4f9bbc98679da4f38781ddb84c22193995366a0c GIT binary patch literal 499 zcmV~-41^s!Kiz4NK(OWhC*d@Mgx+gjI&tiH7M>yNvdi^V!sqAb7$c<=V-y3G3Wg8@!{$aLe5!4M1+V+Da@R6HZxUaW@g6TyO}Yws=7Mo zTx%_*s45}?z;#`!T5DzI`1<-9LU?+5A|gZ#AppRflZc4ux-Mp}wE}=oVr%U<4iP~_ zW=<&qKuXDX@B8l3F$Mr2BIcYQkH@xcb50leJI`~@2>`X$)|#(pW)zX*I2?%6@PX&& zXCi8?t+i^cL^Q@QGkkl0pL04205CHVQPtkN`+Fo+U27pC%KuAzV9pt11OPuW#yG}U zYpH5V>HGT|i72IHX1^(~>mnkLe!t%xx~PZ<5=9XK0H^8CPX~Zf3L=`>TDq302!;?# zDeedWesRt@=d7yE`hL5Yt*FRg4k1L3;vM~(IQ8>9V~op|iij!zwASLbZ2;g^06_2E zKin^aoKhd7_wH%&cDoVLaU8xor6eL|rYdGO`WVdK(m&5_+kSq2ywuj(rc)(rF6U9N-6uk{{=jHSEvp9kY4}*002ovPDHLkV1j1W#yJ;bbj|@_<``p)krX(_2*7*K%+5J|BqBrv zAcSCy@!l`X^1ET0rn;_)DCewrdQ?;;17P3x3cxsyDJ8vDV#XN7?)&~v3IJ+d#&Klk zs;cxIfMr>Th={DUAp|0NyvDXEOU@73HGqll<`0ICD#P^s7|eV*r>bBr-b zVrBr8Qu-%sA_^e@=(h}=21ZQFrWKcCNOnyj_o?^lCU vdLoJWvu&G*lv0j{(=ZG=q56*k|EGQdSi%*WZOk>u00000NkvXXu0mjfP-W09 literal 0 HcmV?d00001 diff --git a/textures/plasticbox_blue.png b/textures/plasticbox_blue.png new file mode 100644 index 0000000000000000000000000000000000000000..fa29a0fb7b1d9dd7c3504c0990dc3b623cc09c91 GIT binary patch literal 535 zcmV+y0_gpTP)YZB&&RU)S~V(R5BQ*Ll{%L#W<>9DNmm zDu{xa0DOOYCXaF3_o**0gPES577-Cq<`Mz3GqZ@89dlmGa*IGj&3Wm*V~htNL^~l{ zYpM`YW&j{sGj{;nX1$|#Sw@o6PO zYudXK#ofKGYZcGAy9ZGR=sYi?(7!K#2+{jcEfE4L)7|O!x5iNSLF5q;k(o&Zc7v*@ z0su22EK@TvhMF03nq3hY5zO-SwX3SA-sjN0a?XQ!ji^j)+u2&0RUyJdG?d6&6A=dB zjtErgoWJhQJXAdsRTfd>tDl!Aq<2Y`sBuW7O ze=WF0@2dQGQi{iU+zpZ(rWld&M}6(4#~#t|wYz$zcU4k)JWeX^Y)N-^(A9ITO_&~HuC;qQKb{Xt=Wh~_ zV|UfsMcAJHnwn{hlT=1#CMZd}=H@26c6oYN-7W#2Z)av4$6r^z*B0E}o_<}Mo?T_T z3j-t>M}DcRs=Gb&uBs}*aL>%G?t;mDJ`Pent}1xC8y7WujRJ;fJC9&heR0pct|j>X`pis|)-^7eQjq%ZbInW;clJ#()7>-8 zy}gYgBoXLA0`vK>?s>gI;?<@YLNzEz_yrvqYtASf{TcuO002ovPDHLk FV1iv-*n|K8 literal 0 HcmV?d00001 diff --git a/textures/plasticbox_cyan.png b/textures/plasticbox_cyan.png new file mode 100644 index 0000000000000000000000000000000000000000..4eefe7874a81168168a470180c2f69a6b2df0d86 GIT binary patch literal 513 zcmV+c0{;DpP)n5iP&1&JzieS%tf?H zRRP@BRU%v~-``z+{W8_@c$k@)o6*dy%2d^?&ol0uFE8w_s<l%-TR+*czeJvMp z_b+#ETLIM_$B~&WqVA5*Pv15pYz!AMK!Mu#$SiNZ0a%qlMsUs+sm!X%?&_w9T9uFCB1$U2h%zgH zbLM@QNZxmLR~6j(e7d>&oJM|E#(8qiswy&$qg6A4AhICh*8NQVt@e}^Er*K>gyVk*T>b>)rEy& z+k-*kl>J$-#%#p-DQ=XG*odlt*$W@o0Si*;RBch5{$lLTb}-P2Xw-PL!JDCc#yH;C3he&E%j6w+gj-%!%?t+Ky&VWZnPxZUi)Q9VZ6=; z0SpKr=KAL%3FG)=V>|oZQp#q3FN@GOp-?0hS-#Ut@_jFJ3FGZRU@>e;I*+rpj_(Ia zO2QBZNeJuZ5JWw{o{qQot^JLL0b|cXz=A^no1Mk_%Q|wbm(Do=VC-W_?pYL2*w?bi Z;veTjW1c0UBm)2d002ovPDHLkV1iMr&W->8 literal 0 HcmV?d00001 diff --git a/textures/plasticbox_darkgrey.png b/textures/plasticbox_darkgrey.png new file mode 100644 index 0000000000000000000000000000000000000000..d20c72460617b89842361d83969122b77214a375 GIT binary patch literal 430 zcmV;f0a5;mP)!LB_ahfv(}osyL;~)z4wwh9aN6~)8dymHi9=LZ%MW>$C+iHHby zb0T79tm|3{L`0d%%*?F*h}iyb3N3NekuY<4sD{G3d&LqNN?Ld`!|8M~vwh!HH6q3s z)%NjLYmSKb?cDG8hyYOR%GCX>RQ5!qwMIn8aX>_#&u8sr+qOApHP^}P`wpPB)_bqV YAL0*e#+=3lZU6uP07*qoM6N<$f|`-d>;M1& literal 0 HcmV?d00001 diff --git a/textures/plasticbox_green.png b/textures/plasticbox_green.png new file mode 100644 index 0000000000000000000000000000000000000000..1811f19a67678f73b159930187a544abfe391534 GIT binary patch literal 486 zcmV@P)n+a literal 0 HcmV?d00001 diff --git a/textures/plasticbox_grey.png b/textures/plasticbox_grey.png new file mode 100644 index 0000000000000000000000000000000000000000..cbed434aa3df10408acee82ae01ed294246f4a9d GIT binary patch literal 522 zcmV+l0`>igP)y`e zF~(sS%xoM-B4TDlbj|_5@9!@FOw*K7;_LN_h?mQSh=>>wh^V7Plylzq{d791s;Z`x z+`6vQG?^JO0hsrmnZ5T!1OPh^VTFc+3O9eYwwZR*_PxbB@(wR%UjepPyzHW9-_@EF!HnRcWo2 zTuQC|z|3r2R}LY3eSOthRrUFN=A6Cv{TAjqet+MFVHn4;$2HIMKjjd3igP)_{5BP{%K4vzk1fYDo*Ccyy) zfZOfH$?IC?*3gJ(uU%RCZGJDx(Pn9p5C~BL2M)-Pwwtjh!BzY^PQWt&b_2)(9?45B`Fb6Rrc2^%1`%jcPCt-^h$l@wPM5wUQ1Jl}Em?c3dt zeVCi4hr3r4)ykzhwY==Z+Gvrn9_v}IEF>%pz0BOhV}!8qKT2F~0JO}ZL;wH) M07*qoM6N<$g6f<01ONa4 literal 0 HcmV?d00001 diff --git a/textures/plasticbox_orange.png b/textures/plasticbox_orange.png new file mode 100644 index 0000000000000000000000000000000000000000..df004a9ee020a5423387c46e9f3b46ea6849e785 GIT binary patch literal 512 zcmV+b0{{JqP)(Wxpn?_<&R?vIHkMHUZGZFRPEJd^2yY;or($=jCoO7JK27P3e$RN7etyx0X-e3lI zii#?L<2kK(^ZFR!-(Ex%uWK_iGgncVg_x?D=`nJg^VSMXkmm?Jqh8j=QgchFcZa)o zS5p9+CP+6xF2(|0{J**(u4^P)~IqiewRC z=KAH6Z#^}oY1FQz4#vc#xS8z7P!%5Q{@d5vIuVteJG=){Df@9~+Q*zD!rZsDmEUiY z&Wi)MEPA(_YVF}=7z;CmES!h{*uR;8X+QSMRqE4YN~t~`m^rZ|1eiOV159*X*R8eb zVGlEy`MeO0mua_C_axllxmF0}EI0OU7~p`Jzn`GGjhV2k?Rc)W_5ewS5E1|^$5U5@ zVajEmFTK#Ztv)Z5n&!ttPsp`O%@z&-z<7Azpn1Ny_DQlNYL_KaqTSQy7GCNQoRAO^ zYG&^CcBY82J5*J>nYnuik#C)Ih7imEwBCgo2EN<%ZKEQsH8(di8OrkfP9#!D0+F)Z zDzEd(5irX@e?5kWURO0$)t*^;1XZS#Zt5@yFwYmLj=8ikCwFDInyE4%a=3SQv~Em= zGRz85k?e_7l~QUi$G9I&b?e=Q1nNY@gS6`gF_=NMwT6iEJPWgiK~>EVaa~v9hY>(~ zITa$9wbR+n+|A5@=)Gea+Pt*)Q|nzsX#M@dLFIP7stiR{!^2F&W82!+`<6VW0TKFs zlAN>s`n$DO+}Dr!W4#W;psMTfBi&8QpJ%Qm#igP)(t7D+NlH?l}4>3->+%o6~hrE{i#pSfF0?hFon zMIa&~KHbM|NRVE(t*Y*3{9&z^nL`AeBoP4;?tf=iCZxNWbLL(5wdy_7Kg=HYdyp%F zYsnq%0KS=d_eW+)tJ}KYGgo)~ayYd6F=8T&gqdbg^_F=8TB>eIUDc8SelrUa5#<7^Yb9PSNCqFs;v7ZvjG7c0JCT_0}kESsx{M6Rc%!x zy;ntd0Rjpb;5y^??x^~HyRGh)UbjvE11W)%`+4TMJAs{3XfIl+Kyw%>7KwymmjhKS}rQN3%br2l6NKKU$e`*S;s5iU0rr M07*qoM6N<$g5{O;?*IS* literal 0 HcmV?d00001 diff --git a/textures/plasticbox_violet.png b/textures/plasticbox_violet.png new file mode 100644 index 0000000000000000000000000000000000000000..428738b56474828a5fb11813cbc77b59f31f9faa GIT binary patch literal 539 zcmV+$0_6RPP))%9$xNBqqqK>9`6j9=A}rLDii3DG)k~j>tZOfnjXZ3(AB*}bkn~mflQ+E- z+1$EFR|Rn}Gl2W=Drj5OcIfRPeJ`jKuga0gwD+d~}p(OV}Ps;mkTFysDuo;D)TXxVJdZs#!D!FBTT zM8u=FHZ>&ARSx~J4a)XvSTk{>>IkWHdTU z>#tEM(@j5Y(dHhR72y@IaavilU9Mihv6Zswzn`!;)24I99&d`-!?(lQLT~rfE;R9W dPnn}%_&<)xYh;+Aa-0AF002ovPDHLkV1hFb{?7ma literal 0 HcmV?d00001 diff --git a/textures/plasticbox_white.png b/textures/plasticbox_white.png new file mode 100644 index 0000000000000000000000000000000000000000..ec4a4039f7a2c9e167c5833f96b253503382c4d5 GIT binary patch literal 441 zcmV;q0Y?6bP)(e2M8w|P%=X@7W^+z=H!~t~_fkr0O;y)gL<9h1 zjJD9@IYk5jL?pRut(iLK%m)F$ zbzQ2OtnmL_*X8a2&|2%gN5o$b?p|wkcM)OcwN?Vo^CY6)d#V?abb=m_$IpsPU2Cni z(u3?RSrC!ZmQ<2}IVUrx4N2+lhzJm>+IuG=5|Nxhc6r}-Vnk$&K|~S1@*vq+x|xTW zd+!NOqaz~kQi`N{ch5fnlu|Mn5m`i4Glxtg2L@Kelh5p&IQ!HCGr literal 0 HcmV?d00001 diff --git a/textures/plasticbox_yellow.png b/textures/plasticbox_yellow.png new file mode 100644 index 0000000000000000000000000000000000000000..c0e26793f4610cff5910e0733ea53629cf7103b5 GIT binary patch literal 517 zcmV+g0{Z=lP)pssRG%TB@q5avVA5+O`f5;J%0KJKo-$6g7EQAONc7z6Tj&)LI5G zqGf^sY0bv)Oc8mmrM)M>-cvQniip;7o=2fGFc(^bRfz~%v&;n)Kr+rV0N(FmmRU$5 zh$`$mY>WoPS`YUQ